:root {
      --gold: #c9a84c;
      --gold-light: #e2c97e;
      --gold-pale: #f5ead8;
      --dark: #1a1208;
      --dark-2: #2c1f0e;
      --parchment: #faf3e0;
      --parchment-2: #f0e6c8;
      --ink: #3b2a14;
      --text: #4a3520;
      --text-light: #7a6040;
      --shadow: rgba(26, 18, 8, 0.18);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background: var(--parchment); color: var(--text); font-family: 'Raleway', sans-serif; font-weight: 300; overflow-x: hidden; }

    /* TEXTURE OVERLAY */
    body::before {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 0;
    }

    /* NAVBAR */
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); border-bottom: 1px solid var(--gold); padding: 0 3rem; display: flex; align-items: center; height: 72px; box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45); }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; min-width: 0; }
    .nav-logo-text { display: flex; flex-direction: column; min-width: 0; }
    .nav-logo-text .title { font-family: 'Cinzel', serif; font-size: 18px; color: var(--gold-light); letter-spacing: 3px; line-height: 1; white-space: nowrap; }
    .nav-logo-text .subtitle { font-family: 'Cormorant Garamond', serif; font-size: 10px; color: rgba(201, 168, 76, 0.6); letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; white-space: nowrap; }
    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; margin-left: auto; }
    .nav-links>li { position: relative; }
    .nav-links>li>a { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2.5px; color: rgba(229, 210, 170, 0.85); text-decoration: none; text-transform: uppercase; transition: color 0.3s; padding-bottom: 4px; }
    .nav-links>li>a:hover, .nav-links>li>a.active { color: var(--gold-light); }
    .nav-links>li>a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
    .nav-links>li>a:hover::after { width: 100%; }
    .nav-toggle { display: none; position: relative; width: 26px; height: 18px; background: none; border: none; padding: 0; cursor: pointer; flex-shrink: 0; z-index: 1001; }
    .nav-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--gold-light); transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease; }
    .nav-toggle span:nth-child(1) { top: 0; }
    .nav-toggle span:nth-child(2) { top: 8px; }
    .nav-toggle span:nth-child(3) { top: 16px; }
    .nav-toggle.active span:nth-child(1) { top: 8px; transform: rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

    /* HERO */
    .hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 2rem; background: radial-gradient(ellipse at 30% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 70% 60%, rgba(201, 168, 76, 0.06) 0%, transparent 55%), linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 40%, #1e1508 100%); overflow: hidden; }
    .hero-letters { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .hero-letters span { position: absolute; font-family: 'Cormorant Garamond', serif; font-size: clamp(80px, 12vw, 160px); color: rgba(201, 168, 76, 0.04); user-select: none; line-height: 1; }
    .hero-letters span:nth-child(1) { top: 5%; left: 3%; font-size: clamp(60px, 8vw, 120px); }
    .hero-letters span:nth-child(2) { top: 10%; right: 5%; }
    .hero-letters span:nth-child(3) { bottom: 15%; left: 8%; }
    .hero-letters span:nth-child(4) { bottom: 8%; right: 3%; font-size: clamp(50px, 7vw, 100px); }
    .hero-letters span:nth-child(5) { top: 40%; left: 0%; opacity: 0.025; font-size: clamp(100px, 18vw, 220px); }
    .hero-content { position: relative; z-index: 2; animation: fadeUp 1.2s ease both; width: 100%; }
    .hero-badge { display: inline-block; font-family: 'Cormorant Garamond', serif; font-size: 13px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201, 168, 76, 0.4); padding: 6px 20px; margin-bottom: 2rem; max-width: 100%; }
    .hero h1 { font-family: 'Cinzel', serif; font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 400; letter-spacing: 6px; color: var(--parchment); line-height: 1.1; margin-bottom: 0.3em; }
    .hero h1 em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--gold-light); font-size: 1.1em; }
    .hero-divider { display: flex; align-items: center; gap: 1rem; justify-content: center; margin: 2rem 0; }
    .hero-divider::before, .hero-divider::after { content: ''; flex: 1; max-width: 120px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
    .hero-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
    .hero-divider-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }
    .hero-desc { font-family: 'Cormorant Garamond', serif; font-size: clamp(1rem, 2.5vw, 1.35rem); font-style: italic; color: rgba(240, 230, 200, 0.75); max-width: 620px; margin: 0 auto 3rem; line-height: 1.8; }
    .hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    
    .btn-primary { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--dark); background: linear-gradient(135deg, var(--gold-light), var(--gold)); border: none; padding: 14px 36px; cursor: pointer; text-decoration: none; transition: all 0.3s; display: inline-block; }
    .btn-primary:hover { background: linear-gradient(135deg, #f0d88a, var(--gold-light)); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35); }
    .btn-secondary { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); background: transparent; border: 1px solid rgba(201, 168, 76, 0.5); padding: 14px 36px; cursor: pointer; text-decoration: none; transition: all 0.3s; display: inline-block; }
    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); background: rgba(201, 168, 76, 0.06); }
    .scroll-hint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(201, 168, 76, 0.5); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; animation: pulse 2.5s ease infinite; }
    .scroll-hint::after { content: ''; width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent); }

    /* INTRO */
    .intro { background: var(--parchment); padding: 7rem 2rem; text-align: center; position: relative; }
    .intro::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .section-label { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
    .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--dark); line-height: 1.2; margin-bottom: 1.5rem; }
    .section-title em { font-style: italic; color: var(--gold); }
    .intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; max-width: 1000px; margin: 4rem auto 0; }
    .intro-card { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
    .intro-icon { width: 70px; height: 70px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--gold); background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), transparent); }
    .intro-card h3 { font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); }
    .intro-card p { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; line-height: 1.7; color: var(--text-light); font-style: italic; }

    /* CATALOGUE */
    .catalogue { background: var(--parchment-2); padding: 7rem 2rem; position: relative; }
    .catalogue::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .catalogue-header { text-align: center; margin-bottom: 5rem; }
    .banner-available { 
    display: flex !important; 
    flex-direction: row !important; /* Force l'icône et le texte CÔTE À CÔTE */
    align-items: center !important; /* Aligne l'icône parfaitement à la hauteur du texte */
    justify-content: center !important;
    
    width: fit-content !important; /* Empêche le pavé noir d'aller jusqu'au bout */
    max-width: 90% !important; /* Reste propre sur téléphone */
    margin: 1.5rem auto !important; /* Centre la bannière dans la page */
    gap: 0.8rem; /* Espace entre le globe et le texte */
    
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); 
    border: 1px solid rgba(201, 168, 76, 0.4); 
    border-top: 3px solid var(--gold); 
    padding: 0.8rem 1.5rem; 
    text-align: left; 
}

.banner-available-icon { 
    font-size: 22px; 
    flex-shrink: 0; 
    line-height: 1;
}

.banner-available-text { 
    font-family: 'Cormorant Garamond', serif; 
    font-size: 1rem; 
    font-style: italic; 
    color: rgba(240, 230, 200, 0.85); 
    margin: 0; 
    line-height: 1.4; 
}
.banner-custom { 
    display: flex !important; 
    flex-direction: row !important; /* Force l'icône à SE PLACER À CÔTÉ du bloc texte */
    align-items: flex-start !important; /* Garde l'icône alignée en haut du titre */
    
    width: fit-content !important; /* La boîte s'arrête là où le texte finit */
    margin: 0 auto 2.5rem auto !important; /* Centre la bannière dans la page */
    gap: 1.2rem; /* Espacement entre l'icône stylo et le texte */
    
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); 
    border: 1px solid rgba(201, 168, 76, 0.35); 
    border-left: 4px solid var(--gold); 
    padding: 1.2rem 1.8rem; 
}

.banner-custom-icon { 
    font-size: 28px; 
    flex-shrink: 0 !important; /* L'icône conserve sa taille sans être écrasée */
    line-height: 1;
    margin-top: 2px; /* Légère retouche pour bien l'aligner avec le titre */
}
    .banner-custom-label { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
    .banner-custom-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: rgba(240, 230, 200, 0.82); line-height: 1.6; margin: 0; }
    .banner-custom-link { color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(201, 168, 76, 0.4); display: inline-block; }
    .cat-section { max-width: 1200px; margin: 0 auto 6rem; }
    .cat-section:last-child { margin-bottom: 0; }
    .cat-title-row { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; }
    .cat-title-row::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
    .cat-title { font-family: 'Cinzel', serif; font-size: clamp(1rem, 2.5vw, 1.3rem); letter-spacing: 3px; text-transform: uppercase; color: var(--dark); white-space: nowrap; }
    .cat-title span { display: inline-block; width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); margin-right: 12px; }
    .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; }
    .product-card { background: var(--parchment); border: 1px solid rgba(201, 168, 76, 0.2); transition: all 0.35s ease; cursor: pointer; overflow: hidden; position: relative; }
    .product-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 35px rgba(26, 18, 8, 0.15); }
    .product-img { width: 100%; height: auto; aspect-ratio: 988 / 1049; background: linear-gradient(135deg, var(--dark-2), var(--dark)); display: flex; align-items: center; justify-content: center; font-size: 52px; position: relative; overflow: hidden; }
    .product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .product-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(201, 168, 76, 0.12), transparent 60%); }
    .product-badge { position: absolute; top: 12px; right: 12px; font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); background: var(--gold); padding: 4px 10px; }
    .product-body { padding: 1.2rem 1.4rem 1.4rem; }
    .product-name { font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 1.5px; color: var(--dark); margin-bottom: 0.5rem; text-transform: uppercase; }
    .product-desc { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.4rem; }
    .product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--gold); font-weight: 600; }
    .product-action { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: color 0.2s; }
    .product-action:hover { color: var(--gold); }

    /* BANNER */
    .banner { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); padding: 5rem 2rem; text-align: center; position: relative; overflow: hidden; }
    .banner::before, .banner::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); width: 80%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
    .banner::before { top: 0; } .banner::after { bottom: 0; }
    .banner h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem, 4vw, 2.8rem); font-style: italic; color: var(--parchment); margin-bottom: 1rem; }
    .banner p { font-family: 'Raleway', sans-serif; font-size: 0.9rem; letter-spacing: 1.5px; color: rgba(201, 168, 76, 0.7); max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.8; }
    .sofer-container { max-width: 900px; margin-left: auto !important; margin-right: auto !important; text-align: center; }
    .sofer-flex { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; margin-bottom: 30px; }
    .sofer-text { flex: 1; min-width: 280px; text-align: left; }
    .sofer-image { flex: 1; min-width: 280px; text-align: center; }
    .sofer-image img { max-width: 50%; height: auto; border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); }

    /* BTN WHATSAPP */
    .btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--dark); background: linear-gradient(135deg, #25d366, #128c7e); border: none; padding: 14px 36px; cursor: pointer; text-decoration: none; transition: all 0.3s; }
    .btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }
    .wa-icon { width: 20px; height: 20px; flex-shrink: 0; }
    .footer-wa-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Raleway', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(201,168,76,0.5); text-decoration: none; transition: color 0.2s; }
    .footer-wa-link:hover { color: #25d366; }
    .footer-wa-icon { width: 16px; height: 16px; }

    /* MODAL */
    .modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,6,2,0.85); z-index: 2000; overflow-y: auto; padding: 80px 1rem 2rem; }
    .modal-overlay.active { display: block; }
    .modal-box { background: var(--parchment); max-width: 1100px; margin: 0 auto; position: relative; border: 1px solid var(--gold); }
    .modal-close { position: absolute; top: 14px; right: 18px; font-size: 24px; cursor: pointer; color: var(--text-light); background: none; border: none; line-height: 1; z-index: 20; transition: color 0.2s; }
    .modal-close:hover { color: var(--gold); }
    .modal-inner { display: grid; grid-template-columns: 1fr 380px; gap: 0; min-height: 500px; }
    .modal-left { display: flex; flex-direction: column; border-right: 1px solid rgba(201,168,76,0.2); }
    .modal-gallery { background: transparent; position: relative; overflow: hidden; cursor: zoom-in; }
    .modal-gallery.zoomed { cursor: zoom-out; }
    .modal-gallery img { width: 100%; height: 420px; object-fit: contain; display: block; transition: transform 0.3s ease; transform-origin: center center; }
    .modal-gallery.zoomed img { transform: scale(2.2); }
    .modal-gallery-placeholder { width: 100%; height: 420px; display: flex; align-items: center; justify-content: center; font-size: 80px; background: var(--dark-2); }
    .zoom-hint { position: absolute; bottom: 10px; right: 12px; font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 1.5px; color: rgba(201,168,76,0.7); background: rgba(10,6,2,0.55); padding: 4px 8px; pointer-events: none; }
    .modal-thumbs { display: flex; gap: 8px; padding: 10px 12px; background: transparent; flex-wrap: wrap; }
    .modal-thumb { width: 62px; height: 62px; object-fit: cover; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; opacity: 0.75; }
    .modal-thumb:hover { opacity: 1; }
    .modal-thumb.active { border-color: var(--gold); opacity: 1; }
    .modal-product-info { padding: 1.6rem 2rem; border-top: 1px solid rgba(201,168,76,0.2); }
    .modal-category { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
    .modal-title { font-family: 'Cinzel', serif; font-size: 1.25rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); line-height: 1.3; margin-bottom: 10px; }
    .modal-divider { height: 1px; background: linear-gradient(90deg, var(--gold), transparent); margin-bottom: 10px; }
    .modal-desc { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-style: italic; color: var(--text-light); line-height: 1.7; }
    .modal-right { display: flex; flex-direction: column; background: var(--parchment-2); }
    .modal-edu-area { flex: 1; padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; overflow-y: auto; }
    .modal-edu { background: var(--parchment); border-left: 3px solid var(--gold); padding: 1rem 1.2rem; }
    .modal-hala { background: var(--parchment); border-left: 3px solid #8b3a3a; padding: 1rem 1.2rem; }
    .modal-edu-title { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
    .modal-hala-title { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: #8b3a3a; margin-bottom: 6px; }
    .modal-edu p, .modal-hala p { font-family: 'Cormorant Garamond', serif; font-size: 0.93rem; line-height: 1.7; color: var(--text); }
    .modal-order-area { padding: 1.4rem 1.5rem; border-top: 1px solid rgba(201,168,76,0.25); display: flex; flex-direction: column; gap: 1rem; }
    .modal-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); font-weight: 600; }
    .modal-qty-row { display: flex; align-items: center; gap: 12px; }
    .modal-qty-label { font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }
    .qty-control { display: flex; align-items: center; border: 1px solid var(--gold); }
    .qty-btn { width: 32px; height: 32px; background: none; border: none; cursor: pointer; font-size: 18px; color: var(--gold); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .qty-btn:hover { background: rgba(201,168,76,0.12); }
    .qty-input { width: 44px; height: 32px; border: none; border-left: 1px solid var(--gold); border-right: 1px solid var(--gold); text-align: center; font-family: 'Cinzel', serif; font-size: 14px; color: var(--dark); background: var(--parchment); }
    .qty-input:focus { outline: none; }

    /* LIGHTBOX */
    .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 3000; align-items: center; justify-content: center; cursor: zoom-out; }
    .lightbox.active { display: flex; }
    .lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; box-shadow: 0 0 60px rgba(0,0,0,0.8); }
    .lightbox-close { position: absolute; top: 20px; right: 28px; font-size: 32px; color: rgba(201,168,76,0.8); cursor: pointer; background: none; border: none; transition: color 0.2s; }
    .lightbox-close:hover { color: var(--gold); }

    /* FOOTER */
    footer { background: var(--dark); padding: 3.5rem 2rem; text-align: center; border-top: 1px solid rgba(201, 168, 76, 0.3); }
    .footer-logo { font-family: 'Cinzel', serif; font-size: 22px; letter-spacing: 5px; color: var(--gold-light); margin-bottom: 1rem; }
    .footer-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; color: rgba(201, 168, 76, 0.750); font-size: 14px; margin-bottom: 2rem; }
    .footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; list-style: none; margin-bottom: 2rem; }
    .footer-links a { font-family: 'Raleway', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(201, 168, 76, 0.750); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy { font-size: 11px; color: rgba(201, 168, 76, 0.5); letter-spacing: 1px; }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      nav { padding: 0 1.2rem; }
      .nav-toggle { display: block; margin-left: auto; }
      .nav-links { position: fixed; top: 72px; left: 0; right: 0; margin-left: 0; flex-direction: column; align-items: stretch; gap: 0; max-height: 0; opacity: 0; overflow: hidden; pointer-events: none; background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%); border-bottom: 1px solid var(--gold); box-shadow: 0 16px 30px rgba(0, 0, 0, 0.45); transition: max-height 0.35s ease, opacity 0.3s ease; z-index: 999; }
      .nav-links.active { max-height: 400px; opacity: 1; pointer-events: auto; padding: 0.4rem 0 1rem; }
      .nav-links > li { width: 100%; }
      .nav-links > li > a { display: block; padding: 14px 2rem; font-size: 12px; letter-spacing: 2px; border-bottom: 1px solid rgba(201, 168, 76, 0.1); }
      .nav-links > li > a::after { display: none; }
      .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
      .product-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
      .intro, .catalogue { padding: 4.5rem 1.2rem; }
      .banner { padding: 3.5rem 1.2rem; }
      .sofer-flex { gap: 1.5rem; }
      .sofer-image img { max-width: 70%; }
      .modal-inner { grid-template-columns: 1fr; }
      .modal-left { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
      .modal-gallery img, .modal-gallery-placeholder { height: 260px; }
      .modal-right { background: var(--parchment); }
    }

    @media (max-width: 480px) {
      nav { padding: 0 0.9rem; }
      .nav-logo { gap: 8px; }
      .nav-logo img { height: 38px !important; }
      .nav-logo-text .title { font-size: 15px; letter-spacing: 2px; }
      .nav-logo-text .subtitle { font-size: 8px; letter-spacing: 1px; }
      .hero { padding: 0 1.2rem; }
      .hero-badge { font-size: 11px; letter-spacing: 2.5px; padding: 6px 14px; white-space: normal; line-height: 1.5; }
      .hero h1 { letter-spacing: 3px; }
      .hero-desc { font-size: 1rem; margin-bottom: 2.2rem; }
      .hero-cta-group { flex-direction: column; width: 100%; }
      .btn-primary, .btn-secondary, .btn-whatsapp { width: 100%; text-align: center; padding: 14px 20px; }
      .intro, .catalogue { padding: 3.5rem 1rem; }
      .intro-icon { width: 56px; height: 56px; font-size: 22px; }
      .catalogue-header { margin-bottom: 3rem; }
      .banner-available { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; padding: 1rem 1.2rem; text-align: left; }
      .banner-available-text { font-size: 0.9rem; }
      .cat-title-row { gap: 1rem; margin-bottom: 1.8rem; }
      .cat-title { font-size: 0.95rem; letter-spacing: 2px; white-space: normal; }
      .banner-custom { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 1.2rem 1.2rem; margin-bottom: 1.8rem; }
      .banner-custom-icon { font-size: 24px; }
      .banner-custom-text { font-size: 0.95rem; }
      .banner-custom-link { white-space: normal; }
      .cat-section { margin-bottom: 3.5rem; }
      .product-grid { gap: 1.1rem; }
      .banner h2 { line-height: 1.35; }
      .sofer-flex { flex-direction: column; gap: 1.8rem; text-align: center; }
      .sofer-text { text-align: center; min-width: 0; width: 100%; }
      .sofer-image { min-width: 0; width: 100%; }
      .sofer-image img { max-width: 85%; }
      .footer-links { gap: 1.1rem 1.4rem; }
      footer { padding: 2.5rem 1.2rem; }
      .modal-overlay { padding: 72px 0.5rem 1.2rem; }
      .modal-product-info, .modal-edu-area, .modal-order-area { padding-left: 1.1rem; padding-right: 1.1rem; }
    }