:root {
  color-scheme: light;
  --ink: #0e1f2a;
  --muted-ink: #305164;
  --sand: #f1f8fb;
  --pearl: #e7f1f8;
  --teal: #1e7b84;
  --teal-dark: #0f5560;
  --sky: #8cc6d4;
  --mist: #d7edf4;
  --shadow: 0 20px 50px rgba(14, 31, 42, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --max-width: 1100px;
  --font-head: "Garamond", "Times New Roman", serif;
  --font-body: "Gill Sans", "Trebuchet MS", sans-serif;
}

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

body {
  margin: 0;
  background: radial-gradient(circle at top, #f3fbff 0%, #e5f2f8 45%, #d6e9f3 100%);
  color: var(--ink);
font-family: math;
  line-height: 1.5;
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-head);
  letter-spacing: 0.3px;
  margin: 0 0 var(--space-2);
}

p {
  margin: 0 0 var(--space-3);
}

.page {
  min-height: 100vh;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--ink);
  color: white;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  z-index: 10;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  padding: var(--space-3) 0;
  position: sticky;
  top: 0;
  background: rgba(231, 241, 248, 0.88);
  backdrop-filter: blur(12px);
  z-index: 5;
  border-bottom: 1px solid rgba(31, 27, 22, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 700;
}

.brand__mark {
  width: 250px;
  
}

.brand__name {
  font-family: var(--font-head);
}

.nav__links {
  display: none;
  gap: var(--space-4);
}

.nav__link {
  font-weight: 600;
  color: var(--muted-ink);
}

.nav__link:focus-visible,
.btn:focus-visible,
.input:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

.btn {
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  box-shadow: none;
}

.btn--primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 12px 30px rgba(30, 123, 132, 0.25);
}

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

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(31, 27, 22, 0.2);
  color: var(--ink);
}

.btn--outline {
  background: white;
  border: 1px solid rgba(31, 27, 22, 0.2);
}

.hero {
  padding: var(--space-6) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -140px;
  top: 40px;
  background: radial-gradient(circle, rgba(30, 123, 132, 0.25), transparent 70%);
  z-index: 0;
}

.hero__layout {
  display: grid;
  gap: var(--space-5);
  position: relative;
  z-index: 1;
}

.hero__content {
  animation: rise 0.7s ease-out;
}

.hero__media {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow);
  animation: floatIn 0.8s ease-out;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted-ink);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(140, 198, 212, 0.35);
  color: var(--teal-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: var(--space-3);
}

.statbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-3);
}

.stat {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow);
}

.stat__value {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
}

.section {
  padding: var(--space-6) 0;
}

.section--muted {
  background: var(--pearl);
}

.section__head {
  max-width: 620px;
  margin-bottom: var(--space-5);
}

.grid {
  display: grid;
  gap: var(--space-4);
}

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

.category-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: var(--space-1);
  display: grid;
  gap: var(--space-3);
  align-content: start;
}

.category-card img {
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
}

.list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-3);
  display: grid;
  gap: var(--space-1);
  color: var(--muted-ink);
}

.list li::before {
  content: "•";
  color: var(--teal);
  margin-right: var(--space-1);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  color: var(--muted-ink);
  font-weight: 600;
}

.trust-strip span {
  background: white;
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: var(--shadow);
}

.hero__media {
  position: relative;
}


.hero__floating {
    position: absolute;
    bottom: -5px;
   
    background: white;
    border-radius: var(--radius-md);
    padding: var(--space-3);
    box-shadow: var(--shadow);
    display: grid;
    gap: var(--space-1);
    right: 50px;
}


.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.product-grid {
  align-items: stretch;
}

.product-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: var(--space-4);
  display: grid;
  gap: var(--space-3);
}

.product-card img {
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: var(--space-2);
}

.product-card__body {
  display: grid;
  gap: var(--space-2);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.rating {
  color: var(--teal-dark);
  font-weight: 600;
}

.bundle {
  display: grid;
  gap: var(--space-4);
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow);
}

.bundle__price {
  display: grid;
  gap: var(--space-1);
  font-size: 1.4rem;
  font-weight: 700;
}

.bundle__media {
  background: var(--mist);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}

.state-panel {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: var(--space-4);
  display: grid;
  gap: var(--space-4);
}

.state-panel__controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.state-panel__body {
  border-radius: var(--radius-md);
  background: var(--pearl);
  padding: var(--space-4);
  min-height: 180px;
}

.state {
  display: none;
  gap: var(--space-2);
  align-items: center;
}

.state--loading,
.state--error,
.state--empty,
.state--ready {
  display: none;
}

.state-panel[data-state="loading"] .state--loading,
.state-panel[data-state="error"] .state--error,
.state-panel[data-state="empty"] .state--empty,
.state-panel[data-state="ready"] .state--ready {
  display: grid;
}

.spinner {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 4px solid rgba(30, 123, 132, 0.25);
  border-top-color: var(--teal);
  animation: spin 0.9s linear infinite;
}

.form {
  display: grid;
  gap: var(--space-3);
}

.input-group {
  display: grid;
  gap: var(--space-1);
}

.input-group--full {
  grid-column: 1 / -1;
}

.input {
  border: 1px solid rgba(31, 27, 22, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
}

.helper {
  color: var(--muted-ink);
  font-size: 0.9rem;
}

.form__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer {
  padding: var(--space-5) 0;
  background: #0e1f2a;
  color: #e7f1f8;
}

.footer__layout {
  display: grid;
  gap: var(--space-4);
}

.footer__label {
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.footer__link {
  display: block;
  color: #e7f1f8;
  margin-bottom: var(--space-1);
}

.reviews .review {
  background: white;
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow);
  display: grid;
  gap: var(--space-2);
}

.review__name {
  color: var(--muted-ink);
  font-weight: 600;
}

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

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* Shipping strip */
.shipping-section {
  padding: 24px 0 10px;
}

.shipping-strip {
  display: flex;
  align-items: center;
  justify-content: center; /* centers whole content inside strip */
  gap: 14px;

  background: #ffffff;
  border-radius: 18px;

  padding: 16px 20px;
  max-width: 980px;
  margin: 0 auto;

  box-shadow: 0 18px 45px rgba(15, 35, 50, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.shipping-strip__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;

  /* IMPORTANT: remove any previous float/width overrides */
  float: none !important;
  max-width: none !important;
  display: block;
}

.shipping-strip__text {
  font-size: 15px;
  line-height: 1.35;
  color: #0f2f3a;
  text-align: center;
  font-weight: 500;
}

.shipping-strip__text strong {
  font-weight: 700;
}

.shipping-strip__text .sep {
  margin: 0 8px;
  opacity: 0.65;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .shipping-strip {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
    gap: 10px;
  }

  .shipping-strip__text {
    font-size: 14px;
  }

  .shipping-strip__text .sep {
    display: block;
    margin: 6px 0;
  }
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .hero__layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

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

  .form__actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .footer__layout {
    grid-template-columns: repeat(3, 1fr);
  }

  .bundle {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding: var(--space-7) 0 var(--space-7);
  }

  .category-card {
    min-height: 360px;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 90px 0 80px;
  background: #f7f7f7;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* GRID LAYOUT */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr; /* MORE SPACE FOR IMAGE */
  gap: 50px;
  align-items: center;
}

/* LEFT CONTENT */
.badge {
 display: inline-block;
    background: transparent;
    color: #347274;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .3px;
    border: 1px solid #347274;
}

.hero__content h1 {
  font-size: 38px;
  line-height: 1.25;
  margin: 18px 0 16px;
}

.lede {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 22px;
}

/* CTA BUTTONS */
.hero__cta {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.btn {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  transition: .2s ease;
}

.btn--primary {
  background: #347274;
  color: #fff;
}

.btn--primary:hover {
  background: #B89649;
}

.btn--ghost {
  border: 2px solid #347274;
  color: #347274;
}

/* TRUST STRIP */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 14px;
  color: #333;
}

/* RIGHT IMAGE COLUMN */
.hero__media {
  width: 100%;
  max-width: 760px;   /* MAKE IMAGE BIG */
  margin-left: auto;
  position: relative;
  background: #fff;
  padding: 16px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.hero__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

/* FLOATING BUTTON ON IMAGE */
.hero__floating {
  position: absolute;
  bottom: 18px;
  right: 18px;
}

/* ========== MOBILE ========== */
@media (max-width: 900px) {
  .hero {
    padding: 60px 0;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__media {
    max-width: 100%;
    margin-left: 0;
  }

  .hero__content h1 {
    font-size: 30px;
  }
}
.footer__contact{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link,
.footer__address{
  display: flex;
  align-items: center;
  gap: 8px;
 
  text-decoration: none;
}

.footer__link:hover{
  text-decoration: underline;
}

.footer__label{
  font-weight: 600;
  margin-bottom: 6px;
}
