/* ==========================================================================
   GANESH IDOLS — Premium single-page e-commerce
   Palette: ivory / saffron / maroon / gold / dark brown / white
   ========================================================================== */

:root {
  --ivory: #FAF4E8;
  --cream: #FDF9F1;
  --saffron: #E8A03C;
  --saffron-deep: #C97B00;
  --maroon: #76202E;
  --maroon-deep: #591522;
  --gold: #C9963F;
  --gold-light: #E9BE6E;
  --gold-pale: #F4D08C;
  --brown: #33261F;
  --brown-soft: #6E5A50;
  --white: #FFFFFF;
  --wa: #1FA855;
  --wa-dark: #128C46;
  --shadow-sm: 0 4px 14px rgba(89, 21, 34, 0.08);
  --shadow-md: 0 14px 34px rgba(89, 21, 34, 0.12);
  --shadow-lg: 0 24px 60px rgba(89, 21, 34, 0.18);
  --radius: 18px;
  --font-head: 'Tahoma', Verdana, Geneva, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.icon { width: 1em; height: 1em; flex: none; fill: currentColor; }

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px;
}

section { scroll-margin-top: calc(var(--header-h) + 10px); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn .icon { font-size: 1.15em; }
.btn:active { transform: scale(0.97); }

.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-xl { padding: 18px 40px; font-size: 1.08rem; }

.btn-gold {
  background: linear-gradient(135deg, #F4D08C 0%, #C9963F 60%, #E9BE6E 100%);
  color: #3A2415;
  box-shadow: 0 10px 26px rgba(201, 150, 63, 0.4);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(201, 150, 63, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--maroon);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-outline .icon { color: var(--wa-dark); }

.btn-primary {
  background: var(--maroon);
  color: var(--gold-pale);
  box-shadow: 0 12px 28px rgba(118, 32, 46, 0.35);
}
.btn-primary:hover { background: var(--maroon-deep); transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.btn-whatsapp {
  background: linear-gradient(135deg, #22B45C 0%, var(--wa) 55%, var(--wa-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(31, 168, 85, 0.42);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(31, 168, 85, 0.55);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(250, 244, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 150, 63, 0.35);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(250, 244, 232, 0.98);
  box-shadow: 0 8px 30px rgba(89, 21, 34, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 14px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; }
.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.24rem;
  letter-spacing: 2.5px;
  color: var(--maroon);
}
.brand-text em { font-style: italic; color: var(--gold); font-weight: 600; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown-soft);
  letter-spacing: 0.4px;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--maroon); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.btn-header-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 12px; }

.btn-header { display: inline-flex; padding: 11px 20px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 150, 63, 0.14);
  align-items: center;
}
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  isolation: isolate;
  padding: calc(var(--header-h) + 30px) 0 60px;
  overflow: hidden;
  background:
    radial-gradient(rgba(201, 150, 63, 0.14) 1px, transparent 1.4px),
    linear-gradient(180deg, #FBF5E9 0%, #F6ECD8 60%, #F3E6CB 100%);
  background-size: 24px 24px, cover;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(52% 52% at 12% 8%, rgba(232, 160, 60, 0.18), transparent 70%),
    radial-gradient(46% 46% at 88% 90%, rgba(118, 32, 46, 0.12), transparent 70%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 18px;
}
.eyebrow-mark {
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  border-radius: 2px;
  flex: none;
}
.center-eyebrow { justify-content: center; }
.center-eyebrow .eyebrow-mark { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.14;
  color: var(--maroon-deep);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(105deg, #B7791F 10%, #E8A03C 45%, #C9963F 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--brown-soft);
  max-width: 30em;
  margin-bottom: 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 34px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-soft);
}
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust .icon { width: 17px; height: 17px; color: var(--wa-dark); }

.hero-visual { position: relative; max-width: 460px; margin: 0 auto; width: 100%; }

.hero-photo-frame {
  position: relative;
  display: block;
  margin: 0;
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(150deg, #F4D08C 0%, #C9963F 55%, #E9BE6E 100%);
  box-shadow: 0 30px 60px rgba(89, 21, 34, 0.26);
  transform: rotate(1.4deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: floaty 6s ease-in-out infinite;
}
.hero-photo-frame:hover { transform: rotate(0deg) scale(1.01); box-shadow: 0 38px 74px rgba(89, 21, 34, 0.32); }

.ganesha-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.hero-photo-glow {
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hero-photo-cap {
  position: absolute;
  left: 26px;
  bottom: 26px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.98rem;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(89, 21, 34, 0.62);
  padding: 9px 18px;
  border-radius: 999px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.hero-orb-1 { width: 260px; height: 260px; background: rgba(232, 160, 60, 0.5); top: 2%; left: 6%; }
.hero-orb-2 { width: 220px; height: 220px; background: rgba(233, 190, 110, 0.55); bottom: 4%; right: 4%; }
.hero-orb-3 { width: 160px; height: 160px; background: rgba(118, 32, 46, 0.22); left: 34%; top: 40%; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Section headings ---------- */

.section-head { margin-bottom: 48px; }

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--maroon-deep);
  line-height: 1.2;
}
.section-sub {
  color: var(--brown-soft);
  font-size: 1.05rem;
  margin-top: 10px;
}

/* ---------- Collection / Filters ---------- */

.collection { padding: 88px 0 70px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(201, 150, 63, 0.55);
  background: rgba(255, 255, 255, 0.65);
  color: var(--brown-soft);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.chip:hover { border-color: var(--gold); color: var(--maroon); transform: translateY(-2px); }
.chip.active {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--gold-pale);
  border-color: var(--maroon);
  box-shadow: 0 10px 22px rgba(118, 32, 46, 0.28);
}

/* ---------- Product grid ---------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 26px;
  position: relative;
  min-height: 80px;
}

.product-card {
  background: var(--cream);
  border: 1px solid rgba(201, 150, 63, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  animation: cardIn 0.5s ease both;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 150, 63, 0.85);
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, #FBF3E1 0%, #F1E2BE 100%);
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.product-card:hover .card-media img { transform: scale(1.07); }

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  color: #3A2415;
  background: linear-gradient(135deg, #F4D08C, #E9BE6E);
  box-shadow: 0 6px 16px rgba(89, 21, 34, 0.22);
}

.card-gen {
  position: absolute;
  z-index: 2;
  inset: 12px 12px 12px auto;
  height: 23px;
  width: 23px;
  transform: rotate(45deg);
  border: 1.5px solid rgba(118, 32, 46, 0.45);
  pointer-events: none;
}
.card-sign {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  right: 14px;
  font-size: 1.15rem;
  font-family: Georgia, serif;
  color: rgba(118, 32, 46, 0.28);
  pointer-events: none;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 20px 20px 22px;
  flex: 1;
}

.card-pose {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--saffron-deep);
}

.card-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--maroon-deep);
  line-height: 1.25;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--brown-soft);
  padding: 8px 0;
  border-top: 1px dashed rgba(201, 150, 63, 0.5);
  border-bottom: 1px dashed rgba(201, 150, 63, 0.5);
}
.card-id {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--maroon);
}

.card-specs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  font-size: 0.8rem;
  color: var(--brown-soft);
}
.spec-dot { color: var(--gold); font-size: 1rem; line-height: 1; }

.card-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.price-now {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--maroon);
}
.price-was { font-size: 0.88rem; color: #A08B7A; text-decoration: line-through; }
.price-off {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--wa-dark);
  background: rgba(31, 168, 85, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
}

.card-wa {
  margin-top: auto;
  width: 100%;
  padding: 13px 14px;
}

.card-view {
  margin-top: 6px;
  width: 100%;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.85);
}

.price-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 0.88rem;
  color: var(--brown-soft);
  text-align: center;
}
.price-note .icon { width: 15px; height: 15px; margin-right: 2px; color: #8A6430; }

/* ---------- Festive offer band ---------- */

.offer-band {
  position: relative;
  background:
    radial-gradient(1100px 300px at 50% -60px, rgba(244, 208, 140, 0.28), transparent 60%),
    linear-gradient(100deg, #7A2033 0%, #A03A4E 55%, #7A2033 100%);
  border-top: 1px solid rgba(244, 208, 140, 0.35);
  border-bottom: 1px solid rgba(244, 208, 140, 0.35);
  padding: 44px 0;
}
.offer-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
}
.offer-band-text { flex: 1 1 480px; }
.offer-band-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #E9BE6E;
}
.offer-band-title {
  margin: 0;
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 600;
  line-height: 1.45;
  color: #FFF7E8;
  max-width: 780px;
}
.offer-band .btn-gold { flex-shrink: 0; }

/* ---------- FAQ ---------- */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid #EDE0C6;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(89, 21, 34, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover { box-shadow: 0 12px 30px rgba(89, 21, 34, 0.09); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: #59152A;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: #C9963F;
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px 20px;
  color: #6B5B4E;
  font-size: 0.97rem;
  line-height: 1.7;
}
.faq-a p { margin: 0; }
.price-note .icon { color: var(--gold); }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--brown-soft);
  font-family: var(--font-head);
  font-size: 1.2rem;
  padding: 50px 20px;
}

/* ---------- Features ---------- */

.features {
  padding: 80px 0;
  background:
    radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1.4px),
    linear-gradient(180deg, #F6ECD8 0%, #FBF5E9 100%);
  background-size: 22px 22px, cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 150, 63, 0.38);
  border-radius: var(--radius);
  padding: 34px 24px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: radial-gradient(circle, rgba(244, 208, 140, 0.55), rgba(233, 190, 110, 0.25) 70%);
  border: 1.5px solid rgba(201, 150, 63, 0.6);
}
.feature-icon svg { width: 30px; height: 30px; }

.feature-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--maroon-deep);
  margin-bottom: 8px;
}
.feature-card p { font-size: 0.92rem; color: var(--brown-soft); }

/* ---------- Highlight banner ---------- */

.highlight-banner {
  padding: 0;
  background: linear-gradient(120deg, var(--maroon-deep) 0%, var(--maroon) 55%, #8A2A3A 100%);
  position: relative;
  overflow: hidden;
}
.highlight-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(244, 208, 140, 0.14) 1px, transparent 1.4px);
  background-size: 20px 20px;
}

.highlight-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 30px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.eyebrow-light { color: var(--gold-pale); }
.eyebrow-light .eyebrow-mark { background: linear-gradient(90deg, transparent, var(--gold-pale)); }

.highlight-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.2;
  color: #FBF0D8;
  margin-bottom: 18px;
}
.highlight-text {
  color: rgba(251, 240, 216, 0.82);
  font-size: 1.05rem;
  max-width: 34em;
  margin-bottom: 30px;
}

.highlight-art {
  width: 300px;
  max-width: 70%;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.28));
  animation: floaty 7s ease-in-out infinite;
}

/* ---------- How to order ---------- */

.how-to { padding: 88px 0 70px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(201, 150, 63, 0.4);
  border-radius: var(--radius);
  padding: 40px 26px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.step-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  margin-bottom: 14px;
  line-height: 1;
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--maroon-deep);
  margin-bottom: 8px;
}
.step p { font-size: 0.93rem; color: var(--brown-soft); }

/* ---------- About ---------- */

.about { padding: 70px 0 90px; }

.about-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 54px;
}

.about-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid rgba(201, 150, 63, 0.55);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
  transition: transform 0.4s ease;
}
.about-frame:hover { transform: rotate(0deg); }
.about-frame svg { width: 100%; height: auto; display: block; }

.about-text {
  color: var(--brown-soft);
  font-size: 1.06rem;
  margin: 18px 0 24px;
  max-width: 40em;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  margin-bottom: 32px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  color: var(--brown);
}
.about-list .icon { width: 18px; height: 18px; }

/* ---------- Contact ---------- */

.contact { padding: 20px 0 90px; }

.contact-card {
  max-width: 820px;
  text-align: center;
  background: var(--cream);
  border: 1.5px solid rgba(201, 150, 63, 0.55);
  border-radius: 24px;
  padding: 60px 34px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(201, 150, 63, 0.12) 1px, transparent 1.4px);
  background-size: 20px 20px;
  pointer-events: none;
}
.contact-text {
  color: var(--brown-soft);
  font-size: 1.06rem;
  max-width: 34em;
  margin: 12px auto 32px;
}
.contact-card .btn { position: relative; }

/* ---------- Footer ---------- */

.site-footer {
  background: linear-gradient(180deg, var(--maroon-deep), #4A1120);
  color: rgba(251, 240, 216, 0.8);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(rgba(244, 208, 140, 0.1) 1px, transparent 1.4px);
  background-size: 20px 20px;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-brand-text { color: #FBF0D8; margin-bottom: 12px; display: inline-block; }
.footer-brand-text em { color: var(--gold-pale); }
.footer-brand p { font-size: 0.95rem; max-width: 24em; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.95rem;
  transition: color 0.25s ease, padding-left 0.25s ease;
  width: fit-content;
}
.footer-links a:hover { color: var(--gold-pale); padding-left: 6px; }

.footer-label {
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-phone {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: #FBF0D8;
  display: inline-block;
  margin-top: 4px;
  transition: color 0.25s ease;
}
.footer-phone:hover { color: var(--gold-pale); }
.footer-contact .footer-label { display: block; }

.footer-bottom {
  border-top: 1px solid rgba(244, 208, 140, 0.25);
  position: relative;
}
.footer-bottom p {
  text-align: center;
  font-size: 0.85rem;
  padding: 22px 0;
  color: rgba(251, 240, 216, 0.62);
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22B45C, var(--wa) 55%, var(--wa-dark));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 14px 34px rgba(31, 168, 85, 0.5);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 20px 44px rgba(31, 168, 85, 0.6); }
.wa-float .icon { font-size: 1.5em; }

.wa-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  animation: pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Scroll reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Product detail modal ---------- */

body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; animation: modalFade 0.25s ease; }

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43, 23, 17, 0.66);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: var(--cream);
  border: 1.5px solid rgba(244, 208, 140, 0.7);
  border-radius: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  animation: modalZoom 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes modalZoom {
  from { opacity: 0; transform: scale(0.94) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1.5px solid rgba(201, 150, 63, 0.6);
  color: var(--maroon);
  box-shadow: 0 6px 16px rgba(89, 21, 34, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}
.modal-close:hover { transform: scale(1.08); background: #fff; }
.modal-close .icon { width: 18px; height: 18px; }

.modal-media {
  position: relative;
  aspect-ratio: 4 / 4.7;
  background: linear-gradient(160deg, #FBF3E1 0%, #F1E2BE 100%);
  overflow: hidden;
}
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal-media .card-badge { top: 16px; left: 16px; }
.modal-media .card-sign { bottom: 12px; right: 16px; font-size: 1.6rem; }

.modal-body {
  align-self: center;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-pose { color: var(--brown-soft); font-size: 0.96rem; font-weight: 500; }

.modal-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  font-size: 0.86rem;
  color: var(--brown-soft);
  padding: 10px 0;
  border-top: 1px dashed rgba(201, 150, 63, 0.5);
  border-bottom: 1px dashed rgba(201, 150, 63, 0.5);
}
.modal-avail { font-weight: 600; color: var(--wa-dark); }
.modal-avail.made-to-order { color: var(--saffron-deep); }

.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(201, 150, 63, 0.5);
}
.spec-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.spec-key {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
}
.spec-val {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--brown);
}

.modal-note { justify-content: flex-start; margin-top: 2px; }

.modal-wa { align-self: flex-start; margin-top: 6px; }

.modal-hint { font-size: 0.86rem; color: var(--brown-soft); margin-top: 4px; }
.modal-hint strong { color: var(--maroon); }

/* ---------- Card click affordance ---------- */

.product-card { cursor: pointer; }
.product-card:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; }

.view-hint {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 8px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: rgba(89, 21, 34, 0.82);
  color: var(--gold-pale);
  pointer-events: none;
}
.product-card:hover .view-hint,
.product-card:focus-visible .view-hint { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .modal-shell { grid-template-columns: 1fr; max-width: 480px; }
  .modal-media { aspect-ratio: 4 / 3.4; }
  .modal-body { padding: 28px 22px 32px; }
  .modal-wa { width: 100%; align-self: stretch; }
  .modal-note, .modal-hint { text-align: center; }
  .modal-hint { align-self: center; }
}

@media (max-width: 1080px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 420px; }
  .highlight-inner { grid-template-columns: 1fr; text-align: center; }
  .highlight-copy { display: flex; flex-direction: column; align-items: center; }
  .highlight-art { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .about-list { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-links { flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 22px; }
}

@media (max-width: 860px) {
  .btn-header { display: none; }

  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 244, 232, 0.99);
    box-shadow: 0 30px 50px rgba(89, 21, 34, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    border-bottom: 1px solid rgba(201, 150, 63, 0.35);
  }
  .main-nav.open { max-height: 440px; opacity: 1; }

  .main-nav a:not(.btn) {
    padding: 15px 26px;
    border-bottom: 1px solid rgba(201, 150, 63, 0.22);
    font-size: 1.02rem;
  }
  .main-nav a:not(.btn)::after { display: none; }

  .btn-header-nav {
    display: flex;
    margin: 16px 22px 22px;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-body { padding: 14px 14px 16px; gap: 6px; }
  .card-pose { font-size: 0.66rem; letter-spacing: 1px; }
  .card-name { font-size: 1.02rem; }
  .card-meta { font-size: 0.72rem; }
  .price-now { font-size: 1.1rem; }
  .wa-float .wa-float-label { display: none; }
  .wa-float { padding: 14px; gap: 0; border-radius: 50%; }

  .hero { padding: calc(var(--header-h) + 24px) 0 46px; }
  .hero-cta .btn { width: 100%; }
  .hero-sub { font-size: 1rem; }
}

@media (max-width: 460px) {
  .brand-text { font-size: 1.05rem; letter-spacing: 1.6px; }
  .hero-trust { gap: 12px 18px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .about-list { grid-template-columns: 1fr; }
  .contact-card { padding: 44px 22px; }
  .filters { gap: 8px; }
  .chip { padding: 8px 15px; font-size: 0.82rem; }
  .modal-specs { grid-template-columns: 1fr; }
}