/* ==========================================================================
   ANTALYA ÇELENK — TASARIM SİSTEMİ
   Palet: Wreath (çelenk) formunun kendisi — halka, kurdele, yaprak —
   sitenin görsel diline temel oluşturur.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Work+Sans:ital,wght@0,400;0,500;0,600;0,700;1,500&display=swap');

:root{
  --ivory:        #FDF8F1;   /* daha açık, ferah zemin */
  --ivory-deep:   #F7ECDD;
  --paper:        #FFFFFF;
  --wine:         #C6265C;   /* canlı çilek/gül pembesi — ana vurgu */
  --wine-deep:    #9E1C49;
  --marigold:     #E8A934;   /* parlak altın sarısı — premium his */
  --marigold-deep:#C4881E;
  --cypress:      #1D7A52;   /* canlı zümrüt yeşili — taze yaprak */
  --cypress-deep: #145A3C;
  --blush:        #FCE4E9;   /* yumuşak pembe kart zemini */
  --ink:          #2B2420;
  --ink-soft:     #6B5F55;
  --line:         #F0DCC6;
  --white:        #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Work Sans', -apple-system, sans-serif;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 32px;
  --shadow-card: 0 14px 34px -16px rgba(43,36,32,0.20);
  --shadow-lift: 0 22px 46px -18px rgba(198,38,92,0.38);
  --content-w: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body{
  margin:0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 2.2;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--wine-deep);
  margin:0 0 0.5em;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1{ font-size: clamp(2.4rem, 4.4vw, 3.9rem); }
h2{ font-size: clamp(1.9rem, 3vw, 2.7rem); }
h3{ font-size: 1.35rem; }
p{ margin:0 0 1em; color: var(--ink); }
.lede{ font-size: 1.15rem; color: var(--ink-soft); }

:focus-visible{
  outline: 3px solid var(--marigold-deep);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap{ max-width: var(--content-w); margin: 0 auto; padding: 0 28px; }
header.site-header .wrap, .topbar .wrap{ max-width: 1480px; }
.section{ padding: 88px 0; }
.section--tight{ padding: 56px 0; }
.section--cream{ background: var(--ivory); }
.section--deep{ background: var(--ivory-deep); }
.section--cypress{ background: var(--cypress); color: #EFE9DC; }
.section--cypress h2, .section--cypress h3{ color: var(--ivory); }
.section--cypress p{ color: #CFC7B6; }

.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marigold-deep);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  background: var(--marigold-deep);
  display:inline-block;
}
.section--cypress .eyebrow{ color: var(--marigold); }
.section--cypress .eyebrow::before{ background: var(--marigold); }

.head-row{
  display:flex; justify-content:space-between; align-items:flex-end; gap: 24px;
  margin-bottom: 44px; flex-wrap: wrap;
}
.head-row h2{ margin-bottom: 8px; }

.ring-divider{
  display:flex; align-items:center; justify-content:center;
  gap: 14px; margin: 0 0 40px;
}
.ring-divider::before, .ring-divider::after{
  content:"";
  height:1px; flex:1; max-width:120px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.ring-divider::after{ background: linear-gradient(90deg, var(--line), transparent); }
.ring-divider span{
  width:10px; height:10px; border-radius:50%;
  border:2px solid var(--marigold-deep);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--wine); color: var(--white); box-shadow: var(--shadow-lift); }
.btn-primary:hover{ background: var(--wine-deep); }
.btn-ghost{ background: transparent; color: var(--wine); border-color: var(--wine); }
.btn-ghost:hover{ background: var(--wine); color: var(--white); }
.btn-light{ background: var(--ivory); color: var(--wine-deep); }
.btn-light:hover{ background: var(--white); }
.btn-whatsapp{ background:#2E7D5B; color:var(--white); }
.btn-whatsapp:hover{ background:#245F47; }
.btn-block{ width:100%; }

.topbar{
  background: var(--cypress);
  color: #DCE2CF;
  font-size: 0.82rem;
}
.topbar .wrap{ display:flex; justify-content:space-between; align-items:center; height:38px; }
.topbar a{ color:#DCE2CF; }
.topbar a:hover{ color: var(--marigold); }
.topbar-links{ display:flex; gap:20px; }

header.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(250,243,231,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  height: 84px; gap: 14px;
}
.brand{ display:flex; align-items:center; gap:10px; min-width:0; }
.brand-mark{ width:52px; height:52px; flex-shrink:0; object-fit:contain; }
.brand-name{
  font-family: var(--font-display); font-weight:700; font-size:1.28rem;
  color: var(--wine-deep); line-height:1.15; white-space:nowrap;
}
.brand-tag{ font-size:0.66rem; letter-spacing:0.08em; color: var(--ink-soft); text-transform:uppercase; white-space:nowrap; }

.main-nav{ display:flex; align-items:center; gap: 2px; flex-shrink:1; min-width:0; }
.main-nav > ul{ display:flex; align-items:center; gap: 0; flex-wrap:nowrap; }
.main-nav a.nav-link{
  padding: 9px 11px; border-radius: 999px; font-weight:600; font-size:0.87rem;
  color: var(--ink); transition: background-color .16s ease, color .16s ease; white-space:nowrap;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link[aria-current="page"]{ background: var(--blush); color: var(--wine-deep); }

.has-mega{ position:relative; }
.mega{
  position:absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  width: 560px; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-m);
  box-shadow: var(--shadow-card); padding: 20px; display:grid; grid-template-columns: 1fr 1fr; gap: 6px;
  opacity:0; visibility:hidden; translate: 0 8px; transition: opacity .18s ease, translate .18s ease, visibility .18s ease;
}
.has-mega:hover .mega, .has-mega:focus-within .mega{ opacity:1; visibility:visible; translate:0 0; }
.mega a{
  display:flex; flex-direction:column; gap:2px; padding:12px 14px; border-radius: var(--radius-s);
}
.mega a:hover{ background: var(--blush); }
.mega a strong{ font-family: var(--font-display); font-size:1.02rem; color: var(--wine-deep); font-weight:600; }
.mega a span{ font-size:0.82rem; color: var(--ink-soft); }

.nav-cta{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-cta .btn-primary{ padding:13px 22px; font-size:0.9rem; }

.nav-toggle{ display:none; background:none; border:2px solid var(--wine-deep); border-radius:10px; width:44px; height:44px; align-items:center; justify-content:center; flex-shrink:0; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:""; display:block; width:20px; height:2px; background: var(--wine-deep); position:relative; transition: transform .25s ease, top .25s ease,
    background .25s ease;
}
.nav-toggle span::before{ position:absolute; top:-6px; }
.nav-toggle span::after{ position:absolute; top:6px; }
.nav-toggle.is-open span{
  background: transparent;
}

.nav-toggle.is-open span::before{
  top:0;
  transform: rotate(45deg);
}

.nav-toggle.is-open span::after{
  top:0;
  transform: rotate(-45deg);
}

.ribbon{
  position:relative; display:inline-flex; align-items:center; gap:8px;
  background: var(--marigold); color:#3A2705;
  padding: 8px 18px 8px 14px;
  font-weight:700; font-size:0.78rem; letter-spacing:0.04em; text-transform:uppercase;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
}

.hero{ position:relative; overflow:hidden; padding: 64px 0 96px; }
.hero .wrap{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items:center; }
.hero-copy .badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:22px; }
.stat-pill{
  display:inline-flex; align-items:center; gap:8px; background: var(--paper); border:1px solid var(--line);
  padding:8px 16px; border-radius:999px; font-weight:600; font-size:0.82rem; color: var(--cypress);
}
.stat-pill b{ color: var(--wine); }
.hero h1{ margin-bottom: 20px; }
.hero .lede{ max-width: 46ch; margin-bottom: 34px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-art{ position:relative; aspect-ratio: 1/1; width:100%; max-width:460px; margin:0 auto; }
.hero-art-photo{
  position:absolute; inset:0; width:100%; height:100%; object-fit:contain;
  border-radius: var(--radius-l);
  filter: drop-shadow(0 20px 40px rgba(43,36,32,0.28));
  z-index:1;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.hero-art-tag{
  position:absolute; background: var(--cypress); color: var(--ivory);
  padding: 10px 16px; border-radius: var(--radius-s); font-size:0.8rem; font-weight:600;
  box-shadow: var(--shadow-card); z-index:3; max-width:160px; line-height:1.3;
}
.hero-art-tag.tag-1{ top: 8%; right: -9%; }
.hero-art-tag.tag-2{ bottom: 9%; left: -9%; background: var(--wine); }

.grid{ display:grid; gap: 26px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.category-card{
  border-radius: var(--radius-m); padding: 32px 28px; min-height: 240px;
  display:flex; flex-direction:column; justify-content:space-between;
  color: var(--white); position:relative; overflow:hidden;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease;
}
.category-card:hover{ transform: translateY(-6px); }
.category-card::after{
  content:""; position:absolute; width:180px; height:180px; border-radius:50%;
  border: 22px solid rgba(255,255,255,0.14); right:-60px; bottom:-60px;
}
.category-card.c-wine{ background: linear-gradient(155deg, var(--wine), var(--wine-deep)); }
.category-card.c-marigold{ background: linear-gradient(155deg, #E4A13B, var(--marigold-deep)); color:#3A2705; }
.category-card.c-marigold::after{ border-color: rgba(58,39,5,0.14); }
.category-card.c-cypress{ background: linear-gradient(155deg, var(--cypress), var(--cypress-deep)); }
.category-card .price{ font-family: var(--font-display); font-size:2rem; font-weight:700; }
.category-card .cta-line{ display:flex; align-items:center; gap:8px; font-weight:600; font-size:0.92rem; }

.product-card{
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-m);
  overflow:hidden; transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.product-thumb{
  aspect-ratio: 4/5; position:relative; display:flex; align-items:center; justify-content:center;
  background: radial-gradient(circle at 50% 40%, var(--blush), var(--ivory-deep));
}
.product-thumb svg{ width:56%; height:56%; }
.product-thumb img{ width:82%; height:82%; object-fit:contain; filter: drop-shadow(0 10px 18px rgba(43,36,32,0.18)); }
.product-body{ padding: 18px 20px 22px; }
.product-tag{ font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color: var(--marigold-deep); margin-bottom:6px; }
.product-body h3{ margin-bottom:4px; font-size:1.08rem; }
.product-meta{ font-size:0.85rem; color: var(--ink-soft); margin-bottom:14px; }
.product-foot{ display:flex; align-items:center; justify-content:space-between; }
.product-price{ font-family: var(--font-display); font-weight:700; font-size:1.25rem; color: var(--wine); }
.product-link{ font-weight:700; font-size:0.85rem; color: var(--wine-deep); display:flex; align-items:center; gap:4px; }
.product-link:hover{ color: var(--wine); }

.trust-card{
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-m);
  padding: 30px 26px; display:flex; flex-direction:column; gap:14px;
}
.trust-icon{ width:52px; height:52px; }

.value-row{ display:flex; gap:16px; align-items:flex-start; padding: 22px 0; border-bottom:1px solid var(--line); }
.value-row:last-child{ border-bottom:none; }
.value-row .n{ font-family: var(--font-display); font-size:1.5rem; color: var(--marigold-deep); font-weight:700; min-width: 44px; }

.process{ display:flex; gap:0; }
.process-step{ flex:1; position:relative; padding: 0 20px; text-align:center; }
.process-step .ring{
  width:74px; height:74px; border-radius:50%; margin: 0 auto 18px;
  background: var(--paper); border:3px solid var(--marigold); display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display); font-size:1.5rem; font-weight:700; color: var(--wine);
}
.process-step::before{
  content:""; position:absolute; top:37px; left:-50%; width:100%; height:2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
}
.process-step:first-child::before{ display:none; }

.review-card{
  background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-m); padding:26px;
}
.stars{ color: var(--marigold-deep); letter-spacing:2px; margin-bottom:10px; }
.review-name{ font-weight:700; margin-top:14px; }
.review-source{ font-size:0.8rem; color: var(--ink-soft); }

.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{
  width:100%; background:none; border:none; text-align:left; padding: 22px 4px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-family: var(--font-display); font-size:1.08rem; font-weight:600; color: var(--wine-deep);
}
.faq-q .plus{ width:26px; height:26px; border-radius:50%; border:2px solid var(--marigold-deep); flex-shrink:0; position:relative; }
.faq-q .plus::before, .faq-q .plus::after{ content:""; position:absolute; background: var(--marigold-deep); }
.faq-q .plus::before{ width:12px; height:2px; top:50%; left:50%; translate:-50% -50%; }
.faq-q .plus::after{ width:2px; height:12px; top:50%; left:50%; translate:-50% -50%; transition: opacity .18s ease; }
.faq-item.open .plus::after{ opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .28s ease; }
.faq-a p{ padding: 0 4px 22px; color: var(--ink-soft); max-width:70ch; }

.region-strip{ display:flex; flex-wrap:wrap; gap:12px; }
.region-chip{
  display:flex; align-items:center; gap:8px; background: var(--paper); border:1px solid var(--line);
  padding:12px 18px; border-radius:999px; font-weight:600;
}
.region-chip .dot{ width:8px; height:8px; border-radius:50%; background: var(--marigold-deep); }

.contact-panel{
  background: var(--cypress); color: var(--ivory); border-radius: var(--radius-l); padding: 48px;
  display:grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-panel h2{ color: var(--ivory); }
.contact-info-row{ display:flex; gap:14px; align-items:flex-start; margin-bottom: 22px; }
.contact-info-row svg{ flex-shrink:0; margin-top:2px; }
.contact-info-row a{ color: var(--ivory); font-weight:700; }
.contact-info-row .label{ font-size:0.8rem; color:#B9C2AA; margin-bottom:2px; }

.field{ margin-bottom:16px; }
.field label{ display:block; font-size:0.85rem; font-weight:600; margin-bottom:6px; color: var(--ivory); }
.field input, .field textarea, .field select{
  width:100%; padding:13px 16px; border-radius: var(--radius-s); border:1px solid #4C5B45;
  background: #2C3A26; color: var(--ivory); font-family: var(--font-body); font-size:0.95rem;
}
.field input::placeholder, .field textarea::placeholder{ color:#8B9A80; }
.field textarea{ resize:vertical; min-height:100px; }

footer.site-footer{ background: var(--cypress-deep); color:#C6CBB8; padding: 64px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom:1px solid rgba(255,255,255,0.1); }
.footer-grid h4{ color: var(--ivory); font-size:0.95rem; margin-bottom:16px; }
.footer-grid p{ color:#B9C2AA; }
.footer-grid ul li{ margin-bottom:10px; }
.footer-grid a:hover{ color: var(--marigold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding: 22px 0; font-size:0.82rem; flex-wrap:wrap; gap:10px; }
.footer-bottom a:hover{ color: var(--marigold); }

.footer-agency-row{ border-top:1px solid rgba(255,255,255,0.1); padding:18px 0; display:flex; justify-content:center; }
.footer-agency{ display:flex; align-items:center; gap:10px; font-size:0.8rem; color:#B9C2AA; opacity:0.9; }
.footer-agency:hover{ opacity:1; color:var(--marigold); }
.footer-agency img{ height:40px; width:auto; opacity:0.9; }

/* ---------- Sol alt köşe iletişim buton grubu (Buttonizer tarzı) ---------- */
.fab-stack{
  position:fixed; bottom:24px; left:24px; z-index:60;
  display:flex; flex-direction:column; gap:12px;
}
.fab-btn{
  width:56px; height:56px; border-radius:50%; color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.35);
  transition: transform .18s ease;
}
.fab-btn:hover{ transform: translateY(-3px) scale(1.05); }
.fab-whatsapp{ background:#2E7D5B; animation: pulse-wa 2.6s ease-in-out infinite; }
.fab-phone{ background: var(--wine); }
.fab-instagram{ background: radial-gradient(circle at 30% 110%, #ffdb73 0%, #fdb46f 20%, #ee5f56 40%, #d62e6d 60%, #b52a8e 80%, #8134af 100%); }
@keyframes pulse-wa{ 0%,100%{ box-shadow: 0 12px 28px -8px rgba(46,125,91,0.6);} 50%{ box-shadow: 0 12px 28px -4px rgba(46,125,91,0.85);} }
@media (max-width:640px){
  .fab-stack{ bottom:16px; left:16px; gap:10px; }
  .fab-btn{ width:48px; height:48px; }
  .fab-btn svg{ width:20px; height:20px; }
}

@media (max-width: 1080px){
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1320px){
  .main-nav{
    display:none;
    position:fixed; top:122px; left:0; right:0; bottom:0;
    background:var(--ivory); z-index:49; overflow-y:auto;
    padding:8px 20px 190px; border-top:1px solid var(--line);
  }
  .main-nav.is-open{ display:block; }
  .main-nav > ul{ flex-direction:column; align-items:stretch; gap:2px; width:100%; }
  .main-nav a.nav-link{ width:100%; padding:8px 9px; font-size:0.9rem; }
  .has-mega .mega{
    position:static; transform:none; width:100%; max-width:none;
    box-shadow:none; border:none; background:transparent; padding:4px 0 8px 14px;
    opacity:1; visibility:visible; translate:none; display:block; margin-top:0;
    grid-template-columns:1fr;
  }
  .mega a{ padding:10px 14px; }
  .nav-cta .btn-primary{ padding:11px 18px; font-size:0.85rem; }
  .nav-toggle{ display:flex; }
}
@media (max-width: 960px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ max-width:320px; }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .contact-panel{ grid-template-columns: 1fr; padding:32px; }
}
@media (max-width:560px){
  .topbar .wrap{ justify-content:center; }
  .topbar span:first-child{ display:none; }
}
@media (max-width:600px){
  .nav-row{ gap:6px; height:60px; padding:10px 8; }
  .brand{ gap:8px; flex-shrink:1; min-width:0; }
  .brand-mark{ width:40px; height:40px; }
  .brand > span{ min-width:0; overflow:hidden; }
  .brand-name{ font-size:1rem; overflow:hidden; text-overflow:ellipsis; }
  .brand-tag{ display:none; }
  .nav-cta{ gap:6px; flex-shrink:0; }
  .nav-cta .btn-primary{ padding:9px 13px; font-size:0.76rem; }
  .nav-toggle{ width:38px; height:38px; }
  .main-nav{ top:52px; }
}
@media (max-width:360px){
  .nav-cta .btn-primary{ display:none; }
}
@media (max-width: 640px){
  .wrap{ padding: 7 20px; }
  .section{ padding: 60px 0; }
  .grid-3, .grid-2, .grid-4{ grid-template-columns: 1fr; }
  .process{ flex-direction:column; gap:28px; }
  .process-step::before{ display:none; }
  .topbar-links{ gap:12px; }
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}

/* ---------- Ürün Lightbox (görsele tıklayınca büyüyen inceleme penceresi) ---------- */
.product-thumb{ cursor: zoom-in; }
.lightbox-overlay{
  position:fixed; inset:0; z-index:200;
  display:none; align-items:center; justify-content:center;
  padding:24px;
}
.lightbox-overlay.open{ display:flex; }
.lightbox-backdrop{
  position:absolute; inset:0; background:rgba(35,29,24,0.6); backdrop-filter: blur(2px);
}
.lightbox-panel{
  position:relative; background:var(--paper); border-radius: var(--radius-l);
  max-width:840px; width:100%; max-height:90vh; overflow:auto;
  display:grid; grid-template-columns: 1fr 1fr; gap:0;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.45);
  animation: lightbox-in .22s ease;
}
@keyframes lightbox-in{ from{ opacity:0; transform:scale(0.96); } to{ opacity:1; transform:scale(1); } }
.lightbox-image{
  background: radial-gradient(circle at 50% 35%, var(--blush), var(--ivory-deep));
  display:flex; align-items:center; justify-content:center; padding:32px;
  border-radius: var(--radius-l) 0 0 var(--radius-l);
}
.lightbox-image img{ max-width:100%; max-height:420px; object-fit:contain; filter: drop-shadow(0 16px 26px rgba(43,36,32,0.25)); }
.lightbox-info{ padding:36px 32px; display:flex; flex-direction:column; }
.lightbox-info .product-tag{ margin-bottom:8px; }
.lightbox-info h3{ font-size:1.6rem; margin-bottom:8px; }
.lightbox-info .product-meta{ font-size:0.95rem; margin-bottom:18px; }
.lightbox-info .lightbox-price{ font-family: var(--font-display); font-weight:700; font-size:2rem; color: var(--wine); margin-bottom:24px; }
.lightbox-close{
  position:absolute; top:16px; right:16px; z-index:2;
  width:38px; height:38px; border-radius:50%; border:none; background:var(--paper);
  box-shadow: var(--shadow-card); font-size:1.3rem; color: var(--ink); display:flex; align-items:center; justify-content:center;
}
.lightbox-note{ margin-top:auto; font-size:0.82rem; color:var(--ink-soft); padding-top:18px; }
@media (max-width: 720px){
  .lightbox-panel{ grid-template-columns:1fr; max-height:92vh; }
  .lightbox-image{ border-radius: var(--radius-l) var(--radius-l) 0 0; padding:24px; }
  .lightbox-image img{ max-height:280px; }
  .lightbox-info{ padding:26px 22px; }
}
/* ===== SUCCESS MODAL ===== */

.modal{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
    z-index:9999;
}

.modal.show{
    opacity:1;
    visibility:visible;
}

.modal-card{

    width:min(430px,92%);

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(18px);

    border-radius:24px;

    padding:40px;

    text-align:center;

    border:1px solid rgba(255,255,255,.4);

    box-shadow:0 30px 80px rgba(0,0,0,.18);

    transform:translateY(30px) scale(.95);

    transition:.35s ease;

}

.modal.show .modal-card{

    transform:translateY(0) scale(1);

}

.checkmark{

    width:90px;

    height:90px;

    display:block;

    margin:auto auto 25px;

}

.checkmark-circle{

    stroke:#2E8B57;

    stroke-width:2;

    stroke-dasharray:166;

    stroke-dashoffset:166;

    animation:stroke .6s forwards;

}

.checkmark-check{

    stroke:#2E8B57;

    stroke-width:3;

    stroke-linecap:round;

    stroke-linejoin:round;

    stroke-dasharray:48;

    stroke-dashoffset:48;

    animation:check .35s .65s forwards;

}

@keyframes stroke{

    to{

        stroke-dashoffset:0;

    }

}

@keyframes check{

    to{

        stroke-dashoffset:0;

    }

}

.modal-card h2{

    color:#8A214C;

    margin:10px 0 18px;

}

.modal-card p{

    color:#555;

    line-height:1.8;

}

.modal-phone{

    display:block;

    margin:25px 0;

    text-decoration:none;

    color:#2E8B57;

    font-weight:700;

    font-size:18px;

}

.modal-small{

    color:#999;

    font-size:13px;

    margin-bottom:25px;

}

#closeModal{

    width:100%;

    border:none;

    border-radius:14px;

    padding:15px;

    cursor:pointer;

    background:#8A214C;

    color:#fff;

    font-size:16px;

    transition:.3s;

}

#closeModal:hover{

    opacity:.9;

}