:root {
  --coral: #FF5E7E;
  --teal: #2ED1C9;
  --yellow: #FFD93D;
  --purple: #8B5CF6;
  --orange: #FF8E3C;
  --sky: #4FC3F7;
  --ink: #1A1A2E;
  --ink-soft: #2D3748;
  --muted: #6B7280;
  --bg: #FFF8F0;
  --bg-soft: #FFFBF5;
  --card: #FFFFFF;
  --border: rgba(26,26,46,0.08);
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
  --shadow: 0 10px 30px rgba(26,26,46,0.10);
  --shadow-lg: 0 20px 50px rgba(26,26,46,0.14);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --grad-main: linear-gradient(135deg, #FF5E7E 0%, #8B5CF6 50%, #2ED1C9 100%);
  --grad-warm: linear-gradient(135deg, #FFD93D 0%, #FF8E3C 100%);
  --grad-cool: linear-gradient(135deg, #4FC3F7 0%, #8B5CF6 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,248,240,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
}
.logo-img {
  height: 68px !important;
  max-height: 68px !important;
  width: auto !important;
  max-width: 220px !important;
  display: block;
  object-fit: contain;
}
.nav .logo {
  max-height: 76px;
  overflow: hidden;
}
.nav { padding: 12px 0; }
.foot-brand {
  align-items: center;
}
.foot-brand .logo-img {
  height: 64px !important;
  max-height: 64px !important;
  background: white;
  border-radius: 10px;
  padding: 6px 10px;
  width: auto !important;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.nav-links a.btn-primary.active::after { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(.34,1.56,.64,1);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-main);
  color: white;
  box-shadow: 0 8px 20px rgba(255,94,126,0.35);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 28px rgba(255,94,126,0.45); }
.btn-secondary {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
}
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--coral); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== Breadcrumb ===== */
.crumb {
  padding: 100px 24px 0;
  font-size: 0.92rem;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.crumb a { color: var(--ink-soft); font-weight: 600; }
.crumb a:hover { color: var(--coral); }
.crumb span { color: var(--muted); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,217,61,0.35), transparent 40%),
    radial-gradient(circle at 90% 30%, rgba(46,209,201,0.30), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(139,92,246,0.20), transparent 50%),
    var(--bg);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 320px; height: 320px; background: var(--coral); top: -80px; left: -100px; animation: float 18s ease-in-out infinite; }
.blob-2 { width: 380px; height: 380px; background: var(--teal); top: 40%; right: -120px; animation: float 22s ease-in-out infinite reverse; }
.blob-3 { width: 260px; height: 260px; background: var(--yellow); bottom: 10%; left: 30%; animation: float 25s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.hero-pill .dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.2);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .accent {
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-item svg { color: #22c55e; }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-1 { width: 65%; height: 70%; top: 0; left: 0; --r: -3deg; animation: bob 6s ease-in-out infinite; }
.hero-card-2 { width: 55%; height: 55%; bottom: 0; right: 0; --r: 4deg; animation: bob 7s ease-in-out infinite 1s; }
.hero-card-3 { width: 38%; height: 38%; top: 12%; right: 4%; --r: -6deg; animation: bob 5s ease-in-out infinite 0.5s; }
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}

.sticker {
  position: absolute;
  background: var(--yellow);
  color: var(--ink);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  z-index: 2;
}
.sticker-1 { top: 5%; right: 0; transform: rotate(8deg); background: var(--yellow); }
.sticker-2 { bottom: 15%; left: -5%; transform: rotate(-6deg); background: var(--coral); color: white; }

/* ===== PHONE CTA ===== */
.phone-cta {
  position: relative;
  padding: 28px 0;
  background: var(--grad-main);
  overflow: hidden;
}
.phone-cta::before, .phone-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transform: translateY(-50%);
}
.phone-cta::before { left: -80px; }
.phone-cta::after { right: -80px; }
.phone-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}
.phone-cta-text {
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.3;
}
.phone-cta-text small {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
}
.phone-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: white;
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  box-shadow: 0 14px 36px rgba(0,0,0,0.25);
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
  text-decoration: none;
  white-space: nowrap;
}
.phone-cta-btn:hover { transform: translateY(-3px) scale(1.02); }
.phone-cta-icon {
  width: 44px; height: 44px;
  background: var(--grad-main);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  animation: ring 2s ease-in-out infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0); }
}

/* ===== SECTIONS ===== */
.section { padding: 90px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  background: white;
  color: var(--coral);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* ===== PARTYOPS BOOKING ===== */
.partyops-section {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,217,61,0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(46,209,201,0.15), transparent 50%),
    var(--bg-soft);
}
.partyops-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  max-width: 1000px;
  margin: 0 auto;
  min-height: 300px;
}
#partyops-booking-widget {
  min-height: 200px;
}
#book-this-castle {
  scroll-margin-top: 90px;
}

/* ===== BOOKING MODAL ===== */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.book-modal.open { display: flex; animation: modalFade 0.25s ease; }
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.book-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 30, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.book-modal-panel {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: modalSlide 0.3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalSlide {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.book-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--grad-main);
  color: white;
  flex-shrink: 0;
}
.book-modal-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
}
.book-modal-head h3 {
  color: white;
  font-size: 1.25rem;
  margin: 4px 0 0;
}
.book-modal-close {
  background: rgba(255,255,255,0.18);
  border: none;
  color: white;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.book-modal-close:hover { background: rgba(255,255,255,0.3); }
.book-modal-body {
  flex: 1;
  overflow: hidden;
  background: var(--bg-soft);
  min-height: 460px;
}
.book-modal-body iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}
.book-modal-foot {
  padding: 12px 24px;
  background: var(--bg);
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
  flex-shrink: 0;
}
.book-modal-foot a {
  color: var(--coral);
  font-weight: 700;
}
body.modal-open { overflow: hidden; }

.pc-book {
  cursor: pointer;
  font-family: 'Fredoka', sans-serif;
  border: none;
}

@media (max-width: 640px) {
  .book-modal { padding: 0; align-items: stretch; }
  .book-modal-panel {
    max-width: none;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  .book-modal-body { min-height: 0; }
}
#partyops-booking-widget:empty::after {
  content: 'Loading booking system…';
  display: block;
  text-align: center;
  padding: 80px 0;
  color: var(--muted);
  font-family: 'Fredoka', sans-serif;
}
.book-cta-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--grad-main);
}
.book-cta-emoji {
  font-size: 3rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.book-cta-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.book-cta-card p {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.book-cta-btn {
  font-size: 1.05rem;
  padding: 16px 36px;
}
@media (max-width: 640px) {
  .partyops-wrap { padding: 18px; }
  .book-cta-card { padding: 36px 22px; }
}

/* ===== CAT HERO (category pages) ===== */
.cat-hero {
  padding: 30px 0 60px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,217,61,0.20), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(46,209,201,0.15), transparent 50%),
    var(--bg);
}
.cat-hero-inner {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}
.cat-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
  text-align: center;
}
.cat-hero-body p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.05rem; }
.cat-hero-body h3 { font-size: 1.3rem; margin: 24px 0 12px; }
.cat-hero-body ul { padding-left: 22px; color: var(--ink-soft); margin-bottom: 16px; }
.cat-hero-body li { margin-bottom: 6px; }

/* ===== CATS GRID ===== */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
  display: block;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--grad-main);
}
.cat-card.c2::before { background: var(--grad-cool); }
.cat-card.c3::before { background: linear-gradient(135deg, #FF8E3C, #FF5E7E); }
.cat-card.c4::before { background: linear-gradient(135deg, #FFD93D, #2ED1C9); }
.cat-emoji {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 14px;
}
.cat-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cat-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 14px; }
.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--grad-main);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  margin-bottom: 16px;
}
.why-card:nth-child(2) .why-icon { background: var(--grad-warm); }
.why-card:nth-child(3) .why-icon { background: var(--grad-cool); }
.why-card:nth-child(4) .why-icon { background: linear-gradient(135deg, #2ED1C9, #4FC3F7); }
.why-card:nth-child(5) .why-icon { background: linear-gradient(135deg, #FF8E3C, #FFD93D); }
.why-card:nth-child(6) .why-icon { background: linear-gradient(135deg, #8B5CF6, #FF5E7E); }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.95rem; }

/* ===== PRODUCTS ===== */
.products-section { background: var(--bg-soft); }
.filter-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-chip {
  padding: 10px 18px;
  border-radius: 999px;
  background: white;
  border: 2px solid var(--border);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--ink-soft);
}
.filter-chip:hover { border-color: var(--coral); }
.filter-chip.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(.34,1.56,.64,1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 ratio - bullet-proof fallback */
  overflow: hidden;
  background: linear-gradient(135deg, #FFE5E5, #E5F5FF);
  display: block;
  flex-shrink: 0;
}
.product-img > img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,0.95);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.product-price {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--ink);
  color: white;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
}
.product-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-body h3 { font-size: 1rem; margin-bottom: 12px; min-height: 2.4em; color: var(--ink); line-height: 1.3; }
.product-body h3 a { color: var(--ink); transition: color 0.2s; }
.product-body h3 a:hover { color: var(--coral); }
.product-cta {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.product-cta a,
.product-cta button {
  flex: 1;
  text-align: center;
  padding: 11px 12px;
  border-radius: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  white-space: nowrap;
}
.pc-book {
  background: var(--ink);
  color: white;
}
.pc-book:hover { background: var(--coral); }
.pc-info {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--border);
}

/* ===== PRODUCT PAGE ===== */
.prod {
  padding: 30px 0 50px;
}
.prod-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.prod-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.prod-gallery .g-img:first-child { grid-column: 1 / -1; }
.g-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #FFE5E5, #E5F5FF);
  box-shadow: var(--shadow-sm);
}
.g-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.4s; }
.g-img:hover img { transform: scale(1.04); }
.prod-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.prod-price-pill {
  display: inline-block;
  background: var(--grad-main);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.prod-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.prod-prices {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.prod-prices th, .prod-prices td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.prod-prices th {
  background: var(--bg);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.prod-prices tr:last-child td { border-bottom: none; }
.prod-prices td:last-child { font-weight: 700; color: var(--coral); }
.prod-suit {
  background: white;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
}
.prod-suit h4 { margin-bottom: 10px; font-size: 1rem; }
.prod-suit ul { list-style: none; padding: 0; }
.prod-suit li { padding: 4px 0; color: var(--ink-soft); }
.prod-desc {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}
.prod-desc h1, .prod-desc h2, .prod-desc h3 { margin: 24px 0 12px; }
.prod-desc h1 { font-size: 2rem; margin-top: 0; }
.prod-desc h2 { font-size: 1.5rem; }
.prod-desc h3 { font-size: 1.2rem; }
.prod-desc p { color: var(--ink-soft); margin-bottom: 14px; }
.prod-desc ul { padding-left: 22px; color: var(--ink-soft); margin-bottom: 14px; }
.prod-desc li { margin-bottom: 6px; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step {
  text-align: center;
  padding: 28px 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 56px; height: 56px;
  background: var(--grad-main);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(255,94,126,0.35);
}
.step:nth-child(2) .step-num { background: var(--grad-warm); }
.step:nth-child(3) .step-num { background: var(--grad-cool); }
.step:nth-child(4) .step-num { background: linear-gradient(135deg, #2ED1C9, #FFD93D); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ===== AREAS ===== */
.areas-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(46,209,201,0.15), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,217,61,0.15), transparent 50%),
    var(--bg);
}
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.area {
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.area:hover { background: var(--yellow); transform: translateY(-2px); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq {
  background: white;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq:hover { box-shadow: var(--shadow); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: all 0.3s;
  color: var(--coral);
}
.faq.open .faq-icon { background: var(--coral); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 24px 22px; color: var(--ink-soft); }

/* ===== CTA / CONTACT ===== */
.cta-section {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,94,126,0.3), transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,209,201,0.3), transparent 70%);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-grid h2 { color: white; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.cta-grid p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }
.cta-options { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.cta-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.25s;
  color: white;
}
.cta-option:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.cta-option-icon {
  width: 44px; height: 44px;
  background: var(--grad-main);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cta-option-text { flex: 1; }
.cta-option-label { font-size: 0.8rem; opacity: 0.7; font-weight: 600; }
.cta-option-value { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.05rem; }

.contact-form {
  background: white;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.contact-form h3 { margin-bottom: 18px; font-size: 1.4rem; }
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--ink-soft);
}
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  background: var(--bg-soft);
  transition: all 0.2s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: white;
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-honey { position: absolute; left: -9999px; }

/* ===== FOOTER ===== */
footer {
  background: #0F0F1E;
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.foot-col h4 { color: white; font-size: 1rem; margin-bottom: 16px; }
.foot-col a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--yellow); }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; color: white; font-family: 'Fredoka', sans-serif; font-size: 1.25rem; font-weight: 700; }
.foot-tag { font-size: 0.92rem; line-height: 1.6; margin-bottom: 18px; }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 0;
  transition: all 0.25s;
}
.socials a:hover { background: var(--coral); transform: translateY(-2px); }
.foot-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.45);
  z-index: 90;
  animation: wapulse 2.5s ease-in-out infinite;
  transition: transform 0.25s;
}
.whatsapp-float:hover { transform: scale(1.08); }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 12px 28px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
}
.wa-tooltip {
  position: absolute;
  right: 72px;
  background: var(--ink);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== CHATBOT ===== */
.chat-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(26,26,46,0.35);
  z-index: 90;
  cursor: pointer;
  border: none;
  transition: transform 0.25s;
}
.chat-btn:hover { transform: scale(1.08); }
.chat-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 18px; height: 18px;
  background: var(--coral);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg);
}
.chatbox {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 360px;
  max-height: 540px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  z-index: 91;
  overflow: hidden;
}
.chatbox.open { display: flex; }

/* ===== CHAT WIDGET (restored) ===== */
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 16px; background: var(--ink); color: #fff; }
.chat-head-info { display: flex; align-items: center; gap: 10px; }
.chat-head h4 { color: #fff; font-size: 1rem; }
.chat-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.14); display: grid; place-items: center; font-size: 1.15rem; }
.chat-status { font-size: .76rem; color: rgba(255,255,255,.72); }
.chat-close { background: none; border: 0; color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; }
.chat-body { flex: 1; min-height: 200px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); }
.chat-body .msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.45; }
.chat-body .msg-bot { background: #fff; border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; color: var(--ink); }
.chat-body .msg-user { background: var(--ink); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.quick-replies { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 10px; background: var(--bg-soft); }
.quick-replies .qr { background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 7px 13px; font-size: .82rem; font-weight: 600; color: var(--ink); cursor: pointer; font-family: inherit; }
.quick-replies .qr:hover { border-color: var(--coral); color: var(--coral); }
.chat-foot { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: #fff; }
.chat-input { flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 10px 14px; font-family: inherit; font-size: .9rem; }
.chat-input:focus { outline: none; border-color: var(--coral); }
.chat-send { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; display: grid; place-items: center; cursor: pointer; flex-shrink: 0; }
.chat-wa-cta { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: #25D366; color: #fff; font-weight: 700; font-size: .9rem; }

/* =====================================================================
   2026 REDESIGN LAYER - full-bleed hero, uniform catalogue, clean chrome
   ===================================================================== */
.nav { background: rgba(255,248,240,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.eyebrow { background: none; box-shadow: none; padding: 0; color: var(--coral); font-size: .78rem; font-weight: 800; letter-spacing: .14em; margin-bottom: 12px; }

.hero { position: relative; overflow: hidden; padding: 0; min-height: clamp(400px, 54vh, 540px); display: flex; align-items: flex-end; background: #15151e; }
.hero::before { content: ""; position: absolute; inset: 0; background: url("/images/hero.jpg") center/cover no-repeat; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(13,13,26,.84) 0%, rgba(13,13,26,.58) 42%, rgba(13,13,26,.12) 78%, rgba(13,13,26,0) 100%), linear-gradient(0deg, rgba(13,13,26,.5), transparent 50%); }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-inner { max-width: 620px; color: #fff; padding: 104px 0 60px; }
.hero-inner h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 16px; }
.hero-inner p { color: rgba(255,255,255,.92); font-size: clamp(1rem, 1.5vw, 1.18rem); max-width: 46ch; margin-bottom: 26px; }
.hero-inner .hero-ctas { margin: 0; }
.hero .btn-secondary { background: rgba(255,255,255,.14); color: #fff; border: 2px solid rgba(255,255,255,.75); }
.hero .btn-secondary:hover { background: rgba(255,255,255,.24); border-color: #fff; }

.phone-cta { background: var(--ink); padding: 0; }
.phone-cta::before, .phone-cta::after { display: none; }
.phone-cta-inner { gap: 16px; padding: 14px 0; }
.phone-cta-text { font-size: 1rem; font-weight: 600; }
.phone-cta-text small { font-weight: 500; }
.phone-cta-btn { background: #fff; color: var(--ink); padding: 10px 20px; font-size: 1.05rem; box-shadow: none; }
.phone-cta-btn:hover { transform: none; background: var(--yellow); }
.phone-cta-icon { width: 32px; height: 32px; background: var(--coral); animation: none; }

.cats { grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card { padding: 0; overflow: hidden; border-radius: var(--radius-sm); border: 1px solid var(--border); background: #fff; text-align: left; box-shadow: none; }
.cat-card::before { display: none; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card-img { aspect-ratio: 4/3; background: var(--bg-soft); overflow: hidden; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.cat-card:hover .cat-card-img img { transform: scale(1.05); }
.cat-card-body { padding: 14px 16px 16px; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.cat-card p { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.cat-arrow { color: var(--coral); font-weight: 700; font-size: .85rem; }

.products { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.product { border-radius: var(--radius-sm); box-shadow: none; border: 1px solid var(--border); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.product-img { background: var(--bg-soft); }
.product-tag { top: 8px; left: 8px; padding: 4px 9px; font-size: .68rem; }
.product-price { top: 8px; right: 8px; padding: 4px 9px; font-size: .78rem; }
.product-body { padding: 12px 13px 14px; }
.product-body h3 { font-size: .9rem; line-height: 1.25; min-height: 0; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-cta { gap: 6px; }
.product-cta a, .product-cta button { padding: 8px 10px; font-size: .8rem; min-height: 34px; border-radius: 8px; }

.prod-gallery { grid-template-columns: repeat(4, 1fr); gap: 8px; }
.prod-gallery .g-img:first-child { grid-column: 1 / -1; }
.g-img { border-radius: var(--radius-sm); box-shadow: none; border: 1px solid var(--border); }
.g-img img { aspect-ratio: 1 / 1; }
.prod-gallery .g-img:first-child img { aspect-ratio: 4 / 3; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: 1fr; }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(255,248,240,.98); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 8px 24px 16px; box-shadow: var(--shadow); display: none; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 2px; border-bottom: 1px solid var(--border); }
  .nav-links a.btn-primary { margin-top: 12px; text-align: center; border-bottom: 0; }
}
@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .hero-inner { padding: 92px 0 40px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .prod-gallery { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 460px) {
  .cats { grid-template-columns: 1fr; }
  .why-grid, .steps { grid-template-columns: 1fr; }
  .chatbox, .chat-btn, .whatsapp-float { right: 16px; }
  .chatbox { width: calc(100vw - 32px); }
}
