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

        :root {
            --gold: #C9A96E;
            --gold-light: #E8D5B5;
            --gold-dark: #A68B5B;
            --cream: #FDF8F3;
            --dark: #1A1A1A;
            --gray: #666666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: var(--dark);
            background: var(--cream);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s ease;
            background: transparent;
        }

        nav.scrolled {
            background: rgba(253, 248, 243, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 30px rgba(0,0,0,0.08);
            padding: 15px 60px;
        }

        .logo {
            font-family: 'Cormorant Garamond', serif;
            font-size: 28px;
            font-weight: 600;
            letter-spacing: 4px;
            color: var(--gold);
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 45px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-right {
            display: flex;
            align-items: center;
        }

        /* Language Switcher */
        .lang-switcher {
            position: relative;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px 12px;
            border: 1px solid var(--gold);
            border-radius: 4px;
            transition: all 0.3s;
            margin-left: 20px;
        }
        .lang-switcher:hover {
            background: var(--gold);
            color: white;
        }
        .lang-switcher:hover .lang-text {
            color: white;
        }
        .lang-text {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            color: var(--gold);
            transition: color 0.3s;
        }
        .lang-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid var(--gold);
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            display: none;
            min-width: 120px;
            z-index: 1001;
        }
        .lang-dropdown.show {
            display: block;
        }
        .lang-option {
            padding: 10px 15px;
            font-size: 13px;
            color: var(--dark);
            transition: background 0.3s;
            cursor: pointer;
        }
        .lang-option:hover {
            background: var(--cream);
        }
        .lang-option.active {
            background: var(--gold);
            color: white;
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background: var(--dark);
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translateY(0);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(0);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, var(--cream) 0%, #F5EDE4 50%, var(--cream) 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
            animation: float 15s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(201, 169, 110, 0.1) 0%, transparent 60%);
            animation: float 12s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, -30px) rotate(5deg); }
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            padding: 0 20px;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            letter-spacing: 8px;
            color: var(--gold);
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s 0.3s forwards;
        }

        .hero-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(60px, 15vw, 120px);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 30px;
            opacity: 0;
            background: linear-gradient(135deg, #D4AF37 0%, #C9A96E 25%, #E8D5B5 50%, #C9A96E 75%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s 0.5s forwards;
        }

        .hero-title span {
            background: linear-gradient(135deg, #D4AF37 0%, #C9A96E 25%, #E8D5B5 50%, #C9A96E 75%, #D4AF37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-style: italic;
        }

        .hero-desc {
            font-size: 16px;
            color: var(--gray);
            max-width: 500px;
            margin: 0 auto 50px;
            line-height: 2;
            opacity: 0;
            animation: fadeInUp 1s 0.7s forwards;
        }

        .hero-btn {
            display: inline-block;
            padding: 18px 50px;
            background: var(--gold);
            color: white;
            text-decoration: none;
            font-size: 18px;
            letter-spacing: 3px;
            transition: all 0.4s;
            opacity: 0;
            animation: fadeInUp 1s 0.9s forwards;
        }

        .hero-btn:hover {
            background: var(--gold-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(201, 169, 110, 0.3);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            animation: bounce 2s infinite;
        }

        .scroll-indicator span {
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--gray);
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--gold), transparent);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }

        /* Section Styles */
        section {
            padding: 120px 60px;
        }

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

        .section-label {
            font-family: 'Cormorant Garamond', serif;
            font-size: 14px;
            letter-spacing: 5px;
            color: var(--gold);
            margin-bottom: 20px;
            display: block;
        }

        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 400;
            color: var(--dark);
            margin-bottom: 25px;
        }

        .section-line {
            width: 100px;
            height: 1px;
            background: var(--gold);
            margin: 50px auto;
        }

        /* Image Carousel */
        .banner-carousel {
            position: relative;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 60px;
            overflow: hidden;
            border-radius: 4px;
            border: 2px solid var(--gold);
            box-shadow: 0 8px 40px rgba(201, 169, 110, 0.15);
            cursor: pointer;
            aspect-ratio: 16 / 6;
        }

        .carousel-track {
            display: flex;
            transition: opacity 0.5s ease;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            display: none;
            transition: opacity 0.5s ease;
            background: var(--cream);
        }

        .carousel-slide.active {
            display: block;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-indicators span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: 1px solid var(--gold);
            transition: all 0.3s;
            cursor: pointer;
        }

        .carousel-indicators span.active {
            background: var(--gold);
            border-color: var(--gold);
        }

        .carousel-pause-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: background 0.3s;
        }

        .carousel-pause-icon:hover {
            background: rgba(0,0,0,0.6);
        }

        .carousel-pause-icon svg {
            width: 16px;
            height: 16px;
            fill: white;
        }

        .carousel-pause-icon.paused .play-icon {
            display: block;
        }

        .carousel-pause-icon.paused .pause-icon {
            display: none;
        }

        .carousel-pause-icon .play-icon {
            display: none;
        }

        .carousel-pause-icon .pause-icon {
            display: block;
        }

        .carousel-title-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
        }

        .carousel-label {
            display: inline-block;
            font-family: 'Cormorant Garamond', 'Noto Sans SC', serif;
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 4px;
            color: var(--gold);
            padding: 4px 18px;
            border: none;
            background: transparent;
        }

        @media (max-width: 768px) {
            .carousel-title-wrap {
                max-width: 100%;
                padding: 0 10px 0;
            }
            .carousel-label {
                font-size: 14px;
                letter-spacing: 2px;
                padding: 3px 12px;
            }
        }

        /* Lightbox */
        .lightbox-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .lightbox-overlay.show {
            display: flex;
        }

        .lightbox-overlay img {
            max-width: 90%;
            max-height: 80vh;
            object-fit: contain;
            border: 2px solid var(--gold);
            box-shadow: 0 0 60px rgba(201, 169, 110, 0.3);
        }

        .lightbox-close {
            position: absolute;
            top: 25px;
            right: 35px;
            width: 44px;
            height: 44px;
            cursor: pointer;
            z-index: 10000;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .lightbox-close:hover {
            background: rgba(255,255,255,0.3);
        }

        .lightbox-close::before,
        .lightbox-close::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: white;
        }

        .lightbox-close::before { transform: rotate(45deg); }
        .lightbox-close::after { transform: rotate(-45deg); }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            cursor: pointer;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
            border: none;
        }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.3);
        }

        .lightbox-prev { left: 25px; }
        .lightbox-next { right: 25px; }

        .lightbox-nav::before {
            content: '';
            width: 12px;
            height: 12px;
            border-top: 2px solid white;
            border-right: 2px solid white;
        }

        .lightbox-prev::before { transform: rotate(-135deg); }
        .lightbox-next::before { transform: rotate(45deg); }

        .lightbox-counter {
            position: absolute;
            bottom: 30px;
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            letter-spacing: 2px;
        }

        @media (max-width: 768px) {
            .lightbox-overlay img {
                max-width: 95%;
                max-height: 70vh;
            }
            .lightbox-close {
                top: 15px;
                right: 15px;
                width: 36px;
                height: 36px;
            }
            .lightbox-nav {
                width: 40px;
                height: 40px;
            }
            .lightbox-prev { left: 10px; }
            .lightbox-next { right: 10px; }
        }

        @media (max-width: 768px) {
            .banner-carousel {
                max-width: 100%;
                border: none;
                border-radius: 0;
                box-shadow: none;
                margin-bottom: 40px;
                aspect-ratio: 16 / 8;
            }
            .carousel-indicators span {
                width: 8px;
                height: 8px;
            }
            .carousel-pause-icon {
                width: 30px;
                height: 30px;
                top: 10px;
                right: 10px;
            }
            .carousel-section {
                padding: 30px 20px 10px !important;
            }
        }

        /* About Section */
        .about {
            background: linear-gradient(180deg, white 0%, var(--cream) 100%);
            padding-bottom: 80px;
        }

        .about .section-header {
            padding-top: 60px;
        }

        .about-layout {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 50px auto 0;
            align-items: start;
        }

        .about-main {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .about-image-large {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 3px solid var(--gold);
            box-shadow: 0 20px 60px rgba(201, 169, 110, 0.4), inset 0 0 20px rgba(201, 169, 110, 0.1);
        }

        .about-image-large img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .about-image-large:hover img {
            transform: scale(1.03);
        }

        .about-image-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
        }

        .about-desc-box {
            background: white;
            padding: 30px;
            border-radius: 16px;
            border: 2px solid var(--gold);
            box-shadow: 0 10px 40px rgba(201, 169, 110, 0.25);
            margin-bottom: 30px;
        }

        .about-desc-box p {
            color: var(--gray);
            line-height: 2;
            font-size: 15px;
            margin-bottom: 15px;
        }

        .about-desc-box p:last-child {
            margin-bottom: 0;
        }

        .about-spec {
            display: inline-block;
            margin-top: 18px;
            padding: 8px 22px;
            border: 1px solid var(--gold);
            font-size: 14px;
            font-weight: 500;
            color: var(--gold);
            letter-spacing: 1px;
            background: rgba(201, 169, 110, 0.05);
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .about-feature {
            background: white;
            padding: 25px;
            border-radius: 16px;
            border: 2px solid var(--gold);
            box-shadow: 0 8px 30px rgba(201, 169, 110, 0.25);
            transition: all 0.3s;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .about-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .about-feature-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .about-feature-icon svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .about-feature h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .about-feature p {
            font-size: 13px;
            margin-bottom: 0;
            line-height: 1.6;
            color: var(--gray);
        }

        .about-learn-more {
            display: inline-block;
            margin-top: 12px;
            padding: 10px 30px;
            border: 1px solid var(--gold);
            color: var(--gold);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .about-actions .about-learn-more {
            margin-top: 0;
        }
        .about-learn-more:hover {
            background: var(--gold);
            color: white;
        }

        .about-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .about-buy-now {
            display: inline-block;
            padding: 10px 30px;
            background: var(--gold);
            color: white;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid var(--gold);
        }
        .about-buy-now:hover {
            background: var(--gold-dark);
            border-color: var(--gold-dark);
            color: white;
        }

        /* Products Section */
        .products {
            background: var(--cream);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            overflow: hidden;
            transition: all 0.4s;
            cursor: pointer;
        }

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

        .product-image {
            height: 300px;
            background: linear-gradient(135deg, #F8F4EF 0%, #EDE6DC 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            background: var(--gold);
            opacity: 0.1;
            border-radius: 50%;
            transition: all 0.4s;
        }

        .product-card:hover .product-image::before {
            transform: scale(2);
            opacity: 0.05;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 8px;
        }

        .product-info {
            padding: 30px;
        }

        .product-tag {
            font-size: 11px;
            letter-spacing: 2px;
            color: var(--gold);
            margin-bottom: 10px;
            display: block;
        }

        .product-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .product-desc {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .product-price {
            font-size: 16px;
            color: var(--gold);
            cursor: pointer;
            font-weight: 500;
            transition: color 0.3s;
        }
        .product-price:hover {
            color: var(--gold-dark);
        }

        /* Philosophy Section */
        .philosophy {
            background: var(--dark);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .philosophy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .philosophy-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .philosophy h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 400;
            line-height: 1.4;
            margin-bottom: 40px;
        }

        .philosophy h2 em {
            color: var(--gold);
            font-style: italic;
        }

        .philosophy p {
            font-size: 16px;
            line-height: 2;
            color: rgba(255,255,255,0.7);
            margin-bottom: 20px;
        }

        .philosophy-values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 60px;
        }

        .value-item {
            text-align: center;
        }

        .value-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            border: 1px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .value-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5;
        }

        .value-item h4 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .value-item p {
            font-size: 13px;
            margin-bottom: 0;
        }

        /* Testimonials */
        .testimonials {
            background: white;
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-slider {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .testimonial-card {
            text-align: center;
            padding: 40px 30px;
            background: var(--cream);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-family: 'Cormorant Garamond', serif;
            font-size: 120px;
            color: var(--gold);
            opacity: 0.15;
            position: absolute;
            top: -20px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.9;
            color: var(--gray);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 14px;
            color: var(--dark);
        }

        .testimonial-role {
            font-size: 12px;
            color: var(--gold);
            margin-top: 5px;
        }

        /* Contact Section */
        .contact {
            background: var(--cream);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 32px;
            font-weight: 400;
            margin-bottom: 30px;
        }

        .contact-info p {
            color: var(--gray);
            line-height: 2;
            margin-bottom: 30px;
        }

        .qr-codes {
            display: flex;
            flex-direction: row;
            gap: 30px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .qr-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .qr-item img {
            width: 140px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
            border: 2px solid var(--gold);
        }

        .qr-item p {
            font-size: 13px;
            color: var(--gray);
        }

        .contact-form {
            background: white;
            padding: 50px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #E5E5E5;
            font-family: inherit;
            font-size: 14px;
            transition: border-color 0.3s;
            background: var(--cream);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
        }

        .form-group textarea {
            height: 120px;
            resize: none;
        }

        .form-btn {
            width: 100%;
            padding: 18px;
            background: var(--gold);
            color: white;
            border: none;
            font-family: inherit;
            font-size: 13px;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .form-btn:hover {
            background: var(--gold-dark);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 80px 60px 30px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand .logo {
            display: inline-block;
            margin-bottom: 20px;
            color: var(--gold);
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            line-height: 1.8;
        }

        .footer-qr-row {
            display: flex;
            flex-direction: row;
            gap: 30px;
            margin-top: 25px;
        }
        
        .footer-qr-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        
        .footer-qr-item img {
            width: 120px;
            height: auto;
            border-radius: 10px;
            border: 2px solid var(--gold);
            box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
        }
        
        .footer-qr-item span {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            section {
                padding: 80px 40px;
            }

            nav {
                padding: 20px 30px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .philosophy-values {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 100vh;
                height: auto;
                padding-top: 100px;
                padding-bottom: 60px;
                align-items: flex-start;
            }

            .hero-content {
                padding: 0 15px;
            }

            .hero-subtitle {
                font-size: 14px;
                letter-spacing: 4px;
            }

            nav {
                padding: 15px 20px;
                flex-wrap: wrap;
            }

            .nav-links {
                display: none;
            }

            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(253, 248, 243, 0.98);
                backdrop-filter: blur(20px);
                padding: 20px 30px;
                gap: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .nav-right {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .lang-switcher {
                margin-left: 0;
                margin-right: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .about-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .about-feature {
                padding: 20px;
            }

            .about-image-badge {
                top: 15px;
                right: 15px;
                padding: 8px 15px;
                font-size: 12px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-slider {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .qr-codes {
                flex-wrap: nowrap;
                gap: 15px;
            }

            .qr-item img {
                width: 110px;
            }

            .qr-item p {
                font-size: 11px;
            }

            .footer-qr-row {
                gap: 15px;
            }

            .footer-qr-item img {
                width: 90px;
            }

            .footer-qr-item span {
                font-size: 11px;
            }

            .contact-form {
                padding: 30px;
            }
        }