﻿/* ============================================
   Ø¹Ø·Ø± Ù…Ø§Ù„ | ATRMAL.IR
   Luxury Perfume Shop - Landing Page
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #D4AF37;
  --gold-light: #F5E6CC;
  --gold-dark: #B8860B;
  --gold-gradient: linear-gradient(135deg, #D4AF37, #F5D76E, #B8860B, #D4AF37);
  --gold-gradient-h: linear-gradient(90deg, #D4AF37, #F5D76E, #B8860B, #D4AF37);
  --gold-shimmer: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
  --white: #FFFFFF;
  --off-white: #FDF8F3;
  --cream: #FAF6F0;
  --black: #1A1A1A;
  --text-dark: #2D2D2D;
  --text-gray: #666666;
  --text-light: #999999;
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font: 'Vazirmatn', sans-serif;
}

/* ---- Luxury Floral Gold Border Wrapper ---- */
body {
  font-family: var(--font);
  background: var(--gold-dark);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(212,175,55,0.06) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(212,175,55,0.03) 20px, rgba(212,175,55,0.03) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(212,175,55,0.03) 20px, rgba(212,175,55,0.03) 21px);
  pointer-events: none;
  z-index: -1;
}

.site-wrapper {
  max-width: 1400px;
  margin: 16px auto;
  background: var(--off-white);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 80px rgba(0,0,0,0.08);
}

/* ---- Gold Floating Particles ---- */
@keyframes gpShimmer1 {
  0%, 100% { opacity: calc(var(--gp-op) - 0.2); transform: scale(0.7); filter: brightness(0.6); }
  50% { opacity: calc(var(--gp-op) + 0.2); transform: scale(1.25); filter: brightness(1.4); }
}
@keyframes gpShimmer2 {
  0%, 100% { opacity: calc(var(--gp-op) - 0.15); transform: scale(0.75); filter: brightness(0.7); }
  50% { opacity: calc(var(--gp-op) + 0.15); transform: scale(1.2); filter: brightness(1.3); }
}
@keyframes gpShimmer3 {
  0%, 100% { opacity: calc(var(--gp-op) - 0.1); transform: scale(0.8); filter: brightness(0.8); }
  50% { opacity: calc(var(--gp-op) + 0.1); transform: scale(1.15); filter: brightness(1.2); }
}

.gold-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.gp {
  position: absolute;
  font-size: 10px;
  --gp-op: 0.5;
  line-height: 1;
}

.gp.type-a { color: #D4AF37; text-shadow: 0 0 6px rgba(212,175,55,0.7); }
.gp.type-b { color: #C5A028; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.gp.type-c { color: #B8860B; text-shadow: 0 0 3px rgba(184,134,11,0.4); }

/* Size variants */
.gp.sm { font-size: 7px; }
.gp.md { font-size: 12px; }
.gp.lg { font-size: 16px; text-shadow: 0 0 10px rgba(212,175,55,0.8); }

/* 75 star particles spread across the full page height */
.p1  { top: 1%;  left: 3%;  font-size: 11px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer1 3.2s ease-in-out infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p2  { top: 2%;  left: 15%; font-size: 7px; color: #C5A028; --gp-op: 0.45; animation: gpShimmer2 4.1s ease-in-out 0.3s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p3  { top: 4%;  left: 28%; font-size: 13px; color: #D4AF37; --gp-op: 0.65; animation: gpShimmer1 3.8s ease-in-out 0.7s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p4  { top: 6%;  left: 42%; font-size: 6px; color: #B8860B; --gp-op: 0.3; animation: gpShimmer3 5s ease-in-out 1s infinite; text-shadow: 0 0 3px rgba(184,134,11,0.4); }
.p5  { top: 3%;  left: 55%; font-size: 15px; color: #D4AF37; --gp-op: 0.75; animation: gpShimmer1 2.9s ease-in-out 0.2s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p6  { top: 7%;  left: 68%; font-size: 10px; color: #C5A028; --gp-op: 0.5; animation: gpShimmer2 3.5s ease-in-out 0.5s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p7  { top: 5%;  left: 80%; font-size: 12px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer1 4.2s ease-in-out 0.8s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p8  { top: 8%;  left: 92%; font-size: 7px; color: #C5A028; --gp-op: 0.4; animation: gpShimmer3 4.5s ease-in-out 0.1s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p9  { top: 10%; left: 6%;  font-size: 9px; color: #B8860B; --gp-op: 0.35; animation: gpShimmer2 3.9s ease-in-out 1.2s infinite; text-shadow: 0 0 3px rgba(184,134,11,0.4); }
.p10 { top: 12%; left: 20%; font-size: 16px; color: #D4AF37; --gp-op: 0.8; animation: gpShimmer1 3.1s ease-in-out 0.4s infinite; text-shadow: 0 0 16px rgba(212,175,55,1); }
.p11 { top: 14%; left: 35%; font-size: 7px; color: #C5A028; --gp-op: 0.4; animation: gpShimmer3 4.7s ease-in-out 0.9s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p12 { top: 11%; left: 48%; font-size: 12px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer2 3.6s ease-in-out 0.6s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p13 { top: 16%; left: 60%; font-size: 10px; color: #C5A028; --gp-op: 0.55; animation: gpShimmer1 4s ease-in-out 1.1s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p14 { top: 13%; left: 75%; font-size: 15px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer2 3.4s ease-in-out 0.7s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p15 { top: 18%; left: 88%; font-size: 6px; color: #B8860B; --gp-op: 0.3; animation: gpShimmer3 5.2s ease-in-out 0.2s infinite; text-shadow: 0 0 3px rgba(184,134,11,0.4); }
.p16 { top: 20%; left: 4%;  font-size: 12px; color: #D4AF37; --gp-op: 0.65; animation: gpShimmer1 3.7s ease-in-out 0.5s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p17 { top: 22%; left: 18%; font-size: 9px; color: #C5A028; --gp-op: 0.45; animation: gpShimmer2 4.3s ease-in-out 1.3s infinite; text-shadow: 0 0 5px rgba(197,160,40,0.5); }
.p18 { top: 19%; left: 32%; font-size: 8px; color: #D4AF37; --gp-op: 0.5; animation: gpShimmer3 3.8s ease-in-out 0.8s infinite; text-shadow: 0 0 5px rgba(212,175,55,0.6); }
.p19 { top: 24%; left: 45%; font-size: 14px; color: #C5A028; --gp-op: 0.6; animation: gpShimmer1 3.3s ease-in-out 0.1s infinite; text-shadow: 0 0 10px rgba(197,160,40,0.7); }
.p20 { top: 21%; left: 58%; font-size: 11px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer2 4.6s ease-in-out 0.9s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p21 { top: 26%; left: 72%; font-size: 10px; color: #B8860B; --gp-op: 0.35; animation: gpShimmer3 5.1s ease-in-out 0.3s infinite; text-shadow: 0 0 4px rgba(184,134,11,0.4); }
.p22 { top: 23%; left: 85%; font-size: 7px; color: #C5A028; --gp-op: 0.4; animation: gpShimmer1 4.4s ease-in-out 1.4s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p23 { top: 28%; left: 10%; font-size: 16px; color: #D4AF37; --gp-op: 0.75; animation: gpShimmer2 3s ease-in-out 0.2s infinite; text-shadow: 0 0 16px rgba(212,175,55,1); }
.p24 { top: 30%; left: 25%; font-size: 10px; color: #C5A028; --gp-op: 0.5; animation: gpShimmer1 3.9s ease-in-out 1s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p25 { top: 27%; left: 38%; font-size: 13px; color: #D4AF37; --gp-op: 0.65; animation: gpShimmer3 4.8s ease-in-out 0.6s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p26 { top: 32%; left: 52%; font-size: 6px; color: #B8860B; --gp-op: 0.3; animation: gpShimmer2 5.3s ease-in-out 0.5s infinite; text-shadow: 0 0 3px rgba(184,134,11,0.4); }
.p27 { top: 29%; left: 65%; font-size: 15px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer1 3.5s ease-in-out 0.8s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p28 { top: 34%; left: 78%; font-size: 9px; color: #C5A028; --gp-op: 0.45; animation: gpShimmer2 4.2s ease-in-out 0.1s infinite; text-shadow: 0 0 5px rgba(197,160,40,0.5); }
.p29 { top: 31%; left: 90%; font-size: 12px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer3 3.7s ease-in-out 1.5s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p30 { top: 36%; left: 14%; font-size: 7px; color: #C5A028; --gp-op: 0.4; animation: gpShimmer1 4.9s ease-in-out 0.4s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p31 { top: 38%; left: 30%; font-size: 16px; color: #D4AF37; --gp-op: 0.8; animation: gpShimmer2 3.2s ease-in-out 1.2s infinite; text-shadow: 0 0 18px rgba(212,175,55,1); }
.p32 { top: 35%; left: 42%; font-size: 9px; color: #B8860B; --gp-op: 0.35; animation: gpShimmer3 4s ease-in-out 0.7s infinite; text-shadow: 0 0 4px rgba(184,134,11,0.4); }
.p33 { top: 40%; left: 55%; font-size: 12px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer1 3.6s ease-in-out 0.3s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p34 { top: 37%; left: 68%; font-size: 7px; color: #C5A028; --gp-op: 0.45; animation: gpShimmer2 4.5s ease-in-out 1.1s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p35 { top: 42%; left: 82%; font-size: 14px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer3 3.4s ease-in-out 0.9s infinite; text-shadow: 0 0 12px rgba(212,175,55,0.8); }
.p36 { top: 39%; left: 95%; font-size: 10px; color: #C5A028; --gp-op: 0.5; animation: gpShimmer1 4.7s ease-in-out 0.2s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p37 { top: 44%; left: 5%;  font-size: 13px; color: #D4AF37; --gp-op: 0.65; animation: gpShimmer2 3.8s ease-in-out 0.6s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p38 { top: 46%; left: 20%; font-size: 6px; color: #B8860B; --gp-op: 0.3; animation: gpShimmer3 5.4s ease-in-out 1.3s infinite; text-shadow: 0 0 3px rgba(184,134,11,0.4); }
.p39 { top: 43%; left: 35%; font-size: 15px; color: #D4AF37; --gp-op: 0.75; animation: gpShimmer1 3.3s ease-in-out 0.1s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p40 { top: 48%; left: 48%; font-size: 10px; color: #C5A028; --gp-op: 0.55; animation: gpShimmer2 4.1s ease-in-out 0.8s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p41 { top: 50%; left: 62%; font-size: 12px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer3 3.9s ease-in-out 0.4s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p42 { top: 47%; left: 75%; font-size: 7px; color: #C5A028; --gp-op: 0.4; animation: gpShimmer1 4.6s ease-in-out 1s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p43 { top: 52%; left: 88%; font-size: 15px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer2 3.1s ease-in-out 0.5s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p44 { top: 49%; left: 12%; font-size: 9px; color: #B8860B; --gp-op: 0.35; animation: gpShimmer3 4.3s ease-in-out 0.7s infinite; text-shadow: 0 0 4px rgba(184,134,11,0.4); }
.p45 { top: 54%; left: 28%; font-size: 13px; color: #D4AF37; --gp-op: 0.65; animation: gpShimmer1 3.5s ease-in-out 1.4s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p46 { top: 51%; left: 40%; font-size: 7px; color: #C5A028; --gp-op: 0.45; animation: gpShimmer2 4.8s ease-in-out 0.2s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p47 { top: 56%; left: 55%; font-size: 16px; color: #D4AF37; --gp-op: 0.75; animation: gpShimmer3 3.7s ease-in-out 0.9s infinite; text-shadow: 0 0 16px rgba(212,175,55,1); }
.p48 { top: 53%; left: 68%; font-size: 10px; color: #C5A028; --gp-op: 0.5; animation: gpShimmer1 4.4s ease-in-out 0.3s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p49 { top: 58%; left: 82%; font-size: 12px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer2 3.6s ease-in-out 1.1s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p50 { top: 55%; left: 94%; font-size: 6px; color: #B8860B; --gp-op: 0.3; animation: gpShimmer3 5s ease-in-out 0.6s infinite; text-shadow: 0 0 3px rgba(184,134,11,0.4); }
.p51 { top: 60%; left: 8%;  font-size: 15px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer1 3.4s ease-in-out 0.8s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p52 { top: 62%; left: 22%; font-size: 9px; color: #C5A028; --gp-op: 0.45; animation: gpShimmer2 4.2s ease-in-out 0.1s infinite; text-shadow: 0 0 5px rgba(197,160,40,0.5); }
.p53 { top: 59%; left: 38%; font-size: 13px; color: #D4AF37; --gp-op: 0.65; animation: gpShimmer3 3.8s ease-in-out 1.5s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p54 { top: 64%; left: 50%; font-size: 6px; color: #B8860B; --gp-op: 0.35; animation: gpShimmer1 4.9s ease-in-out 0.4s infinite; text-shadow: 0 0 3px rgba(184,134,11,0.4); }
.p55 { top: 61%; left: 65%; font-size: 16px; color: #D4AF37; --gp-op: 0.75; animation: gpShimmer2 3.2s ease-in-out 0.7s infinite; text-shadow: 0 0 16px rgba(212,175,55,1); }
.p56 { top: 66%; left: 78%; font-size: 10px; color: #C5A028; --gp-op: 0.55; animation: gpShimmer3 4.5s ease-in-out 0.5s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p57 { top: 63%; left: 90%; font-size: 12px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer1 3.7s ease-in-out 1.2s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p58 { top: 68%; left: 15%; font-size: 7px; color: #C5A028; --gp-op: 0.4; animation: gpShimmer2 4.1s ease-in-out 0.9s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p59 { top: 70%; left: 30%; font-size: 15px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer3 3.3s ease-in-out 0.2s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p60 { top: 67%; left: 45%; font-size: 9px; color: #B8860B; --gp-op: 0.35; animation: gpShimmer1 4.6s ease-in-out 0.6s infinite; text-shadow: 0 0 4px rgba(184,134,11,0.4); }
.p61 { top: 72%; left: 58%; font-size: 13px; color: #D4AF37; --gp-op: 0.65; animation: gpShimmer2 3.9s ease-in-out 1.3s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p62 { top: 69%; left: 72%; font-size: 7px; color: #C5A028; --gp-op: 0.45; animation: gpShimmer3 5.1s ease-in-out 0.3s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p63 { top: 74%; left: 85%; font-size: 16px; color: #D4AF37; --gp-op: 0.75; animation: gpShimmer1 3.5s ease-in-out 0.1s infinite; text-shadow: 0 0 16px rgba(212,175,55,1); }
.p64 { top: 71%; left: 96%; font-size: 10px; color: #C5A028; --gp-op: 0.5; animation: gpShimmer2 4.3s ease-in-out 0.8s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p65 { top: 76%; left: 10%; font-size: 12px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer3 3.6s ease-in-out 0.4s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p66 { top: 78%; left: 25%; font-size: 6px; color: #B8860B; --gp-op: 0.3; animation: gpShimmer1 4.7s ease-in-out 1s infinite; text-shadow: 0 0 3px rgba(184,134,11,0.4); }
.p67 { top: 75%; left: 40%; font-size: 15px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer2 3.4s ease-in-out 0.5s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p68 { top: 80%; left: 52%; font-size: 10px; color: #C5A028; --gp-op: 0.55; animation: gpShimmer3 4.2s ease-in-out 1.4s infinite; text-shadow: 0 0 6px rgba(197,160,40,0.6); }
.p69 { top: 77%; left: 66%; font-size: 13px; color: #D4AF37; --gp-op: 0.65; animation: gpShimmer1 3.8s ease-in-out 0.7s infinite; text-shadow: 0 0 10px rgba(212,175,55,0.8); }
.p70 { top: 82%; left: 80%; font-size: 7px; color: #C5A028; --gp-op: 0.4; animation: gpShimmer2 4.4s ease-in-out 0.2s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p71 { top: 84%; left: 92%; font-size: 15px; color: #D4AF37; --gp-op: 0.75; animation: gpShimmer3 3.1s ease-in-out 0.9s infinite; text-shadow: 0 0 14px rgba(212,175,55,0.9); }
.p72 { top: 86%; left: 18%; font-size: 9px; color: #B8860B; --gp-op: 0.35; animation: gpShimmer1 4.8s ease-in-out 0.3s infinite; text-shadow: 0 0 4px rgba(184,134,11,0.4); }
.p73 { top: 88%; left: 35%; font-size: 12px; color: #D4AF37; --gp-op: 0.6; animation: gpShimmer2 3.7s ease-in-out 1.1s infinite; text-shadow: 0 0 8px rgba(212,175,55,0.7); }
.p74 { top: 90%; left: 48%; font-size: 7px; color: #C5A028; --gp-op: 0.45; animation: gpShimmer3 4.6s ease-in-out 0.6s infinite; text-shadow: 0 0 4px rgba(197,160,40,0.5); }
.p75 { top: 92%; left: 62%; font-size: 16px; color: #D4AF37; --gp-op: 0.7; animation: gpShimmer1 3.9s ease-in-out 0.1s infinite; text-shadow: 0 0 16px rgba(212,175,55,1); }


/* ---- Floral border pattern (top & bottom) ---- */
.site-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 2px,
    transparent 2px, transparent 4px,
    var(--gold-dark) 4px, var(--gold-dark) 6px,
    transparent 6px, transparent 8px
  );
  z-index: 5;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .site-wrapper {
    margin: 8px auto;
    border-radius: 22px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  }
}

@media (max-width: 480px) {
  .site-wrapper {
    margin: 5px auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- Gold Shimmer Animation (shared) ---- */
@keyframes goldShimmer {
  0%, 100% { background-position: -200% 0; }
  50% { background-position: 200% 0; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,175,55,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212,175,55,0.05) 0%, transparent 50%);
  z-index: 0;
}



/* ---- Golden Vine Arch ---- */
@keyframes vineGlowA {
  0%, 100% { opacity: 0.25; filter: drop-shadow(0 0 6px rgba(212,175,55,0.25)); }
  50% { opacity: 0.5; filter: drop-shadow(0 0 16px rgba(212,175,55,0.5)); }
}
@keyframes vineGlowB {
  0%, 100% { opacity: 0.12; filter: drop-shadow(0 0 3px rgba(212,175,55,0.1)); }
  50% { opacity: 0.3; filter: drop-shadow(0 0 10px rgba(212,175,55,0.3)); }
}
@keyframes vineGlowC {
  0%, 100% { opacity: 0.06; filter: drop-shadow(0 0 2px rgba(212,175,55,0.05)); }
  50% { opacity: 0.15; filter: drop-shadow(0 0 6px rgba(212,175,55,0.15)); }
}
@keyframes vineSway {
  0%, 100% { transform: var(--rot) rotate(-1deg); }
  50% { transform: var(--rot) rotate(1deg); }
}
@keyframes crownGem {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.golden-vine-arch {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

/* ---- Stems ---- */
.vine-left, .vine-right {
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 100%;
}

.vine-stem {
  position: absolute;
  bottom: 0;
  width: 2.5px;
  background: linear-gradient(to top, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.04) 60%, transparent 100%);
  border-radius: 1px;
}

.stem-l {
  left: 30%;
  height: 88%;
  transform: rotate(12deg);
  transform-origin: bottom center;
}

.stem-r {
  right: 30%;
  height: 88%;
  transform: rotate(-12deg);
  transform-origin: bottom center;
}

/* Stem secondary branches */
.stem-l::before, .stem-l::after,
.stem-r::before, .stem-r::after {
  content: '';
  position: absolute;
  width: 1.5px;
  background: rgba(212,175,55,0.06);
  border-radius: 1px;
}

.stem-l::before { top: 15%; left: -16px; height: 20%; transform: rotate(-40deg); transform-origin: right top; }
.stem-l::after  { top: 40%; right: -14px; height: 18%; transform: rotate(35deg); transform-origin: left top; }
.stem-r::before { top: 15%; right: -16px; height: 20%; transform: rotate(40deg); transform-origin: left top; }
.stem-r::after  { top: 40%; left: -14px; height: 18%; transform: rotate(-35deg); transform-origin: right top; }

/* ---- Leaves on left vine ---- */
.vine-leaf {
  position: absolute;
  font-size: 14px;
  color: var(--gold);
  animation: vineSway 4s ease-in-out infinite;
}

.vine-leaf.type-a { font-size: 16px; color: #D4AF37; animation: vineGlowA 3s ease-in-out infinite, vineSway 3.5s ease-in-out infinite; }
.vine-leaf.type-b { font-size: 13px; color: #C5A028; animation: vineGlowB 4s ease-in-out 0.5s infinite, vineSway 4.5s ease-in-out 0.3s infinite; }
.vine-leaf.type-c { font-size: 10px; color: #B8860B; animation: vineGlowC 5s ease-in-out 1s infinite, vineSway 5s ease-in-out 0.6s infinite; }

/* Left vine leaf positions (wrapped around stem) */
.vl1  { bottom: 82%; left: 22%; transform: rotate(-20deg); --rot: rotate(-20deg); }
.vl2  { bottom: 73%; left: 28%; transform: rotate(15deg);  --rot: rotate(15deg); }
.vl3  { bottom: 64%; left: 20%; transform: rotate(-25deg); --rot: rotate(-25deg); }
.vl4  { bottom: 55%; left: 26%; transform: rotate(20deg);  --rot: rotate(20deg); }
.vl5  { bottom: 46%; left: 18%; transform: rotate(-30deg); --rot: rotate(-30deg); }
.vl6  { bottom: 37%; left: 24%; transform: rotate(25deg);  --rot: rotate(25deg); }
.vl7  { bottom: 28%; left: 16%; transform: rotate(-35deg); --rot: rotate(-35deg); }
.vl8  { bottom: 20%; left: 22%; transform: rotate(30deg);  --rot: rotate(30deg); }
.vl9  { bottom: 13%; left: 14%; transform: rotate(-40deg); --rot: rotate(-40deg); }
.vl10 { bottom: 8%;  left: 20%; transform: rotate(35deg);  --rot: rotate(35deg); }
.vl11 { bottom: 4%;  left: 12%; transform: rotate(-45deg); --rot: rotate(-45deg); }
.vl12 { bottom: 1%;  left: 18%; transform: rotate(40deg);  --rot: rotate(40deg); }

/* Right vine leaf positions */
.vr1  { bottom: 82%; right: 22%; transform: rotate(20deg);  --rot: rotate(20deg); }
.vr2  { bottom: 73%; right: 28%; transform: rotate(-15deg); --rot: rotate(-15deg); }
.vr3  { bottom: 64%; right: 20%; transform: rotate(25deg);  --rot: rotate(25deg); }
.vr4  { bottom: 55%; right: 26%; transform: rotate(-20deg); --rot: rotate(-20deg); }
.vr5  { bottom: 46%; right: 18%; transform: rotate(30deg);  --rot: rotate(30deg); }
.vr6  { bottom: 37%; right: 24%; transform: rotate(-25deg); --rot: rotate(-25deg); }
.vr7  { bottom: 28%; right: 16%; transform: rotate(35deg);  --rot: rotate(35deg); }
.vr8  { bottom: 20%; right: 22%; transform: rotate(-30deg); --rot: rotate(-30deg); }
.vr9  { bottom: 13%; right: 14%; transform: rotate(40deg);  --rot: rotate(40deg); }
.vr10 { bottom: 8%;  right: 20%; transform: rotate(-35deg); --rot: rotate(-35deg); }
.vr11 { bottom: 4%;  right: 12%; transform: rotate(45deg);  --rot: rotate(45deg); }
.vr12 { bottom: 1%;  right: 18%; transform: rotate(-40deg); --rot: rotate(-40deg); }

/* ---- Crown at the top ---- */
.vine-crown {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
}

.crown-gem {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--gold);
  animation: crownGem 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(212,175,55,0.3));
}

.crown-leaf {
  position: absolute;
  font-size: 12px;
  color: var(--gold);
  opacity: 0.15;
  animation: vineGlowA 3s ease-in-out infinite;
}

.cl1 { top: 8px;  left: 10px; transform: rotate(-30deg); }
.cl2 { top: 8px;  right: 10px; transform: rotate(30deg); }
.cl3 { top: 14px; left: 0; transform: rotate(-20deg); }
.cl4 { top: 14px; right: 0; transform: rotate(20deg); }
.cl5 { top: 20px; left: 50%; transform: translateX(-50%) rotate(0deg); }

/* ---- Logo fallback ---- */
.site-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  background: transparent !important;
  /* Remove any white/colored background from the image itself */
  mix-blend-mode: multiply;
  filter: brightness(1.05) contrast(1.1);
}

.logo-fallback {
  display: none;
}

.site-logo[src]:not([src=""]):not([onerror*="this.style.display='none'"]):not([style*="display: none"]) ~ .logo-fallback,
.site-logo[src=""] ~ .logo-fallback,
.site-logo[style*="display: none"] ~ .logo-fallback {
  display: block;
}

/* Hide fallback when logo loads successfully */
.site-logo.loaded ~ .logo-fallback {
  display: none !important;
}

/* ---- Mobile vine arch ---- */
@media (max-width: 768px) {
  .golden-vine-arch { height: 38%; }
  .stem-l { left: 28%; height: 85%; transform: rotate(10deg); }
  .stem-r { right: 28%; height: 85%; transform: rotate(-10deg); }
  .vine-leaf.type-a { font-size: 12px; }
  .vine-leaf.type-b { font-size: 10px; }
  .vine-leaf.type-c { font-size: 8px; }
  .vine-crown { width: 80px; height: 40px; }
  .crown-gem { font-size: 18px; }
  .crown-leaf { font-size: 9px; }
  .site-logo { max-width: 200px; }
}

@media (max-width: 480px) {
  .golden-vine-arch { height: 32%; }
  .stem-l { left: 26%; height: 82%; transform: rotate(8deg); }
  .stem-r { right: 26%; height: 82%; transform: rotate(-8deg); }
  .vine-leaf.type-a { font-size: 10px; }
  .vine-leaf.type-b { font-size: 8px; }
  .vine-leaf.type-c { font-size: 7px; }
  .vine-crown { width: 60px; height: 30px; }
  .crown-gem { font-size: 14px; }
  .crown-leaf { font-size: 7px; }
  .site-logo { max-width: 150px; }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(212,175,55,0.02) 40px,
      rgba(212,175,55,0.02) 41px
    );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ---- Logo Area ---- */
.logo-area {
  margin-bottom: 20px;
}

.logo-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: logoPulse 3s ease-in-out infinite;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  animation: logoRing 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(212,175,55,0.2); }
  50% { transform: scale(1.02); box-shadow: 0 0 40px rgba(212,175,55,0.4); }
}

@keyframes logoRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

.logo-perfume {
  font-size: 32px;
  color: var(--gold);
  animation: shimmerRotate 4s ease-in-out infinite;
}

@keyframes shimmerRotate {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

.main-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldTextShine 4s ease-in-out infinite;
  letter-spacing: 4px;
  text-shadow: none;
}

@keyframes goldTextShine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.sub-title {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-gray);
  font-weight: 300;
  letter-spacing: 2px;
  margin-top: 8px;
}

/* ---- Divider ---- */
.divider {
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.divider::before,
.divider::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.divider-diamond {
  color: var(--gold);
  font-size: 14px;
  animation: diamondSpin 6s linear infinite;
}

@keyframes diamondSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---- Discount Badge ---- */
.discount-badge {
  display: inline-flex;
  margin: 16px auto;
  position: relative;
}

.discount-inner {
  background: var(--gold-gradient);
  padding: 12px 32px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.discount-inner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: var(--gold-shimmer);
  animation: shimmerSlide 3s ease-in-out infinite;
  transform: rotate(45deg);
}

@keyframes shimmerSlide {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.discount-label {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

.discount-value {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.discount-text {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ---- Countdown ---- */
.countdown-wrapper {
  margin: 30px auto 40px;
}

.countdown-title {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 16px;
  font-weight: 400;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  direction: ltr;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.countdown-num {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  display: block;
  min-width: 60px;
  text-align: center;
  position: relative;
}

.countdown-num::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 4px auto 0;
}

.countdown-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
  font-weight: 400;
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- Form ---- */
.form-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.form-card {
  background: linear-gradient(135deg, var(--white), var(--off-white));
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 0 0 1px rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.2);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.form-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 24px;
  font-weight: 300;
}

.form-group {
  margin-bottom: 20px;
  text-align: right;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.optional-badge {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 300;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 4px;
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #FAFAFA;
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.12);
  background: var(--white);
}

.form-control.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 4px rgba(231,76,60,0.1);
}

.form-control::placeholder {
  color: #bbb;
  font-weight: 300;
}

.error-msg {
  display: none;
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 4px;
}

.form-group.error .error-msg {
  display: block;
}

.form-group.error .form-control {
  border-color: #e74c3c;
  box-shadow: 0 0 0 4px rgba(231,76,60,0.1);
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: var(--radius);
  background: var(--gold-gradient);
  background-size: 200% 100%;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.35);
  background-position: right center;
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: var(--gold-shimmer);
  animation: shimmerSlide 3s ease-in-out infinite;
  transform: rotate(45deg);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-loader {
  position: relative;
  z-index: 1;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   SUCCESS SECTION
   ============================================ */
.success-section {
  padding: 0;
  background: var(--off-white);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-logo-area {
  text-align: center;
  padding: 40px 0 30px;
}

.success-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  background: transparent !important;
  mix-blend-mode: multiply;
  filter: brightness(1.05) contrast(1.1);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Green Success Flash ---- */
.success-flash {
  text-align: center;
  padding: 20px 20px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-flash.show {
  opacity: 1;
  transform: scale(1);
}

.success-flash.hide {
  opacity: 0;
  transform: scale(0.8);
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  transition: all 0.4s ease;
}

.flash-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #22c55e;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2), 0 0 60px rgba(34,197,94,0.3);
  animation: flashPulse 1.2s ease-in-out infinite;
  position: relative;
}

.flash-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(34,197,94,0.3);
  animation: flashRing 1.2s ease-in-out infinite;
}

@keyframes flashPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(34,197,94,0.2), 0 0 60px rgba(34,197,94,0.3); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(34,197,94,0.15), 0 0 80px rgba(34,197,94,0.2); }
}

@keyframes flashRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.12); opacity: 0.2; }
}

.flash-check {
  width: 12px;
  height: 24px;
  border: solid #fff;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg) translateY(-2px);
  animation: flashDraw 0.4s 0.2s ease-out both;
}

@keyframes flashDraw {
  0% { width: 0; height: 0; }
  50% { width: 12px; height: 0; }
  100% { width: 12px; height: 24px; }
}

.flash-title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #16a34a;
  animation: flashTextIn 0.6s 0.3s ease-out both;
  text-shadow: 0 2px 20px rgba(34,197,94,0.2);
}

.flash-subtitle {
  font-size: 1rem;
  color: var(--text-gray);
  margin-top: 8px;
  animation: flashTextIn 0.6s 0.5s ease-out both;
}

@keyframes flashTextIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Banner Gallery ---- */
.banner-gallery {
  max-width: 500px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.banner-gallery.show {
  opacity: 1;
  transform: translateY(0);
}

.banner-gallery-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gallery-banner-wrap {
  position: relative;
  border-bottom: 2px solid var(--gold);
}

.gallery-banner {
  width: 100%;
  height: auto;
  display: block;
}

.banner-overlay-text {
  position: absolute;
  top: 68%;
  left: 28%;
  transform: translateY(-50%);
  background: transparent;
  padding: 6px 14px;
  direction: rtl;
  text-align: center;
  min-width: 100px;
}

.overlay-row + .overlay-row {
  margin-top: 8px;
}

.overlay-row {
  font-size: 0.85rem;
  color: #000;
  line-height: 1.6;
  white-space: nowrap;
}

.overlay-value {
  font-weight: 800;
  color: #000;
}

.gallery-banner:last-child {
  border-bottom: none;
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.gallery-download-btn {
  padding: 14px 32px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gold-dark);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-download-btn:hover {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.gallery-download-btn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .banner-gallery { max-width: 100%; }
  .banner-overlay-text { padding: 5px 12px; min-width: 90px; top: 68%; left: 36%; }
  .overlay-row { font-size: 0.78rem; }
  .overlay-row + .overlay-row { margin-top: 6px; }
  .gallery-download-btn { padding: 12px 24px; font-size: 0.85rem; min-height: 44px; }
}

@media (max-width: 480px) {
  .banner-gallery-inner { border-radius: var(--radius); }
  .banner-overlay-text { padding: 4px 10px; min-width: 80px; top: 68%; left: 25%; }
  .overlay-row { font-size: 0.7rem; }
  .overlay-row + .overlay-row { margin-top: 5px; }
  .gallery-download-btn { padding: 10px 18px; font-size: 0.8rem; min-height: 44px; }
}

/* ============================================
   ADDRESS SECTION
   ============================================ */
.address-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}

.address-section::before {
  content: '';
  position: absolute;
  top: 4px; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.address-section::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-icon {
  font-size: 24px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 12px auto 0;
  border-radius: 2px;
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.address-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, var(--white), var(--off-white));
  border-radius: var(--radius);
  border: 1px solid rgba(212,175,55,0.15);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(212,175,55,0.06);
}

.address-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 100% 0%, rgba(212,175,55,0.08), transparent 70%);
  border-radius: 0 0 0 60px;
}

.address-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212,175,55,0.12);
  border-color: rgba(212,175,55,0.3);
}

.address-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(212,175,55,0.25);
  position: relative;
  z-index: 1;
}

.address-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.address-content p {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 300;
  line-height: 1.7;
}

.address-location {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  padding: 2px 8px;
  border-radius: 6px;
}

.address-location:hover {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
}

/* ---- Instagram Link Below Address ---- */
.address-social {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.address-social .social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 24px;
  border: 1.5px solid rgba(212,175,55,0.25);
  border-radius: 25px;
  transition: all 0.3s ease;
  perspective: 400px;
}

.address-social .social-link .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

.address-social .social-link:hover .social-icon {
  transform: rotateY(360deg) scale(1.2);
}

.address-social .social-link:hover {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

@media (max-width: 480px) {
  .address-social { margin-top: 24px; padding-top: 16px; }
  .address-social .social-link { font-size: 0.85rem; padding: 6px 18px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 30px 0;
  background: linear-gradient(180deg, var(--off-white), var(--white));
  position: relative;
}

.footer::before {
  content: 'âœ¦ âœ¦ âœ¦';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 6px;
  opacity: 0.4;
}

.footer-gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 20px;
}

.footer-content {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 300;
}

.footer-content strong {
  color: var(--gold-dark);
  font-weight: 700;
}

.footer-url {
  color: var(--gold);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 1px;
}

.footer-social {
  margin-top: 6px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 14px;
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  transition: all 0.3s ease;
  perspective: 400px;
}

.social-icon {
  display: inline-block;
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

.social-link:hover .social-icon {
  transform: rotateY(360deg) scale(1.2);
}

.social-link:hover {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.admin-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 0.35;
}

.admin-link:hover {
  color: var(--gold);
  opacity: 1;
  transform: rotate(90deg);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.2);
  z-index: 1000;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.toast-msg {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 992px) {
  .hero { padding: 60px 0 40px; }
  .address-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  .hero { padding: 40px 0 30px; min-height: auto; }
  .logo-icon { width: 56px; height: 56px; margin: 0 auto 12px; }
  .logo-perfume { font-size: 22px; }
  .main-title { letter-spacing: 2px; }
  .form-card { padding: 24px 18px; border-radius: 20px; }
  .form-title { font-size: 1.3rem; }
  .form-desc { font-size: 0.82rem; margin-bottom: 18px; }
  .form-group { margin-bottom: 14px; }
  .form-control { padding: 12px 14px; font-size: 0.9rem; }
  .countdown-item { min-width: 50px; }
  .countdown-num { min-width: 40px; font-size: 1.6rem; }
  .countdown-num::after { width: 30px; }
  .countdown-sep { font-size: 1.3rem; margin-bottom: 16px; }
  .countdown-wrapper { margin: 20px auto 30px; }
  .discount-inner { padding: 10px 20px; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .discount-value { font-size: 1.3rem; }
  .discount-label, .discount-text { font-size: 0.78rem; }
  .address-grid { grid-template-columns: 1fr; gap: 14px; }
  .address-card { padding: 16px; }
  .address-num { width: 34px; height: 34px; min-width: 34px; font-size: 0.95rem; }
  .address-content h3 { font-size: 0.9rem; }
  .address-content p { font-size: 0.8rem; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.4rem; }
  .success-section { padding: 0; }
  .address-section { padding: 40px 0; }
  .success-title { font-size: 1.8rem; }
  .checkmark-wrapper { width: 60px; height: 60px; }
  .checkmark-circle { width: 60px; height: 60px; }
  .checkmark-stem { top: 28px; left: 33px; height: 22px; }
  .checkmark-kick { top: 38px; left: 25px; height: 12px; }
  .footer { padding: 20px 0; }
  .footer-content { font-size: 0.78rem; }
  .divider::before, .divider::after { width: 40px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero { padding: 30px 0 24px; }
  .logo-icon { width: 48px; height: 48px; margin: 0 auto 10px; }
  .logo-icon::before { inset: -4px; }
  .logo-perfume { font-size: 18px; }
  .main-title { letter-spacing: 1px; }
  .sub-title { font-size: 0.85rem; }
  .form-card { padding: 20px 14px; border-radius: 16px; }
  .form-title { font-size: 1.15rem; }
  .form-desc { font-size: 0.78rem; margin-bottom: 16px; }
  .form-control { padding: 10px 12px; font-size: 0.85rem; border-radius: 12px; }
  .form-group { margin-bottom: 12px; }
  .form-group label { font-size: 0.82rem; }
  .submit-btn { padding: 12px; font-size: 0.9rem; min-height: 44px; border-radius: 12px; }
  .countdown-item { min-width: 40px; }
  .countdown-num { min-width: 32px; font-size: 1.3rem; }
  .countdown-num::after { width: 24px; }
  .countdown-label { font-size: 0.6rem; }
  .countdown-sep { font-size: 1.1rem; margin-bottom: 14px; }
  .countdown-title { font-size: 0.85rem; margin-bottom: 12px; }
  .countdown-wrapper { margin: 16px auto 24px; }
  .discount-inner { padding: 8px 14px; border-radius: 40px; gap: 6px; }
  .discount-value { font-size: 1.1rem; }
  .discount-label, .discount-text { font-size: 0.7rem; }
  .address-card { padding: 14px; border-radius: 12px; gap: 12px; }
  .address-num { width: 30px; height: 30px; min-width: 30px; font-size: 0.85rem; }
  .address-content h3 { font-size: 0.85rem; }
  .address-content p { font-size: 0.75rem; line-height: 1.6; }
  .section-title { font-size: 1.2rem; }
  .section-icon { font-size: 18px; }
  .success-section { padding: 0; }
  .address-section { padding: 30px 0; }
  .success-title { font-size: 1.5rem; }
  .success-subtitle { font-size: 0.85rem; }
  .checkmark-wrapper { width: 50px; height: 50px; }
  .checkmark-circle { width: 50px; height: 50px; }
  .checkmark-stem { top: 24px; left: 28px; height: 18px; width: 3px; }
  .checkmark-kick { top: 32px; left: 21px; height: 10px; width: 3px; }
  .footer-content { font-size: 0.72rem; }
  .toast { width: calc(100% - 28px); bottom: 16px; padding: 12px 18px; }
  .toast-msg { font-size: 0.82rem; }
  .divider { margin: 14px auto; gap: 8px; }
  .divider::before, .divider::after { width: 30px; }
  .divider-diamond { font-size: 11px; }
  .section-divider { width: 40px; }
  .footer-gold-line { margin-bottom: 12px; }
  .section-header { margin-bottom: 24px; }
  .address-grid { gap: 10px; }
  .discount-badge { margin: 10px auto; }
}

/* Touch-friendly form inputs on mobile */
@media (pointer: coarse) {
  .form-control { font-size: 16px; }
  .submit-btn { min-height: 48px; }
  .countdown-item { min-width: 54px; }
}

/* Landscape mobile optimization */
@media (max-height: 600px) and (orientation: landscape) {
  .hero { padding: 20px 0; min-height: auto; }
  .logo-icon { width: 40px; height: 40px; margin: 0 auto 8px; }
  .logo-perfume { font-size: 16px; }
  .main-title { font-size: 1.8rem; }
  .sub-title { font-size: 0.75rem; }
  .countdown-wrapper { margin: 12px auto 16px; }
  .countdown-item { min-width: 36px; }
  .countdown-num { font-size: 1.1rem; min-width: 28px; }
  .countdown-sep { font-size: 0.9rem; }
  .discount-inner { padding: 6px 12px; }
  .discount-value { font-size: 0.9rem; }
  .form-card { padding: 16px 12px; }
  .form-group { margin-bottom: 8px; }
  .form-control { padding: 8px 10px; }
  .submit-btn { padding: 10px; }
}

/* Smooth scroll disable on mobile for better performance */
@media (max-width: 768px) {
  html { scroll-behavior: auto; }
}
