/* ==========================================================================
   Vana (For Children) - Warm Boutique Children's Design System
   Palette:
     Main Color:      #6a6d38 (Earthy Olive / Forest Moss)
     Secondary Color: #9e7849 (Warm Ochre / Earthy Camel)
     Accent Color:    #E2A829 / #CE951B (Warm Sunny Mustard Yellow)
     Background:      #FAF7EE / #FFFDF8 (Warm Linen & Butter Cream)
   ========================================================================== */

:root {
  /* Brand Colors */
  --color-primary: #6a6d38;
  --color-primary-dark: #4e5127;
  --color-primary-light: #838749;
  --color-primary-faint: rgba(106, 109, 56, 0.08);
  --color-primary-border: rgba(106, 109, 56, 0.2);

  --color-secondary: #9e7849;
  --color-secondary-dark: #7e5c32;
  --color-secondary-light: #b8915e;
  --color-secondary-faint: rgba(158, 120, 73, 0.09);

  /* Extra Requested Color: Sunny Mustard / Honey Yellow */
  --color-mustard: #E2A829;
  --color-mustard-hover: #CE951B;
  --color-mustard-dark: #A97811;
  --color-mustard-light: #FFF4D6;
  --color-mustard-faint: rgba(226, 168, 41, 0.12);
  --color-mustard-border: rgba(226, 168, 41, 0.35);

  /* Neutrals & Surfaces */
  --color-bg: #FAF7EE;
  --color-bg-card: #FFFFFF;
  --color-bg-alt: #F3EDE0;
  --color-text-main: #282A1A;
  --color-text-muted: #5B5F4A;
  --color-text-light: #828673;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Elevations & Shapes */
  --shadow-sm: 0 2px 8px rgba(40, 42, 26, 0.05);
  --shadow-md: 0 10px 28px rgba(40, 42, 26, 0.08);
  --shadow-lg: 0 20px 48px rgba(40, 42, 26, 0.11);
  --shadow-mustard: 0 8px 24px rgba(226, 168, 41, 0.28);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Container */
.container {
  width: 100%;
  max-width: 1448px;
  margin: 0 auto;
  padding: 0 clamp(24px, 3.5vw, 54px);
  position: relative;
  z-index: 2;
}

/* Top Announcement Bar */
.top-announcement-bar {
  background-color: var(--color-mustard-light);
  border-bottom: 1px solid var(--color-mustard-border);
  padding: 8px 0;
  font-size: 0.82rem;
  color: #6C4F0C;
  text-align: center;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.top-bar-badge {
  background-color: var(--color-mustard);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.top-bar-sep {
  opacity: 0.4;
}

.top-bar-contact {
  color: #6C4F0C;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.top-bar-contact strong {
  text-decoration: underline;
}

.top-bar-contact:hover {
  color: var(--color-primary-dark);
}

/* Ambient Glows */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.glow-moss {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(106, 109, 56, 0.16) 0%, transparent 70%);
  top: -60px;
  left: -120px;
}

.glow-mustard {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(226, 168, 41, 0.18) 0%, transparent 70%);
  top: 180px;
  right: -100px;
}

.glow-camel {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(158, 120, 73, 0.12) 0%, transparent 70%);
  bottom: 200px;
  left: 20%;
}

/* Header */
.site-header {
  padding: 20px 0 12px;
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover {
  transform: scale(1.03);
}

.main-logo {
  height: clamp(100px, 11vw, 130px);
  width: auto;
  object-fit: contain;
  display: block;
}

.header-right-actions {
  display: flex;
  align-items: center;
}

.social-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: #FFFFFF;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-primary-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.social-pill-link:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   Hero Section - Warm Children's Boutique Layout (2 Columns)
   ========================================================================== */
.hero-section {
  padding: 36px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
}

/* Coming Soon Pill (Prominently Highlighted) */
.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: linear-gradient(135deg, #FFF8DC 0%, #FFE599 100%);
  border: 2px solid var(--color-mustard);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(226, 168, 41, 0.32), 0 0 0 4px rgba(226, 168, 41, 0.12);
  margin-bottom: 22px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.coming-soon-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(226, 168, 41, 0.42), 0 0 0 5px rgba(226, 168, 41, 0.18);
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  background-color: var(--color-mustard-dark);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(226, 168, 41, 0.8);
  animation: beaconPulse 2s infinite;
}

@keyframes beaconPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(226, 168, 41, 0.8);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 9px rgba(226, 168, 41, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(226, 168, 41, 0);
  }
}

.mustard-sun {
  font-size: 1rem;
  line-height: 1;
}

.pill-text {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #383A1E;
}

/* Headline */
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero-subheading {
  font-size: 1.12rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 540px;
}

/* Subscribe Card - Clean Client Reference Layout */
.subscribe-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin-bottom: 22px;
  width: 100%;
  max-width: 530px;
}

.subscribe-form-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.client-email-input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  height: 52px;
  background-color: #FFFFFF;
  border: 1px solid #D2D0C6;
  border-radius: 10px !important;
  padding: 0 18px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--color-text-main);
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  transition: all var(--transition-fast);
}

.client-email-input:focus {
  border-color: #585E37;
  box-shadow: 0 0 0 3px rgba(88, 94, 55, 0.16);
}

.client-email-input::placeholder {
  color: #8E8D86;
  font-size: 0.95rem;
}

.btn-client-posted,
.btn.btn-client-posted {
  flex-shrink: 0;
  min-height: 52px;
  height: 52px;
  background-color: #585E37;
  color: #FAF8F3;
  font-family: var(--font-serif) !important;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 28px;
  border-radius: 10px !important;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 6px rgba(88, 94, 55, 0.16);
}

.btn-client-posted:hover,
.btn.btn-client-posted:hover {
  background-color: #494F2B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(88, 94, 55, 0.25);
}

.btn-client-posted:active,
.btn.btn-client-posted:active {
  transform: translateY(0);
}

/* Button: Mustard */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-mustard {
  background: linear-gradient(135deg, #E2A829 0%, #D49619 100%);
  color: #FFFFFF;
  padding: 13px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 20px rgba(226, 168, 41, 0.45), 0 2px 6px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.btn-mustard:hover {
  background: linear-gradient(135deg, #CE951B 0%, #B88011 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(206, 149, 27, 0.55), 0 0 0 3px rgba(226, 168, 41, 0.25);
}

.btn-mustard:active {
  transform: translateY(0);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-mustard:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn.loading .btn-spinner {
  display: inline-block;
}

.btn.loading .btn-text,
.btn.loading .btn-arrow {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-feedback {
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  display: none;
}

.form-feedback.error {
  display: block;
  color: #A83D31;
}

.form-feedback.info {
  display: block;
  color: var(--color-secondary-dark);
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--color-text-light);
}

/* Success State */
.success-state {
  text-align: center;
  padding: 14px 6px;
  animation: fadeIn 0.4s ease-out;
}

.success-state.hidden {
  display: none;
}

.success-icon-circle {
  width: 56px;
  height: 56px;
  background-color: var(--color-mustard-light);
  color: var(--color-mustard-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 4px 14px rgba(226, 168, 41, 0.2);
}

.success-check {
  width: 30px;
  height: 30px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.success-desc {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.btn-subtle-reset {
  background: none;
  border: none;
  color: var(--color-mustard-dark);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}

/* Offline Orders Card (Direct Requirement) */
.offline-orders-card {
  background-color: #FFFFFF;
  border: 1.5px dashed var(--color-mustard);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 580px;
  box-shadow: 0 4px 16px rgba(40, 42, 26, 0.04);
}

.offline-badge-icon {
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  color: var(--color-mustard-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.offline-badge-icon svg {
  width: 22px;
  height: 22px;
}

.offline-body {
  flex: 1;
  min-width: 0;
}

.offline-tag {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-mustard-dark);
  display: block;
  margin-bottom: 5px;
}

.offline-text {
  font-size: 0.95rem;
  color: var(--color-text-main);
  line-height: 1.5;
}

.phone-link {
  color: var(--color-primary-dark);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--color-mustard);
  white-space: nowrap !important;
  display: inline-block;
  transition: color var(--transition-fast);
}

.phone-link:hover {
  color: var(--color-primary);
}

.offline-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-phone {
  background-color: #FFFFFF;
  color: var(--color-text-main);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-phone:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
}

.btn-phone svg, .btn-wa svg {
  width: 14px;
  height: 14px;
}

.btn-wa {
  background-color: #4e5127;
  color: #FFFFFF;
  font-weight: 700;
  border: 1px solid rgba(78, 81, 39, 0.2);
  box-shadow: 0 4px 14px rgba(78, 81, 39, 0.28);
}

.btn-wa:hover {
  background-color: #3b3d1d;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(78, 81, 39, 0.4);
}

/* Corner Botanical Watercolor Foliage Accents */
.corner-foliage {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  transition: transform var(--transition-smooth);
}

.foliage-top-left {
  top: 0;
  left: 0;
}

.foliage-top-right {
  top: 0;
  right: 0;
}

.foliage-bottom-left {
  bottom: 0;
  left: 0;
}

.foliage-bottom-right {
  bottom: 0;
  right: 0;
}

/* Button: Solid Dark Moss Green (Matching Client Reference Layout with Palette Protection) */
.btn-moss-green {
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
  padding: 13px 26px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 22px rgba(78, 81, 39, 0.28);
  white-space: nowrap;
}

.btn-moss-green:hover {
  background-color: #383A1C;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(78, 81, 39, 0.4), 0 0 0 3px rgba(226, 168, 41, 0.25);
}

.btn-moss-green:active {
  transform: translateY(0);
}

.btn-moss-green .btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-moss-green:hover .btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   Right Hero Visual Column (Rabbit Wreath Botanical Scene)
   ========================================================================== */
.hero-visual-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.visual-rabbit-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.organic-blob-bg {
  position: absolute;
  top: 5%;
  right: 5%;
  bottom: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(226, 168, 41, 0.18) 0%, rgba(106, 109, 56, 0.12) 65%, transparent 100%);
  border-radius: 48% 52% 65% 35% / 45% 55% 45% 55%;
  filter: blur(24px);
  z-index: 0;
  pointer-events: none;
}

.rabbit-wreath-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

.rabbit-wreath-card:hover {
  transform: translateY(-4px);
}

.rabbit-hero-img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 620px;
  max-height: 74vh;
  height: auto;
  object-fit: contain;
  transform: scale(1.22);
  filter: drop-shadow(0 18px 40px rgba(40, 42, 26, 0.18));
  transition: transform var(--transition-smooth);
}

.rabbit-wreath-card:hover .rabbit-hero-img {
  transform: scale(1.25) translateY(-3px);
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(106, 109, 56, 0.18);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

.badge-top-left {
  top: 24px;
  left: 12px;
}

.badge-bottom-right {
  bottom: 28px;
  right: 12px;
  animation-delay: 2s;
  border-color: rgba(226, 168, 41, 0.35);
}

.badge-icon {
  font-size: 1.25rem;
}

.badge-texts strong {
  display: block;
  font-size: 0.82rem;
  color: var(--color-primary-dark);
}

.badge-texts small {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

.visual-caption {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  font-style: italic;
  position: relative;
  z-index: 2;
}


/* 100vh Full-Viewport Desktop Screen Fitting */
@media (min-width: 992px) {
  .hero-banner-viewport-wrapper {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .site-header {
    padding: 16px 0 8px;
    flex-shrink: 0;
  }

  .main-logo {
    height: clamp(105px, 12vh, 135px);
  }

  .hero-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4px 0 24px;
    overflow: hidden;
  }

  .hero-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1.32fr;
    align-items: center;
    gap: 40px;
    min-height: 0;
  }

  .hero-content-col {
    padding-left: clamp(16px, 2.5vw, 36px);
    margin-top: -36px;
  }

  .coming-soon-pill {
    margin-bottom: 16px;
  }

  .hero-headline {
    font-size: clamp(3rem, 4.4vw, 4.3rem);
    margin-bottom: 14px;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }

  .hero-subheading {
    font-size: 1.12rem;
    margin-bottom: 22px;
    line-height: 1.55;
    max-width: 530px;
  }

  .subscribe-card {
    padding: 0;
    margin-bottom: 18px;
    max-width: 580px;
  }

  .offline-orders-card {
    padding: 18px 24px;
    max-width: 580px;
  }

  .visual-rabbit-wrapper {
    min-height: unset;
    max-height: 84vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rabbit-wreath-card {
    max-width: clamp(540px, 75vh, 760px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rabbit-hero-img {
    width: 100%;
    max-width: 740px;
    max-height: 76vh;
    height: auto;
    object-fit: contain;
    transform: scale(1.36);
    filter: drop-shadow(0 20px 48px rgba(40, 42, 26, 0.2));
  }
}

/* Compact Laptop Viewport Height Adjustment (e.g., 1366x768 or 720p displays) */
@media (min-width: 992px) and (max-height: 780px) {
  .site-header {
    padding: 10px 0 6px;
  }

  .main-logo {
    height: clamp(92px, 11vh, 112px);
  }

  .hero-section {
    padding: 4px 0 14px;
  }

  .hero-content-col {
    margin-top: -24px;
  }

  .coming-soon-pill {
    margin-bottom: 12px;
    padding: 5px 16px;
  }

  .hero-headline {
    font-size: clamp(2.4rem, 3.4vw, 3.2rem);
    margin-bottom: 10px;
  }

  .hero-subheading {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .subscribe-card {
    padding: 0;
    margin-bottom: 14px;
    max-width: 560px;
  }

  .offline-orders-card {
    padding: 14px 20px;
    max-width: 560px;
  }

  .visual-rabbit-wrapper {
    max-height: 74vh;
    width: 100%;
  }

  .rabbit-wreath-card {
    max-width: clamp(500px, 68vh, 680px);
    width: 100%;
  }

  .rabbit-hero-img {
    width: 100%;
    max-width: 660px;
    height: auto;
    max-height: 72vh;
    transform: scale(1.32);
    filter: drop-shadow(0 18px 42px rgba(40, 42, 26, 0.18));
  }
}

/* ==========================================================================
   Category Sneak Peek / Children's Collections
   ========================================================================== */
.children-categories-section {
  padding: 44px 0 36px;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(106, 109, 56, 0.08);
  border-bottom: 1px solid rgba(106, 109, 56, 0.08);
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 28px;
}

.section-badge-mustard {
  display: inline-block;
  background-color: var(--color-mustard-light);
  color: var(--color-mustard-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--color-text-main);
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.category-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  background-color: var(--color-bg);
  border: 1.5px solid rgba(106, 109, 56, 0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all var(--transition-fast);
}

.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.cat-card-highlight {
  background-color: #FFFDF7;
  border-color: var(--color-mustard);
  box-shadow: 0 4px 20px rgba(226, 168, 41, 0.15);
}

.cat-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.cat-emoji {
  font-size: 2rem;
}

.cat-tag {
  font-size: 0.72rem;
  font-weight: 700;
  background-color: #FFFFFF;
  color: var(--color-text-muted);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cat-tag-mustard {
  background-color: var(--color-mustard);
  color: #FFFFFF;
  border: none;
}

.cat-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.cat-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Brand Story Section
   ========================================================================== */
.brand-story-section {
  padding: 32px 0 36px;
}

.story-container {
  max-width: 1040px;
}

.story-box {
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-mustard-border);
  border-radius: var(--radius-lg);
  padding: 24px 48px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.story-header {
  margin-bottom: 14px;
}

.story-rabbit-img {
  width: 170px;
  height: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto 10px;
  transition: transform var(--transition-smooth);
}

.story-rabbit-img:hover {
  transform: scale(1.05);
}

.story-kicker {
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--color-secondary-dark);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 2px;
}

.story-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  color: var(--color-primary-dark);
  margin-top: 4px;
  font-weight: 600;
  line-height: 1.2;
}

.story-copy {
  max-width: 880px;
  margin: 0 auto;
}

.story-copy p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.story-highlight-lead {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-style: italic;
  margin: 8px 0 !important;
}

.story-closing {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  margin-top: 12px !important;
  margin-bottom: 2px !important;
}

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 14px;
}

.value-item {
  text-align: center;
}

.value-num {
  font-family: monospace;
  font-size: 0.88rem;
  font-weight: 700;
  display: block;
  color: var(--color-primary-dark);
}

.value-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ==========================================================================
   Social Community Banner
   ========================================================================== */
.social-banner-section {
  padding: 10px 0 45px;
}

.social-banner-card {
  background: linear-gradient(135deg, rgba(226, 168, 41, 0.15) 0%, rgba(106, 109, 56, 0.12) 100%);
  border: 1.5px solid var(--color-mustard-border);
  border-radius: var(--radius-lg);
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.social-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-mustard-dark);
  letter-spacing: 0.1em;
}

.banner-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin: 4px 0 6px;
}

.banner-sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.btn-insta {
  background-color: var(--color-mustard);
  color: #FFFFFF;
  padding: 13px 26px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-mustard);
  white-space: nowrap;
}

.btn-insta:hover {
  background-color: var(--color-mustard-hover);
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: #242717;
  color: #E6E4DC;
  padding: 60px 0 28px;
}

.footer-top-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 36px;
  margin-bottom: 24px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #A9AC99;
  line-height: 1.55;
}

.footer-columns {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-mustard);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-link, .footer-admin-btn {
  color: #D3D5C8;
  font-size: 0.88rem;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.footer-link:hover, .footer-admin-btn:hover {
  color: #FFFFFF;
}

.footer-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-mustard);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-link:hover .footer-icon {
  color: #FFFFFF;
  transform: scale(1.1);
}

.footer-admin-btn {
  color: var(--color-mustard);
  font-weight: 600;
}

.admin-key-icon {
  width: 15px;
  height: 15px;
}

.footer-subinfo {
  font-size: 0.75rem;
  color: #8C907B;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8C907B;
}

/* ==========================================================================
   Admin Modal / CSV Export Vault
   ========================================================================== */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(36, 39, 23, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.admin-modal-overlay.hidden {
  display: none;
}

.admin-modal-card {
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.admin-modal-header {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-modal-header h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--color-primary-dark);
}

.admin-subtext {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-light);
  cursor: pointer;
}

.admin-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}

.admin-stats-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-bg);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--color-mustard-border);
}

.stat-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: block;
  line-height: 1;
}

.stat-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  font-weight: 600;
}

.admin-btn-group {
  display: flex;
  gap: 10px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.sm-icon {
  width: 15px;
  height: 15px;
}

.btn-subtle-copy {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--color-text-main);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.subscribers-table-wrapper {
  max-height: 280px;
  overflow-y: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
}

.subscribers-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.subscribers-table th {
  background-color: var(--color-bg);
  padding: 10px 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  text-align: left;
  position: sticky;
  top: 0;
}

.subscribers-table td {
  padding: 10px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-modal-footer {
  padding: 16px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FAFAFA;
}

.sync-tip {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.btn-secondary-close {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  cursor: pointer;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
  .hero-banner-viewport-wrapper {
    height: auto;
    max-height: none;
    overflow-x: hidden;
    overflow-y: visible;
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .ambient-glow {
    display: none !important;
  }

  .site-header {
    padding: 16px 0 12px;
    width: 100%;
    max-width: 100%;
  }

  .hero-section {
    padding: 24px 0 48px;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-content-col {
    width: 100%;
    max-width: 100%;
  }

  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .coming-soon-pill {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .subscribe-card {
    max-width: 580px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .offline-orders-card {
    max-width: 580px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  /* Hide banner right side image column on mobile */
  .hero-visual-col {
    display: none !important;
  }

  .visual-rabbit-wrapper {
    display: none !important;
  }

  .category-cards-grid {
    grid-template-columns: 1fr;
  }

  .social-banner-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-top-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-columns {
    justify-content: center;
  }

  .values-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .top-announcement-bar {
    padding: 6px 12px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 4px;
    font-size: 0.76rem;
    width: 100%;
    max-width: 100%;
    word-break: break-word;
    box-sizing: border-box;
  }

  .top-bar-sep {
    display: none;
  }

  .site-header {
    padding: 12px 0 8px;
    width: 100%;
    max-width: 100%;
  }

  .main-logo {
    height: 60px;
    max-width: 140px;
  }

  .social-pill-link {
    padding: 6px 12px;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .coming-soon-pill {
    padding: 6px 14px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .pill-text {
    font-size: 0.74rem;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 7.5vw, 2.3rem);
    line-height: 1.18;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .hero-subheading {
    font-size: 0.92rem;
    margin-bottom: 20px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .subscribe-card {
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .subscribe-form,
  .subscribe-form-row {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .subscribe-form-row {
    flex-direction: column;
    gap: 10px;
  }

  .client-email-input {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    height: 52px;
    padding: 0 16px;
    border-radius: 10px !important;
    font-size: 0.95rem;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  .btn-client-posted,
  .btn.btn-client-posted {
    width: 100%;
    max-width: 100%;
    min-height: 52px;
    height: 52px;
    padding: 0 16px;
    border-radius: 10px !important;
    font-size: 0.95rem;
    box-sizing: border-box;
    white-space: normal;
  }

  .offline-orders-card {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 14px 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .offline-badge-icon {
    margin: 0 auto;
  }

  .offline-text {
    word-break: break-word;
  }

  .offline-buttons {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    box-sizing: border-box;
  }

  .btn-action {
    flex: 1 1 120px;
    justify-content: center;
    padding: 9px 12px;
    box-sizing: border-box;
  }

  .hero-visual-col,
  .visual-rabbit-wrapper,
  .rabbit-wreath-card {
    display: none !important;
  }

  .story-box {
    padding: 20px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-columns {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
