/* Global Styles */
        :root {
            --primary-color: #3E2723;
            --secondary-color: #5D4037;
            --accent-color: #8D6E63;
            --light-color: #BCAAA4;
            --lighter-color: #EFEBE9;
            --gold-color: #D4AF37;
            --text-color: #333333;
            --white: #FFFFFF;
            --black: #000000;
            --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cormorant Garamond', serif;
            color: var(--text-color);
            line-height: 1.8;
            background-color: var(--lighter-color);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--primary-color);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-padding {
            padding: 120px 0;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background-color: var(--accent-color);
            color: var(--white);
            border: none;
            border-radius: 0;
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--box-shadow);
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-hover);
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
        }

        .btn-outline:hover {
            background-color: var(--accent-color);
            color: var(--white);
        }

        .btn-gold {
            background-color: var(--gold-color);
            color: var(--primary-color);
        }

        .btn-gold:hover {
            background-color: var(--primary-color);
            color: var(--gold-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            font-size: 2.8rem;
            font-weight: 700;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-color), var(--gold-color));
            margin: 25px auto 0;
        }

        .text-center {
            text-align: center;
        }

        .text-gold {
            color: var(--gold-color);
        }

        .mb-30 {
            margin-bottom: 30px;
        }

        .mb-50 {
            margin-bottom: 50px;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--lighter-color);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader.fade-out {
            opacity: 0;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid var(--light-color);
            border-radius: 50%;
            border-top-color: var(--accent-color);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        /* Header Styles */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.5s ease;
        }

        header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 10px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 0;
            transition: padding 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 60px;
            margin-right: 15px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            letter-spacing: 1px;
        }

        .logo-text span {
            color: var(--gold-color);
            font-weight: 700;
        }

        nav ul {
            display: flex;
            align-items: center;
        }

        nav ul li {
            margin-left: 35px;
            position: relative;
        }

        nav ul li a {
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(to right, var(--accent-color), var(--gold-color));
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .nav-cta {
            background-color: var(--gold-color);
            color: var(--primary-color);
            padding: 12px 25px;
            border-radius: 0;
            font-weight: 700;
            margin-left: 30px;
            transition: var(--transition);
        }

        .nav-cta:hover {
            background-color: var(--primary-color);
            color: var(--gold-color);
            transform: translateY(-3px);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
            z-index: 1001;
        }

        .cart-icon {
            position: relative;
            font-size: 1.3rem;
            margin-left: 25px;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--gold-color);
            color: var(--primary-color);
            width: 20px;
            height: 20px;
            border-radius: 50%;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c') no-repeat center center/cover;
            color: var(--white);
            display: flex;
            align-items: center;
            text-align: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
            z-index: 1;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 25px;
            color: var(--white);
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 40px;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .hero-scroll a {
            color: var(--white);
            font-size: 1.5rem;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .hero-scroll a:hover {
            opacity: 1;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        /* About Section */
        .about {
            padding: 140px 0;
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.03;
            z-index: 0;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .about-img {
            flex: 1;
            border-radius: 0;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            position: relative;
        }

        .about-img:before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: -20px;
            bottom: -20px;
            border: 2px solid var(--gold-color);
            z-index: -1;
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 5s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
            padding: 30px 0;
        }

        .about-text h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
            position: relative;
            display: inline-block;
        }

        .about-text h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--accent-color), var(--gold-color));
        }

        .about-text p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            color: var(--gold-color);
            font-size: 1.5rem;
            margin-top: 3px;
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .founder-card {
            display: flex;
            align-items: center;
            margin-top: 40px;
            background-color: var(--lighter-color);
            padding: 25px;
            border-left: 4px solid var(--gold-color);
            position: relative;
            overflow: hidden;
        }

        .founder-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.05;
            z-index: 0;
        }

        .founder-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 25px;
            border: 3px solid var(--gold-color);
            position: relative;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .founder-info {
            position: relative;
            z-index: 1;
        }

        .founder-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .founder-info p {
            font-style: italic;
            color: var(--secondary-color);
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        .signature {
            font-family: 'Parisienne', cursive;
            font-size: 1.8rem;
            color: var(--gold-color);
            margin-top: 10px;
            display: inline-block;
        }

        /* Products Section */
        .products {
            padding: 140px 0;
            background-color: var(--lighter-color);
            position: relative;
        }

        .products:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.03;
            z-index: 0;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .section-header .section-title {
            margin-bottom: 0;
            text-align: left;
        }

        .section-header .section-title:after {
            margin: 15px 0;
        }

        .view-all {
            display: inline-block;
            font-weight: 600;
            letter-spacing: 1px;
            color: var(--accent-color);
            font-size: 0.95rem;
            text-transform: uppercase;
            position: relative;
        }

        .view-all:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .view-all:hover:after {
            width: 100%;
        }

        .product-filters {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 10px;
            position: relative;
            z-index: 1;
        }

        .filter-btn {
            padding: 10px 25px;
            background-color: var(--white);
            border: 1px solid var(--light-color);
            border-radius: 0;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        .filter-btn.active, .filter-btn:hover {
            background-color: var(--accent-color);
            color: var(--white);
            border-color: var(--accent-color);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .product-card {
            background-color: var(--white);
            border-radius: 0;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--gold-color);
            color: var(--primary-color);
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
            z-index: 2;
        }

        .product-img {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-img img {
            transform: scale(1.1);
        }

        .product-actions {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 15px 0;
            background: rgba(0, 0, 0, 0.7);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-actions {
            transform: translateY(0);
        }

        .action-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--white);
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 5px;
            transition: var(--transition);
        }

        .action-btn:hover {
            background-color: var(--gold-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        .product-info {
            padding: 25px;
            position: relative;
        }

        .product-category {
            display: inline-block;
            color: var(--gold-color);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .product-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .product-description {
            font-size: 0.95rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .product-price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .old-price {
            text-decoration: line-through;
            color: var(--light-color);
            font-size: 1rem;
            margin-left: 10px;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 15px;
            border-top: 1px solid var(--lighter-color);
        }

        .product-rating {
            color: var(--gold-color);
            font-size: 0.9rem;
        }

        .add-to-cart {
            background-color: var(--gold-color);
            color: var(--primary-color);
            width: 45px;
            height: 45px;
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.1rem;
            font-weight: 700;
        }

        .add-to-cart:hover {
            background-color: var(--primary-color);
            color: var(--gold-color);
            transform: translateY(-3px);
        }

        /* Services Section */
        .services {
            padding: 140px 0;
            background-color: var(--white);
            position: relative;
        }

        .services:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.03;
            z-index: 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .service-card {
            background-color: var(--white);
            padding: 40px;
            border-radius: 0;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            border-top: 3px solid var(--gold-color);
            position: relative;
            overflow: hidden;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.03;
            z-index: 0;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-hover);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--gold-color);
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .service-description {
            font-size: 1.05rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .service-link {
            display: inline-block;
            margin-top: 25px;
            color: var(--accent-color);
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.9rem;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        .service-link:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--accent-color);
            transition: width 0.3s ease;
        }

        .service-link:hover:after {
            width: 100%;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 140px 0;
            background-color: var(--lighter-color);
            position: relative;
        }

        .testimonials:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.03;
            z-index: 0;
        }

        .testimonial-slider {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 50px;
            border-radius: 0;
            box-shadow: var(--box-shadow);
            text-align: center;
            margin: 0 15px;
            position: relative;
            border-top: 3px solid var(--gold-color);
        }

        .testimonial-card:before {
            content: '\201C';
            font-family: Georgia, serif;
            font-size: 5rem;
            color: var(--gold-color);
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-card:after {
            content: '\201D';
            font-family: Georgia, serif;
            font-size: 5rem;
            color: var(--gold-color);
            opacity: 0.2;
            position: absolute;
            bottom: -20px;
            right: 20px;
            line-height: 1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--secondary-color);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .testimonial-author-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--gold-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .testimonial-author-info h4 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .testimonial-author-info p {
            color: var(--secondary-color);
            font-size: 0.95rem;
        }

        .testimonial-rating {
            color: var(--gold-color);
            margin-top: 5px;
            font-size: 0.9rem;
        }

        /* Stats Section */
        .stats {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1595437193395-f77b5f744102') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            padding: 30px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--gold-color);
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }

        .stat-title {
            font-size: 1.2rem;
            margin-bottom: 0;
            letter-spacing: 1px;
        }

        /* Contact Section */
        .contact {
            padding: 140px 0;
            background-color: var(--white);
            position: relative;
        }

        .contact:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.03;
            z-index: 0;
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .contact-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--lighter-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--gold-color);
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-card:hover .contact-icon {
            background-color: var(--gold-color);
            color: var(--white);
        }

        .contact-text h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .contact-text p {
            margin-bottom: 0;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 0;
            background-color: var(--lighter-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-link:hover {
            background-color: var(--gold-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        .contact-form {
            background-color: var(--white);
            padding: 50px;
            border-radius: 0;
            box-shadow: var(--box-shadow);
            position: relative;
            border-top: 3px solid var(--gold-color);
        }

        .contact-form:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.03;
            z-index: 0;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid var(--lighter-color);
            border-radius: 0;
            font-family: inherit;
            transition: var(--transition);
            background-color: var(--lighter-color);
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold-color);
            background-color: var(--white);
        }

        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }

        .map-container {
            height: 350px;
            border-radius: 0;
            overflow: hidden;
            margin-top: 40px;
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 1;
            border: 10px solid var(--white);
            border-top: 3px solid var(--gold-color);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 100px 0 30px;
            position: relative;
        }

        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
            opacity: 0.05;
            z-index: 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            color: var(--white);
        }

        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(to right, var(--gold-color), var(--accent-color));
        }

        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            opacity: 0.8;
            transition: opacity 0.3s ease;
            font-size: 1.05rem;
            position: relative;
            padding-left: 15px;
        }

        .footer-links a:before {
            content: '\2022';
            position: absolute;
            left: 0;
            color: var(--gold-color);
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--gold-color);
        }

        .footer-newsletter input {
            width: 100%;
            padding: 15px 20px;
            border: none;
            border-radius: 0;
            margin-bottom: 15px;
            font-family: inherit;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 1rem;
        }

        .footer-newsletter input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-newsletter .btn {
            width: 100%;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .footer-bottom p {
            opacity: 0.7;
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        .footer-bottom p a {
            color: var(--gold-color);
        }

        .footer-bottom p a:hover {
            text-decoration: underline;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--gold-color);
            color: var(--primary-color);
            border-radius: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: var(--primary-color);
            color: var(--gold-color);
            transform: translateY(-5px);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .hero h1 {
                font-size: 4rem;
            }
        }

        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-img, .about-text {
                flex: none;
                width: 100%;
            }
            
            .about-img {
                margin-bottom: 40px;
            }
            
            .section-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .section-header .section-title {
                margin-bottom: 20px;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px;
            }
            
            nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 300px;
                height: 100vh;
                background-color: var(--white);
                flex-direction: column;
                padding: 80px 30px 30px;
                box-shadow: 2px 0 30px rgba(0, 0, 0, 0.1);
                transition: left 0.4s ease;
                z-index: 1000;
            }
            
            nav.active {
                left: 0;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .nav-cta {
                margin-left: 0;
                margin-top: 15px;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-card {
                padding: 30px;
            }
            
            .testimonial-card {
                padding: 30px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        /* Animation Classes */
        .animate-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-in.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

        .delay-5 {
            transition-delay: 0.5s;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            overflow-y: auto;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }

        .modal-content {
            background-color: var(--white);
            width: 90%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            padding: 40px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.4s ease;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--gold-color);
        }

        .modal-product {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .modal-product-image {
            position: relative;
        }

        .modal-product-image img {
            width: 100%;
            height: auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .modal-product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--gold-color);
            color: var(--primary-color);
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .modal-product-info h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
        }

        .modal-product-category {
            display: inline-block;
            color: var(--gold-color);
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .modal-product-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .modal-product-description {
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .modal-product-meta {
            margin-bottom: 30px;
        }

        .modal-product-meta p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .modal-product-meta i {
            margin-right: 10px;
            color: var(--gold-color);
        }

        .modal-product-actions {
            display: flex;
            gap: 15px;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            border: 1px solid var(--lighter-color);
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            background-color: var(--lighter-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .quantity-btn:hover {
            background-color: var(--light-color);
        }

        .quantity-input {
            width: 60px;
            height: 40px;
            text-align: center;
            border: none;
            border-left: 1px solid var(--lighter-color);
            border-right: 1px solid var(--lighter-color);
            font-size: 1rem;
        }

        @media (max-width: 768px) {
            .modal-product {
                grid-template-columns: 1fr;
            }
            
            .modal-content {
                padding: 30px;
            }
        }

        /* Shopping Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100vh;
            background-color: var(--white);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 9998;
            transition: right 0.4s ease;
            overflow-y: auto;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            padding: 20px;
            border-bottom: 1px solid var(--lighter-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-header h3 {
            margin-bottom: 0;
            font-size: 1.3rem;
        }

        .close-cart {
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-cart:hover {
            color: var(--gold-color);
        }

        .cart-items {
            padding: 20px;
        }

        .cart-item {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--lighter-color);
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            margin-right: 15px;
        }

        .cart-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-size: 1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .cart-item-price {
            font-size: 0.9rem;
            color: var(--accent-color);
            margin-bottom: 5px;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
        }

        .cart-item-quantity button {
            width: 25px;
            height: 25px;
            background-color: var(--lighter-color);
            border: none;
            cursor: pointer;
        }

        .cart-item-quantity input {
            width: 40px;
            height: 25px;
            text-align: center;
            border: none;
            border-top: 1px solid var(--lighter-color);
            border-bottom: 1px solid var(--lighter-color);
        }

        .remove-item {
            color: var(--light-color);
            font-size: 1.2rem;
            margin-left: 15px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .remove-item:hover {
            color: var(--accent-color);
        }

        .cart-footer {
            padding: 20px;
            border-top: 1px solid var(--lighter-color);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            font-size: 1.1rem;
            font-weight: 600;
        }

        .cart-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cart-buttons .btn {
            width: 100%;
            text-align: center;
        }

        .empty-cart {
            text-align: center;
            padding: 50px 20px;
        }

        .empty-cart i {
            font-size: 3rem;
            color: var(--light-color);
            margin-bottom: 20px;
        }

        .empty-cart p {
            margin-bottom: 20px;
        }

        @media (max-width: 576px) {
            .cart-sidebar {
                width: 100%;
            }
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9997;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }