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

        :root {
            --gold: #D4AF37;
            --accent: #FF9500;
            --dark: #1a1a1a;
            --light: #fafafa;
            --cream: #FAF6F1;
            --kraft: #F0E6D8;
            --text: #333;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-image: url('background.jpg');
            background-attachment: fixed;
            background-size: auto;
            background-position: top center;
            background-repeat: repeat;
        }

        img { max-width: 100%; height: auto; display: block; }
        a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
        a:hover { color: var(--accent); }
        h1, h2, h3 {
            font-family: 'Lora', serif;
            text-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        /* ===== HERO ===== */
        .hero {
            background-image: url('background.jpg');
            background-attachment: fixed;
            background-size: auto;
            background-position: top center;
            background-repeat: repeat;
            padding: 3rem 1.5rem 5rem;
            text-align: center;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 100%;
        }

        .logo-container {
            max-width: 850px;
            width: 100%;
            margin: 0 auto;
            animation: slideDown 0.8s ease-out;
            position: relative;
            z-index: 2;
        }

        .logo-container img {
            width: 100%;
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
        }

        .hero-text {
            margin-top: 3rem;
            animation: fadeIn 0.8s ease-out 0.3s backwards;
            position: relative;
            z-index: 2;
            background: transparent;
            padding: 1rem 0;
            max-width: 650px;
        }

        .subtitle {
            font-size: 1.5rem;
            color: var(--accent);
            font-style: italic;
            margin-bottom: 0;
            font-weight: 400;
            letter-spacing: 0.5px;
            font-family: 'Lora', serif;
        }

        .scroll-hint {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.9rem;
            color: var(--gold);
            animation: bounce 2s infinite;
            z-index: 2;
            font-weight: 600;
            opacity: 0.9;
        }

        /* ===== PARALLAX SECTION ===== */
        .parallax-section {
            position: relative;
            height: 700px;
            overflow: hidden;
            background: white;
            width: 100%;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: url('background.jpg') center/auto;
            background-attachment: fixed;
            z-index: 1;
            filter: brightness(0.6);
        }

        .parallax-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .parallax-content h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .parallax-content p {
            font-size: 1.2rem;
            max-width: 900px;
            text-shadow: 0 1px 5px rgba(0,0,0,0.3);
            line-height: 1.8;
        }

        /* ===== SECTIONS ===== */
        .gallery-section, .collection-section, .social-section, .contact-section {
            width: 100%;
        }

        .gallery-section {
            padding: 4rem 1.5rem;
            background: var(--cream);
        }

        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--accent));
            margin: 1rem auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(8) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(9) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(10) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(11) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(12) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(13) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(14) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(15) { grid-column: span 1; grid-row: span 1; }
        .gallery-item:nth-child(16) { grid-column: span 1; grid-row: span 1; }

        .gallery-item {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            aspect-ratio: 1;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .gallery-item:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 32px rgba(212,175,55,0.25);
        }

        .gallery-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #D4AF37, #FF9500);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .gallery-text {
            display: none;
        }

        /* ===== COLLECTION ===== */
        .collection-section {
            padding: 4rem 1.5rem;
            background: var(--kraft);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 2.5rem;
        }

        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            text-align: center;
            border-top: 4px solid var(--gold);
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
            border-top-color: var(--accent);
        }

        .product-icon {
            font-size: 4rem;
            padding: 2rem 1.5rem;
            background: linear-gradient(135deg, rgba(240, 230, 216, 0.5), rgba(240, 230, 216, 0.3));
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 140px;
        }

        .product-card h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin: 1.5rem 1.5rem 0.8rem;
            font-weight: 600;
        }

        .product-card p {
            font-size: 0.95rem;
            color: #888;
            margin: 0 1.5rem 1.5rem;
            line-height: 1.6;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== SOCIAL SECTION ===== */
        .social-section {
            padding: 4rem 1.5rem;
            background: var(--cream);
            text-align: center;
        }

        .social-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .social-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--gold), var(--accent));
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(212,175,55,0.2);
            font-size: 0.95rem;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(212,175,55,0.3);
        }

        .social-btn i {
            font-size: 1.3rem;
        }

        .social-btn.instagram-btn {
            background: linear-gradient(135deg, #FD1D1D, #833AB4);
            box-shadow: 0 4px 12px rgba(253, 29, 29, 0.3);
        }

        .social-btn.instagram-btn:hover {
            box-shadow: 0 6px 20px rgba(253, 29, 29, 0.4);
        }

        .social-btn.facebook-btn {
            background: #1877F2;
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
        }

        .social-btn.facebook-btn:hover {
            box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
        }

        /* ===== CONTACT ===== */
        .contact-section {
            padding: 4rem 1.5rem;
            background: linear-gradient(135deg, var(--dark), #2a2a2a);
            color: white;
            text-align: center;
        }

        .contact-section .section-title {
            color: var(--gold);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 8px;
            border: 1px solid rgba(212,175,55,0.2);
        }

        .contact-item strong {
            color: var(--gold);
            font-size: 1.1rem;
            display: block;
            margin-bottom: 1rem;
        }

        .contact-item strong i {
            font-size: 1.3rem;
            margin-right: 0.5rem;
        }

        .contact-item a {
            color: #e0e0e0;
        }

        .contact-item a:hover {
            color: var(--gold);
        }

        .contact-item a i {
            margin-right: 0.4rem;
        }

        .email-link {
            cursor: pointer;
            font-weight: 600;
            color: #e0e0e0;
            transition: color 0.3s;
        }

        .email-link:hover {
            color: var(--gold);
        }

        .email-link i {
            margin-right: 0.4rem;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #0f0f0f;
            color: #999;
            text-align: center;
            padding: 2rem;
            font-size: 0.85rem;
            width: 100%;
        }

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

        /* ===== STICKY SOCIAL ICONS ===== */
        .sticky-social {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .social-icon-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 55px;
            height: 55px;
            color: #666;
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.4s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .social-icon-btn:hover {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 6px 16px rgba(212, 175, 55, 0.15);
            transform: translateY(-3px);
        }

        .social-icon-btn.instagram {
            color: #C32AA3;
        }

        .social-icon-btn.instagram:hover {
            background: rgba(195, 42, 163, 0.08);
        }

        .social-icon-btn.facebook {
            color: #1877F2;
        }

        .social-icon-btn.facebook:hover {
            background: rgba(24, 119, 242, 0.08);
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== LIGHTBOX MODAL ===== */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            animation: fadeIn 0.3s ease;
            overflow: auto;
            padding: 2rem 1rem;
        }

        .lightbox.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90vw;
            max-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 85vh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
        }

        .lightbox-close {
            position: fixed;
            top: 1.5rem;
            right: 2rem;
            color: white;
            font-size: 2.5rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10000;
            line-height: 1;
        }

        .lightbox-close:hover {
            color: var(--gold);
            transform: scale(1.2);
        }

        .lightbox-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2.5rem;
            color: white;
            cursor: pointer;
            z-index: 10000;
            transition: all 0.3s;
            user-select: none;
            padding: 1rem;
        }

        .lightbox-nav:hover {
            color: var(--gold);
            transform: translateY(-50%) scale(1.3);
        }

        .lightbox-prev {
            left: 1rem;
        }

        .lightbox-next {
            right: 1rem;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero { min-height: 90vh; padding: 2rem 1rem; }
            .logo-container { max-width: 350px; }
            .hero-text { padding: 1rem; margin-top: 2rem; }
            .subtitle { font-size: 1.2rem; line-height: 1.6; }
            .parallax-content { padding: 2rem 1rem; }
            .parallax-content h2 { font-size: 2rem; }
            .parallax-content p { font-size: 1rem; max-width: 100%; }
            .parallax-section { height: 400px; }
            .section-title { font-size: 1.8rem; }
            .section-inner { max-width: 100%; padding: 0 1rem; }
            .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
            .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
            .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
            .social-buttons { flex-direction: column; }
            .social-btn { width: 100%; justify-content: center; }
            .sticky-social { bottom: 1.5rem; right: 1.5rem; gap: 0.8rem; }
            .social-icon-btn { width: 50px; height: 50px; font-size: 1.3rem; }
            .contact-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            body { font-size: 14px; }
            .hero { min-height: 100vh; padding: 1rem 1rem 2.5rem; }
            .logo-container { max-width: 280px; }
            .hero-text { margin-top: 2rem; padding: 1rem; border-radius: 8px; }
            .subtitle { font-size: 1rem; letter-spacing: 0px; line-height: 1.5; }
            .scroll-hint { font-size: 0.7rem; bottom: 0.5rem; opacity: 1; font-weight: bold; }
            .parallax-section { height: 350px; }
            .parallax-content { padding: 1.5rem 1rem; }
            .parallax-content h2 { font-size: 1.3rem; margin-bottom: 1rem; }
            .parallax-content p { font-size: 0.9rem; line-height: 1.6; }
            .gallery-section, .collection-section, .social-section, .contact-section {
                padding: 2rem 1rem;
            }
            .section-title { font-size: 1.4rem; }
            .section-title::after { width: 60px; height: 2px; }
            .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
            .gallery-item { border-radius: 8px; }
            .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(2) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(7) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(8) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(9) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(10) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(11) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(12) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(13) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(14) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(15) { grid-column: span 1; grid-row: span 1; }
            .gallery-item:nth-child(16) { grid-column: span 1; grid-row: span 1; }
            .product-grid { grid-template-columns: 1fr; gap: 1rem; }
            .product-card h3 { font-size: 1.1rem; margin: 0.8rem 1rem 0.4rem; }
            .product-card p { font-size: 0.85rem; margin: 0 1rem 1rem; }
            .product-icon { font-size: 2.5rem; min-height: 80px; padding: 1.5rem 1rem; }
            .social-buttons { gap: 1rem; }
            .social-btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
            .social-btn i { font-size: 1.1rem; }
            .sticky-social { bottom: 1rem; right: 1rem; gap: 0.6rem; }
            .social-icon-btn { width: 45px; height: 45px; font-size: 1.1rem; }
            .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
            .contact-item { padding: 1.5rem; }
            .contact-item strong { font-size: 1rem; margin-bottom: 0.8rem; }
            .email-link { font-size: 0.9rem; }
            footer { padding: 1.5rem; font-size: 0.8rem; }
        }

        @media (max-width: 360px) {
            .hero { min-height: 100vh; padding: 1rem 1rem 2rem; }
