/* Crown Nursery V2 — blush + emerald magazine skin */

:root {
  --bg: #FDF2F8;
  --bg-soft: #FCE7F3;
  --surface: #FFFBFE;
  --primary: #059669;
  --primary-dark: #047857;
  --secondary: #34D399;
  --accent: #BE185D;
  --accent-soft: #F9A8D4;
  --rose: #DB2777;
  --ink: #1F2937;
  --muted: #6B7280;
  --line: rgba(190, 24, 93, 0.12);
  --shadow: 0 24px 60px rgba(190, 24, 93, 0.08);
  --shadow-lg: 0 32px 80px rgba(5, 150, 105, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --font-display: 'Spectral', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.store-v2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.site-shell { min-height: 100vh; overflow-x: hidden; }

/* ── Header: centered logo, two-row nav ── */

.v2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 242, 248, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.v2-header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0 14px;
  gap: 14px;
}

.v2-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.v2-brand-logo {
  width: 108px;
  height: auto;
}

.v2-brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.v2-brand-tag {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 340px;
}

.v2-nav-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.v2-nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
}

.v2-nav-row a {
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
}

.v2-nav-row a:hover {
  background: var(--bg-soft);
  color: var(--accent);
}

.v2-nav-row--actions a {
  background: var(--surface);
  border: 1px solid var(--line);
}

.v2-nav-row--actions a.v2-cart-pill {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.25);
}

.v2-nav-row--actions a.v2-cart-pill:hover {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.v2-cart-pill .v2-cart-count,
.v2-cart-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.v2-nav-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--accent);
}

.v2-header { position: relative; }

/* ── Typography helpers ── */

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 14px 32px rgba(5, 150, 105, 0.28);
}

.btn-soft {
  background: var(--surface);
  color: var(--accent);
  border: 1px solid var(--line);
}

.btn-rose {
  background: linear-gradient(135deg, var(--accent), var(--rose));
  color: #fff;
  box-shadow: 0 14px 32px rgba(190, 24, 93, 0.22);
}

/* ── Magazine hero ── */

.v2-hero {
  padding: 48px 0 64px;
  overflow: hidden;
}

.v2-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: start;
}

.v2-hero-copy {
  padding: 12px 0 0 8px;
}

.v2-hero-copy h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 20px;
  max-width: 14ch;
}

.v2-hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 28px;
}

.v2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-hero-aside {
  position: relative;
  padding-top: 24px;
}

.v2-stats-float {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transform: rotate(1.5deg);
  position: relative;
}

.v2-stats-float::before {
  content: '';
  position: absolute;
  inset: -8px -8px auto auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  opacity: 0.5;
  z-index: -1;
}

.v2-stat-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.v2-stat-item:last-child { border-bottom: none; }

.v2-stat-item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  min-width: 72px;
}

.v2-stat-item span {
  font-size: 0.92rem;
  color: var(--muted);
}

.v2-hero-accent-block {
  margin-top: 20px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.95rem;
  transform: rotate(-1deg) translateX(-12px);
  max-width: 280px;
}

/* ── Category chips ── */

.v2-section {
  padding: 56px 0;
}

.v2-section-head {
  margin-bottom: 28px;
}

.v2-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 8px;
  color: var(--ink);
}

.v2-section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.v2-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 0;
}

.v2-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 180px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.v2-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}

.v2-chip h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--accent);
}

.v2-chip span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── Horizontal product list cards ── */

.v2-product-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.v2-product-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}

.v2-product-row:nth-child(even) {
  grid-template-columns: 1fr 220px;
}

.v2-product-row:nth-child(even) .v2-product-row-media { order: 2; }
.v2-product-row:nth-child(even) .v2-product-row-body { order: 1; text-align: right; }
.v2-product-row:nth-child(even) .v2-product-row-body .price-row { justify-content: flex-end; }

.v2-product-row:hover { transform: translateX(6px); }
.v2-product-row:nth-child(even):hover { transform: translateX(-6px); }

.v2-product-row-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
}

.v2-product-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-product-row-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v2-product-row-body h3 {
  margin: 8px 0 10px;
  font-size: 1.35rem;
  color: var(--ink);
}

.v2-product-row-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.price-row strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
}

/* ── Promo band ── */

.v2-promo {
  margin: 20px 0;
  padding: 40px 44px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--bg-soft) 0%, var(--surface) 50%, rgba(52, 211, 153, 0.15) 100%);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.v2-promo h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  color: var(--accent);
}

.v2-promo p {
  margin: 0;
  color: var(--muted);
}

/* ── Scroll reveal ── */

[data-scroll] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-scroll].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Footer: blush gradient, 4 columns ── */

.v2-footer {
  margin-top: 48px;
  background: linear-gradient(160deg, #FCE7F3 0%, #FDF2F8 40%, rgba(5, 150, 105, 0.08) 100%);
  border-top: 1px solid var(--line);
  padding: 56px 0 0;
}

.v2-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.v2-footer h3,
.v2-footer h4 {
  font-family: var(--font-display);
  color: var(--accent);
  margin: 0 0 14px;
}

.v2-footer p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.v2-footer a {
  display: block;
  padding: 5px 0;
  color: var(--ink);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.v2-footer a:hover { color: var(--primary); }

.v2-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

.v2-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted);
}

/* ── Shared page components (shop, cart, product, etc.) ── */

.section { padding: 48px 0; }

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-title h2 {
  margin: 0;
  font-size: 2rem;
  color: var(--ink);
}

.section-title p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-body { padding: 18px 20px; }

.product-body h3 {
  margin: 8px 0;
  font-size: 1.1rem;
}

.panel {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
}

.dual {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.pill-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-tabs a {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
}

.pill-tabs a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.notice {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--surface);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.mini-copy {
  font-size: 0.88rem;
  color: var(--muted);
}

.linkish {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.premium-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.product-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.carousel-card {
  min-width: 240px;
  flex-shrink: 0;
}

.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pagination a,
.pagination span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.88rem;
}

.pagination a:hover,
.pagination .current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ── Inner pages: about, contact, policies, auth, track ── */

.page-hero,
.compact-hero {
  padding: 40px 0 12px;
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.page-hero-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.page-hero-card h1 {
  margin: 0 0 10px;
  color: var(--accent);
}

.page-hero-card p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.eyebrow-new {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.about-grid,
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.content-panel h2,
.content-panel h3,
.legal-card h3 {
  color: var(--accent);
  margin-top: 0;
}

.legal-card dl { margin: 0; }

.legal-card dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 14px;
}

.legal-card dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-strip span {
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.section-journey {
  background: var(--bg-soft);
  border-block: 1px solid var(--line);
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.journey-steps {
  display: grid;
  gap: 14px;
}

.journey-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.step-icon {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.journey-step strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

.journey-step span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.notice-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.notice-ok,
.notice.success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

/* Auth / account */
.auth-page {
  padding: 48px 0 72px;
}

.auth-page > .container {
  max-width: 520px;
  margin-inline: auto;
}

.auth-page > .container:has(.auth-dashboard) {
  max-width: 960px;
}

.auth-gateway {
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.auth-tab-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.auth-tab-bar button {
  border: 0;
  background: transparent;
  padding: 16px 12px;
  font: inherit;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}

.auth-tab-bar button.is-active {
  color: var(--accent);
  background: var(--surface);
  box-shadow: inset 0 -3px 0 var(--primary);
}

.auth-pane {
  display: none;
  padding: 32px 28px 36px;
}

.auth-pane.is-active { display: block; }

.auth-pane h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--accent);
  margin-bottom: 8px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-dashboard {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.auth-sidebar {
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--line);
}

.auth-sidebar h2 {
  font-size: 1.15rem;
  color: var(--accent);
}

.auth-sidebar nav {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.auth-sidebar nav a,
.auth-sidebar nav button {
  text-align: left;
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 12px;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
}

.auth-sidebar nav a:hover,
.auth-sidebar nav button:hover,
.auth-sidebar nav a.is-active {
  background: var(--bg-soft);
  color: var(--accent);
}

.auth-main.panel { padding: 28px; }

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin: 18px 0 22px;
}

.profile-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}

.profile-item .k {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 6px;
}

.profile-item .v {
  display: block;
  font-weight: 700;
  color: var(--ink);
  word-break: break-word;
}

.order-list { display: grid; gap: 12px; margin-top: 12px; }

.order-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.order-row .small,
.order-items {
  font-size: 0.86rem;
  color: var(--muted);
}

.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 10050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  max-width: min(92vw, 520px);
  text-align: center;
}

.toast.visible,
.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.toast.success { background: var(--primary); }
.toast.error { background: #dc2626; }

.otp-panel {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10100;
  background: rgba(10, 20, 15, 0.58);
  padding: 24px;
  align-items: center;
  justify-content: center;
}

.otp-panel.is-open {
  display: flex;
}

.otp-card {
  background: #fff;
  max-width: 420px;
  width: 100%;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.otp-card h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.otp-msg {
  color: #5a6b60;
  margin: 0 0 16px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.otp-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.otp-card input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8e0da;
  border-radius: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.otp-card .btn {
  width: 100%;
  margin-bottom: 8px;
}

.auth-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
}

.auth-status.is-visible { display: block; }
.auth-status.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.auth-status.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.track-hero {
  margin-bottom: 24px;
}

.track-hero h1 {
  margin: 0 0 8px;
  color: var(--accent);
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .v2-hero-grid {
    grid-template-columns: 1fr;
  }

  .v2-hero-copy h1 { max-width: none; }

  .v2-hero-aside { padding-top: 0; }

  .v2-stats-float { transform: none; }

  .v2-hero-accent-block { transform: none; margin-left: 0; }

  .v2-product-row,
  .v2-product-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .v2-product-row:nth-child(even) .v2-product-row-media { order: 0; }
  .v2-product-row:nth-child(even) .v2-product-row-body { order: 0; text-align: left; }
  .v2-product-row:nth-child(even) .v2-product-row-body .price-row { justify-content: flex-start; }

  .v2-product-row-media { aspect-ratio: 16/10; }

  .v2-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dual,
  .premium-product-detail,
  .about-grid,
  .contact-layout,
  .journey-layout,
  .auth-dashboard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .v2-nav-toggle { display: inline-flex; }

  .v2-nav-block {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 100%;
    background: rgba(253, 242, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow-lg);
  }

  .v2-nav-block.open,
  #siteNav.open { display: flex; }

  .v2-footer-grid { grid-template-columns: 1fr; }

  .v2-promo { padding: 28px 24px; }

  .v2-chip { min-width: 140px; }
}
