/* ---------------------------------------------------------
   ASCEND PEPTIDES — CLEAN PREMIUM THEME (STYLE B)
   Unified styles for Home, Shop, About, Contact
--------------------------------------------------------- */

:root {
  --blue-dark: #0d1a2d;
  --blue: #1d4ed8;
  --blue-light: #7da9ff;
  --bg: #f4f6fa;
  --card-bg: #ffffff;
  --text-main: #0d1a2d;
  --text-muted: #5b6275;
  --border-soft: #e1e4f0;
  --accent: #4e7cff;
  --danger: #b42318;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-soft: 0 16px 40px rgba(5, 22, 60, 0.14);
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Inter", sans-serif;
  background: #ffffff;
  color: var(--text-main);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

html {
  background: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container.narrow {
  max-width: 960px;
}

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(13, 26, 45, 0.06);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 0;
  gap: 18px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 34, 0.45);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-only {
  display: none;
}

.logo img {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  min-width: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--blue-dark);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.16s ease-out;
}

.site-nav a:hover {
  color: var(--blue-dark);
}

.site-nav a:hover::after {
  width: 100%;
}

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

.mobile-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 8px 12px;
  min-height: 40px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(7, 16, 32, 0.12);
}

.mobile-cart-trigger .cart-icon {
  font-size: 1rem;
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-header .primary-btn {
  padding: 10px 18px;
  font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(7, 16, 32, 0.22);
}

/* ---------------------------------------------------------
   HERO SECTIONS
--------------------------------------------------------- */

.page-hero {
  text-align: center;
  padding: 96px 0 72px;
  background: linear-gradient(180deg, rgba(13, 26, 45, 0.08), rgba(13, 26, 45, 0));
}

.page-hero.hero-image {
  color: #ffffff;
  min-height: 520px;
  display: flex;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(13, 26, 45, 0.85) 0%, rgba(13, 26, 45, 0.25) 65%), url('images/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-shop .page-hero {
  background: linear-gradient(135deg, rgba(13, 26, 45, 0.9), rgba(32, 63, 186, 0.85));
  color: #ffffff;
  border-radius: 32px;
  margin: 40px auto;
  padding: 70px 0 60px;
  box-shadow: 0 30px 60px rgba(9, 17, 44, 0.2);
}

.page-shop .page-hero .eyebrow,
.page-shop .page-hero p,
.page-shop .page-hero h1 {
  color: rgba(255, 255, 255, 0.92);
}

.page-shop .page-hero .eyebrow {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .page-hero.hero-image {
    background-position: center 65%;
  }
}

.page-hero.hero-image h1,
.page-hero.hero-image p,
.page-hero.hero-image .eyebrow {
  color: rgba(255, 255, 255, 0.95);
}

.page-hero .eyebrow {
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--blue-dark);
  opacity: 0.8;
  margin-bottom: 6px;
}

.page-hero h1 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
}

.page-hero p {
  max-width: 720px;
  margin: 10px auto 0;
  font-size: 1.02rem;
  color: var(--text-muted);
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: #ffffff;
}

/* ---------------------------------------------------------
   GENERIC SECTIONS
--------------------------------------------------------- */

.section {
  padding: 72px 0;
  background: #ffffff;
}

.section.alt {
  background: #f4f6fa;
}

.page-home .section.highlights {
  background: linear-gradient(135deg, #0d1a2d, #153469 55%, #1e4faf);
  color: #e8edfa;
  position: relative;
  overflow: hidden;
}

.page-home .section.highlights::after {
  content: "";
  position: absolute;
  inset: 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.page-home .section.highlights .card-grid.two {
  gap: 18px;
}

.page-home .section.highlights .info-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #e8edfa;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.page-home .section.highlights .info-card h3 {
  color: #ffffff;
}

.page-home .section.highlights .info-card p {
  color: rgba(232, 237, 250, 0.9);
}

.page-home #shop {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at -10% 20%, rgba(29, 78, 216, 0.12), transparent 38%),
    radial-gradient(circle at 120% 10%, rgba(78, 124, 255, 0.12), transparent 40%),
    linear-gradient(135deg, #f8fbff, #eef2ff);
}

.page-home #shop::before,
.page-home #shop::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.5;
  pointer-events: none;
}

.page-home #shop::before {
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.22), transparent 70%);
}

.page-home #shop::after {
  bottom: -160px;
  right: -140px;
  background: radial-gradient(circle, rgba(78, 124, 255, 0.2), transparent 70%);
}

.page-home #shop .container {
  position: relative;
}

.page-shop .section:first-of-type .container {
  padding-top: 10px;
}

.section .section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: 1.85rem;
  letter-spacing: -0.01em;
  margin: 0;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 720px;
  margin: 8px auto 0;
}

.page-home .section-heading h2 {
  position: relative;
  display: inline-block;
}

.page-home .section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #1d4ed8, #4e7cff);
  border-radius: 999px;
}

/* ---------------------------------------------------------
   PRODUCT GRIDS / SHOP PAGE
--------------------------------------------------------- */

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.products-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: static;
}

.page-shop .product-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: linear-gradient(180deg, #ffffff, #f8f9ff);
  box-shadow: 0 25px 45px rgba(9, 17, 44, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-shop .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 60px rgba(9, 17, 44, 0.16);
}

.product-card-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}

.page-shop .product-desc {
  color: #4d5675;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.25s ease;
}

.product-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-card .product-subtitle,
.product-card .product-desc {
  margin: 0;
}

.product-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  align-items: end;
}

.product-controls label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.9rem;
}

.product-controls select,
.product-controls input {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  background: #ffffff;
}

.price {
  font-weight: 600;
  margin: 0;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 26px;
  background: linear-gradient(135deg, #0d1a2d, #1d4ed8);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(7, 16, 32, 0.3);
  border: none;
}

.primary-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 999px;
  border: 1px solid rgba(13, 26, 45, 0.4);
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.floating-cart {
  display: none;
  z-index: 3000;
}

.catalog-link {
  text-align: center;
  margin-top: 24px;
}

/* ---------------------------------------------------------
   MODALS & CHECKOUT
--------------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 12, 25, 0.55);
  transition: opacity 0.2s ease;
}

.modal[hidden] {
  display: none;
}

.age-gate[hidden] {
  display: none;
}

.modal-panel {
  width: 100%;
  max-width: 540px;
  max-height: calc(100vh - 48px);
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(3, 12, 32, 0.25);
  position: relative;
  animation: accordion 0.35s ease;
  overflow-y: auto;
}

.modal-panel.modal-large {
  max-width: 640px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-subtext {
  margin-top: 4px;
  color: var(--text-muted);
}

.cart-items .discount-note {
  font-size: 0.8rem;
  color: #1d874f;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  color: var(--text-muted);
  gap: 6px;
}

.form-field input {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}

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

.input-hint--error {
  color: var(--danger);
}

.button-link {
  background: none;
  border: none;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.order-summary {
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 20px;
  background: #f9fbff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.92rem;
}

.order-summary-item small {
  display: block;
  color: var(--text-muted);
}

.order-summary-row,
.order-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.discount-row span:last-child {
  color: #0f7b4b;
}

.order-summary-total {
  font-size: 1.1rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 8px;
}

.cart-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.cart-actions .primary-btn,
.cart-actions .button-secondary {
  flex: 1;
  justify-content: center;
  text-align: center;
}

.full-width {
  width: 100%;
}

.muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.82rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 34, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 380px;
  max-width: 100%;
  background: #ffffff;
  box-shadow: -16px 0 40px rgba(7, 16, 32, 0.25);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 90;
  display: flex;
  flex-direction: column;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-soft);
}

.cart-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer__footer {
  border-top: 1px solid var(--border-soft);
  padding: 16px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
}

.drawer-close {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: var(--text-muted);
  cursor: pointer;
}

.cart-drawer__items .cart-item-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-drawer__items .cart-item-controls {
  display: grid;
  gap: 6px;
  text-align: right;
}

/* ---------------------------------------------------------
   AGE VERIFICATION
--------------------------------------------------------- */

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 26, 45, 0.88);
  z-index: 120;
}

.age-gate__panel {
  width: 100%;
  max-width: 460px;
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(150deg, rgba(13, 26, 45, 0.98), rgba(30, 64, 175, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
  color: #ffffff;
  text-align: left;
}

.age-gate__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: var(--accent);
  margin: 0 0 10px;
}

.age-gate__panel h2 {
  margin: 0 0 12px;
}

.age-gate__panel p {
  margin: 0;
  line-height: 1.5;
}

.age-gate__actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.age-gate__actions .primary-btn {
  flex: 1;
  justify-content: center;
}

.age-gate__actions .button-secondary {
  flex: 1;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.age-gate__note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 520px) {
  .age-gate__panel {
    padding: 28px 24px;
  }
}

/* ---------------------------------------------------------
   ABOUT PAGE
--------------------------------------------------------- */

.about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1a2d, #15284f 55%, #1d3e74);
  color: #ffffff;
  padding: 68px 0 60px;
}

.about-hero::before,
.about-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.5;
  pointer-events: none;
}

.about-hero::before {
  top: -120px;
  left: -160px;
  background: radial-gradient(circle, rgba(78, 124, 255, 0.28), transparent 70%);
}

.about-hero::after {
  bottom: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.25), transparent 70%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.about-hero-content h1 {
  margin-top: 8px;
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  letter-spacing: -0.01em;
}

.about-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

.about-hero-list {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 12px;
}

.about-hero-list li {
  padding-left: 26px;
  position: relative;
  font-weight: 500;
}

.about-hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.about-hero-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(15, 35, 82, 0.9), rgba(29, 78, 216, 0.85));
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.hero-panel-card {
  background: rgba(7, 15, 34, 0.78);
  padding: 24px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 8px;
}

.panel-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.panel-metrics strong {
  font-size: 1.8rem;
  display: block;
}

.panel-metrics span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.metrics-band {
  background: #f0f3ff;
  padding: 32px 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.metric-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(13, 26, 45, 0.08);
  box-shadow: 0 20px 45px rgba(13, 26, 45, 0.08);
}

.metric-value {
  font-size: 2rem;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.metric-label {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.about-column h2 {
  margin-top: 0;
}

.highlight-card {
  background: linear-gradient(160deg, #ffffff, #eef2ff);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(77, 104, 182, 0.2);
  box-shadow: var(--shadow-soft);
}

.highlight-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--text-main);
}

.info-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.timeline-steps {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 18px;
}

.timeline-steps li {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 20px 45px rgba(7, 15, 34, 0.08);
}

.timeline-index {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(160deg, #1d4ed8, #4e7cff);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.timeline-steps h3 {
  margin: 0 0 6px;
}

.pdp-info {
  padding-top: 56px;
  padding-bottom: 56px;
}

.pdp-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pdp-info-block {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.pdp-subhead {
  margin: 0 0 8px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.pdp-info-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 85;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 20px rgba(7, 16, 32, 0.12);
}

/* Prevent sticky bar from appearing on shop listing */
.page-shop .pdp-sticky-bar {
  display: none !important;
}

.pdp-sticky-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdp-sticky-name {
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--blue-dark);
}

.pdp-sticky-price {
  font-size: 1rem;
}

.page-about .about-hero {
  padding: 64px 0 56px;
}

.page-about .about-hero-grid {
  gap: 28px;
  align-items: stretch;
}

.page-about .about-hero-list {
  margin: 14px 0 0;
  gap: 10px;
}

.page-about .about-hero-list li::before {
  content: "✓";
  top: 3px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.page-about .hero-panel-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-about .panel-metrics {
  gap: 14px;
  margin-top: 10px;
}

.page-about .metrics-band {
  padding: 28px 0;
}

.page-about .section {
  padding: 64px 0;
}

/* About page refinements */
.page-about .about-hero {
  padding: 72px 0 64px;
}

.page-about .about-hero-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: stretch;
}

.page-about .about-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
}

.page-about .about-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
}

.page-about .about-hero-list {
  margin: 20px 0 0;
  gap: 12px;
}

.page-about .about-hero-list li {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.page-about .about-hero-list li::before {
  content: ">";
  color: #8fb1ff;
  top: 3px;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.page-about .about-grid {
  gap: 26px;
}

.page-about .timeline-steps {
  gap: 14px;
}

.page-about .timeline-steps li {
  padding: 16px 18px;
  gap: 14px;
}

/* ---------------------------------------------------------
   CTA PANEL
--------------------------------------------------------- */

.cta-panel {
  background: linear-gradient(120deg, #0d1a2d, #1f3a68);
  color: white;
  padding: 40px 0;
}

.cta-panel .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-panel h2 {
  margin: 0 0 6px;
}

.cta-panel p {
  margin: 0;
  opacity: 0.9;
}

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

.faq-grid {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--text-main);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-answer {
  padding: 0 24px 24px;
  color: var(--text-muted);
  line-height: 1.6;
  animation: accordion 0.35s ease;
}

.faq-item[open] {
  border-color: var(--blue);
  box-shadow: 0 20px 40px rgba(7, 16, 32, 0.12);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(29, 78, 216, 0.15);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-icon::after {
  content: '+';
  font-weight: 700;
}

.faq-item[open] .faq-icon {
  transform: scale(1.05);
  background: rgba(13, 26, 45, 0.8);
  color: #ffffff;
}

.faq-item[open] .faq-icon::after {
  content: '–';
}

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

/* ---------------------------------------------------------
   ANIMATIONS
--------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-card,
.highlight-card,
.metric-card,
.timeline-steps li,
.product-card,
.faq-item {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-image {
  transition: transform 0.2s ease;
}

@media (hover: hover) {
  .info-card:hover,
  .highlight-card:hover,
  .metric-card:hover,
  .timeline-steps li:hover,
  .product-card:hover,
  .faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
  }

  .product-card-image-container:hover .product-image {
    transform: scale(1.04);
  }

  .primary-btn,
  .button-secondary {
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  }

  .primary-btn:hover,
  .button-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
    filter: brightness(1.03);
  }
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.site-footer {
  background: #07142f;
  color: #c9d0ea;
  padding: 26px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-grid img {
  height: 40px;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: #d1d8f3;
  text-decoration: none;
  font-size: 0.88rem;
}

.disclaimer {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 6px;
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1100px) {
  .header-inner {
    gap: 14px;
  }
  .logo img {
    height: 48px;
  }
  .site-nav {
    gap: 16px;
  }
  .section {
    padding: 68px 0;
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 16px;
  }
  .header-inner {
    padding: 12px 0;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .cta-panel .container {
    flex-direction: column;
    text-align: center;
  }
  .card-grid.three,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 2000;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
    padding-top: calc(12px + env(safe-area-inset-top, 0px));
  }
  .logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .logo img {
    height: 42px;
  }
  .mobile-menu-toggle {
    order: 1;
  }
  .header-actions {
    order: 3;
  }
  .header-actions .primary-btn {
    padding: 8px 12px;
    font-size: 0.9rem;
    line-height: 1;
    min-height: 40px;
  }
  .mobile-cart-trigger {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(13, 26, 45, 0.1);
    background: #ffffff;
    padding: 6px;
    cursor: pointer;
    box-shadow: 0 10px 16px rgba(7, 16, 32, 0.12);
    grid-column: 1;
    z-index: 1100;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0d1a2d;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  body.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  body.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .mobile-only {
    display: inline;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 420px;
    left: auto;
    flex-direction: column;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 16px 0 0 16px;
    padding: 18px 20px 32px;
    box-shadow: -18px 0 30px rgba(7, 16, 32, 0.18);
    gap: 16px;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
  }
  .floating-cart {
    z-index: 1200;
  }
  .site-nav.is-open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 1000 !important;
  }
  .site-nav a {
    font-size: 1rem;
    width: 100%;
    padding: 12px 0;
    color: #0d1a2d;
    pointer-events: auto;
  }
  .site-header .primary-btn {
    padding: 9px 14px;
    font-size: 0.9rem;
  }
  .site-nav.is-collapsed {
    max-height: none;
    overflow: visible;
    opacity: 0;
    transform: translateX(100%);
  }
  .mobile-menu-close {
    display: none;
  }
  .mobile-nav-overlay {
    opacity: 0;
    pointer-events: none;
  }
  body.nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .page-hero {
    padding: 68px 0 54px;
  }
  .hero-actions {
    gap: 12px;
  }
  .section {
    padding: 60px 0;
  }
  .card-grid {
    gap: 20px;
  }
  .pdp-info-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .cart-actions {
    flex-direction: column;
  }
  .cart-actions .primary-btn,
  .cart-actions .button-secondary {
    width: 100%;
  }
  .floating-cart {
    position: fixed;
    bottom: 18px;
    right: 16px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d1a2d, #1d4ed8);
    color: #ffffff;
    border: none;
    box-shadow: 0 16px 32px rgba(7, 16, 32, 0.28);
    z-index: 120;
    cursor: pointer;
    gap: 0;
  }
  .floating-cart .cart-text {
    display: none;
  }
  .floating-cart .cart-ico {
    font-size: 1.2rem;
  }
  .floating-cart .cart-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    min-width: 22px;
    padding: 2px 6px;
  }
}

@media (max-width: 640px) {
  .card-grid.three,
  .card-grid.two,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 16px 12px;
  }
  .pdp-sticky-bar {
    display: flex;
  }
  .cart-drawer {
    width: 100%;
    max-width: 100%;
    height: 80vh;
    top: auto;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -12px 32px rgba(7, 16, 32, 0.18);
    transform: translateY(100%);
  }
  .cart-drawer.is-open {
    transform: translateY(0);
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 14px;
  }
  .header-inner {
    gap: 10px;
  }
  .site-nav {
    gap: 8px;
  }
  .site-nav a {
    font-size: 0.86rem;
    padding: 6px 0;
  }
  .logo img {
    height: 40px;
  }
  .site-header .primary-btn {
    padding: 8px 12px;
    font-size: 0.88rem;
  }
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
