    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: white;
        margin-top: 70px;
    }

    @media (max-width: 768px) {
        body {
            margin-top: 100px;
            /* increase margin if navbar grows on small screens */
        }
    }


    /* Navigation Bar */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    header {
        background-color: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1000;
    }


    .navbar {
        /* position: fixed; */
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 30px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .logo img {
        width: 55px;
        height: auto;
        margin-right: 3rem;
        margin-left: 1.2rem;
        cursor: pointer;
    }


    .nav-links {
        list-style: none;
        display: flex;
        gap: 2rem;
    }

    .nav-item .main {
        text-decoration: none;
        color: #282c3f;
        font-weight: 650;
        font-size: 14px;
        position: relative;
        padding: 28px 0px;
    }

    .nav-item .main:hover {
        color: #ff3f6c;
        border-bottom: 3px solid #ff3f6c;
        z-index: 1000;
    }

    ul {
        cursor: pointer;
    }

    .nav-item {
        position: relative;
    }

    .dropdown {
        display: none;
        position: absolute;
        top: 100%;
        width: 1000px;
        height: auto;
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 999;
        transition: all 0.3s ease;
    }


    /* .dropdown-column {
    flex: 1;
    min-width: 150px;
    padding: 0 10px;
    } */


    .nav-item:hover>.dropdown {
        display: flex;
        /* or block, based on your layout */
    }

    .dropdown-column {
        flex: 1;
        padding: 20px;
        min-width: 200px;
        height: auto;
        box-sizing: border-box;
    }

    .dropdown-column:nth-child(odd) {
        background-color: #fff;
    }

    /* lightest */
    .dropdown-column:nth-child(even) {
        background-color: #f7f7f7;
    }

    .dropdown-column h4 {
        color: #ff3f6c;
        margin-bottom: 10px;
        font-size: 16px;
    }

    .dropdown-column a {
        color: #333;
        display: block;
        margin-bottom: 8px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .dropdown-column a:hover {
        color: #ff3f6c;
    }



    .search-box {
        position: relative;
        /* Important for absolute positioning the icon */
        flex: 1;
        margin: 0 50px;
    }

    .search-box input {
        width: 100%;
        padding: 12px 15px 12px 40px;
        /* Increased left padding to make space for icon */
        border: none;
        background-color: #e8e8ee;
        border-radius: 4px;
        font-size: 14px;
        outline: none;
    }

    .search-box input:focus {
        background-color: white;
        outline: none;
        box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    }

    .search-icon {
        position: absolute;
        top: 50%;
        left: 12px;
        /* Position icon inside box */
        transform: translateY(-50%);
        color: #605c5c;
        font-size: 14px;
        pointer-events: none;
        /* so clicks go to input, not icon */
    }

    .icons {
        display: flex;
        gap: 25px;
        margin-top: 10px;
    }

    .icons span {
        font-weight: 500;
    }

    .icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 15px;
        color: #282c3f;
        cursor: pointer;
    }

    .icon img {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }

    .icon:hover {
        color: #ff3f6c;
    }


    /* Suggestions */
    #suggestions-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        z-index: 1001;
        list-style: none;
        margin: 5px 0 0 0;
        padding: 0;
        display: none;
        /* Remove scrollbar by removing height limits */
        max-height: none;
        overflow-y: visible;
    }

    #suggestions-list li {
        padding: 10px 15px;
        border-bottom: 1px solid #f1f1f1;
        cursor: pointer;
        font-size: 14px;
    }

    #suggestions-list li:hover {
        background-color: #f9f9f9;
    }

    #suggestions-list .category {
        font-weight: bold;
        background-color: #f2f2f2;
        cursor: default;
    }

    /* Responsive Navbar - Keep horizontal layout */
    @media (max-width: 768px) {
        .navbar {
            flex-wrap: wrap;
            justify-content: center;
            padding: 10px 15px;
        }

        .logo img {
            width: 45px;
            margin: 0 10px;
        }

        .nav-links {
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .nav-links li a {
            font-size: 12px;
            padding: 5px;
        }

        .search-box {
            position: relative;
            flex: 1;
            margin: 0 50px;
            max-width: 400px;
        }

        .search-box input {
            width: 100%;
            padding: 12px 15px 12px 40px;
            border: none;
            background-color: #e8e8ee;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
        }

        .search-box input:focus {
            background-color: white;
            box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
        }

        .search-icon {
            position: absolute;
            top: 50%;
            left: 12px;
            transform: translateY(-50%);
            color: #605c5c;
            font-size: 14px;
            pointer-events: none;
        }


        .icons {
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            width: 100%;
            margin-top: 10px;
        }

        .icon {
            font-size: 12px;
        }

        .icon img {
            width: 18px;
            height: 18px;
        }

        .icon span {
            font-size: 12px;
        }
    }



    /* SALES TIMER */
    .sale-timer {
        background: linear-gradient(to right, #f3f6fe, #edf2ff);
        padding: 20px 0;
        text-align: center;
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: thin;
        color: #333;
        margin-top: 80px;
        transition: all 0.1s ease-in-out
    }

    .sale-timer .time span {
        color: #ff3f6c;
        /* Pink color for numbers */
        font-weight: 600;
        font-size: 18px;
        margin: 0 2px;
    }

    @media (max-width: 768px) {
        .sale-timer {
            font-size: 14px;
            margin-top: 162px;
            /* increase this if nav bar height increases */
            padding: 15px 10px;
        }

        .sale-timer .time span {
            font-size: 16px;
            margin: 0 1px;
        }
    }

    @media (max-width: 600px) {
        .sale-timer {
            font-size: 13px;
            margin-top: 160px;
            /* even more if navbar wraps */
            padding: 12px 8px;
        }

        .sale-timer .time span {
            font-size: 15px;
        }
    }




    /* Offer Banner */
    .offer-banner {
        width: 70%;
        margin: 20px auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .offer-banner img {
        max-width: 100%;
        height: auto;
    }

    /* Custom banner */
    .custom-banner {
        width: 90%;
        margin: 20px auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-image {
        width: 70%;
    }

    .main-image img {
        width: 100%;
        height: auto;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .giphy-image {
        width: 30%;
    }

    .giphy-image img {
        width: auto;
        height: 100%;
        cursor: pointer;
    }

    @media (max-width: 768px) {

        /* Offer banner becomes full width */
        .offer-banner {
            width: 95%;
            margin: 15px auto;
        }

        .offer-banner img {
            width: 100%;
            height: auto;
        }

        /* Custom banner becomes vertical on small screens */
        .custom-banner {
            flex-direction: column;
            width: 95%;
            gap: 15px;
        }

        .main-image,
        .giphy-image {
            width: 100%;
            text-align: center;
        }

        .main-image img,
        .giphy-image img {
            width: 90%;
            max-width: 100%;
            height: auto;
        }
    }

    /* COUPON CENTRAL */
    .coupon-section {
        width: 90%;
        margin: 0 auto;
        text-align: center;
        padding: 30px 0;
    }

    .coupon-section h2 {
        font-size: 4rem;
        color: #666565;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .coupon-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .coupon-card {
        width: 45%;
        background: #fff;
        padding: 10px;
    }

    .coupon-card img {
        width: 100%;
        height: auto;
        cursor: pointer;
    }

    .deals-banner {
        margin-top: 30px;
    }

    .deals-banner img {
        width: 100%;
        height: auto;
        cursor: pointer;
    }

    /* Product Slider */
    .product-multi-slider-container {
        width: 90%;
        margin: 20px auto;
        overflow: hidden;
        position: relative;
    }

    .product-multi-slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .product-multi-slide {
        display: flex;
        justify-content: space-between;
        min-width: 100%;
        box-sizing: border-box;
    }

    .product-multi-slide img {
        width: 15.5%;
        /* Four items per slide with space between */
        border-radius: 5px;
        object-fit: cover;
        cursor: pointer;
    }


    .product-multi-dots {
        text-align: center;
        margin-top: 10px;
    }

    .product-multi-dot {
        height: 10px;
        width: 10px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .product-multi-dot.active {
        background-color: #333;
    }

    /* Shop By Category */
    .shop-by-category {
        width: 85%;
        margin: 30px auto;
    }

    .shop-by-category h2 {
        font-size: 5rem;
        color: #666565;
        margin-bottom: 40px;
        font-weight: bold;
        text-align: center;
    }

    .category-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 30px;
        /* Reduce or increase to adjust gap between images */
    }

    .category-card {
        background: linear-gradient(to top, rgb(255, 180, 50) 0%, #ffce6c 100%);
        /* Golden background */
        border-radius: 3px;
        cursor: pointer;
        overflow: hidden;
        text-align: center;
        padding: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease-in-out;
    }

    .category-card:hover {
        transform: scale(1.03);
    }


    .category-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        cursor: pointer;
        border-radius: 2px;
        display: block;
    }

    .category-card .title {
        font-weight: 600;
        margin-top: 5px;
        color: #4d4b4b;
    }

    .category-card .offer {
        font-size: 1.44rem;
        font-weight: bold;
        color: #313030;
    }

    .category-card .shop-now {
        font-size: 1.1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 5px;
    }

    .category-card img,
    .category-card .title,
    .category-card .offer,
    .category-card .shop-now {
        transition: all 0.3s ease;
    }

    @media (max-width: 1200px) {
        .category-grid {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    @media (max-width: 992px) {
        .category-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .shop-by-category h2 {
            font-size: 4rem;
        }
    }

    @media (max-width: 768px) {
        .category-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .shop-by-category h2 {
            font-size: 3rem;
        }

        .category-card .offer {
            font-size: 1.2rem;
        }

        .category-card .shop-now {
            font-size: 1rem;
        }
    }

    @media (max-width: 576px) {
        .category-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .shop-by-category h2 {
            font-size: 2.4rem;
        }

        .category-card img {
            height: 140px;
        }

        .category-card .offer {
            font-size: 1rem;
        }

        .category-card .shop-now {
            font-size: 0.95rem;
        }
    }

    @media (max-width: 400px) {
        .category-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .shop-by-category h2 {
            font-size: 2rem;
        }

        .category-card img {
            height: 130px;
        }

        .category-card {
            padding: 6px;
        }

        .category-card .offer,
        .category-card .shop-now,
        .category-card .title {
            font-size: 0.9rem;
        }
    }

    /* SLIDER SECTION */
    .slider-container {
        width: 100%;
        height: 260px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        margin-top: 80px;
        padding: 0 10px;
        transition: all 0.4s ease;
    }

    .slider-container img {
        width: 70%;
        max-width: 1200px;
        height: auto;
        object-fit: cover;
        transition: all 0.5s ease-in-out;
    }

    @media (max-width: 768px) {
        .slider-container img {
            width: 90%;
            height: auto;
        }
    }

    /* FOOTER SECTION */

    .footer-section {
        background-color: #f0f0f0;
        width: 100%;
    }


    footer {
        background-color: #f0f0f0;
        color: white;
        padding: 25px 0;
        width: 75%;
        margin: 0 auto;
        margin-top: 50px;
    }

    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
        min-width: 200px;
    }

    .footer-col h4 {
        font-size: 0.85rem;
        color: #282c3f;
        /* margin-bottom: 10px; */
        font-weight: bold;
        margin-bottom: 10px;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }

    .footer-col ul li a {
        text-decoration: none;
        color: #656774;
        font-size: 14px;
    }

    .app-icons img {
        height: 40px;
        margin-right: 10px;
    }

    .social-icons img {
        height: 20px;
        margin-right: 15px;
    }

    .popular-searches {
        margin-top: 40px;
        font-size: 13px;
        line-height: 1.8;
        border-top: 1px solid #cdcdce;
        padding-top: 20px;
    }

    .popular-searches h4 {
        font-size: 0.85rem;
        color: #282c3f;
        /* margin-bottom: 10px; */
        font-weight: bold;
    }

    .search-links {
        color: #656774;
    }

    .search-links a {
        text-decoration: none;
        color: #656774;
        font-size: 14px;
        margin-right: 4px;
        line-height: 1.8;
    }

    .footer-bottom {
        text-align: center;
        font-size: 13px;
        margin-top: 40px;
        color: #7d7e87;
    }

    .footer-bottom p {
        margin: 5px 0;
    }

    .footer-bottom a {
        color: #535766;
        font-weight: bold;
        text-decoration: none;
    }

    @media screen and (max-width: 768px) {
        footer {
            padding: 30px;
        }

        .footer-top {
            flex-direction: column;
        }
    }