 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }
        
        body {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            color: #3c2a21;
        }
        
        /* Color Theme Variables - Warm Formal Palette */
        :root {
            --primary-color: #8b2c28; /* Deep burgundy */
            --secondary-color: #a45a52; /* Muted terracotta */
            --accent-color: #6d4c41; /* Rich brown */
            --light-color: #f5f0e6; /* Ivory */
            --dark-color: #3c2a21; /* Dark brown */
            --border-color: #d2b48c; /* Warm taupe */
            --background-color: #f8f4ea; /* Soft ivory background */
            --gold-accent: #c9a66b; /* Soft gold */
        }
        
        /* Header Styles */
        .header {
            text-align: center;
            padding: 20px 0;
            background-color: var(--background-color);
            position: relative;
        }
        
        .logo {
            max-width: 200px;
            margin-bottom: 20px;
        }
        
        /* Desktop Navigation */
        .nav {
            display: flex;
            justify-content: center;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }
        
        .nav a {
            margin: 0 15px;
            padding: 8px 15px;
            text-decoration: none;
            color: var(--dark-color);
            font-weight: bold;
            position: relative;
        }
        
        .nav a:hover {
            color: var(--primary-color);
        }
        
        .nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }
        
        .nav a:hover:after {
            width: 100%;
        }
        
        /* Mobile Hamburger Menu */
        .hamburger-menu {
            display: none;
        }
        
        .menu-toggle {
            display: none;
        }
        
        .hamburger-icon {
            display: none;
            cursor: pointer;
            padding: 10px;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .hamburger-icon span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px 0;
            background-color: var(--dark-color);
            transition: all 0.3s;
        }
        
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .mobile-nav-content {
            position: absolute;
            top: 0;
            right: -250px;
            width: 250px;
            height: 100%;
            background-color: var(--light-color);
            padding: 80px 20px 20px;
            transition: right 0.3s;
            overflow-y: auto;
        }
        
        .mobile-nav a {
            display: block;
            padding: 15px 10px;
            text-decoration: none;
            color: var(--dark-color);
            font-weight: bold;
            border-bottom: 1px solid var(--border-color);
            transition: background-color 0.3s;
        }
        
        .mobile-nav a:hover {
            background-color: var(--border-color);
            color: var(--primary-color);
        }
        
        #menu-toggle:checked ~ .mobile-nav {
            opacity: 1;
            visibility: visible;
        }
        
        #menu-toggle:checked ~ .mobile-nav .mobile-nav-content {
            right: 0;
        }
        
        #menu-toggle:checked ~ .hamburger-icon span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        #menu-toggle:checked ~ .hamburger-icon span:nth-child(2) {
            opacity: 0;
        }
        
        #menu-toggle:checked ~ .hamburger-icon span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        /* Image Slider Styles */
        .slider-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin-bottom: 30px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }
        
        .slider {
            width: 500%;
            height: 300px;
            display: flex;
            animation: slide 15s infinite;
        }
        
        .slide {
            width: 20%;
            height: 100%;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            20% { transform: translateX(0); }
            25% { transform: translateX(-20%); }
            45% { transform: translateX(-20%); }
            50% { transform: translateX(-40%); }
            70% { transform: translateX(-40%); }
            75% { transform: translateX(-60%); }
            95% { transform: translateX(-60%); }
            100% { transform: translateX(-80%); }
        }
        
        .slider-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        
        .slider-nav label {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            font-weight: bold;
            margin: 0 10px;
            transition: background-color 0.3s;
        }
        
        .slider-nav label:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }
        
        /* Product Section Styles */
        .product-section {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 30px;
            background-color: var(--background-color);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .product-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
            padding: 20px;
        }
        
        .product-image img {
            max-width: 100%;
            border: 1px solid var(--border-color);
            padding: 5px;
            border-radius: 4px;
            background-color: white;
        }
        
        .product-details {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }
        
        .product-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            border-radius: 4px;
            overflow: hidden;
        }
        
        .product-table th, .product-table td {
            border: 1px solid var(--border-color);
            padding: 10px;
            text-align: left;
        }
        
        .product-table th {
            background-color: var(--light-color);
            width: 30%;
            color: var(--dark-color);
        }
        
        .product-description {
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Tabbed Section Styles - Desktop */
        .tabs {
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        
        .tab-inputs {
            position: absolute;
            opacity: 0;
            z-index: -1;
        }
        
        .tab-labels {
            display: flex;
            flex-wrap: wrap;
            border-bottom: 1px solid var(--border-color);
            background-color: var(--light-color);
        }
        
        .tab-label {
            padding: 12px 20px;
            cursor: pointer;
            background-color: var(--light-color);
            margin-right: 2px;
            color: var(--dark-color);
            transition: all 0.3s;
        }
        
        .tab-label:hover {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .tab-content {
            display: none;
            padding: 20px;
            background-color: white;
        }
        
        #tab1:checked ~ .tab-labels .tab-label[for="tab1"],
        #tab2:checked ~ .tab-labels .tab-label[for="tab2"],
        #tab3:checked ~ .tab-labels .tab-label[for="tab3"],
        #tab4:checked ~ .tab-labels .tab-label[for="tab4"] {
            background-color: var(--primary-color);
            color: white;
        }
        
        #tab1:checked ~ .tab-contents #content1,
        #tab2:checked ~ .tab-contents #content2,
        #tab3:checked ~ .tab-contents #content3,
        #tab4:checked ~ .tab-contents #content4 {
            display: block;
        }
        
        /* Mobile Accordion Tabs */
        .mobile-tabs {
            display: none;
            margin-bottom: 30px;
        }
        
        .mobile-tab {
            margin-bottom: 5px;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid var(--border-color);
        }
        
        .mobile-tab-input {
            display: none;
        }
        
        .mobile-tab-label {
            display: block;
            padding: 15px;
            background-color: var(--light-color);
            color: var(--dark-color);
            font-weight: bold;
            cursor: pointer;
            position: relative;
        }
        
        .mobile-tab-label:after {
            content: '+';
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            transition: transform 0.3s;
        }
        
        .mobile-tab-content {
            max-height: 0;
            overflow: hidden;
            background-color: white;
            transition: max-height 0.3s ease-out;
        }
        
        .mobile-tab-content-inner {
            padding: 15px;
        }
        
        .mobile-tab-input:checked ~ .mobile-tab-label {
            background-color: var(--primary-color);
            color: white;
        }
        
        .mobile-tab-input:checked ~ .mobile-tab-label:after {
            content: '−';
        }
        
        .mobile-tab-input:checked ~ .mobile-tab-content {
            max-height: 1000px;
        }
        
        /* Cross-Selling Gallery Styles - Infinite Scroll */
        .gallery-container {
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            padding: 15px;
            background-color: var(--background-color);
            border-radius: 8px;
        }
        
        .gallery-container h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        .gallery-wrapper {
            width: 100%;
            overflow: hidden;
        }
        
        .gallery {
            display: flex;
            width: calc(215px * 20); /* Double the items for infinite scroll */
            animation: scrollGallery 20s linear infinite;
        }
        
        @keyframes scrollGallery {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-215px * 10)); } /* Move back by half the items */
        }
        
        .gallery:hover {
            animation-play-state: paused;
        }
        
        .gallery-item {
            flex: 0 0 auto;
            width: 200px;
            margin-right: 15px;
            border: 1px solid var(--border-color);
            padding: 10px;
            text-align: center;
            background-color: white;
            border-radius: 4px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .gallery-item img {
            max-width: 100%;
            height: 150px;
            object-fit: contain;
            margin-bottom: 10px;
        }
        
        .gallery-item h4 {
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--dark-color);
        }
        
        .link_text {
            display: inline-block;
            padding: 5px 10px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 3px;
            transition: background-color 0.3s;
        }
        
        .link_text:hover {
            background-color: var(--accent-color);
        }
        
        /* Footer Styles */
        .footer {
            text-align: center;
            padding: 20px 0;
            background-color: var(--light-color);
            margin-top: 30px;
            border-radius: 8px;
        }
        
        .footer p {
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--dark-color);
        }
        
        .footer-links a {
            margin: 0 10px;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            text-decoration: underline;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {

            .features-container{
                display: flex;
                flex-direction: column;
            }

            

            /* Show hamburger menu and hide regular nav */
            .nav {
                display: none;
            }
            
            .hamburger-icon {
                display: none;
            }
            
            /* Hide banner on mobile */
            .slider-container {
                display: none;
            }
            
            .product-section {
                flex-direction: column;
            }
            
            /* Hide desktop tabs and show mobile accordion tabs */
            .tabs {
                display: none;
            }
            
            .mobile-tabs {
                display: block;
            }
            
            /* Adjust header for mobile */
            .header {
                padding-top: 20px;
                padding-bottom: 10px;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 10px;
                max-width: 150px;
            } 

        }
          /* Features Section */
.features-container {

    display: flex;
    gap: 20px;
    margin: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2em;
    color: #333;
    background-color: #f8f4ea;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    color: #8b2c28;
    font-size: 2em;
    width: 40px;
    text-align: center;
}

.feature h3 {
    margin: 0;
    font-size: 1.1em;
    color: #444;
}

.feature p {
    margin: 0;
    color: #777;
}