        /* Base Styles */
        :root {
            --primary-dark: #1a1a1a;
            --secondary-dark: #2d2d2d;
            --gold: #c6a467;
            --light-gold: #d4b77f;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --dark-gray: #777777;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            font-family: 'Poppins', 'Lato', 'Inter', Arial, sans-serif; 
            background-color: var(--primary-dark);
            color: var(--white);
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
               
        
        .section-title h2 {
            font-family: 'Playfair Display', 'Montserrat', 'serif';
            font-weight: 700;
            font-size: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }
        
        .about-text h2,
        .feature-title,
        .product-info h1,
        .contact-info h3,
        .footer-col h4 {
            font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
  /*Commented for font change*/      
/*
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }
*/
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: var(--gold);
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--white);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .btn:hover {
            background: var(--gold);
            color: var(--primary-dark);
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            /*background: rgba(26, 26, 26, 0.95);*/
            background: hsl(60, 3%, 94%);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            border-bottom: 1px solid rgba(198, 164, 103, 0.2);
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 15px 0;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Montserrat', 'Barlow', Arial, sans-serif;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #c6a467;
            font-size: 2.2rem;
            text-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .logo img {
            height: 48px;
            max-width: 180px;
            width: auto;
            display: block;
        }
                
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin: 0 15px;
        }
        
        .nav-links a {
            /*added below two lines for color*/
            color: #222 !important; /* Bright white for nav items */
            font-weight: 600;
            /*------------*/
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        
        .header-actions {
            display: flex;
            align-items: center;
        }
        
        .search-icon, .cart-icon {
            color: #222 !important;
            margin-left: 20px;
            font-size: 1.2rem;
            cursor: pointer;
        }

        .whatsapp-icon {
            color: #25D366 !important;
            margin-left: 20px;
            font-size: 2rem;
            cursor: pointer;
        }
        
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }   

        /* Hero Section */
        /*Commented below hero and hero-content class to add slider function*/
        /* 
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
        }
        
        .hero-content {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }`
        */

        /*Added below code for slider functionality*/
        
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }
        .hero-slider {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 1;
        }
        .hero-slide {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s;
        }
        .hero-slide.active {
            opacity: 1;
            z-index: 2;
        }
        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            color: #fff;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: 2;
            pointer-events: none;
            background: linear-gradient(
                rgba(26, 26, 26, 0.4), 
                rgba(26, 26, 26, 0.4)
            );
        }

        /*Added above code for slider functionality*/
        .hero-content h1 {
            font-size: 4rem;
            font-weight: 300;
            letter-spacing: 5px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--secondary-dark);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }
        
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            color: var(--light-gray);
        }
        
        .about-image {
            position: relative;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Products Section */
        .products {
            padding: 80px 0;
        }
        
        .product-filters {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 8px 20px;
            margin: 0 10px 10px;
            background: transparent;
            border: 1px solid var(--dark-gray);
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.8rem;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--primary-dark);
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .product-card {
            background: var(--secondary-dark);
            border-radius: 5px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .product-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
        
        .product-overlay-btns {
            display: flex;
        }
        
        .overlay-btn {
            width: 40px;
            height: 40px;
            background: var(--gold);
            color: var(--primary-dark);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .overlay-btn:hover {
            background: var(--white);
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-category {
            font-size: 0.8rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }
        
        .product-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 400;
        }
        
        .product-price {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .product-features {
            list-style: none;
            margin-bottom: 15px;
        }
        
        .product-features li {
            font-size: 0.9rem;
            color: var(--dark-gray);
            margin-bottom: 5px;
            position: relative;
            padding-left: 15px;
        }
        
        .product-features li:before {
            content: '•';
            color: var(--gold);
            position: absolute;
            left: 0;
        }
        
        .product-card .btn {
            width: 100%;
            text-align: center;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--secondary-dark);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
            background: var(--primary-dark);
            border-radius: 5px;
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 400;
        }
        
        .feature-desc {
            font-size: 0.9rem;
            color: var(--dark-gray);
        }
        
        /* Product Details Page */


        .product-details {
            min-height: 100vh;
            padding-top: 40px;
            padding-bottom: 70px;
            position: relative;
            z-index: 0;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .product-details .container {
            margin-top: 70px !important; /* Remove any extra top margin from product details container */
        }
        
        .breadcrumb {
            margin-bottom: 30px;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }
        
        .breadcrumb a {
            color: var(--gold);
            transition: all 0.3s ease;
        }
        
        .breadcrumb a:hover {
            color: var(--light-gold);
        }
        
        .product-details-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .product-gallery {
            position: relative;
        }
        
        .main-product-image {
            width: 100%;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .main-product-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .product-thumbnails {
            display: flex;
            margin-top: 20px;
            gap: 10px;
        }
        
        .thumbnail {
            width: 80px;
            height: 80px;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .thumbnail.active, .thumbnail:hover {
            opacity: 1;
            border: 2px solid var(--gold);
        }
        
        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-info h1 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 10px;
            color: var(--gold);
        }
        
        .product-category {
            font-size: 0.9rem;
            color: var(--dark-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }
        
        .product-price {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .product-description {
            margin-bottom: 30px;
            line-height: 1.8;
            color: var(--light-gray);
        }
        
        .product-features {
            margin-bottom: 30px;
        }
        
        .product-features h3 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 400;
            color: var(--gold);
        }
        
        .features-list {
            list-style: none;
        }
        
        .features-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }
        
        .product-actions {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid var(--dark-gray);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .quantity-btn {
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .quantity-input {
            width: 50px;
            height: 40px;
            background: transparent;
            border: none;
            border-left: 1px solid var(--dark-gray);
            border-right: 1px solid var(--dark-gray);
            color: var(--white);
            text-align: center;
            font-size: 1rem;
        }
        
        .add-to-cart {
            flex: 1;
            background: var(--gold);
            color: var(--primary-dark);
            border: none;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .add-to-cart:hover {
            background: var(--light-gold);
        }
        
        .product-meta {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
        }
        
        .warranty-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .warranty-icon {
            font-size: 1.5rem;
            color: var(--gold);
            margin-right: 15px;
        }
        
        .warranty-text {
            font-size: 0.9rem;
        }
        
        .warranty-text strong {
            color: var(--gold);
        }
        
        /* Related Products */
        .related-products {
            padding: 80px 0;
            background: var(--secondary-dark);
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--gold);
        }
        
        .contact-details {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .contact-details li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .contact-details li i {
            margin-right: 15px;
            color: var(--gold);
            font-size: 1.2rem;
        }
        
        .social-links {
            display: flex;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border: 1px solid var(--gold);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--gold);
            color: var(--primary-dark);
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 20px;
            background: transparent;
            border: 1px solid var(--dark-gray);
            color: var(--white);
            font-size: 0.9rem;
        }
        
        .contact-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background: var(--secondary-dark);
            padding: 70px 0 30px;
            position: relative;
            z-index: 1;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--gold);
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            color: var(--dark-gray);
            transition: all 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--gold);
            padding-left: 5px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--dark-gray);
            font-size: 0.9rem;
        }
               

        /* Hide all product details sections by default */
        section[id^="product-"] {
            display: none;
        }

        /* Product page spec grid */
        .spec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
            gap: 18px;
            margin: 24px 0;
            background: var(--secondary-dark);
            border-radius: 6px;
            padding: 24px 12px;
        }
        .spec-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: var(--primary-dark);
            border-radius: 3px;
            padding: 9px 5px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        }
        .spec-icon {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        .spec-label {
            font-size: 0.72rem;
            color: var(--light-gray);
            margin-bottom: 2px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .spec-value {
            font-size: .9rem;
            color: var(--white);
            font-weight: 700;
        }

        /* Innovative Product Description Section */
        .product-description-section {
            background: linear-gradient(90deg, #232526 0%, #414345 100%);
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.12);
            padding: 32px 24px;
            margin-top: 32px;
            margin-bottom: 32px;
            color: #fff;
            max-width: 700px;
            font-family: 'Montserrat', 'Poppins', Arial, sans-serif;
        }

        .product-description-section h2 {
            font-family: 'Playfair Display', 'Montserrat', serif;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 18px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .product-description-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 18px;
            color: #f5f5f5;
        }

        .product-description-section ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .product-description-section ul li {
            background: rgba(255,255,255,0.05);
            border-left: 4px solid var(--gold);
            padding: 10px 16px;
            border-radius: 6px;
            font-size: 1rem;
            color: #e0e0e0;
            position: relative;
            transition: background 0.2s;
        }

        .product-description-section ul li:hover {
            background: rgba(198,164,103,0.08);
            color: var(--gold);
        }


        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--primary-dark);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.5s ease;
                z-index: 999;
                box-shadow: 0 4px 24px rgba(0,0,0,0.25);
            }
            .nav-links.active {
                left: 0;
            }
            .nav-links li {
                margin: 20px 0;
                width: 100%;
                text-align: center;
            }
            .nav-links a {
                color: #fff !important; /* White text for contrast */
                font-size: 1.3rem;
                font-weight: 600;
                padding: 16px 0;
                letter-spacing: 2px;
                display: block;
                width: 100%;
                transition: background 0.2s;
            }
            .nav-links a:hover {
                background: var(--gold);
                color: var(--primary-dark) !important;
            }
            .menu-toggle {
                display: block;
                font-size: 2rem;
                color: var(--primary-dark);
                cursor: pointer;
                z-index: 1000;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 1.5rem;
            }
            .logo img {
                height: 32px;
                max-width: 120px;
            }
            .product-details-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .product-gallery, .product-info {
                width: 100%;
            }
            .spec-grid {
                grid-template-columns: 1fr;
                gap: 10px;
                padding: 12px 4px;
            }
        }

        /* Privacy Policy Section Styles */
        .privacy-policy-section {
            background: var(--light-gray);
            color: #222;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
            padding: 48px 32px;
            margin-top: 120px;
            margin-bottom: 120px;
            max-width: 900px;
            font-family: 'Poppins', Arial, sans-serif;
        }

        .privacy-policy-section h1,
        .privacy-policy-section h2 {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .privacy-policy-section h1 {
            font-size: 2.2rem;
            border-bottom: 2px solid #e0d7c6;
            padding-bottom: 0.3em;
        }

        .privacy-policy-section h2 {
            font-size: 1.3rem;
            letter-spacing: 1px;
        }

        .privacy-policy-section ul {
            margin: 1em 0 1em 2em;
        }

        .privacy-policy-section li {
            margin-bottom: 0.6em;
            line-height: 1.7;
        }

        .privacy-policy-section strong {
            color: var(--primary-dark);
        }

        .privacy-policy-section .highlight {
            background: #f1f7ff;
            border-left: 4px solid var(--gold);
            padding: 0.7em;
            margin-bottom: 1.2em;
            font-size: 1.07em;
            border-radius: 6px;
        }

        @media (max-width: 992px) {
            .privacy-policy-section {
                padding: 32px 12px;
                margin-top: 90px;
                margin-bottom: 60px;
            }
            .privacy-policy-section h1 {
                font-size: 1.7rem;
            }
            .privacy-policy-section h2 {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 576px) {
            .privacy-policy-section {
                padding: 18px 2vw;
                margin-top: 70px;
                margin-bottom: 32px;
                border-radius: 7px;
            }
            .privacy-policy-section h1 {
                font-size: 1.2rem;
            }
            .privacy-policy-section h2 {
                font-size: 1rem;
            }
        }

        /* Shipping & Returns Section Styles */
        .shipping-returns-section {
            background: var(--light-gray);
            color: #222;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
            padding: 48px 32px;
            margin-top: 120px;
            margin-bottom: 120px;
            max-width: 900px;
            font-family: 'Poppins', Arial, sans-serif;
        }

        .shipping-returns-section h2,
        .shipping-returns-section h3 {
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }

        .shipping-returns-section h2 {
            font-size: 2.2rem;
            border-bottom: 2px solid #e0d7c6;
            padding-bottom: 0.3em;
        }

        .shipping-returns-section h3 {
            font-size: 1.3rem;
            letter-spacing: 1px;
        }

        .shipping-returns-section ul {
            margin: 1em 0 1em 2em;
        }

        .shipping-returns-section li {
            margin-bottom: 0.6em;
            line-height: 1.7;
        }

        .shipping-returns-section strong {
            color: var(--primary-dark);
        }

        @media (max-width: 992px) {
            .shipping-returns-section {
                padding: 32px 12px;
                margin-top: 90px;
                margin-bottom: 60px;
            }
            .shipping-returns-section h2 {
                font-size: 1.7rem;
            }
            .shipping-returns-section h3 {
                font-size: 1.15rem;
            }
        }

        @media (max-width: 576px) {
            .shipping-returns-section {
                padding: 18px 2vw;
                margin-top: 70px;
                margin-bottom: 32px;
                border-radius: 7px;
            }
            .shipping-returns-section h2 {
                font-size: 1.2rem;
            }
            .shipping-returns-section h3 {
                font-size: 1rem;
            }
        }