        body, html {
            margin: 0;
            padding: 0;
            #font-family: 'Roboto', Arial, sans-serif;
            font-family: 'Playfair Display', serif;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }


      	a {
          	color:black;
        }

        main {
            flex: 1;
        }

.hero-section {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

        .logo {
            width: 200px;
            margin-bottom: 20px;
        }

        .search-container {
            display: flex;
            max-width: 1000px;
            width: 90%;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
            border: 5px solid white;
        }

.search-box {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    outline: none;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Faint shadow */
}

        .search-button {
            #background: #ff3d3d;
            color: white;
            border: none;
            padding: 15px 40px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 30px;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
            position: relative;
            box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
            margin-left: -5px;
        }

        .search-button:hover {
            background: #000; //#e63232;
            transform: scale(1.05);
        }

        /* Main Content */
        .content {
            padding: 40px 20px;
            text-align: center;
        }

        .content h1 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .content p {
            font-size: 16px;
            color: #666;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .brand-column {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.01);
            border: 1px solid #f9f9f9;
        }

        .brand-column h2 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .brand-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

.brand-column {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.01);
    border: 1px solid #f9f9f9;
    max-height: 288px; /* Set max height */
    overflow-y: auto; /* Enable vertical scrolling */
}

        /* Footer Styles */
        footer {
            background: #222;
            color: white;
            padding: 40px 20px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            text-align: left;
        }

        .footer-text {
            flex: 1;
            margin-right: 20px;
        }

        .footer-text h2 {
            font-size: 20px;
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin: 0 0 10px 0;
        }

        .footer-text p {
            font-size: 14px;
            margin: 0;
            color: #ccc;
        }

        .newsletter {
            display: flex;
            max-width: 350px;
            width: 100%;
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .newsletter input {
            flex: 1;
            border: none;
            padding: 15px 20px;
            font-size: 14px;
            outline: none;
        }

        .newsletter button {
            background: #ff3d3d;
            color: white;
            border: none;
            padding: 15px 20px;
            font-size: 14px;
            cursor: pointer;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .newsletter button:hover {
            background: #e63232;
        }

        .footer-bottom {
            margin-top: 20px;
            font-size: 14px;
            color: #ccc;
            text-align: center;
        }

        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                text-align: center;
            }

            .footer-text p {
                margin-bottom: 30px;
            }
        }
























      .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Always max 4 columns */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-item {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.image-container {
    position: relative;
    width: 100%; /* Full width of the container */
    height: 280px; /* Fixed height for all images */
    overflow: hidden; /* Hide the overflow for height */
}

.image-container img {
    width: 100%; /* Ensure the image spans the full width */
    height: auto; /* Maintain aspect ratio based on the width */
    position: absolute;
    top: 0; /* Align the top of the image */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Offset to center the image horizontally */
}

.old-price-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: black; /* Black background */
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    z-index: 1;
}

.old-price-label .strike {
    text-decoration: line-through; /* Strikethrough for the old price */
}

.product-info {
    margin-top: 5px;
}

.product-info h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 5px; /* Smaller margin below the name */
}

.current-price {
    font-size: 16px;
    color: #000;
    font-weight: bold;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 column on extra-small screens */
    }
}

.pagination-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.pagination-button {
    background: #ff3d3d;
    color: white;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.pagination-button:hover {
    background: #000; /* Darker hover effect */
    transform: scale(1.05);
}