@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,600;0,9..144,700;1,9..144,600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #0a1830;
  --navy-2: #12254a;
  --sky: #cfe7ff;
  --sky-soft: #eef6ff;
  --primary: #0b3d91;
  --primary-2: #2b6fff;
  --accent: #e6f0ff;
  --ink: #10151f;
  --muted: #5a6069;
  --border: #e2e6ea;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(10, 24, 48, 0.12);
  --shadow-sm: 0 10px 24px rgba(10, 24, 48, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1160px;
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Top trust bar */
.top-bar {
  background: var(--navy);
  color: #cfe0ff;
  font-size: 13px;
  font-weight: 600;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 24px;
}

.top-bar .rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar .rating strong {
  color: #fff;
}

/* Header / nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--sky);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

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

.cart-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(10, 24, 48, 0.15);
  background: var(--white);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.cart-icon svg {
  width: 20px;
  height: 20px;
}

.cart-icon:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
}

.brand-mark {
  display: none;
}

.brand-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}

.brand-name::first-letter {
  font-style: italic;
}

.nav {
  display: flex;
  gap: 26px;
  font-weight: 600;
  color: var(--navy);
}

.nav a {
  opacity: 0.75;
  transition: opacity 0.15s ease;
}

.nav a:hover {
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-1px);
}

.orange-btn {
  background: #ff7a00;
  color: var(--white);
  border-color: #ff7a00;
}

.orange-btn:hover {
  background: #ff6100;
  border-color: #ff6100;
}

.btn-ghost {
  border-color: var(--border);
  background: var(--white);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--sky-soft) 0%, var(--white) 78%);
  padding: 64px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--primary-2);
  font-weight: 700;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  margin: 14px 0 18px;
  color: var(--navy);
}

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 20px 0 6px;
}

.trust-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.hero-card .card {
  background: var(--white);
  padding: 32px 26px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.sale-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.card-title {
  font-weight: 700;
  margin: 8px 0 6px;
}

.card-price {
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: var(--muted);
}

.card-list li {
  padding: 6px 0;
}

.card-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.cart-cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cart-cta-img {
  width: 200px;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  border: none;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--sky-soft);
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section h1,
.section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 38px);
  margin-bottom: 16px;
  color: var(--navy);
}

.section.dark h2 {
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.section.dark .muted {
  color: #a9b8d6;
}

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

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

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

/* Benefit tiles */
.tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

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

.tile h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

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

/* Problem / solution */
.problem {
  text-align: center;
}

.problem .container {
  max-width: 720px;
}

.problem .stat {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  margin: 0 0 6px;
}

.problem p {
  font-size: 17px;
  color: #a9b8d6;
  margin: 0 0 28px;
}

/* Product cards */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.product-image {
  width: min(100%, 260px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  background: var(--sky-soft);
  margin: 0 auto 18px;
  overflow: hidden;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  color: var(--muted);
}

.checklist li {
  padding: 6px 0;
}

.testimonial {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
}

.testimonial span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 600;
}

/* Steps */
.steps {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.step-num {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Trust strip */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 48px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  text-align: center;
}

.trust-strip-item h3 {
  margin: 14px 0 6px;
  font-size: 16px;
}

.trust-strip-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trust-strip-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 12px;
  background: var(--accent);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-strip-icon svg {
  width: 22px;
  height: 22px;
}

/* Cart drawer */
.cart-item {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 112px 1fr auto auto;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 22px;
}

.cart-thumb {
  width: 112px;
  height: 112px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--white);
  display: block;
}

.cart-info h3 {
  margin: 0 0 6px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.qty-value {
  min-width: 18px;
  text-align: center;
  font-weight: 600;
}

.cart-price {
  font-weight: 700;
  color: var(--navy);
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 20px;
  display: grid;
  gap: 12px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(480px, 100vw);
  background: var(--white);
  border-left: 1px solid var(--border);
  box-shadow: -20px 0 45px rgba(10, 24, 48, 0.16);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 18px;
  overflow: hidden;
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.cart-drawer-body {
  display: grid;
  gap: 16px;
  padding-top: 16px;
  overflow: auto;
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 48, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}

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

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.summary-row.total {
  font-weight: 700;
  color: var(--ink);
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.pay-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pay-logo {
  height: 26px;
  width: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 2px 6px;
}

/* Gallery (unused placeholder, kept minimal) */
.gallery {
  display: grid;
  gap: 20px;
}

.gallery-video video {
  width: 35%;
  max-height: 300px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--white);
  display: block;
  margin: 0 auto;
}

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

.gallery-item {
  height: 160px;
  border-radius: 14px;
  background: var(--sky-soft);
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 36px;
  border-radius: var(--radius);
}

.cta p {
  color: #a9b8d6;
}

/* FAQ */
.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 18px 22px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
}

.accordion p {
  color: var(--muted);
  margin: 12px 0 0;
}

.faq-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 48px;
  background: var(--white);
}

.site-footer .brand-name {
  font-size: 22px;
}

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

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
  font-weight: 600;
}

.newsletter {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  padding: 13px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  min-width: 240px;
  font-family: var(--font);
}

.newsletter-message {
  margin: 8px 0 0;
  color: var(--primary);
  font-weight: 600;
  min-height: 24px;
}

.product-image-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--sky-soft);
  border: 1px solid var(--border);
}

.product-image-photo img {
  width: 100%;
  height: 100%;
  display: block;
}

.product-image-pack img {
  object-fit: contain;
  width: 88%;
  height: 88%;
}

.product-image-lifestyle img {
  object-fit: cover;
  object-position: center center;
}

/* Contact page */
.contact-hero {
  padding-bottom: 24px;
}

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

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contact-form label {
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 16px;
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-side {
  position: sticky;
  top: 100px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.contact-list a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.contact-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 12px;
  background: var(--sky-soft);
  border: 1px solid var(--border);
}

.contact-note h3 {
  margin-top: 0;
}

.contact-form-message {
  margin: 6px 0 0;
  min-height: 24px;
  font-weight: 600;
}

.contact-form-message.is-success {
  color: #1c6b3c;
}

.contact-form-message.is-error {
  color: #b42318;
}

/* Thank you page */
.thankyou {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px;
  max-width: 720px;
}

.thankyou-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .top-bar .container {
    font-size: 12px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-side {
    position: static;
    top: auto;
  }

  .cart-cta {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cart-cta-img {
    width: 100%;
    align-self: center;
  }

  .cart-cta .btn {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 40px 0 32px;
  }

  .cart-drawer {
    width: 92vw;
    max-width: 92vw;
    padding: 12px;
  }

  .cart-drawer-body {
    gap: 12px;
    padding-top: 12px;
  }

  .cart-summary {
    padding: 16px;
  }

  .cart-item {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 16px;
  }

  .cart-price {
    font-size: 18px;
  }
}
