/* =========================================
   ANUSHIA — Luxe Editorial Hijab Store
   Plain CSS, no frameworks
   ========================================= */

:root {
  --cream: #f5f0e8;
  --ink: #1a1410;
  --gold: #c9a875;
  --gold-deep: #a08560;
  --wa: #25d366;
  --wa-dark: #1ebe57;
  --maxw: 1400px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Fraunces', Georgia, serif; font-optical-sizing: auto; font-weight: 300; }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.dot { color: var(--gold-deep); }

::selection { background: var(--ink); color: var(--cream); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; color: inherit; font: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 48px; } }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}
.eyebrow.light { opacity: 0.5; }

.section { padding: 96px 0; }
@media (min-width: 1024px) { .section { padding: 128px 0; } }

/* ========= NAV ========= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
  border-bottom: 1px solid transparent;
  color: white;
}
#navbar.scrolled {
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(26, 20, 16, 0.1);
  color: var(--ink);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .nav-inner { padding: 20px 48px; } }

.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.nav-menu-btn:hover { opacity: 0.6; }
.nav-menu-btn.light { color: var(--cream); }

.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) { .nav-logo { font-size: 28px; } }
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 1024px) { .logo-img { height: 48px; } }

.nav-actions { display: flex; align-items: center; gap: 20px; }

.icon-btn { transition: opacity 0.3s; display: flex; }
.icon-btn:hover { opacity: 0.6; }

.wa-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  padding: 8px 16px;
  transition: all 0.4s;
}
.wa-pill:hover { background: var(--ink); color: var(--cream); }
.wa-mobile { display: none; }
@media (max-width: 639px) {
  .wa-pill { display: none; }
  .wa-mobile { display: flex; }
}

/* ========= FULLSCREEN MENU ========= */
.fullscreen-menu {
  position: fixed; inset: 0;
  z-index: 60;
  background: var(--ink);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
}
.fullscreen-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-header {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .menu-header { padding: 20px 48px; } }
.menu-logo { font-size: 24px; }
.menu-body {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  gap: 48px;
}
@media (min-width: 1024px) {
  .menu-body { padding: 64px 48px; grid-template-columns: 1fr 1fr; gap: 48px; }
}

.menu-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.menu-link {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 300;
  transition: color 0.3s;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}
.fullscreen-menu.open .menu-link {
  animation: menuItemIn 0.6s forwards;
}
.menu-list li:nth-child(1) .menu-link { animation-delay: 0.1s; }
.menu-list li:nth-child(2) .menu-link { animation-delay: 0.16s; }
.menu-list li:nth-child(3) .menu-link { animation-delay: 0.22s; }
.menu-list li:nth-child(4) .menu-link { animation-delay: 0.28s; }
.menu-list li:nth-child(5) .menu-link { animation-delay: 0.34s; }
.menu-list li:nth-child(6) .menu-link { animation-delay: 0.40s; }
@keyframes menuItemIn { to { opacity: 1; transform: translateY(0); } }
@media (min-width: 1024px) { .menu-link { font-size: 64px; } }
.menu-link:hover { color: var(--gold); }

.menu-side { padding-top: 0; }
@media (min-width: 1024px) { .menu-side { padding-top: 64px; } }
.menu-materials { list-style: none; margin-bottom: 48px; }
.menu-materials li {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.3s;
}
.menu-materials li:hover { color: var(--gold); }
.menu-email { font-size: 14px; opacity: 0.8; margin-top: 8px; }

/* ========= HERO ========= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,16,0.3) 0%, transparent 40%, var(--cream) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px 96px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  will-change: transform, opacity;
}
@media (min-width: 1024px) { .hero-content { padding: 0 48px 128px; } }

.hero-eyebrow {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  color: var(--ink);
  font-size: clamp(56px, 14vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  font-weight: 300;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 16px;
  vertical-align: top;
}
@media (min-width: 1024px) { .hero-title .word { margin-right: 24px; } }
.hero-title .word span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroWordIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .word:nth-child(1) span { animation-delay: 0.2s; }
.hero-title .word:nth-child(2) span { animation-delay: 0.35s; }
.hero-title .word:nth-child(3) span { animation-delay: 0.5s; }
@keyframes heroWordIn { to { transform: translateY(0); } }

.hero-actions {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.reveal {
  animation: revealIn 0.8s forwards;
  animation-delay: var(--d, 0.6s);
}
@keyframes revealIn { to { opacity: 1; transform: translateY(0); } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  padding: 16px 28px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.5s;
}
.btn-primary:hover { background: var(--cream); color: var(--ink); border: 1px solid var(--ink); }
.btn-primary .arrow { transition: transform 0.5s; }
.btn-primary:hover .arrow { transform: rotate(45deg); }

.hero-wa-link {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(26, 20, 16, 0.4);
  padding-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s;
}
.hero-wa-link:hover { border-bottom-color: var(--ink); }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: rgba(245, 240, 232, 0.6);
  opacity: 0;
  animation: fadeIn 1s 1.6s forwards, scrollPulse 2s 2.6s infinite ease-in-out;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ========= MARQUEE ========= */
.marquee-wrap {
  border-top: 1px solid rgba(26,20,16,0.1);
  border-bottom: 1px solid rgba(26,20,16,0.1);
  overflow: hidden;
  padding: 20px 0;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  font-size: 22px;
  font-style: italic;
  color: rgba(26,20,16,0.7);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========= SECTION HEAD ========= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}
.section-title {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.link-arrow {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap 0.3s;
}
.link-arrow:hover { gap: 16px; }
@media (min-width: 768px) { .link-arrow { display: inline-flex; } }
.head-note {
  display: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
  max-width: 200px;
  text-align: right;
}
@media (min-width: 768px) { .head-note { display: block; } }

/* ========= CATEGORIES ========= */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

.cat-card { display: block; }
.cat-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(26,20,16,0.05);
  margin-bottom: 16px;
}
.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.06); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,20,16,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.cat-card:hover .cat-overlay { opacity: 1; }

.cat-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.cat-meta h3 { font-size: 20px; }
@media (min-width: 1024px) { .cat-meta h3 { font-size: 24px; } }
.cat-meta span {
  font-size: 11px;
  opacity: 0.5;
  letter-spacing: 0.05em;
}

/* ========= ATELIER ========= */
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .atelier-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .atelier-text { grid-column: 2 / span 5; order: 1; }
  .atelier-img { grid-column: 8 / span 5; order: 2; }
}

.atelier-title {
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.05;
  font-weight: 300;
  margin-bottom: 32px;
}
.atelier-body {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 32px;
  max-width: 460px;
}
@media (min-width: 1024px) { .atelier-body { font-size: 18px; } }

.atelier-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.atelier-img img { width: 100%; height: 100%; object-fit: cover; }

/* ========= PRODUCT GRID ========= */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 1024px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.product-card { cursor: pointer; }
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: rgba(26,20,16,0.05);
  margin-bottom: 16px;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-wa-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--wa);
  color: white;
  padding: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.product-card:hover .product-wa-btn { transform: translateY(0); opacity: 1; }

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.product-meta h3 {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 300;
}
@media (min-width: 1024px) { .product-meta h3 { font-size: 18px; } }
.product-material {
  font-size: 11px;
  opacity: 0.5;
  margin-top: 4px;
}
.product-price {
  font-family: 'Fraunces', serif;
  font-size: 15px;
  font-weight: 300;
  white-space: nowrap;
}
@media (min-width: 1024px) { .product-price { font-size: 18px; } }

.product-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 240, 232, 0.9);
  color: var(--ink);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  z-index: 2;
}
.product-nav-btn:hover {
  background: var(--cream);
}
.product-card:hover .product-nav-btn {
  opacity: 1;
}
.prev-btn {
  left: 12px;
}
.next-btn {
  right: 12px;
}

.product-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.product-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.product-dots .dot:hover {
  background: rgba(245, 240, 232, 0.8);
  transform: scale(1.2);
}
.product-dots .dot.active {
  background: var(--cream);
  transform: scale(1.2);
}

/* ========= WHOLESALE ========= */
.wholesale-section {
  background: var(--ink);
  color: var(--cream);
  padding: 96px 0;
}
@media (min-width: 1024px) { .wholesale-section { padding: 128px 0; } }

.wholesale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .wholesale-grid { grid-template-columns: 1fr 1fr; }
}

.wholesale-title {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1;
  font-weight: 300;
  margin-bottom: 32px;
}
.wholesale-body {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.7;
  max-width: 460px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) { .wholesale-body { font-size: 18px; } }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(245, 240, 232, 0.1);
}
.tier { background: var(--ink); padding: 32px; }
.tier .eyebrow { margin-bottom: 12px; }
.tier-value {
  font-size: 30px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}
.tier-moq { font-size: 11px; opacity: 0.6; }

/* ========= WhatsApp Buttons ========= */
.wa-btn, .wa-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--wa);
  color: white;
  padding: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.3s, background 0.3s;
}
.wa-btn:hover { opacity: 0.9; }
.wa-btn-large {
  padding: 16px 28px;
  font-size: 12px;
}
.wa-btn-large:hover { background: var(--wa-dark); }
.wa-btn.light, .wa-btn-large.light { /* same colors; semantic class */ }

/* ========= NEWSLETTER ========= */
.newsletter-section { text-align: center; }
.newsletter-title {
  font-size: clamp(32px, 6.5vw, 80px);
  line-height: 1;
  font-weight: 300;
  margin-bottom: 40px;
}
.newsletter-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-family: inherit;
}
.newsletter-form input::placeholder { opacity: 0.4; }
.newsletter-form button {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}
.newsletter-form button:hover { opacity: 0.6; }

/* ========= FOOTER ========= */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 0;
}
@media (min-width: 1024px) { .footer { padding: 80px 0 0; } }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(12, 1fr); }
  .footer-brand { grid-column: 1 / span 5; }
  .footer-col:nth-of-type(2) { grid-column: 7 / span 2; }
  .footer-col:nth-of-type(3) { grid-column: 9 / span 2; }
  .footer-col:nth-of-type(4) { grid-column: 11 / span 2; }
}

.footer-logo {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 24px;
}
@media (min-width: 1024px) { .footer-logo { font-size: 72px; } }
.footer-tag {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col li a {
  font-size: 14px;
  transition: color 0.3s;
}
.footer-col li a:hover { color: var(--gold); }

.footer-line { font-size: 14px; margin-bottom: 4px; opacity: 0.8; }
.footer-line.muted { opacity: 0.6; margin-top: 0; }
.footer-line.muted:first-of-type { margin-top: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a { transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

.footer-bottom {
  padding: 32px 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 11px;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* ========= FLOATING WHATSAPP ========= */
.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 40;
  background: var(--wa);
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.4s, transform 0.4s;
}
.fab-wa.visible { opacity: 1; transform: scale(1); }
.fab-wa:hover { transform: scale(1.08); }

/* ========= PRODUCT MODAL ========= */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 70;
  background: rgba(26,20,16,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
@media (min-width: 1024px) { .modal-overlay { padding: 32px; } }

.modal-content {
  background: var(--cream);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr;
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
  position: relative;
}
.modal-overlay.open .modal-content { transform: translateY(0) scale(1); opacity: 1; }
@media (min-width: 1024px) { .modal-content { grid-template-columns: 1fr 1fr; } }

.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 5;
  transition: opacity 0.3s;
  background: rgba(245,240,232,0.8);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { opacity: 0.6; }

.modal-image {
  aspect-ratio: 1/1;
  background: rgba(26,20,16,0.05);
  position: relative;
}
@media (min-width: 1024px) { .modal-image { aspect-ratio: auto; } }
.modal-image img { width: 100%; height: 100%; object-fit: cover; }

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 240, 232, 0.95);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, opacity 0.3s;
  z-index: 3;
  opacity: 0.9;
}
.modal-nav-btn:hover {
  background: var(--cream);
  opacity: 1;
}
.modal-prev-btn {
  left: 16px;
}
.modal-next-btn {
  right: 16px;
}

.modal-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.modal-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.modal-dots .dot:hover {
  background: rgba(245, 240, 232, 0.8);
  transform: scale(1.2);
}
.modal-dots .dot.active {
  background: var(--cream);
  transform: scale(1.3);
}

.modal-info { padding: 32px; }
@media (min-width: 1024px) { .modal-info { padding: 48px; } }
.modal-name {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 300;
}
@media (min-width: 1024px) { .modal-name { font-size: 36px; } }
.modal-price {
  font-size: 22px;
  margin-bottom: 32px;
  font-weight: 300;
}
.modal-desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 40px;
}

.wa-btn-large {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

.modal-hint {
  font-size: 11px;
  opacity: 0.5;
  text-align: center;
  margin-top: 16px;
}

.modal-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(26,20,16,0.1);
  font-size: 11px;
  opacity: 0.7;
}
.modal-meta p { margin-bottom: 4px; }

/* ========= SCROLL REVEAL ========= */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ========= REDUCED MOTION ========= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}
