:root{
  --color-bg: #FFFFFF;
  --color-heading: #102A43;
  --color-text: #475A6B;
  --color-accent: #F5A623;
  --color-brand-navy: #143754;
  --color-border: #E6EAF0;
  --color-surface: #FFFFFF;
  --color-muted: #F3F6FA;
  --color-success: #1F7A4D;

  --shadow-sm: 0 6px 20px rgba(16,42,67,0.08);
  --shadow-xs: 0 2px 10px rgba(16,42,67,0.08);

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 10px;

  --container-max: 1180px;
  --gutter: 20px;

  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;
  --space-48: 48px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--container-max);
  padding: 0 var(--gutter);
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--color-heading);
  color: #fff;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  padding: 22px 0;
}
.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-heading);
  font-size: 18px;
}
.logo-mark{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(245,166,35,0.15);
}
.logo-image{
  height: 68px;
  width: auto;
  display: block;
}

/* Sun-themed banner accent (still clean/white) */
.sun-banner{
  position: relative;
}
.sun-banner.site-header{
  /* Match the logo’s navy feel for the top banner */
  background: var(--color-brand-navy);
  border-bottom-color: rgba(255,255,255,0.12);
}
.sun-banner .nav a{
  color: #FFFFFF;
  opacity: 0.92;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 12px;
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease, opacity 160ms ease, color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.sun-banner .nav a:hover{
  text-decoration: none;
  background: rgba(245,166,35,0.16);
  border-color: rgba(245,166,35,0.55);
  transform: translateY(-1px);
}
.sun-banner .nav a[aria-current="page"]{
  background: rgba(245,166,35,0.22);
  border-color: rgba(245,166,35,0.65);
  opacity: 1;
}
.sun-banner .btn{
  border-color: rgba(255,255,255,0.22);
  color: #FFFFFF;
}
.sun-banner .btn-ghost{
  border-color: transparent;
}
.sun-banner .btn-primary{
  /* Keep CTA yellow */
  background: var(--color-accent);
  color: #1B1B1B;
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(245,166,35,0.30);
}
.sun-banner .btn-primary:hover{ filter: brightness(0.98); }

.sun-banner::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: var(--color-accent);
}
.sun-banner::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,166,35,0), rgba(245,166,35,0.55), rgba(245,166,35,0));
  pointer-events: none;
}
.nav{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav a{
  font-weight: 600;
  color: var(--color-heading);
  opacity: 0.9;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 160ms ease, transform 160ms ease, opacity 160ms ease, color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.nav a[aria-current="page"]{
  background: rgba(16,42,67,0.06);
  text-decoration: none;
}
.header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-heading);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn:hover{ text-decoration: none; }
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16,42,67,0.14);
}
.btn:active{
  transform: translateY(0px);
  box-shadow: 0 6px 16px rgba(16,42,67,0.12);
}
.btn:focus{ outline: 3px solid rgba(245,166,35,0.35); outline-offset: 2px; }
.btn-primary{
  border-color: transparent;
  background: var(--color-accent);
  color: #1B1B1B;
  box-shadow: 0 10px 22px rgba(245,166,35,0.25);
}
.btn-primary:hover{ filter: brightness(0.98); }
.btn-ghost{
  background: transparent;
}

@media (prefers-reduced-motion: reduce){
  .btn, .nav a{
    transition: none;
  }
  .btn:hover, .sun-banner .nav a:hover{
    transform: none;
  }
}

/* Sections */
.section{
  padding: var(--space-96) 0;
}
.section-tight{
  padding: var(--space-80) 0;
}
.section-heading{
  margin: 0 0 var(--space-16) 0;
  color: var(--color-heading);
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.section-subtext{
  margin: 0;
  max-width: 70ch;
}

/* Hero */
.hero{
  padding: var(--space-80) 0 var(--space-64) 0;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero h1{
  margin: 0 0 14px 0;
  color: var(--color-heading);
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.hero p{
  margin: 0 0 22px 0;
  font-size: 18px;
  max-width: 65ch;
}
.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-media{
  border-radius: var(--radius-lg);
  background: var(--color-muted);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  min-height: 320px;
  position: relative;
}
.hero-media .placeholder{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: rgba(71,90,107,0.9);
}
.hero-media .placeholder strong{
  color: var(--color-heading);
}

/* “No-BS” Bar */
.trustbar{
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
  padding: 18px 0;
}

/* Photo strip / gallery (real photos slot) */
.photo-strip{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: var(--space-32);
}
.photo-wall{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: var(--space-24);
}
.photo{
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
}
.photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo .photo-placeholder{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  background: linear-gradient(180deg, rgba(245,166,35,0.08), rgba(245,166,35,0.02));
  color: rgba(71,90,107,0.95);
}
.photo .photo-placeholder strong{
  color: var(--color-heading);
}
.trustbar-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.trust-item{
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
}
.trust-item svg{ flex: 0 0 auto; }
.trust-item strong{
  color: var(--color-heading);
  display: block;
  font-size: 14px;
}
.trust-item span{
  display: block;
  font-size: 13px;
}

/* Cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--space-32);
}
.card{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  padding: 22px;
}
.card h3{
  margin: 0 0 10px 0;
  color: var(--color-heading);
  font-size: 20px;
  letter-spacing: -0.02em;
}
.card p{ margin: 0; }
.card-media{
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: #fff;
}
.card-media img{
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.card-media img.contain{
  object-fit: contain;
  background: #fff;
}

/* Shop */
.grid-4{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: var(--space-32);
}
.product-card{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-xs);
}
.product-media{
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-heading);
}
.badge-price-match{
  position: absolute;
  top: 12px;
  left: 12px;
}
.product-title{
  margin: 0;
  color: var(--color-heading);
  font-weight: 800;
  font-size: 16px;
  line-height: 1.25;
}
.product-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.muted{
  color: rgba(71,90,107,0.9);
  font-size: 14px;
}

/* Product detail */
.breadcrumbs{
  font-size: 14px;
  color: rgba(71,90,107,0.95);
}
.breadcrumbs a{
  color: var(--color-heading);
  font-weight: 700;
}
.product-layout{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: var(--space-32);
  align-items: start;
}
.product-gallery{
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-xs);
  padding: 16px;
}
.product-gallery .product-media{
  width: 100%;
  aspect-ratio: 4 / 3;
}
.buybox{
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: #fff;
  box-shadow: var(--shadow-xs);
  padding: 20px;
  position: sticky;
  top: 86px;
}
.price{
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-heading);
  margin: 0 0 8px 0;
}
.tag-success{
  color: var(--color-success);
  font-weight: 800;
  font-size: 13px;
}
.divider{
  height: 1px;
  background: var(--color-border);
  margin: 16px 0;
}
.why-buy{
  margin-top: var(--space-48);
}
.why-buy h2{
  margin: 0 0 12px 0;
  color: var(--color-heading);
  font-size: 24px;
  letter-spacing: -0.02em;
}
.why-buy ul{
  margin: 0;
  padding-left: 18px;
}

/* Toggle */
.toggle-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.toggle{
  position: relative;
  width: 46px;
  height: 28px;
  background: rgba(16,42,67,0.14);
  border-radius: 999px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  flex: 0 0 auto;
}
.toggle::after{
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 6px 12px rgba(16,42,67,0.18);
  transition: transform 160ms ease;
}
.toggle[aria-checked="true"]{
  background: rgba(245,166,35,0.55);
}
.toggle[aria-checked="true"]::after{
  transform: translateX(18px);
}

/* Forms */
label{
  font-weight: 800;
  color: var(--color-heading);
  font-size: 13px;
}
input, textarea{
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 12px;
  font: inherit;
  background: #fff;
  color: var(--color-heading);
}
textarea{ min-height: 120px; resize: vertical; }
.form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: var(--space-24);
}
.form-grid .full{ grid-column: 1 / -1; }
.form-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  align-items: center;
}
.note{
  font-size: 13px;
  color: rgba(71,90,107,0.95);
}
.notice{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(16,42,67,0.25);
  background: rgba(245,166,35,0.10);
  color: var(--color-heading);
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--color-border);
  padding: 28px 0;
  background: #fff;
}
.footer-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.small{
  font-size: 13px;
  color: rgba(71,90,107,0.95);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .product-layout{ grid-template-columns: 1fr; }
  .buybox{ position: static; }
  .grid-4{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trustbar-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards{ grid-template-columns: 1fr; }
  .photo-strip{ grid-template-columns: 1fr; }
  .photo-wall{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .grid-4{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 38px; }
}

/* Section hover motion (desktop only) */
@media (hover: hover){
  .hero > .container,
  .trustbar > .container,
  .section > .container,
  .section-tight > .container{
    transition: transform 180ms ease, filter 180ms ease;
    will-change: transform;
  }
  .hero:hover > .container,
  .trustbar:hover > .container,
  .section:hover > .container,
  .section-tight:hover > .container{
    transform: translateY(-3px);
  }
  .card,
  .photo,
  .product-card{
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
  }
  .card:hover,
  .photo:hover,
  .product-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(16,42,67,0.14);
  }
}

@media (prefers-reduced-motion: reduce){
  .hero > .container,
  .trustbar > .container,
  .section > .container,
  .section-tight > .container,
  .card,
  .photo,
  .product-card{
    transition: none !important;
  }
  .hero:hover > .container,
  .trustbar:hover > .container,
  .section:hover > .container,
  .section-tight:hover > .container,
  .card:hover,
  .photo:hover,
  .product-card:hover{
    transform: none !important;
    box-shadow: inherit;
  }
}


