/* babynoa.co Authentic Replica Design Tokens & Styles */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Babynoa Exact Color Palette */
  --bg-navy-dark: #0b283b;
  --bg-navy-mid: #143b53;
  --bg-navy-light: #1c4e6d;
  
  --bg-cream-body: #f7f8f6;
  --bg-white-card: #ffffff;
  
  /* Babynoa Pastel Card Backgrounds */
  --card-blue-bg: #eef6fb;
  --card-pink-bg: #fbf0ed;
  --card-green-bg: #eff6f2;
  --card-purple-bg: #f6f0fb;
  --card-sand-bg: #faf3ea;

  --text-white: #ffffff;
  --text-navy-heading: #183552;
  --text-navy-sub: #1b3958;
  --text-slate-body: #4a5565;
  --text-muted: #6a7282;

  --accent-green-tag: #00c758;
  --accent-green-bg: rgba(0, 199, 88, 0.12);

  --radius-card: 28px;
  --radius-pill: 9999px;
  --radius-btn: 9999px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-cream-body);
  color: var(--text-slate-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.serif-accent-dark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #009767;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Navbar */
.babynoa-navbar {
  background-color: var(--bg-navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 32px;
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-wrapper > div {
  flex-shrink: 0;
}

.brand-mascot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  padding: 4px;
  object-fit: contain;
}

.brand-title-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.brand-badge-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  white-space: nowrap;
}

.nav-links-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--text-slate-body);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-navy-heading);
}

.btn-white-pill {
  background: var(--text-navy-heading);
  border: 1px solid var(--text-navy-heading);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  background-color: #ffffff;
  color: var(--bg-navy-dark);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-white-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
  background-color: #f8fafc;
}

.btn-outline-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Hero Section */
.babynoa-hero {
  background-color: #12364c;
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(45, 212, 191, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(20, 110, 160, 0.4) 0%, transparent 60%),
    linear-gradient(165deg, #0a1f2e 0%, #154563 100%);
  color: var(--text-white);
  padding: 80px 32px 100px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}

.hero-tag-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0, 199, 88, 0.15);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: #2dd4bf;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(45, 212, 191, 0.3);
}

.hero-main-title {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-desc-text {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-stats-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 520px;
  backdrop-filter: blur(8px);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.hero-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Mockup Frame */
.hero-mockup-frame {
  background: #ffffff;
  border-radius: 36px;
  padding: 18px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
  position: relative;
}

.hero-mockup-frame:hover {
  transform: rotate(0deg) scale(1.02);
}

.mockup-inner-card {
  background: linear-gradient(145deg, #154563 0%, #1e597c 100%);
  border-radius: 26px;
  padding: 28px 24px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.mockup-header-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.mockup-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.mockup-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.mockup-mascot-img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.mockup-bottom-pill {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-navy-heading);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* Feature Strip */
.babynoa-strip {
  background: #081d2a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 24px;
}

.strip-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.strip-dot { color: #2dd4bf; }

/* How-To-Gift Guide Box for Guests (Super intuitive step-by-step for anyone!) */
.guest-guide-box {
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 40px;
  box-shadow: 0 10px 30px rgba(24, 53, 82, 0.05);
  margin-bottom: 40px;
  border: 2px solid #e0f2fe;
}

.guide-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-navy-heading);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.guide-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.guide-step-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.guide-step-num {
  font-size: 0.85rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-bottom: 10px;
}

.guide-step-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-navy-heading);
  margin-bottom: 6px;
}

.guide-step-desc {
  font-size: 0.88rem;
  color: var(--text-slate-body);
  line-height: 1.5;
}

/* Main Section Header & Controls */
.babynoa-body-section {
  max-width: 1280px;
  margin: 48px auto 0;
  padding: 0 32px;
}

.body-heading-box {
  margin-bottom: 36px;
}

.body-subtag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.body-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-navy-heading);
  line-height: 1.15;
}

/* Controls Bar */
.controls-bar-babynoa {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 20px 24px;
  box-shadow: 0 10px 30px rgba(24, 53, 82, 0.05);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.search-input-box {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.search-input-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-babynoa {
  width: 100%;
  padding: 12px 18px 12px 48px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  border-radius: var(--radius-pill);
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: var(--text-navy-heading);
  outline: none;
  transition: all 0.2s ease;
}

.input-babynoa:focus {
  background: #ffffff;
  border-color: #143b53;
  box-shadow: 0 0 0 3px rgba(20, 59, 83, 0.12);
}

.select-babynoa {
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: var(--text-navy-heading);
  outline: none;
  cursor: pointer;
}

/* Category Filter Pills */
.category-pills-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.category-pills-row::-webkit-scrollbar { display: none; }

.babynoa-pill {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: var(--text-navy-heading);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.babynoa-pill:hover { background: #f1f5f9; }

.babynoa-pill.active {
  background: var(--bg-navy-dark);
  color: #ffffff;
  border-color: var(--bg-navy-dark);
}

/* Gift Cards Grid */
.cards-grid-babynoa {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

/* Babynoa Card Component with Real Product Image */
.babynoa-card {
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.babynoa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.card-cat-Habitación { background-color: #ffffff; }
.card-cat-Paseo { background-color: #ffffff; }
.card-cat-Alimentación { background-color: #ffffff; }
.card-cat-Baño { background-color: #ffffff; }
.card-cat-Salud { background-color: #ffffff; }

.card-step-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.product-img-box {
  background-color: var(--bg-cream-body);
  border-radius: calc(var(--radius-card) - 8px);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img-box img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.babynoa-card:hover .product-img-box img {
  transform: scale(1.05);
}

.card-white-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
}

.card-title-babynoa {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-navy-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.card-desc-babynoa {
  font-size: 0.92rem;
  color: var(--text-slate-body);
  line-height: 1.55;
  margin-bottom: 20px;
}

/* Shipping Auto Helper Pill inside Card */
.shipping-helper-tag {
  background: rgba(0, 199, 88, 0.12);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.card-stores-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.card-stores-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.babynoa-store-btn {
  background: #ffffff;
  color: var(--text-navy-heading);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.babynoa-store-btn.amazon-highlight {
  background: linear-gradient(135deg, #ff9900 0%, #f59e0b 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.babynoa-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.btn-reserve-card {
  width: 100%;
  background: var(--bg-navy-dark);
  color: #ffffff;
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.btn-reserve-card:hover {
  background: var(--bg-navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 40, 59, 0.25);
}

.btn-reserve-card.reserved {
  background: #ffffff;
  color: var(--bg-navy-dark);
  border: 1px solid var(--bg-navy-dark);
}

.card-reservation-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.reservation-name-text {
  font-weight: 800;
  color: var(--bg-navy-dark);
}

.babynoa-footer-section {
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 64px 32px;
  text-align: center;
}

.footer-container {
  max-width: 720px;
  margin: 0 auto;
}

.footer-mascot {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-navy-heading);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.babynoa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 40, 59, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.babynoa-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.babynoa-modal-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 36px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: all 0.25s ease;
}

.babynoa-modal-overlay.active .babynoa-modal-card {
  transform: translateY(0);
}

.modal-header-babynoa {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.modal-title-babynoa {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-navy-heading);
}

.modal-close-x {
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.form-group-babynoa { margin-bottom: 18px; }

.form-label-babynoa {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-navy-heading);
  margin-bottom: 6px;
}

.form-input-babynoa, .form-select-babynoa, .form-textarea-babynoa {
  width: 100%;
  padding: 12px 18px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: var(--text-navy-heading);
  outline: none;
  transition: all 0.2s ease;
}

.form-input-babynoa:focus, .form-select-babynoa:focus, .form-textarea-babynoa:focus {
  background: #ffffff;
  border-color: var(--bg-navy-dark);
  box-shadow: 0 0 0 3px rgba(11, 40, 59, 0.1);
}

.form-textarea-babynoa {
  min-height: 90px;
  resize: vertical;
}

.modal-actions-babynoa {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.toast-rack-babynoa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast-item-babynoa {
  background: var(--bg-navy-dark);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: toastPop 0.3s ease;
}

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

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-main-title { font-size: 2.8rem; }
  .hero-mockup-frame { display: none; }
}

@media (max-width: 600px) {
  .nav-links-row { display: none; }
  .cards-grid-babynoa { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   La llegada — Baby Noa registry redesign
   A calm editorial room, rather than a dashboard of products.
   -------------------------------------------------------------------------- */
:root {
  --ink: #26372f;
  --ink-soft: #56665d;
  --moss: #4b735d;
  --moss-deep: #294a3a;
  --mint: #dcebdc;
  --blush: #f6e3dc;
  --butter: #f8f0cf;
  --paper: #fbfaf5;
  --line: rgba(46, 71, 57, .14);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
}

/* A comfortable reading scale for guests of every age. */
html { font-size: 17px; scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); }
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -1;
  opacity: .24; background-image: radial-gradient(rgba(55, 80, 65, .12) .55px, transparent .55px);
  background-size: 8px 8px;
}

.babynoa-navbar {
  padding: 14px 30px; background: rgba(228,240,223,.88); border-bottom: 1px solid rgba(46,71,57,.1);
  backdrop-filter: blur(18px) saturate(145%); -webkit-backdrop-filter: blur(18px) saturate(145%);
}
.nav-container { max-width: 1180px; gap: 24px; }
.brand-wrapper { gap: 9px; }
.brand-mascot { width: 38px; height: 38px; padding: 2px; background: #e5eee4; }
.brand-title-text { color: var(--moss-deep); font-size: 1.45rem; letter-spacing: -.065em; }
.nav-links-row { margin-left: auto; gap: 22px; }
.nav-link { color: var(--ink-soft); font-size: .71rem; letter-spacing: .11em; font-weight: 800; }
.nav-link:hover { color: var(--moss-deep); }
.admin-action { display: inline-flex !important; }
.mobile-list-link { display: none; }

.btn-white-pill, .btn-outline-pill {
  min-height: 42px; padding: 10px 17px; border-radius: 999px; font-size: .78rem; font-weight: 800;
  letter-spacing: .015em; box-shadow: none; transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn-white-pill { background: var(--moss-deep); border: 1px solid var(--moss-deep); color: #fff; }
.btn-outline-pill { background: transparent; border: 1px solid rgba(41,74,58,.23); color: var(--moss-deep); }
.btn-white-pill:hover { padding: 10px 17px; width: auto; max-width: none; transform: translateY(-2px); background: #18382b; box-shadow: 0 10px 22px rgba(39,74,57,.17); }
.btn-outline-pill:hover { color: var(--moss-deep); background: #edf3e9; border-color: var(--moss); transform: translateY(-1px); }
.btn-white-pill:active, .btn-outline-pill:active, .babynoa-pill:active, .btn-reserve-card:active { transform: scale(.97); }

.babynoa-hero {
  position: relative; overflow: hidden; padding: clamp(58px, 8vw, 108px) 30px 84px;
  background: var(--paper);
}
.babynoa-hero::before, .babynoa-hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.babynoa-hero::before { width: 560px; height: 560px; right: -220px; top: -250px; background: rgba(142,185,145,.14); }
.babynoa-hero::after { width: 340px; height: 340px; left: -180px; bottom: -190px; background: rgba(142,185,145,.18); }
.hero-container { position: relative; z-index: 1; max-width: 1180px; align-items: center; gap: clamp(36px, 8vw, 112px); }
.hero-tag-green { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; background: rgba(255,255,255,.58); border: 1px solid rgba(48,89,65,.14); color: var(--moss-deep); border-radius: 999px; font-size: .69rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.hero-tag-green span { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #83b570; }
.hero-main-title { max-width: 620px; margin: 22px 0 21px; font-size: clamp(3.25rem, 6.3vw, 6.25rem); line-height: .91; letter-spacing: -.073em; color: var(--moss-deep); }
.serif-accent { color: #567a55; letter-spacing: -.048em; }
.hero-desc-text { max-width: 515px; color: #4d6255; font-size: clamp(.98rem, 1.45vw, 1.08rem); line-height: 1.7; }
.baby-countdown { max-width: 496px; margin-top: 25px; padding: 15px 16px 13px; border: 1px solid rgba(48,89,65,.14); border-radius: 17px; background: rgba(255,255,255,.45); }
.countdown-kicker { color: #668563; font-size: .59rem; font-weight: 800; letter-spacing: .12em; }
.countdown-units { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 10px; }
.countdown-units > div { min-width: 0; padding-right: 8px; border-right: 1px solid rgba(48,89,65,.13); }
.countdown-units > div:last-child { padding-right: 0; border-right: 0; }
.countdown-units strong { display: block; color: var(--moss-deep); font-size: 1.42rem; line-height: 1; letter-spacing: -.06em; }
.countdown-units span { display: block; margin-top: 4px; color: #66806a; font-size: .57rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.hero-actions-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 29px; }
.hero-actions-row .btn-white-pill { min-height: 48px; padding: 13px 20px; }
.hero-actions-row .btn-white-pill + .btn-white-pill { background: #fff !important; color: #764a32 !important; border-color: rgba(118,74,50,.12) !important; text-shadow: none !important; }
.hero-actions-row .btn-white-pill + .btn-white-pill:hover { background: #fff8f1 !important; }
.hero-stats-box { width: fit-content; margin-top: 42px; padding: 14px 4px; display: flex; align-items: stretch; gap: 6px; background: transparent; box-shadow: none; }
.hero-stats-box > div[style] { background: rgba(52,86,67,.2) !important; height: 33px !important; margin: 3px 11px; }
.hero-stat-item { min-width: 96px; text-align: left; padding: 0 8px; }
.hero-stat-num { color: var(--moss-deep); font-size: 1.35rem; letter-spacing: -.05em; }
.hero-stat-lbl { margin-top: 1px; color: #607566; text-transform: uppercase; letter-spacing: .08em; font-size: .61rem; font-weight: 800; }

.hero-mockup-frame { width: min(100%, 375px); padding: 10px; border-radius: 190px 190px 28px 28px; background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.82); box-shadow: 0 28px 80px rgba(53,92,61,.15); transform: rotate(2.2deg); }
.mockup-inner-card { min-height: 450px; padding: 29px 25px 21px; overflow: hidden; border-radius: 180px 180px 20px 20px; background: #f8dfd2; color: var(--moss-deep); }
.mockup-header-tag { display: inline-flex; padding: 6px 10px; border-radius: 99px; background: rgba(255,255,255,.67); font-size: .64rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.mockup-title { margin-top: 25px; font-family: var(--font-serif); font-size: 3rem; font-style: italic; font-weight: 400; line-height: .87; letter-spacing: -.055em; }
.mockup-subtitle { max-width: 220px; margin-top: 14px; font-size: .88rem; line-height: 1.55; color: #6f5548; }
.mockup-mascot-img { width: 235px; height: 235px; margin: 4px auto -13px; object-fit: contain; display: block; filter: drop-shadow(0 16px 15px rgba(114,77,56,.12)); }
.mockup-bottom-pill { padding: 10px 13px; background: rgba(255,255,255,.78); color: #5a493e; border-radius: 16px; font-size: .72rem; font-weight: 800; }

/* Noa carries the welcome: the hero uses a character moment, not a second card. */
.noa-hero-stage { position: relative; display: grid; min-height: 476px; align-items: end; justify-items: center; isolation: isolate; }
.noa-hero-stage::before { content: ""; position: absolute; z-index: -2; width: min(94%, 420px); aspect-ratio: 1; right: 0; bottom: 10px; border-radius: 50% 48% 52% 44%; background: linear-gradient(145deg, rgba(252,229,215,.88), rgba(255,244,232,.74)); transform: rotate(-8deg); }
.noa-hero-stage::after { content: ""; position: absolute; z-index: -1; width: 78%; height: 70%; right: 3%; bottom: 0; border-radius: 50% 50% 28% 28%; border: 1px solid rgba(255,255,255,.65); background: radial-gradient(circle at 50% 9%, rgba(255,255,255,.6), transparent 42%); }
.noa-hero-wave { position: relative; z-index: 1; width: min(111%, 456px); height: 448px; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 25px 20px rgba(114,77,56,.15)); }
.noa-speech-bubble { position: absolute; z-index: 3; top: 33px; left: 0; max-width: 250px; padding: 18px 21px 17px; border: 1px solid rgba(255,255,255,.85); border-radius: 25px 25px 25px 7px; background: rgba(255,254,250,.94); color: var(--moss-deep); box-shadow: 0 15px 34px rgba(73,92,73,.12); transform: rotate(-3deg); }
.noa-speech-bubble::after { content: ""; position: absolute; left: 22px; bottom: -11px; width: 20px; height: 20px; background: #fffefa; transform: rotate(45deg); border-right: 1px solid rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.85); }
.noa-speech-bubble span { display: block; color: #71936c; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.noa-speech-bubble strong { position: relative; z-index: 1; display: block; margin-top: 4px; font-family: var(--font-serif); font-size: 2.1rem; font-style: italic; font-weight: 400; line-height: .87; letter-spacing: -.055em; }
.noa-stage-sparkle { position: absolute; z-index: 2; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; font-size: 1rem; }.noa-stage-sparkle-one { top: 92px; right: 16px; color: #ba8752; background: rgba(255,250,224,.72); }.noa-stage-sparkle-two { right: 0; bottom: 65px; color: #5c855e; background: rgba(235,245,230,.82); font-size: 1.15rem; }
@keyframes noa-float { 0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--noa-tilt, 0deg)); } 50% { transform: translate3d(0, -9px, 0) rotate(var(--noa-tilt, 0deg)); } }
@keyframes noa-sparkle-drift { 0%, 100% { transform: translate3d(0, 0, 0) scale(1); } 50% { transform: translate3d(0, -7px, 0) scale(1.08); } }
.noa-hero-wave { animation: noa-float 4.8s var(--ease-out) infinite; }.noa-stage-sparkle { animation: noa-sparkle-drift 3.1s var(--ease-out) infinite; }.noa-stage-sparkle-two { animation-delay: -1.3s; }

.babynoa-strip { padding: 15px 24px; background: var(--moss-deep); color: #e9f1e6; }
.strip-container { max-width: 1120px; gap: 19px; justify-content: center; font-size: .68rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.strip-dot { color: #b7d28c; }

.babynoa-body-section { max-width: 1180px; padding: 76px 30px 102px; }
.guest-guide-box { position: relative; padding: 31px; border: 1px solid var(--line); border-radius: 25px; background: #fffefa; box-shadow: 0 12px 38px rgba(46,71,57,.045); }
.guide-heading { color: var(--moss-deep); font-size: 1.25rem; letter-spacing: -.04em; }
.guide-heading span { display: inline-flex; align-items: center; justify-content: center; width: 31px; height: 31px; margin-right: 8px; border-radius: 50%; background: var(--butter); color: #79652a; font-size: .67rem; letter-spacing: .04em; vertical-align: middle; }
.guide-steps-grid { margin-top: 29px; gap: 0; border-top: 1px solid var(--line); }
.guide-step-card { position: relative; padding: 23px 28px 2px 0; background: transparent; border-radius: 0; box-shadow: none; }
.guide-step-card:not(:last-child)::after { content: ""; position: absolute; right: 22px; top: 30px; bottom: 5px; width: 1px; background: var(--line); }
.guide-step-num { color: var(--moss); background: transparent; padding: 0; font-size: .68rem; letter-spacing: .12em; font-weight: 800; }
.guide-step-title { margin-top: 11px; color: var(--ink); font-size: 1rem; letter-spacing: -.035em; }
.guide-step-desc { max-width: 280px; margin-top: 7px; color: var(--ink-soft); font-size: .81rem; line-height: 1.62; }

.body-heading-box { position: relative; padding: 110px 0 38px; text-align: left; }
.noa-list-illustration { position: absolute; right: min(4vw, 42px); bottom: 10px; width: 128px; height: 120px; object-fit: contain; --noa-tilt: 4deg; animation: noa-float 5.6s var(--ease-out) infinite; animation-delay: -2.4s; }
.body-subtag { margin-bottom: 12px; color: #668d64; font-size: .67rem; letter-spacing: .16em; font-weight: 800; }
.body-title { color: var(--moss-deep); font-size: clamp(2.45rem, 4.3vw, 4.4rem); line-height: .98; letter-spacing: -.068em; }
.serif-accent-dark { color: #6d8e64; }

.controls-bar-babynoa { padding: 0 0 29px; background: transparent; border-radius: 0; box-shadow: none; }
.search-row { gap: 11px; }
.search-input-box { min-height: 50px; padding: 0 15px; border-radius: 15px; background: #fffefa; border: 1px solid var(--line); color: #7b8f7e; box-shadow: none; }
.input-babynoa { color: var(--ink); font-size: .9rem; }
.input-babynoa::placeholder { color: #8b998e; }
.select-babynoa { min-height: 50px; padding: 0 35px 0 15px; border: 1px solid var(--line); border-radius: 15px; background: #fffefa; color: var(--moss-deep); font-weight: 700; box-shadow: none; }
.category-pills-row { margin-top: 15px; gap: 8px; }
.babynoa-pill { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #627569; background: transparent; font-size: .7rem; font-weight: 700; transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease; }
.babynoa-pill.active { background: var(--moss-deep); color: #fff; border-color: var(--moss-deep); box-shadow: none; }
.babynoa-pill:hover { transform: translateY(-1px); border-color: rgba(41,74,58,.4); }

.cards-grid-babynoa { gap: 17px; }
.hospital-bag-intro {
  grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center;
  gap: 22px; margin: 25px 0 2px; padding: 25px 28px; border: 1px solid rgba(75,115,93,.24);
  border-radius: 22px; background: linear-gradient(115deg, #dfeede 0%, #edf5e9 62%, #f8efd6 100%);
}
.hospital-bag-number { color: #547458; font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; }
.hospital-bag-intro h3 { color: var(--moss-deep); font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; font-style: italic; line-height: .92; letter-spacing: -.05em; }
.hospital-bag-intro p { max-width: 620px; margin-top: 7px; color: #587060; font-size: .83rem; line-height: 1.55; }
.hospital-bag-count { justify-self: end; padding: 9px 11px; border: 1px solid rgba(75,115,93,.2); border-radius: 999px; color: var(--moss-deep); background: rgba(255,255,255,.62); font-size: .68rem; font-weight: 800; white-space: nowrap; }
.babynoa-card { min-height: 100%; padding: 17px; border: 1px solid var(--line); border-radius: 22px; background: #fffefa; box-shadow: none; transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 220ms ease; }
.babynoa-card:hover { transform: translateY(-5px); border-color: rgba(74,115,93,.34); box-shadow: 0 19px 35px rgba(39,70,53,.10); }
.card-cat-Habitación { background: #f7f1e8; }.card-cat-Paseo { background: #edf3e8; }.card-cat-Alimentación { background: #fff8ed; }.card-cat-Baño { background: #f3edf7; }.card-cat-Salud { background: #f3f6ef; }
.card-step-num { color: #687b6d; font-size: .64rem; letter-spacing: .09em; font-weight: 800; }
.product-img-box { height: 185px; margin: 6px 0 17px; border-radius: 15px; background: rgba(255,255,255,.62); }
.product-img-box img { transition: transform 320ms var(--ease-out); }
.babynoa-card:hover .product-img-box img { transform: scale(1.035); }
.hospital-bag-gallery { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; height: 185px; margin: 6px 0 17px; overflow: hidden; border-radius: 15px; background: #dbe9da; }
.hospital-bag-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 250ms var(--ease-out); }
.babynoa-card:hover .hospital-bag-gallery img { transform: scale(1.04); }
.hospital-bag-gallery-label { position: absolute; right: 10px; bottom: 10px; display: inline-flex; align-items: baseline; gap: 4px; padding: 7px 9px; border: 1px solid rgba(255,255,255,.75); border-radius: 999px; background: rgba(35,67,50,.86); color: #fff; font-size: .64rem; font-weight: 800; letter-spacing: .04em; backdrop-filter: blur(8px); }
.hospital-bag-gallery-label span { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; line-height: .7; }
.card-white-icon-box { width: 76px; height: 76px; background: rgba(255,255,255,.6); border-radius: 16px; }
.card-title-babynoa { color: var(--ink); font-size: 1.05rem; line-height: 1.16; letter-spacing: -.045em; }
.card-desc-babynoa { color: var(--ink-soft); font-size: .8rem; line-height: 1.58; }
.included-items-box { margin-top: 14px; padding: 12px; border: 1px solid rgba(75,115,93,.16); border-radius: 12px; background: rgba(255,255,255,.54); }
.included-items-label { margin-bottom: 8px; color: var(--moss-deep); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.included-items-box ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 5px 9px; padding: 0; margin: 0; list-style: none; }
.included-items-box li { display: flex; align-items: flex-start; gap: 5px; color: #5b7060; font-size: .68rem; line-height: 1.35; }
.included-items-box li::before { content: "•"; color: #79a46d; font-weight: 800; }
.shipping-helper-tag { margin: 15px 0 0; background: rgba(255,255,255,.6); border: 0; color: #637667; font-size: .68rem; }
.card-stores-label { margin-top: 18px; color: #5c6f61; font-size: .67rem; letter-spacing: .025em; }
.card-stores-flex { gap: 6px; }
.babynoa-store-btn { padding: 8px 10px; background: rgba(255,255,255,.65); border: 1px solid rgba(46,71,57,.12); border-radius: 10px; color: var(--moss-deep); font-size: .68rem; transition: transform 150ms var(--ease-out), background-color 180ms ease; }
.babynoa-store-btn:hover { transform: translateY(-1px); background: #fff; }.babynoa-store-btn.amazon-highlight { background: #fff0cf; border-color: #f2d784; color: #7b5310; }
.babynoa-store-btn.amazon-note-first { width: 100%; justify-content: space-between; cursor: pointer; font: inherit; font-weight: 800; text-align: left; }.babynoa-store-btn.amazon-note-first:active { transform: scale(.98); }

/* Baby Noa's product-language, translated from its navy landing page to forest green. */
.babynoa-navbar {
  position: absolute; top: 28px; left: 32px; right: 32px; z-index: 20;
  padding: 17px 28px; border: 1px solid rgba(218, 242, 220, .25); border-radius: 30px;
  background: rgba(17, 58, 47, .88); box-shadow: 0 15px 35px rgba(15, 48, 39, .15);
}
.brand-mascot { background: rgba(221, 242, 218, .16); }
.brand-title-text { color: #f7fff5; }
.nav-link { color: rgba(237, 250, 235, .72); }
.nav-link:hover { color: #d2f0ca; }
.babynoa-navbar .btn-outline-pill { border-color: rgba(224, 245, 220, .32); color: #effbea; }
.babynoa-navbar .btn-outline-pill:hover { color: #123c31; background: #e8f5e3; }
.babynoa-navbar .btn-white-pill { background: #e8f5e3; border-color: #e8f5e3; color: #133d32; }
.babynoa-navbar .btn-white-pill:hover { background: #d1ebc9; border-color: #d1ebc9; box-shadow: none; }
.babynoa-hero {
  min-height: 720px; padding-top: clamp(172px, 17vw, 235px);
  background-color: #123f34;
  background-image:
    radial-gradient(rgba(209, 239, 204, .22) .7px, transparent .7px),
    radial-gradient(ellipse at 84% 42%, rgba(62, 128, 94, .55), transparent 44%),
    linear-gradient(135deg, #103a30 0%, #174e40 53%, #236750 100%);
  background-position: 0 0, 0 0, center;
  background-size: 10px 10px, auto, auto;
}
.babynoa-hero::before { width: 610px; height: 610px; top: auto; right: -220px; bottom: -360px; background: transparent; border: 1px solid rgba(211, 240, 207, .17); }
.babynoa-hero::after { width: 410px; height: 410px; left: auto; right: 7%; bottom: -260px; background: transparent; border: 1px solid rgba(211, 240, 207, .12); }
.hero-tag-green { color: #e1f8dc; background: rgba(10, 45, 36, .56); border-color: rgba(211, 242, 206, .32); }
.hero-tag-green span { background: #83d47c; box-shadow: 0 0 0 5px rgba(131,212,124,.14); }
.hero-main-title { color: #f8fff6; }
.hero-main-title .serif-accent { color: #bce9b3; }
.hero-desc-text { color: #effbef; }
.baby-countdown { border-color: rgba(208, 240, 203, .22); background: rgba(10, 49, 39, .28); }
.countdown-kicker, .countdown-units span { color: #d6f0d1; }
.countdown-units > div { border-color: rgba(208, 240, 203, .18); }
.countdown-units strong, .hero-stat-num { color: #f5fff2; }
.hero-stat-lbl { color: #d2ebcd; }
.hero-stats-box > div[style] { background: rgba(206, 240, 199, .28) !important; }
.hero-actions-row .btn-white-pill { background: #e8f5e3; border-color: #e8f5e3; color: #123c31; }
.hero-actions-row .btn-white-pill:hover { background: #d1ebc9; box-shadow: 0 10px 22px rgba(3, 28, 21, .26); }
.noa-hero-stage::before { background: linear-gradient(145deg, rgba(219, 244, 212, .18), rgba(116, 182, 132, .12)); }
.noa-hero-stage::after { border-color: rgba(220, 246, 215, .28); background: radial-gradient(circle at 50% 9%, rgba(236, 255, 232, .18), transparent 42%); }
.noa-speech-bubble { border-color: rgba(220, 245, 217, .58); background: #edf8ea; color: #174736; box-shadow: 0 18px 42px rgba(3, 31, 23, .22); }
.noa-speech-bubble::after { background: #edf8ea; border-color: rgba(220, 245, 217, .58); }
.noa-speech-bubble span { color: #558a5d; }
.babynoa-strip { background: #fffefa; color: var(--moss-deep); border-bottom: 1px solid var(--line); }
.babynoa-strip .strip-dot { color: #79a46d; }
.card-cat-Habitación, .card-cat-Paseo, .card-cat-Alimentación, .card-cat-Baño, .card-cat-Salud { background: #fffefa; }
.babynoa-footer-section { background: #fffefa; border-top: 1px solid var(--line); }
.babynoa-footer-section::after { background: rgba(220, 235, 214, .56); }
.card-reservation-box { margin-top: 15px; padding: 10px; border-radius: 12px; background: rgba(255,255,255,.6); border: 0; font-size: .74rem; }.reservation-name-text { color: var(--moss-deep); }
.btn-reserve-card { width: 100%; margin-top: 17px; padding: 11px 14px; border: 1px solid var(--moss-deep); border-radius: 12px; background: var(--moss-deep); color: #fff; font-size: .76rem; font-weight: 800; transition: transform 160ms var(--ease-out), background-color 180ms ease, box-shadow 180ms ease; }.btn-reserve-card:hover { transform: translateY(-1px); background: #18382b; box-shadow: 0 8px 18px rgba(39,74,57,.16); }.btn-reserve-card.reserved { background: transparent; border-color: rgba(41,74,58,.32); color: var(--moss-deep); }

.babynoa-footer-section { position: relative; overflow: hidden; padding: 62px 30px; background: #e7f0df; }.babynoa-footer-section::after { content:""; position:absolute; width:330px; height:330px; right:-100px; bottom:-160px; border-radius:50%; background:rgba(247,218,198,.55); }.footer-container { position:relative; z-index:1; }.footer-mascot { width: 122px; height: 122px; object-fit: contain; }.footer-title { color: var(--moss-deep); font-size: clamp(2rem, 3vw, 2.8rem); letter-spacing: -.06em; }

.babynoa-modal-overlay { background: rgba(31,48,39,.46); backdrop-filter: blur(5px); }.babynoa-modal-card { border: 1px solid rgba(255,255,255,.75); border-radius: 23px; background: #fffefa; box-shadow: 0 25px 70px rgba(29,53,40,.22); }.modal-title-babynoa, .form-label-babynoa { color: var(--moss-deep); }.modal-close-x { background: #edf3e9; color: var(--moss-deep); }.form-input-babynoa,.form-select-babynoa,.form-textarea-babynoa { background: #fbfcf8; border-color: var(--line); color: var(--ink); }.form-input-babynoa:focus,.form-select-babynoa:focus,.form-textarea-babynoa:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(75,115,93,.12); }.toast-item-babynoa { background: var(--moss-deep); border-radius: 14px; }

/* A lighter, editorial alternative to the old boxed three-step guide. */
.gift-flow { display: grid; grid-template-columns: minmax(240px, .9fr) minmax(0, 1.55fr); gap: clamp(38px, 7vw, 100px); align-items: center; padding: 7px 0 2px; }
.gift-flow-kicker, .reservation-overline { display: block; color: #6d956a; font-size: .63rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.gift-flow-intro h3 { margin-top: 13px; color: var(--moss-deep); font-size: clamp(2rem, 3.25vw, 3.35rem); line-height: .93; letter-spacing: -.065em; }
.gift-flow-intro h3 em { color: #71936c; font-family: var(--font-serif); font-weight: 400; }
.gift-flow-intro > p { max-width: 305px; margin-top: 15px; color: var(--ink-soft); font-size: .86rem; line-height: 1.6; }
.noa-section-illustration { display: block; object-fit: contain; animation: noa-float 5.2s var(--ease-out) infinite; }.noa-thinking { width: 126px; height: 116px; margin: 17px 0 -11px 3px; --noa-tilt: -3deg; }.noa-memory { width: 138px; height: 124px; margin: 20px 0 -6px 4px; --noa-tilt: 3deg; animation-delay: -1.8s; }
.gift-flow-steps { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--line); }
.gift-flow-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.gift-flow-steps li > span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; color: #698267; background: #edf4e9; font-size: .64rem; font-weight: 800; }
.gift-flow-steps strong { display: block; color: var(--moss-deep); font-size: .93rem; letter-spacing: -.03em; }
.gift-flow-steps p { margin-top: 4px; color: var(--ink-soft); font-size: .79rem; line-height: 1.45; }

.reservation-modal-card { width: min(100% - 32px, 490px); padding: 0; overflow: hidden; }
.reservation-modal-card .modal-header-babynoa { padding: 27px 28px 20px; margin: 0; border-bottom: 1px solid var(--line); background: linear-gradient(115deg, #eef5e9, #fffaf2); }
.reservation-modal-card .modal-title-babynoa { margin-top: 7px; font-size: 1.55rem; letter-spacing: -.055em; }
.reservation-gift-title { margin-top: 8px; color: #658062; font-size: .82rem; font-weight: 700; line-height: 1.35; }
.reservation-form { padding: 23px 28px 28px; }
.reservation-helper { margin-bottom: 20px; color: var(--ink-soft); font-size: .83rem; line-height: 1.55; }
.reservation-form .form-group-babynoa { margin-bottom: 17px; }
.form-label-babynoa small { color: #819080; font-size: .72rem; font-weight: 500; }
.reservation-choice-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.reservation-choice { min-height: 58px; padding: 9px 11px; border: 1px solid var(--line); border-radius: 13px; background: #fbfcf8; color: #60715f; font: inherit; font-size: .75rem; font-weight: 800; line-height: 1.2; text-align: left; transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease, color 180ms ease; }
.reservation-choice span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 5px; border-radius: 50%; background: #edf3e9; color: var(--moss); }
.reservation-choice.active { border-color: #759970; background: #ecf4e8; color: var(--moss-deep); box-shadow: 0 5px 13px rgba(69,105,75,.09); }
.reservation-choice:active { transform: scale(.97); }
.reservation-form .modal-actions-babynoa { margin-top: 22px; }
.reservation-success { padding: 35px 30px 31px; text-align: center; }
.reservation-success-mark { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; color: #fff; background: var(--moss-deep); font-size: 1.45rem; box-shadow: 0 10px 22px rgba(41,74,58,.2); }
.reservation-success .reservation-overline { color: #70936c; }
.reservation-success h3 { margin-top: 8px; color: var(--moss-deep); font-size: 1.6rem; letter-spacing: -.06em; }
.reservation-success > p:not(.reservation-overline) { max-width: 340px; margin: 10px auto 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.55; }
.reservation-success-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.reservation-success-actions .btn-white-pill, .reservation-success-actions .btn-outline-pill { text-decoration: none; }

.virtual-shower-note { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(220px, .7fr); gap: 17px; align-items: center; margin-top: 76px; padding: 20px 0; border-top: 1px solid rgba(75,115,93,.24); border-bottom: 1px solid rgba(75,115,93,.24); }
.virtual-shower-mark { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 50%; background: var(--butter); color: #8b7130; font-size: .9rem; }
.virtual-shower-note span { color: #6e956a; font-size: .62rem; font-weight: 800; letter-spacing: .15em; }
.virtual-shower-note h3 { margin-top: 4px; color: var(--moss-deep); font-size: 1.06rem; letter-spacing: -.035em; }
.virtual-shower-note p { color: var(--ink-soft); font-size: .8rem; line-height: 1.5; }

.wish-wall { display: grid; grid-template-columns: minmax(240px, .85fr) minmax(280px, 1fr); gap: clamp(34px, 6vw, 82px); margin-top: 86px; padding: 55px 0 0; border-top: 1px solid var(--line); }
.wish-wall-kicker { color: #6d956a; font-size: .63rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.wish-wall-intro h2 { margin-top: 13px; color: var(--moss-deep); font-size: clamp(2.35rem, 3.8vw, 4rem); line-height: .93; letter-spacing: -.07em; }
.wish-wall-intro h2 em { color: #71936c; font-family: var(--font-serif); font-weight: 400; }
.wish-wall-intro > p { max-width: 335px; margin-top: 16px; color: var(--ink-soft); font-size: .86rem; line-height: 1.6; }
.wish-wall-note { display: grid; grid-template-columns: auto 1fr; column-gap: 13px; align-content: center; padding: 23px; border: 1px solid rgba(75,115,93,.22); border-radius: 21px; background: linear-gradient(140deg, #eef5e9, #fffaf2); box-shadow: 0 15px 35px rgba(47,77,60,.07); }.wish-wall-note-mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; color: #5d835f; background: rgba(255,255,255,.7); font-size: 1.1rem; }.wish-wall-note strong { align-self: end; color: var(--moss-deep); font-size: .86rem; letter-spacing: -.025em; }.wish-wall-note p { grid-column: 2; margin-top: 5px; color: var(--ink-soft); font-size: .78rem; line-height: 1.55; }
.wish-form { padding: 23px; border: 1px solid rgba(75,115,93,.22); border-radius: 21px; background: linear-gradient(140deg, #eef5e9, #fffaf2); box-shadow: 0 15px 35px rgba(47,77,60,.07); }
.wish-form-topline { margin-bottom: 18px; color: var(--moss-deep); font-size: .75rem; font-weight: 800; letter-spacing: -.02em; }.wish-form-topline span { color: #d29a58; margin-right: 6px; }
.wish-form label { display: block; margin: 13px 0 6px; color: #526958; font-size: .67rem; font-weight: 800; letter-spacing: .04em; }
.wish-form input:not(.wish-honeypot), .wish-form textarea { width: 100%; border: 1px solid rgba(75,115,93,.17); border-radius: 12px; outline: none; background: rgba(255,255,255,.72); color: var(--ink); font: inherit; font-size: .82rem; transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }
.wish-form input:not(.wish-honeypot) { min-height: 43px; padding: 10px 12px; }.wish-form textarea { min-height: 105px; padding: 11px 12px; resize: vertical; line-height: 1.5; }
.wish-form input:focus, .wish-form textarea:focus { border-color: #71936c; background: #fff; box-shadow: 0 0 0 3px rgba(113,147,108,.12); }
.wish-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.wish-form .btn-white-pill { width: 100%; justify-content: center; min-height: 44px; margin-top: 15px; border-radius: 12px; }.wish-form .btn-white-pill:disabled { opacity: .7; cursor: wait; transform: none; }
.wish-form-feedback { min-height: 18px; margin-top: 9px; color: #5d835f; font-size: .73rem; font-weight: 700; line-height: 1.4; text-align: center; }
.wish-modal-card { width: min(100% - 32px, 490px); padding: 0; overflow: hidden; }.wish-modal-card .modal-header-babynoa { padding: 27px 28px 20px; margin: 0; border-bottom: 1px solid var(--line); background: linear-gradient(115deg, #fff5ea, #eef5e9); }.wish-modal-card .modal-title-babynoa { margin-top: 7px; font-size: 1.55rem; letter-spacing: -.055em; }.wish-modal-form { padding: 23px 28px 28px; border: 0; border-radius: 0; box-shadow: none; background: #fffefa; }.wish-modal-form .reservation-helper { margin-bottom: 19px; }.wish-modal-form .btn-white-pill { margin-top: 17px; }
.gift-letters { margin-top: 16px; padding: 13px; border: 1px solid rgba(75,115,93,.17); border-radius: 13px; background: rgba(255,255,255,.54); }.gift-letters-kicker { display: block; color: #6f936b; font-size: .58rem; font-weight: 800; letter-spacing: .085em; }.gift-letter { padding: 11px 0 2px; }.gift-letter + .gift-letter { margin-top: 7px; border-top: 1px solid rgba(75,115,93,.12); }.gift-letter p { color: #49614f; font-family: var(--font-serif); font-size: 1.04rem; font-style: italic; line-height: 1.2; letter-spacing: -.028em; }.gift-letter footer { margin-top: 6px; color: #668163; font-size: .66rem; }.gift-letter footer strong { color: var(--moss-deep); }
.amazon-free-shipping-note { margin-top: 10px; color: #8a661e; font-size: .62rem; font-weight: 800; line-height: 1.35; }
.amazon-tip-modal { position: relative; width: min(100% - 32px, 430px); padding: 34px 30px 29px; text-align: center; border-radius: 24px; background: linear-gradient(145deg, #fff9ed, #fffefa); }.amazon-tip-mark { display: grid; place-items: center; width: 48px; height: 48px; margin: 0 auto 15px; border-radius: 50%; color: #856321; background: #fff0c9; font-size: 1.25rem; font-weight: 800; }.amazon-tip-modal h3 { margin-top: 8px; color: var(--moss-deep); font-size: 1.7rem; letter-spacing: -.06em; }.amazon-tip-modal > p { margin: 12px auto 0; color: var(--ink-soft); font-size: .84rem; line-height: 1.58; }.amazon-tip-modal > p strong { color: #765519; }.amazon-tip-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 23px; }.amazon-tip-actions a { text-decoration: none; }
.wishes-feed-wrap { grid-column: 1 / -1; margin-top: 2px; }.wishes-feed-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); color: #718071; font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }.wishes-feed-heading span:last-child { color: #789173; font-size: .59rem; letter-spacing: .04em; text-transform: none; }
.wishes-feed { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 15px; }.wish-card { display: flex; flex-direction: column; min-height: 170px; padding: 18px; border: 1px solid rgba(75,115,93,.14); border-radius: 17px; background: #fffefa; animation: fadeInUp 360ms var(--ease-out) both; animation-delay: var(--wish-delay, 0ms); }.wish-card:nth-child(3n + 2) { background: #f4f8f0; }.wish-card:nth-child(3n) { background: #fff7ef; }.wish-card-message { color: #425a4a; font-family: var(--font-serif); font-size: 1.3rem; font-style: italic; line-height: 1.12; letter-spacing: -.035em; }.wish-card footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; margin-top: auto; padding-top: 18px; color: #658062; font-size: .67rem; }.wish-card footer strong { color: var(--moss-deep); font-size: .71rem; }.wish-card footer span { color: #829181; font-size: .59rem; }.wishes-empty { grid-column: 1 / -1; padding: 19px 0; color: #738275; font-family: var(--font-serif); font-size: 1.32rem; font-style: italic; }

/* The filters read as one calm control surface, rather than disconnected fields. */
.controls-bar-babynoa { padding: 8px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,254,250,.82); box-shadow: 0 10px 30px rgba(46,71,57,.045); }
.search-row { display: grid; grid-template-columns: minmax(0, 1fr) 175px; gap: 8px; align-items: stretch; }
.search-input-box, .select-babynoa { min-width: 0; min-height: 52px; border-radius: 13px; }
.search-input-box { width: auto; box-shadow: inset 0 0 0 1px transparent; transition: border-color 180ms ease, box-shadow 180ms ease; }
.search-input-box:focus-within { border-color: #71936c; box-shadow: 0 0 0 3px rgba(113,147,108,.12); }
.select-babynoa { width: 100%; }
.toolbar-categories { display: flex; align-items: center; gap: 13px; margin-top: 8px; padding: 10px 7px 3px; border-top: 1px solid rgba(46,71,57,.09); }
.toolbar-label { flex: 0 0 auto; color: #718071; font-size: .63rem; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.category-pills-row { flex: 1; margin-top: 0; gap: 6px; }
.babynoa-pill { min-height: 31px; padding: 7px 11px; font-size: .66rem; }

@media (max-width: 760px) {
  .gift-flow { grid-template-columns: 1fr; gap: 28px; }
  .gift-flow-intro > p { max-width: 360px; }
  .reservation-modal-card .modal-header-babynoa, .reservation-form { padding-left: 21px; padding-right: 21px; }
  .reservation-success { padding-left: 21px; padding-right: 21px; }
  .virtual-shower-note { grid-template-columns: auto 1fr; margin-top: 54px; gap: 12px; }
  .virtual-shower-note p { grid-column: 2; }
  .search-row { grid-template-columns: 1fr; }
  .toolbar-categories { display: block; padding-bottom: 1px; }
  .toolbar-label { display: block; margin: 2px 0 9px; }
}

@media (max-width: 900px) { .babynoa-navbar { padding: 12px 18px; }.hero-container { grid-template-columns: 1fr; }.hero-mockup-frame { display: block; margin: 14px auto 0; }.guide-step-card:not(:last-child)::after { display: none; }.guide-step-card { padding-right: 10px; }.babynoa-body-section { padding: 58px 20px 74px; } }
@media (max-width: 640px) { .nav-links-row { display: none; }.babynoa-navbar .nav-container > div:last-child .btn-outline-pill { display: inline-flex; min-height: 37px; padding: 7px 12px; }.babynoa-hero { padding: 116px 20px 59px; }.hero-main-title { font-size: clamp(3.15rem, 15vw, 4.2rem); }.hero-stats-box { margin-top: 28px; }.hero-stat-item { min-width: 77px; }.hero-mockup-frame { width: min(100%, 328px); }.mockup-inner-card { min-height: 400px; }.mockup-mascot-img { width: 205px; height: 205px; }.guest-guide-box { padding: 24px 20px; }.guide-steps-grid { grid-template-columns: 1fr; gap: 7px; }.guide-step-card { padding: 13px 0; }.body-heading-box { padding-top: 72px; }.search-row { flex-direction: column; }.search-input-box,.select-babynoa { width: 100%; }.hospital-bag-intro { grid-template-columns: 1fr; gap: 11px; padding: 22px 20px; }.hospital-bag-count { justify-self: start; }.product-img-box { height: 205px; }.modal-actions-babynoa { flex-direction: column-reverse; }.modal-actions-babynoa .btn-white-pill,.modal-actions-babynoa .btn-outline-pill { justify-content: center; } }

/* Mobile is a dedicated composition, not a compressed desktop layout. */
@media (max-width: 640px) {
  body { min-width: 320px; }
  .babynoa-navbar {
    top: 12px; left: 12px; right: 12px; min-height: 58px;
    padding: 10px 14px; border-radius: 20px;
    background: rgba(17, 58, 47, .94);
  }
  .nav-container { gap: 10px; }
  .brand-wrapper { gap: 7px; }
  .brand-mascot { width: 34px; height: 34px; }
  .brand-title-text { font-size: 1.24rem; }
  .mobile-list-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #edf4e9;
    color: var(--moss-deep);
    font-size: .7rem;
    font-weight: 800;
    text-decoration: none;
  }
  .babynoa-navbar .admin-action { display: none !important; }
  .babynoa-navbar .nav-container > div:last-child { margin-left: auto; gap: 7px !important; }
  .babynoa-navbar .nav-container > div:last-child > .btn-outline-pill {
    min-width: 36px;
    min-height: 36px;
    padding: 8px 10px;
    border-color: transparent;
    background: transparent;
    font-size: .68rem;
  }

  .babynoa-hero {
    min-height: 0;
    padding: 116px 20px 59px;
    background-color: #123f34;
    background-image:
      radial-gradient(rgba(209, 239, 204, .20) .65px, transparent .65px),
      radial-gradient(ellipse at 93% 30%, rgba(69, 139, 100, .52), transparent 47%),
      linear-gradient(145deg, #103a30 0%, #174e40 58%, #236750 100%);
    background-position: 0 0, 0 0, center;
    background-size: 10px 10px, auto, auto;
  }
  .babynoa-hero::before { width: 270px; height: 270px; right: -145px; top: auto; bottom: -140px; opacity: .8; }
  .babynoa-hero::after { width: 190px; height: 190px; left: auto; right: 2%; bottom: -125px; }
  .hero-container { gap: 24px; }
  .hero-tag-green { max-width: 100%; padding: 7px 10px; font-size: .59rem; letter-spacing: .055em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-main-title { max-width: 345px; margin: 18px 0 16px; font-size: clamp(3.05rem, 14.2vw, 4.05rem); line-height: .89; letter-spacing: -.078em; }
  .hero-desc-text { max-width: 355px; font-size: .88rem; line-height: 1.59; }
  .baby-countdown { margin-top: 20px; padding: 13px 12px 11px; border-radius: 15px; }
  .countdown-kicker { font-size: .54rem; letter-spacing: .09em; }
  .countdown-units { gap: 6px; margin-top: 9px; }
  .countdown-units > div { padding-right: 5px; }
  .countdown-units strong { font-size: 1.18rem; }
  .countdown-units span { margin-top: 3px; font-size: .48rem; letter-spacing: .045em; }
  .hero-actions-row { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 21px; }
  .hero-actions-row .btn-white-pill {
    min-height: 51px;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 15px;
    font-size: .8rem;
  }
  .hero-stats-box {
    width: 100%;
    margin-top: 23px;
    padding: 12px 5px;
    justify-content: space-between;
    border-top: 1px solid rgba(52,86,67,.15);
  }
  .hero-stat-item { min-width: 0; flex: 1; padding: 0 6px; }
  .hero-stat-num { font-size: 1.18rem; }
  .hero-stat-lbl { font-size: .52rem; letter-spacing: .07em; line-height: 1.2; }
  .hero-stats-box > div[style] { height: 25px !important; margin: 3px 2px; }
  .noa-hero-stage { min-height: 295px; margin: 0 auto -10px; }
  .noa-hero-stage::before { width: min(88%, 300px); right: 50%; bottom: 2px; transform: translateX(50%) rotate(-8deg); }
  .noa-hero-stage::after { width: 72%; height: 66%; right: 14%; }
  .noa-hero-wave { width: min(98%, 318px); height: 286px; }
  .noa-speech-bubble { top: 3px; left: 2px; max-width: 194px; padding: 13px 15px 12px; border-radius: 20px 20px 20px 6px; }
  .noa-speech-bubble::after { left: 17px; bottom: -9px; width: 16px; height: 16px; }
  .noa-speech-bubble span { font-size: .51rem; }
  .noa-speech-bubble strong { margin-top: 3px; font-size: 1.63rem; }
  .noa-stage-sparkle { width: 29px; height: 29px; font-size: .78rem; }
  .noa-stage-sparkle-one { top: 39px; right: 14px; }
  .noa-stage-sparkle-two { right: 6px; bottom: 45px; font-size: .88rem; }
  .babynoa-strip { padding: 11px 16px; }
  .strip-container { justify-content: flex-start; overflow-x: auto; white-space: nowrap; font-size: .57rem; letter-spacing: .09em; }

  .babynoa-body-section { padding: 43px 16px 68px; }
  .gift-flow { gap: 23px; }
  .gift-flow-intro h3 { font-size: 2.42rem; }
  .gift-flow-intro > p { font-size: 1rem; line-height: 1.62; }
  .noa-thinking { width: 105px; height: 96px; margin-top: 13px; }
  .gift-flow-steps li { grid-template-columns: 37px 1fr; gap: 11px; padding: 14px 0; }
  .gift-flow-steps li > span { width: 29px; height: 29px; }
  .gift-flow-steps strong { font-size: 1.08rem; }
  .gift-flow-steps p { font-size: .98rem; line-height: 1.55; }
  .virtual-shower-note { margin-top: 42px; padding: 15px 0; }
  .virtual-shower-note h3 { font-size: 1.18rem; line-height: 1.24; }
  .virtual-shower-note p { font-size: .98rem; line-height: 1.58; }
  .wish-wall { grid-template-columns: 1fr; gap: 24px; margin-top: 53px; padding-top: 39px; }
  .wish-wall-intro h2 { font-size: 2.55rem; }
  .wish-wall-intro > p { font-size: .98rem; line-height: 1.6; }
  .noa-memory { width: 116px; height: 105px; margin-top: 13px; }
  .wish-wall-note { padding: 18px; border-radius: 18px; }
  .wish-modal-form textarea { min-height: 112px; }
  .wishes-feed-wrap { margin-top: 0; }
  .wishes-feed-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .wishes-feed { grid-template-columns: 1fr; gap: 9px; margin-top: 11px; }
  .wish-card { min-height: 140px; padding: 16px; border-radius: 15px; }
  .wish-card-message { font-size: 1.22rem; }
  .body-heading-box { padding: 58px 0 24px; }
  .body-subtag { margin-bottom: 8px; font-size: .6rem; }
  .body-title { font-size: clamp(2.5rem, 12.2vw, 3.35rem); line-height: .93; letter-spacing: -.074em; }
  .body-title br { display: none; }
  .noa-list-illustration { right: -2px; bottom: 5px; width: 88px; height: 82px; opacity: .96; }

  .controls-bar-babynoa { position: relative; padding: 7px; border-radius: 18px; }
  .search-row { gap: 7px; }
  .search-input-box, .select-babynoa { min-height: 49px; border-radius: 12px; }
  .input-babynoa { font-size: .82rem; }
  .select-babynoa { font-size: .76rem; }
  .toolbar-categories { padding: 9px 4px 2px; }
  .toolbar-label { margin-bottom: 8px; font-size: .57rem; }
  .category-pills-row { margin-right: -3px; padding: 0 3px 6px 0; scroll-snap-type: x proximity; }
  .babynoa-pill { min-height: 34px; padding: 7px 12px; font-size: .65rem; scroll-snap-align: start; }

  .cards-grid-babynoa { gap: 13px; margin-bottom: 46px; }
  .babynoa-card { padding: 13px; border-radius: 19px; }
  .card-step-num { margin-bottom: 8px; font-size: .59rem; }
  .product-img-box, .hospital-bag-gallery { height: 218px; margin: 3px 0 14px; border-radius: 13px; }
  .card-title-babynoa { font-size: 1.02rem; }
  .card-desc-babynoa { margin-bottom: 12px; font-size: .95rem; line-height: 1.58; }
  .shipping-helper-tag { margin-top: 12px; padding: 5px 8px; font-size: .62rem; }
  .card-stores-label { margin-top: 14px; font-size: .6rem; }
  .babynoa-store-btn { min-height: 35px; padding: 8px 9px; font-size: .64rem; }
  .btn-reserve-card { min-height: 46px; margin-top: 14px; border-radius: 12px; font-size: .74rem; }
  .hospital-bag-intro { margin: 14px 0 0; padding: 19px 17px; border-radius: 18px; }
  .hospital-bag-intro h3 { font-size: 2.1rem; }
  .included-items-box ul { grid-template-columns: 1fr; }

  .babynoa-modal-overlay { align-items: flex-end; padding: 0; }
  .babynoa-modal-card, .reservation-modal-card { width: 100%; max-height: min(88dvh, 720px); border-radius: 24px 24px 0 0; overflow-y: auto; }
  .reservation-modal-card .modal-header-babynoa { position: sticky; top: 0; z-index: 1; padding: 20px 20px 16px; }
  .reservation-modal-card .modal-header-babynoa::before { content: ""; display: block; width: 36px; height: 4px; margin: -11px auto 13px; border-radius: 99px; background: rgba(41,74,58,.2); }
  .reservation-modal-card .modal-title-babynoa { font-size: 1.36rem; }
  .reservation-form { padding: 19px 20px calc(22px + env(safe-area-inset-bottom)); }
  .wish-modal-card .modal-header-babynoa { position: sticky; top: 0; z-index: 1; padding: 20px 20px 16px; }
  .wish-modal-card .modal-header-babynoa::before { content: ""; display: block; width: 36px; height: 4px; margin: -11px auto 13px; border-radius: 99px; background: rgba(41,74,58,.2); }
  .wish-modal-form { padding: 19px 20px calc(22px + env(safe-area-inset-bottom)); }
  .amazon-tip-modal { width: 100%; padding: 27px 21px calc(24px + env(safe-area-inset-bottom)); border-radius: 24px 24px 0 0; }
  .amazon-tip-actions { flex-direction: column-reverse; }.amazon-tip-actions .btn-white-pill, .amazon-tip-actions .btn-outline-pill { justify-content: center; }
  .reservation-choice-group { gap: 6px; }
  .reservation-choice { min-height: 54px; padding: 8px; font-size: .69rem; }
  .modal-actions-babynoa { gap: 8px; }
  .modal-actions-babynoa .btn-white-pill, .modal-actions-babynoa .btn-outline-pill { min-height: 47px; }
  .babynoa-footer-section { padding: 49px 20px calc(49px + env(safe-area-inset-bottom)); }
  .footer-mascot { width: 105px; height: 105px; }
  .footer-title { font-size: 2.3rem; line-height: .94; }
}
.babynoa-footer-section { background: #fffefa; border-top: 1px solid var(--line); }
.babynoa-footer-section::after { background: rgba(220, 235, 214, .56); }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; } }
