*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0f0e0d;
  --cream: #f7f3ee;
  --warm: #e8ddd0;
  --gold: #b8964e;
  --gold-light: #d4b87a;
  --blush: #c9a99a;
  --text: #2a2825;
  --muted: #7a7470;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── FLOATING BUTTONS ── */
.float-group {
  position: fixed;
  bottom: 28px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.25); }
.float-wa { background: #25D366; }
.float-tel { background: var(--gold); }
.float-btn svg { width: 24px; height: 24px; fill: #fff; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(247,243,238,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,150,78,.15);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-weight: 500 !important;
  color: #fff;
  letter-spacing: .06em;
}
.nav-cta:hover { background: var(--ink) !important; color: #fff !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6% 80px 7%;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,150,78,.1);
  border: 1px solid rgba(184,150,78,.3);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
  margin-bottom: 28px;
  animation: fadeUp .6s ease forwards;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 24px;
  animation: fadeUp .6s .1s ease both;
}
h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 44px;
  animation: fadeUp .6s .2s ease both;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .6s .3s ease both;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 32px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .25s, transform .2s;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  padding: 14px 32px;
  border: 1.5px solid rgba(15,14,13,.25);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .25s, color .25s;
  border-radius: 2px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--warm);
  animation: fadeUp .6s .4s ease both;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .05em;
  margin-top: 4px;
}

.hero-right {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(184,150,78,.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201,169,154,.1) 0%, transparent 50%);
}
.invite-mockup {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  padding: 40px;
  animation: fadeUp .8s .2s ease both;
}
.card-invite {
  background: var(--cream);
  border-radius: 4px;
  padding: 28px 24px;
  width: 220px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
  transition: transform .3s;
}
.card-invite:hover { transform: translateY(-4px) rotate(-1deg); }
.card-invite:nth-child(2) { margin-left: 40px; transform: rotate(2deg); }
.card-invite:nth-child(2):hover { transform: translateY(-4px) rotate(1deg); }
.card-invite:nth-child(3) { margin-left: -20px; transform: rotate(-1.5deg); }
.card-invite:nth-child(3):hover { transform: translateY(-4px) rotate(-2.5deg); }
.invite-tag {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.invite-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.invite-detail {
  width: 60%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 10px;
}
.invite-lines span {
  display: block;
  height: 6px;
  background: var(--warm);
  border-radius: 2px;
  margin-bottom: 5px;
}
.invite-lines span:nth-child(2) { width: 70%; }
.invite-lines span:nth-child(3) { width: 50%; }
.card-invite-dark {
  background: linear-gradient(135deg, #1a1815, #0f0e0d);
  border: 1px solid rgba(184,150,78,.3);
}
.card-invite-dark .invite-title { color: var(--gold-light); }
.card-invite-dark .invite-lines span { background: rgba(255,255,255,.08); }

/* ── STRIP ── */
.strip {
  background: var(--gold);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.strip-inner {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}
.strip-item {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.strip-item::after {
  content: '◆';
  font-size: .5rem;
  opacity: .7;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTIONS SHARED ── */
section { padding: 100px 7%; }
.section-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ── HOW IT WORKS ── */
.how { background: var(--ink); }
.how .section-title { color: var(--cream); }
.how .section-sub { color: rgba(247,243,238,.5); }
.how-head { margin-bottom: 64px; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.step {
  background: rgba(255,255,255,.04);
  padding: 36px 28px;
  position: relative;
  transition: background .25s;
}
.step:hover { background: rgba(255,255,255,.07); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(184,150,78,.25);
  line-height: 1;
  margin-bottom: 20px;
}
.step-icon {
  width: 40px; height: 40px;
  background: rgba(184,150,78,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 400;
}
.step p { font-size: .85rem; color: rgba(247,243,238,.45); line-height: 1.6; }
.step-arrow {
  position: absolute;
  right: -14px;
  top: 36px;
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 2;
}

/* ── PRODUCTS ── */
.products .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform .3s;
}
.prod-card:hover { transform: translateY(-6px); }
.prod-card:first-child {
  grid-column: span 2;
}
.prod-img {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.prod-card:first-child .prod-img { aspect-ratio: 16/7; }
.prod-visual {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .4s;
}
.prod-card:hover .prod-visual { transform: scale(1.04); }
/* Wedding */
.v-wedding { background: linear-gradient(135deg, #f0e8df 0%, #e0cfc3 100%); }
.v-sunnet { background: linear-gradient(135deg, #dce8f5 0%, #c0d8ef 100%); }
.v-yemek { background: linear-gradient(135deg, #f0efe7 0%, #dddcce 100%); }
.v-nisan { background: linear-gradient(135deg, #f5dce8 0%, #efcadb 100%); }
.v-mezuniyet { background: linear-gradient(135deg, #e4f0e0 0%, #c8e0c2 100%); }

.mock-invite {
  width: 130px;
  background: #fff;
  border-radius: 3px;
  padding: 18px 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  text-align: center;
}
.prod-card:first-child .mock-invite { width: 170px; padding: 24px 20px; }
.mock-ornament {
  width: 40px; height: 2px;
  background: var(--gold);
  margin: 0 auto 10px;
}
.mock-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.prod-card:first-child .mock-serif { font-size: 1.3rem; }
.mock-divider { width: 30px; height: 1px; background: var(--warm); margin: 8px auto; }
.mock-text { font-size: .58rem; color: var(--muted); letter-spacing: .06em; }

.prod-info {
  padding: 18px 20px;
  background: #fff;
  border-top: 2px solid var(--warm);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
}
.prod-tag {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .06em;
}
.prod-arrow {
  width: 32px; height: 32px;
  border: 1px solid var(--warm);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: .8rem;
  transition: background .2s, color .2s;
}
.prod-card:hover .prod-arrow { background: var(--gold); color: #fff; border-color: var(--gold); }

/* MOCK SÜNNETCİK */
.mock-sunnet .mock-serif { color: #1a6abf; }
.mock-sunnet .mock-ornament { background: #4a9eff; }

/* ── GALLERY / ÖRNEKLER ── */
.gallery { background: var(--warm); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 14px;
  margin-top: 56px;
}
.g-item {
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.g-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.g-item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.g-item:nth-child(2) { grid-column: span 5; }
.g-item:nth-child(3) { grid-column: span 3; }
.g-item:nth-child(4) { grid-column: span 3; }
.g-item:nth-child(5) { grid-column: span 5; }
.g-item:nth-child(6) { grid-column: span 5; }
.g-item:nth-child(7) { grid-column: span 3; }
.g-visual {
  width: 100%; height: 100%;
  min-height: 180px;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  position: relative;
}
.g-item:nth-child(1) .g-visual { min-height: 360px; }
/* Gallery visuals */
.gv1 { background: linear-gradient(145deg, #1a1815, #2a2520); }
.gv2 { background: linear-gradient(145deg, #f9f0e8, #ede0d4); }
.gv3 { background: linear-gradient(145deg, #e8f0f9, #d4e0ef); }
.gv4 { background: linear-gradient(145deg, #f9ece8, #efd4cc); }
.gv5 { background: linear-gradient(145deg, #f0f0e8, #e4e4d0); }
.gv6 { background: linear-gradient(145deg, #e8f0e8, #d0e4d0); }
.gv7 { background: linear-gradient(145deg, #f0e8f4, #e4d0ee); }

.g-card {
  padding: 20px 16px;
  border-radius: 3px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.g-item:nth-child(1) .g-card { width: 130px; background: var(--cream); }
.g-card-sm { width: 110px; padding: 14px 12px; }
.g-card-dark { background: linear-gradient(135deg, #1a1815, #0a0908); border: 1px solid rgba(184,150,78,.25); }
.g-label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(15,14,13,.7);
  color: #fff;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* ── UPLOAD CTA ── */
.upload-section {
  background: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.upload-section .section-title { color: var(--cream); }
.upload-section .section-sub { color: rgba(247,243,238,.5); margin-bottom: 40px; }
.upload-features { list-style: none; margin-bottom: 40px; }
.upload-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .9rem;
  color: rgba(247,243,238,.7);
  line-height: 1.5;
}
.feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}
.upload-box {
  border: 1.5px dashed rgba(184,150,78,.4);
  border-radius: 6px;
  padding: 48px 40px;
  text-align: center;
  background: rgba(255,255,255,.03);
  transition: border-color .25s, background .25s;
  cursor: pointer;
}
.upload-box:hover { border-color: var(--gold); background: rgba(184,150,78,.05); }
.upload-icon {
  width: 56px; height: 56px;
  background: rgba(184,150,78,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.upload-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.upload-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.upload-box p { font-size: .82rem; color: rgba(247,243,238,.4); margin-bottom: 24px; line-height: 1.6; }
.formats {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-top: 16px;
}
.fmt {
  background: rgba(255,255,255,.06);
  color: rgba(247,243,238,.5);
  font-size: .68rem;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── WHY ── */
.why { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.why-card {
  background: #fff;
  padding: 40px 32px;
  transition: transform .25s;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.why-card:hover { transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184,150,78,.12);
  line-height: 1;
  margin-bottom: 16px;
}
.why-icon {
  width: 44px; height: 44px;
  background: rgba(184,150,78,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.why-card p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 80px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  max-width: 500px;
  line-height: 1.25;
}
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--gold);
  padding: 14px 32px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: background .25s, transform .2s;
}
.btn-white:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border: 1.5px solid rgba(255,255,255,.5);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
  transition: border-color .25s, background .25s;
}
.btn-ghost-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── FOOTER ── */
footer {
  background: #080807;
  padding: 60px 7% 32px;
  color: rgba(247,243,238,.4);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand .logo { font-size: 1.8rem; }
.footer-brand p { font-size: .82rem; color: rgba(247,243,238,.3); margin-top: 10px; max-width: 240px; line-height: 1.6; }
.footer-contact a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(247,243,238,.5);
  text-decoration: none;
  font-size: .88rem;
  padding: 8px 0;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-contact svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FAQ ── */
.faq-section { background: var(--warm); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow .25s;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform .3s;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); stroke: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
  border-top: 1px solid var(--warm);
  padding-top: 16px;
}

/* ── CONTACT FORM ── */
.contact-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
}
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--warm);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  background: var(--cream);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,78,.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── UPLOAD FORM (Front) ── */
.upload-form-area {
  border: 1.5px dashed rgba(184,150,78,.4);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  background: rgba(255,255,255,.03);
  transition: border-color .25s, background .25s;
}
.upload-form-area:hover { border-color: var(--gold); background: rgba(184,150,78,.05); }
.upload-form-area h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 16px;
}
.upload-form-area input,
.upload-form-area textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  background: rgba(255,255,255,.06);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  outline: none;
  margin-bottom: 12px;
  transition: border-color .2s;
}
.upload-form-area input:focus,
.upload-form-area textarea:focus { border-color: var(--gold); }
.upload-form-area input::placeholder,
.upload-form-area textarea::placeholder { color: rgba(247,243,238,.3); }
.upload-form-area textarea { resize: vertical; min-height: 80px; }
.upload-form-area .file-input-wrap {
  border: 1.5px dashed rgba(184,150,78,.5);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background .2s;
}
.upload-form-area .file-input-wrap:hover { background: rgba(184,150,78,.08); }
.upload-form-area .file-input-label {
  font-size: .82rem;
  color: rgba(247,243,238,.5);
  display: block;
  margin-top: 6px;
}

.wa-fallback {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(184,150,78,.2);
  border-radius: 4px;
  background: rgba(37,211,102,.04);
  text-align: center;
}
.wa-fallback p {
  font-size: .85rem;
  color: rgba(247,243,238,.5);
  margin-bottom: 12px;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
  transition: background .25s, transform .2s;
}
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }

/* ── ALERTS (Front) ── */
.front-alert {
  padding: 14px 20px;
  border-radius: 4px;
  font-size: .88rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.front-alert-success {
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.2);
  color: #1a8a3a;
}
.front-alert-danger {
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.2);
  color: #c53030;
}

/* ── ORDER SECTION ── */
.order-section {
  padding: 100px 8%;
  text-align: center;
}
.order-form-wrap {
  max-width: 720px;
  margin: 40px auto 0;
  background: #fff;
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.06);
  text-align: left;
}
.order-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  margin-top: 24px;
}
.order-step:first-of-type { margin-top: 0; }
.step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.order-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
}
.order-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--warm);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--ink);
  background: var(--bg);
  cursor: pointer;
  margin-bottom: 16px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color .2s;
}
.order-select:focus { border-color: var(--gold); outline: none; }
.inv-fields {
  animation: fadeInFields .3s ease;
}
@keyframes fadeInFields {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.order-form-wrap input,
.order-form-wrap textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--warm);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  color: var(--ink);
  background: var(--bg);
  margin-bottom: 10px;
  transition: border-color .2s;
}
.order-form-wrap input:focus,
.order-form-wrap textarea:focus { border-color: var(--gold); outline: none; }
.order-form-wrap textarea { resize: vertical; min-height: 80px; }
.order-form-wrap .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.order-submit {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  padding: 16px;
  font-size: .95rem;
}

/* ── GALLERY PAGE ── */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 20px;
  border: 1.5px solid var(--warm);
  background: transparent;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all .25s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.gallery-img {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .4s;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
}
.gallery-item:hover .gallery-img { transform: scale(1.03); }
.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.gallery-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-top: 4px;
  font-weight: 400;
}
.gallery-overlay p {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}
.gallery-featured {
  display: inline-block;
  font-size: .7rem;
  margin-top: 6px;
  color: var(--gold);
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted); }
.breadcrumb span:last-child { color: var(--ink); font-weight: 500; }
.active-link { color: var(--gold) !important; }

/* ── INVITATION GRID ── */
.invitation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.inv-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.inv-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,.12); }
.inv-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.inv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.inv-card:hover .inv-img img { transform: scale(1.05); }
.inv-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inv-info {
  padding: 16px 18px;
}
.inv-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 400;
}
.inv-info p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}
.inv-price {
  display: inline-block;
  margin-top: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gold);
}

/* ── EMPTY CATEGORY ── */
.empty-category {
  text-align: center;
  padding: 60px 20px;
}
.empty-cat-visual {
  width: 240px;
  height: 280px;
  margin: 0 auto 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-category h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.empty-category p {
  font-size: .88rem;
  color: var(--muted);
}

/* ── PRODUCT DETAIL ── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 24px;
}
.product-main-img {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,.1);
}
.product-main-img img {
  width: 100%;
  display: block;
}
.product-placeholder {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-category-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1.5px solid;
  border-radius: 2px;
  margin-bottom: 16px;
}
.product-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.product-subtitle {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.product-description {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--warm);
}
.product-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--warm);
}
.pf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted);
}

/* ── VARIATION SELECTOR ── */
.variation-selector {
  margin: 20px 0;
}
.variation-selector h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variation-option {
  padding: 10px 16px;
  border: 1.5px solid var(--warm);
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.variation-option:hover { border-color: var(--gold); }
.variation-option.active {
  border-color: var(--gold);
  background: rgba(184,150,78,.06);
  box-shadow: 0 0 0 1px var(--gold);
}
.vo-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink);
}
.vo-price {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 500;
}

/* ── PRICE CALCULATOR ── */
.price-calculator {
  background: var(--bg);
  border: 1.5px solid var(--warm);
  border-radius: 6px;
  padding: 20px;
  margin: 20px 0;
}
.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calc-row label {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink);
}
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--warm);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-btn:first-child { border-radius: 4px 0 0 4px; }
.qty-btn:last-child { border-radius: 0 4px 4px 0; }
#qtyInput {
  width: 80px;
  height: 36px;
  border: 1.5px solid var(--warm);
  border-left: none;
  border-right: none;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}
#qtyInput::-webkit-outer-spin-button,
#qtyInput::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--warm);
}
#calcDetail {
  font-size: .82rem;
  color: var(--muted);
}
.calc-total {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
}
.calc-min {
  display: block;
  margin-top: 8px;
  font-size: .75rem;
  color: var(--muted);
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 320px; }
  .hero-left { padding: 100px 6% 60px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step-arrow { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .prod-card:first-child { grid-column: span 1; }
  .upload-section { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .g-item:nth-child(1) .g-visual { min-height: 200px; }
  .contact-section { grid-template-columns: 1fr; gap: 40px; }
  .contact-form .form-row-2 { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .invitation-grid { grid-template-columns: 1fr 1fr; }
  .order-form-wrap .form-row-2 { grid-template-columns: 1fr; }
  .variation-options { flex-direction: column; }
}

