       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Almarai";
            color: var(--text);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: "Almarai";
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
            font-family: "Almarai";
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .container {
            width: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding-inline: 16px;
        }

        section {
            padding: 40px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 3.2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .section-header h2:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: #000;
        }

        .section-header p {
            max-width: 600px;
            margin: 0 auto;
            color: #777;
        }

        .hero {
            display: flex;
            align-items: center;
            min-height: 100%;
        }

        .hero-flex {
            display: flex;
            align-items: center;
            margin: 0 auto;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hero-content {
            flex: 0 0 49%;
            padding-inline: 10px;
            padding-right: 40px;
        }

        .hero-image {
            flex: 0 0 49%;
        }

        .hero-image img {
            width: 100%;
            height: auto;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 2.5rem);
            margin-bottom: 20px;
            font-weight: 500;
            color: #000 !important;
            text-transform: uppercase;
            font-size: 24px;
            line-height: 34.6px;
        }

        button.discovery-btn {
            background-color: #000;
            color: #fff;
            padding: 14px 34px;
            font-size: 15px;
            font-weight: 600;
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .hero p {
            font-size: 14px;
            margin-bottom: 40px;
            margin-left: auto;
            margin-right: auto;
        }

        button.discovery-btn:hover {
            background: white;
            color: black;
            border: 1px solid;
        }

        .same-btn {
            display: inline-block;
            padding: 13px 34px;
            background-color: #1a1a1a;
            color: #fff;
            border: 1px solid #1a1a1a;
            font-size: 13px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            max-width: 300px;
            margin: 0 auto;
        }

        .same-btn:hover {
            background-color: transparent;
            color: #1a1a1a;
        }

        .hero .same-btn:hover {
            background-color: transparent;
            color: #000;
            border-color: #000;
        }

        .category-slider {
            background-color: #f5f5f5;
            position: relative;
        }

        .slider-container {
            overflow: hidden;
            position: relative;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide {
            min-width: 100%;
            padding: 0 20px;
        }

        .category-card {
            background-color: white;
            padding: 40px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .category-card:before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(200, 169, 126, 0.1),
                    transparent);
            transition: left 0.7s ease;
        }

        .category-card:hover:before {
            left: 100%;
        }

        .category-card h3 {
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .category-card p {
            margin-bottom: 30px;
            flex-grow: 1;
            font-size: 16px;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .slider-dot.active {
            background-color: #000;
        }

        .slider-dot:after {
            content: "";
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            border: 1px solid #000;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .slider-dot.active:after {
            opacity: 1;
        }

        /* Product Grid */
        button.wishlist-btn svg {
            color: black;
            position: absolute;
            max-width: 50%;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto !important;
        }

        .product-card {
            text-align: center;
            border: 1px solid #eee;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .product-card:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #1a1a1a;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .image-container {
            margin: 0 auto 20px;
            /* center and spacing */
            overflow: hidden;
        }

        .product-content {
            padding-inline: 20px !important;
        }

        .product-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .product-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .product-card p {
            font-size: 14px;
            line-height: 20px;
            min-height: 100px;
        }

        .product-card .subtitle {
            font-style: italic;
            color: #777;
            margin-bottom: 15px;
        }

        .collections {
            display: block;
            padding-block: 40px !important;
        }

        .collections h2 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .collections h2:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background-color: #000;
        }

        .collections p {
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .product-grids {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding-inline: 12px;
        }

        .sellers-card {
            position: relative;
            min-height: 550px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            background-size: cover;
            width: 100% !important;
        }

        .sellers-card-1 {
            background-image: url("https://scontent.cdninstagram.com/v/t51.75761-15/491899287_18494099092025934_7862307879398696805_n.jpg?stp=dst-jpg_e35_tt6&_nc_cat=111&ig_cache_key=MzYyMTk5MTY3ODQwNTczODM4Ng%3D%3D.3-ccb1-7&ccb=1-7&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjE0NDB4MTQ0MC5zZHIuQzMifQ%3D%3D&_nc_ohc=5rrRKQkhSO4Q7kNvwGXFOd7&_nc_oc=Adn2zJGa6vA3Jo5MaH8Q7WhT38S0TQH8pvQOu0a0BKuSqRiyTBq7_SFan-xJtK0iMoQPU8vSiCAYa6eMliPZHp8T&_nc_ad=z-m&_nc_cid=1174&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=fRPBrl-jRZeJijMcWDT3RA&oh=00_AfeNbR4QPujwbc1z-OcQ240_m27tfkjEv4RQkY1vXX2N5w&oe=68F54D84");
        }

        .sellers-card-2 {
            background-image: url("https://min.com/wp-content/uploads/2025/10/Scent-Stories-Banner.jpg");
        }

        .sellers-card .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom,
                    rgb(0 0 0 / 96%) 0%,
                    rgb(0 0 0 / 97%) 100%);
            opacity: 0.8;
            transition: opacity 0.4s ease;
            transition: all 0.4s ease;
        }

        .sellers-card:hover .overlay {
            background: #2826268a !important;
            opacity: 1;
        }

        .sellers-card .content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px;
            color: #fff;
            transform: translateY(20px);
            opacity: 1;
            animation: fadeInUp 0.8s ease 0.3s forwards;
        }

        .sellers-card-1 .btn {
            background-color: #fff;
            color: #000;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .sellers-card-1 .btn:hover {
            background-color: #f0f0f0;
        }

        .sellers-card h3 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .sellers-card .subtitle {
            font-size: 15px;
            font-weight: 400;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.8;
        }

        .sellers-card p {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 10px;
            max-width: 90%;
            opacity: 0.9;
            letter-spacing: 1.2px;
        }

        .sellers-card .btn {
            background: 0 0 !important;
            color: #fff;
            border: none !important;
            text-decoration: underline !important;
            text-align: left;
        }

        .sellers-card .btn:hover {
            color: #333;
        }

        section.signature {
            background-color: #000;
            background-image: linear-gradient(rgba(192, 192, 192, 0.15),
                    rgba(0, 0, 0, 0.6)),
                url("https://i.pinimg.com/736x/d3/08/a4/d308a4ad1d459bd198389b9cea108a63.jpg");
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            color: #fff;
            padding: 80px 20px;
            text-align: center;
            background-attachment: fixed;
        }

        .content-container {
            text-align: center;
        }

        h1.headline.animate-text {
            color: #fff;
            font-size: clamp(1.5rem,
                    4vw,
                    2rem);
            /* min 1.5rem, fluid 4vw, max 2rem */
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .subheadline.animate-text {
            font-size: 14px;
            max-width: 700px;
            margin: 0 auto 20px;
        }

        .cta-button {
            background: #fff;
            color: #000;
            padding: 13px 30px;
            display: inline-flex !important;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            transition: all 0.4s ease;
            border: 1px solid transparent;
            font-size: 15px;
        }

        .cta-button:hover {
            background: transparent;
            color: #fff;
            border-color: #fff;
        }

        .fragrance-names {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 25px 0;
            justify-content: center;
        }

        .fragrance-name {
            font-size: 16px;
            font-weight: 300;
            letter-spacing: 1px;
            padding: 8px 0;
            position: relative;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        a.fragrance-name:hover {
            transform: scale(1.05);
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-thickness: 2px;
            transition: transform 0.3s ease, text-decoration 0.3s ease;
        }

        .slick-dots li.slick-active {
            border: 1px solid #000;
            border-radius: 50%;
        }

        .slick-dots li.slick-active button:before {
            font-size: 9px;
        }

        .slick-dots {
            bottom: -50px;
        }

        .content-container {
            text-align: center;
            background: #0000003b;
            padding: 40px;
            border-radius: 4px;
        }

        .product-content .btn {
            margin-bottom: 20px !important;
        }

        .product-section {
            padding: 40px 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 30px;
            font-weight: 600;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin: 0;
            padding: 0;
        }

        .product-item {
            list-style: none;
            text-align: center;
            position: relative;
            background: #fff;
            transition: 0.3s ease;
        }

        .wishlist {
            position: absolute;
            bottom: 69px;
            right: 10px;
            z-index: 9;
        }

        .wishlist-btn {
            border: none;
            background: transparent;
            font-size: 1.2rem;
            cursor: pointer;
            transition: transform 0.2s ease;
        }

        .wishlist-btn:hover {
            transform: scale(1.2);
        }

        .product-image img {
            width: 100%;
            transition: opacity 0.3s ease;
            height: 250px;
            object-fit: contain;
        }

        .product-image img {
            width: 100%;
            transition: opacity 0.3s ease;
        }

        .product-image .hover-img {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            background: #fff;
        }

        .product-image:hover .hover-img {
            opacity: 1;
            object-position: left;
        }

        .product-subtitle {
            color: #777;
            font-size: 12px;
            margin: 0;
        }

        .product-title {
            font-size: 16px;
            margin: 0;
        }

        .product-price {
            font-size: 1.1rem;
            color: #000;
            margin: 0;
        }

        .product-size {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .add-to-cart {
            border: none;
            background: #fff;
            color: #000;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s ease;
            width: 25px;
            height: 25px;
            border-radius: 20px;
            padding: 6px;
            position: absolute;
            top: 0;
            left: 90%;
        }

        .add-to-cart:hover {
            background: #333;
        }

        .product-info {
            text-align: left;
            padding: 10px 0;
            display: flex;
            flex-direction: column;
            gap: 2px !important;
        }

        /*   body wash collection css start here   */
        .collection-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            padding: 40px 20px;
        }

        .collection-card {
            position: relative;
            flex: 1 1 400px;
            min-height: 730px;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: flex-start;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .collection-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.2),
                    rgba(0, 0, 0, 0.8));
        }

        .content {
            position: relative;
            z-index: 2;
            padding: 30px;
        }

        .subheading {
            font-size: 14px;
            letter-spacing: 1.5px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 6px;
        }

        .content h2 {
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 1px;
            color: #fff;
            margin-bottom: 20px;
        }

        .discover {
            font-size: 13px;
            letter-spacing: 1px;
            text-decoration: none;
            font-weight: 600;
            color: #fff;
            border-bottom: 1px solid #fff;
            transition: all 0.3s ease;
        }

        .discover:hover {
            opacity: 0.8;
        }

        /*    accordian css start here  */
        .container2 {
            display: flex;
            flex-wrap: wrap;
            padding: 40px;
            align-items: flex-start;
            gap: 40px;
            margin-bottom: 50px;
        }

        .accordion {
            flex: 1 1 45%;
            min-width: 300px;
        }

        .accordion h2 {
            font-size: 35px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .accordion-item {
            border-bottom: 1px solid #ccc;
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .accordion-header:hover {
            color: #777;
        }

        .accordion-header h3 {
            font-size: 16px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .accordion-content p {
            font-size: 14px;
        }

        .accordion-header button {
            color: black;
            border: 1px solid;
        }

        .accordion-header span {
            /*        font-size: 0.9rem;*/
            color: #999;
        }

        .accordion-header button {
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .accordion-header button:hover {
            background: #000;
            color: #fff;
        }

        .accordion-content {
            display: none;
            padding: 15px 0 0 35px;
            font-size: 0.9rem;
            color: #555;
            line-height: 1.7;
        }

        .accordion-item.active .accordion-content {
            display: block;
        }

        .right-image {
            flex: 1 1 45%;
            min-width: 300px;
            position: relative;
        }

        .right-image img {
            width: 100%;
            height: 600px;
            border-radius: 8px;
            transition: opacity 0.5s ease;
            object-fit: cover;
        }
        .ban-content {
         max-width: 30%;
         text-align: start;
         margin: 0 auto;
     }

      /* Pagination dots */
      .swiper-pagination {
        right: 20px !important;
      }

      .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #ccc;
        opacity: 1;
        margin: 8px 0 !important;
      }

      .swiper-pagination-bullet-active {
        background: #000;
      }

        .accordion-content button {
            background: black;
        }

        @media (max-width: 900px) {
          .right-image img {
            height: auto;
        }
            .container2 {
                flex-direction: column;
                align-items: center;
            }

            .accordion,
            .right-image {
                flex: 1 1 100%;
            }
        }

        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .collection-section {
                padding: 0px !important;
            }
        }

        @media (max-width: 770px) {
            .product-grids {
                grid-template-columns: 1fr;
                gap: 10px;
                padding-inline: 10px;
            }

            .container {
                width: 100%;
                max-width: 100% !important;
                margin: 0 auto;
            }

            .sellers-card .content {
                padding: 40px 13px;
            }

            section.signature {
                padding: 50px 0px;
            }

            .cta-button {
                padding: 10px 17px;
            }

            .hero-image,
            .hero-content {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 0 !important;
            }

            .hero-flex {
                gap: 20px;
            }

            .fragrance-names {
                gap: 0px 8px;
            }

            .content-container {
                padding: 40px 10px;
            }

            .content h2 {
                font-size: 20px;
            }

            .subheading {
                font-size: 12px;
            }

            .product-grids {
                grid-template-columns: 1fr;
                gap: 10px;
                padding-inline: 10px;
            }

            .container {
                width: 100%;
                max-width: 100% !important;
                margin: 0 auto;
            }

            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .collection-section {
                padding: 0px !important;
            }

            .banner {
                flex-direction: column;
                padding: 0%;
            }

            .banner h1 {
                font-size: 26px;
            }

            .banner p {
                font-size: 15px;
                margin: 20px auto;
            }

            .banner button {
                padding: 12px 28px;
            }

            .banner-content {
                padding-inline: 15px;
            }

            .banner-image img {
                width: 100%;
            }
        }

        @media (max-width: 600px) {
          /*  .product-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }*/
            button.wishlist-btn svg {
              max-width: 7% !important;
           }
           .accordion h2 {
              font-size: 24px;
           }
            .container2 {
               padding: 10px;
               padding-block: 40px;
           }
            .wishlist {
                top: 14px;
                left: 0px;
            }
            .accordion-header h3 {
            font-size: 13px;
           }
        }
            @media (max-width: 450px) {
              button.wishlist-btn svg {
                 max-width: 10% !important;
              }

            }