		:root {
            --dark-sea-green: #55000c; /*#2E8B57;*/
            --light-sea-green: #880012; /*#20B2AA;*/
            --light-cream: #FFF8F0;
            --gold-accent: #D4AF37;
            --dark-text: #2C3E50;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            background-color: #fefefe;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        /* Header Styles */
        .header-top {
            background: linear-gradient(135deg, var(--dark-sea-green), var(--light-sea-green));
            color: white;
            padding: 8px 0;
            font-size: 0.9rem;
        }
        
        .main-header {
            background: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--dark-sea-green), var(--light-sea-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .logo span {
            color: var(--gold-accent);
        }
        
        .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s;
        }
        
        .nav-link:hover {
            color: var(--dark-sea-green) !important;
        }
        
        .nav-link.active {
            color: var(--dark-sea-green) !important;
            font-weight: 600;
        }
        
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--dark-sea-green), var(--light-sea-green));
        }
        
        .header-icons .icon {
            position: relative;
            margin-left: 20px;
            font-size: 1.2rem;
            color: var(--dark-text);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .header-icons .icon:hover {
            color: var(--dark-sea-green);
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--light-sea-green);
            color: white;
            font-size: 0.7rem;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Hero Section */
		.hero-section {
			background: 
			    url(../images/DesktopBG.png),
			    linear-gradient(to bottom, 
				rgba(248, 224, 151, 0.3),
				rgba(233, 173, 69, 0.9), 
			        rgba(233, 173, 69, 1)
			        
			        
			    );

		    background-size: contain;
		    background-position: right;
		    background-repeat: no-repeat;
		    padding: 170px 0;
		    position: relative;
		    overflow: hidden;
		}
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            color: var(--dark-text);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-title span {
            background: linear-gradient(135deg, var(--dark-sea-green), var(--light-sea-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
        }
        
        .hero-btn {
            background: linear-gradient(135deg, var(--dark-sea-green), var(--light-sea-green));
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(46, 139, 87, 0.2);
            color: white;
        }
        
        /* Category Sections */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-text);
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            display: none !important;
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--dark-sea-green), var(--light-sea-green));
        }
        
        /* Full-width rows: a square image on the left + content on the right */
        .category-card {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 24px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s;
            background: white;
            position: relative;
            cursor: pointer;
            padding: 18px;
        }

        .category-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        /* Square image — equal width & height */
        .category-image {
            flex: 0 0 240px;
            width: 240px;
            height: 240px;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 50%;
            /*background: #f7f7f7;*/
        }

        .category-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s;
        }

        .category-card:hover .category-image img {
            transform: scale(1.05);
        }

        .category-content {
            background: white;
            padding: 8px 16px;
            position: relative;
            flex: 1;
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .category-badge {
            display: inline-block;
            align-self: flex-start;
            background: linear-gradient(135deg, var(--dark-sea-green), var(--light-sea-green));
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 14px;
        }

        /* Responsive: shrink the square so it stays image-left/content-right (row) */
        @media (max-width: 767.98px) {
            .category-card { flex-direction: row; align-items: center; gap: 16px; padding: 14px; }
            .category-image { flex-basis: 130px; width: 130px; height: 130px; }
            .category-title { font-size: 1.3rem; }
            .category-desc { font-size: 0.9rem; margin-bottom: 12px; }
        }

        @media (max-width: 400px) {
            .category-card { flex-direction: row; gap: 12px; padding: 12px; }
            .category-image { flex-basis: 104px; width: 104px; height: 104px; }
            .category-title { font-size: 1.1rem; }
            .category-desc {
                font-size: 0.84rem;
                /* keep the row compact on tiny screens */
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
        }
        
        .category-title {
            font-size: 1.8rem;
            color: var(--dark-text);
            margin-bottom: 10px;
        }
        
        .category-desc {
            color: #666;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .category-link {
            color: var(--dark-sea-green);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .category-link i {
            margin-left: 8px;
            transition: transform 0.3s;
        }
        
        .category-link:hover i {
            transform: translateX(5px);
        }
        
        /* Featured Products */
        .product-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            background: white;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .product-image {
            height: 280px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--light-sea-green);
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .product-badge.new {
            background: var(--gold-accent);
        }
        
        .product-wishlist {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #888;
            transition: all 0.3s;
        }
        
        .product-wishlist:hover, .product-wishlist.active {
            color: #ff4757;
        }
        
        .product-content {
            padding: 20px;
        }
        
        .product-title {
            font-size: 1.1rem;
            color: var(--dark-text);
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .product-price {
            color: var(--dark-sea-green);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .product-price .old-price {
            color: #999;
            text-decoration: line-through;
            font-size: 0.9rem;
            margin-left: 8px;
            font-weight: 400;
        }
        
        .product-rating {
            color: var(--gold-accent);
            margin-bottom: 15px;
        }
        
        .product-rating span {
            color: #666;
            font-size: 0.9rem;
            margin-left: 5px;
        }
        
        .product-btn {
            background: transparent;
            border: 2px solid var(--light-sea-green);
            color: var(--dark-sea-green);
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .product-btn:hover {
            background: linear-gradient(135deg, var(--dark-sea-green), var(--light-sea-green));
            color: white;
        }
        
        /* Testimonials */
        .testimonial-section {
            background: linear-gradient(rgba(46, 139, 87, 0.03), rgba(32, 178, 170, 0.03));
            padding: 80px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin: 15px;
            height: 100%;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            color: rgba(46, 139, 87, 0.1);
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: Georgia, serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h5 {
            margin: 0;
            color: var(--dark-text);
        }
        
        .author-info p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, var(--dark-sea-green), var(--light-sea-green));
            color: white;
            padding: 60px 0;
            border-radius: 15px;
            margin: 80px 0;
        }
        
        .newsletter-title {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            outline: none;
            font-size: 1rem;
        }
        
        .newsletter-btn {
            background: var(--gold-accent);
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 0 30px 30px 0;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .newsletter-btn:hover {
            background: #c19b2e;
        }
        
        /* Footer */
        .footer-section {
            background: #1a1a1a;
            color: #ddd;
            padding: 60px 0 30px;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            margin-bottom: 20px;
            display: inline-block;
        }
        
        .footer-logo span {
            color: var(--light-sea-green);
        }
        
        .footer-about {
            margin-bottom: 20px;
            line-height: 1.7;
        }
        
        .footer-title {
            color: white;
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--light-sea-green);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--light-sea-green);
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icon:hover {
            background: var(--light-sea-green);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 50px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        
        /* ============================================================
           RESPONSIVE
           ============================================================ */

        /* ---- Tablet & below ---- */
        @media (max-width: 991.98px) {
            /* No fade — the mobile art covers the hero (right-aligned), and the
               area it doesn't fill (top/bottom) takes the image's backdrop colour. */
            .hero-section {
                background-color: #f6dca0; /* matches the hero art backdrop */
                background-image: url(../images/MobileBG.png);
                background-size: cover;
                background-position: right center;
                background-repeat: no-repeat;
                padding: 80px 0 56px;
            }

            /* Readable over the photo: white text + soft shadow */
            .hero-title,
            .hero-title span {
                color: #fff;
                -webkit-text-fill-color: #fff;
                text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
            }
            .hero-subtitle {
                color: #fff;
                max-width: 100%;
                text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
            }
            /* The outlined "Shop Now" button (carries inline styles) → white outline */
            .hero-btn[style] {
                background: rgba(255, 255, 255, 0.18) !important;
                border-color: #fff !important;
                color: #fff !important;
            }

            .testimonial-card { margin: 10px 0; }
        }

        /* ---- Phones ---- */
        @media (max-width: 767.98px) {
            .hero-section { padding: 56px 0 44px; }
            .hero-title { font-size: 2.3rem; }
            .hero-subtitle { font-size: 1.05rem; margin-bottom: 24px; }
            .hero-btn { padding: 11px 24px; font-size: 0.95rem; }

            /* Tighter vertical rhythm — less empty space between sections */
            section.py-5 { padding-top: 1.75rem !important; padding-bottom: 1.75rem !important; }
            section.my-5 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
            .testimonial-section { padding: 40px 0; }
            .newsletter-section { margin: 26px 0 !important; padding: 36px 20px; }

            .section-title { margin-bottom: 22px; }
            .section-title h2 { font-size: 1.9rem; }

            .newsletter-form { flex-direction: column; }
            .newsletter-input, .newsletter-btn {
                border-radius: 30px;
                width: 100%;
                margin-bottom: 10px;
            }

            /* Featured products: 2-up (cols are col-6 in markup), tighter cards */
            .product-image { height: auto; aspect-ratio: 3 / 4; }
            .product-card { margin-bottom: 0; border-radius: 12px; }
            .product-content { padding: 14px 12px; }
            .product-title { font-size: 0.95rem; }
            .product-price { font-size: 1.05rem; margin-bottom: 8px; }
            .product-btn { padding: 9px; font-size: 0.9rem; }
            .product-wishlist { width: 32px; height: 32px; }
        }

        /* ---- Small phones ---- */
        @media (max-width: 479.98px) {
            .hero-title { font-size: 1.95rem; }
            .hero-subtitle { font-size: 0.98rem; }
            .hero-btn {
                padding: 10px 20px;
                display: block;
                text-align: center;
                margin: 0 0 10px 0 !important;
            }
            .section-title h2 { font-size: 1.65rem; }
            .newsletter-title { font-size: 1.6rem; }
            .product-content { padding: 12px 10px; }
            .product-title { font-size: 0.88rem; }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Floating Elements */
        .floating-element {
            position: absolute;
            z-index: 1;
            opacity: 0.1;
        }
        
        .floating-1 {
            top: 20%;
            left: 5%;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--dark-sea-green);
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-2 {
            bottom: 10%;
            right: 10%;
            width: 80px;
            height: 80px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background: var(--light-sea-green);
            animation: float 8s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }