@charset "UTF-8";

:root {
  --navy: #1d3c6c;
  --navy-deep: #0b1b3b;
  --navy-black: #071127;
  --cream: #fff8ed;
  --beige: #f5f5dc;
  --accent: #fd5309;
  --accent-hover: #e64900;
  --accent-soft: #ffe3d5;
  --green: #346709;
  --ink: #0b1b3b;
  --muted: #5a6b8c;
  --white: #ffffff;
  --line: rgba(11, 27, 59, 0.12);
  --line-dark: rgba(255, 248, 237, 0.16);

  --font-display: "League Spartan", "Inter", sans-serif;
  --font-body: "Inter", Arial, sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);

  --header-h: 76px;
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1200px;
  --shadow: 0 24px 60px -24px rgba(7, 17, 39, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow-x: clip;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.1em;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 300;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--navy-deep);
  color: var(--white);
  transition: transform 160ms var(--ease-out);
}

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

.container-focus:focus-visible,
.skip-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (hover: hover) and (pointer: fine) {
  ::-webkit-scrollbar {
    width: 12px;
  }
  ::-webkit-scrollbar-track {
    background: var(--cream);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 8px;
    border: 3px solid var(--cream);
  }
}

::selection {
  background: var(--accent);
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.eyebrow.on-dark {
  color: var(--accent);
}

/* ---------------------------------- buttons --------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 160ms var(--ease-out),
    background-color 200ms var(--ease-out),
    border-color 200ms var(--ease-out),
    color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out);
}

.btn:active {
  transform: scale(0.97);
}

.btn .btn-arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover .btn-arrow {
    transform: translateX(3px);
  }
}

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

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 12px 30px -12px rgba(253, 83, 9, 0.6);
  }
}

.btn-dark {
  background: var(--navy-deep);
  color: var(--cream);
}

@media (hover: hover) and (pointer: fine) {
  .btn-dark:hover {
    background: var(--navy);
  }
}

.btn-ghost {
  border-color: currentColor;
  background: transparent;
}

.btn-ghost.on-dark {
  color: var(--cream);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost.on-dark:hover {
    background: rgba(255, 248, 237, 0.1);
  }
}

.btn-ghost.on-light {
  color: var(--ink);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost.on-light:hover {
    background: rgba(11, 27, 59, 0.06);
  }
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ---------------------------------- header --------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  color: var(--cream);
  transition:
    background-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    color 220ms var(--ease-out),
    border-color 220ms var(--ease-out);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(7, 17, 39, 0.5);
}

.site-header.is-scrolled {
  color: var(--ink);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: inherit;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  height: 56px;
  width: auto;
  max-width: 76px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  box-shadow: 0 2px 8px rgba(11, 27, 59, 0.12);
}

.brand .brand-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  line-height: 1;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: inherit;
  padding: 6px 2px;
  transition: color 200ms var(--ease-out);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover::after,
  .nav-link.is-active::after {
    right: 0;
  }
  .nav-link:hover {
    color: var(--accent);
  }
}

.nav-link.is-active {
  color: var(--accent);
}

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

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: transform 160ms var(--ease-out);
}

.icon-btn:active {
  transform: scale(0.94);
}

.icon-btn svg {
  width: 19px;
  height: 19px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 160ms var(--ease-out);
}

.cart-count.has-items {
  transform: scale(1);
}

.burger {
  display: none;
}

@media (max-width: 920px) {
  .nav-desktop,
  .header-cta {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .header-inner {
    gap: 12px;
  }
}

/* ------------------------------- mobile drawer ------------------------------ */

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 150;
  width: min(380px, 88vw);
  height: 100dvh;
  background: var(--navy-deep);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 500ms var(--ease-drawer);
  will-change: transform;
  padding: calc(var(--header-h) + 16px) 28px 28px;
}

.drawer[data-open="true"] {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 149;
  background: rgba(7, 17, 39, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease-out);
}

.drawer-backdrop[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.drawer-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  padding: 10px 4px;
  color: var(--cream);
  transition: color 200ms var(--ease-out);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 300ms var(--ease-out),
    transform 300ms var(--ease-out),
    color 200ms var(--ease-out);
}

.drawer[data-open="true"] .drawer-nav a {
  opacity: 1;
  transform: translateY(0);
}

.drawer[data-open="true"] .drawer-nav a:nth-child(1) { transition-delay: 90ms; }
.drawer[data-open="true"] .drawer-nav a:nth-child(2) { transition-delay: 130ms; }
.drawer[data-open="true"] .drawer-nav a:nth-child(3) { transition-delay: 170ms; }
.drawer[data-open="true"] .drawer-nav a:nth-child(4) { transition-delay: 210ms; }

@media (hover: hover) and (pointer: fine) {
  .drawer-nav a:hover {
    color: var(--accent);
  }
}

.drawer-cta {
  margin-top: 4px;
}

.drawer-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.85;
}

/* ---------------------------------- hero ----------------------------------- */

.hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--cream);
  padding: calc(var(--header-h) + 64px) 0 88px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 83, 9, 0.28), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -240px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 60, 108, 0.5), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  animation: heroUp 800ms var(--ease-out) both;
}

.hero-copy .anim-delay-1 { animation-delay: 80ms; }
.hero-copy .anim-delay-2 { animation-delay: 180ms; }
.hero-copy .anim-delay-3 { animation-delay: 280ms; }

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

.hero h1 {
  font-size: clamp(2.9rem, 6.4vw, 5.2rem);
  font-weight: 800;
  margin-bottom: 22px;
}

.hero h1 .accent-word {
  color: var(--accent);
}

.hero-lead {
  max-width: 540px;
  font-size: 18px;
  color: rgba(255, 248, 237, 0.78);
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  position: relative;
  aspect-ratio: 4 / 3;
  animation: heroMedia 1000ms var(--ease-in-out) 160ms both;
}

@keyframes heroMedia {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.85;
}

.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}

@media (max-width: 920px) {
  .hero {
    padding-top: calc(var(--header-h) + 48px);
    padding-bottom: 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-media::after {
    inset: 12px -12px -12px 12px;
  }
}

/* --------------------------------- marquee --------------------------------- */

.marquee {
  background: var(--accent);
  color: var(--navy-deep);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(7, 17, 39, 0.2);
  border-bottom: 1px solid rgba(7, 17, 39, 0.2);
  transform: perspective(520px) rotateX(7deg) rotate(-1.2deg) scale(1.01);
  margin: 26px 0 18px;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    transform: none;
  }
  .marquee-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

/* ------------------------------ shared sections ----------------------------- */

.section {
  padding: 96px 0;
}

.section-tight {
  padding-top: 56px;
}

.on-dark-muted {
  color: rgba(255, 248, 237, 0.75);
}

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  max-width: 560px;
}

.section-head.is-center {
  margin-inline: auto;
  text-align: center;
}

.section-head.is-center h2,
.section-head.is-center p {
  margin-inline: auto;
}

.section-head.is-center .eyebrow {
  justify-content: center;
}

.section-head.is-center .eyebrow::before {
  display: none;
}

@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
  .section-head {
    margin-bottom: 40px;
  }
}

/* -------------------------------- about grid ------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-media {
  position: relative;
  aspect-ratio: 3 / 4;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: -20px auto auto -20px;
  width: 46%;
  height: 46%;
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  z-index: -1;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
}

.about-copy > p {
  color: var(--muted);
  font-size: 17.5px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 32px;
  display: grid;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 500;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 920px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}

/* --------------------------------- cards ----------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    transform 250ms var(--ease-out),
    box-shadow 250ms var(--ease-out),
    border-color 250ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(253, 83, 9, 0.4);
  }
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 18px;
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 15.5px;
  margin: 0;
}

@media (max-width: 920px) {
  .card-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* --------------------------------- steps ----------------------------------- */

.steps {
  position: relative;
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
}

.steps::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 83, 9, 0.2), transparent 70%);
  pointer-events: none;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  counter-reset: step;
}

.step {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 32px;
  background: rgba(255, 248, 237, 0.04);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.step p {
  color: rgba(255, 248, 237, 0.72);
  font-size: 15.5px;
  margin: 0;
}

@media (max-width: 920px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------- shop ----------------------------------- */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform 250ms var(--ease-out),
    box-shadow 250ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--beige);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product:hover .product-media img {
    transform: scale(1.05);
  }
}

.product-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 16px 0;
}

.thumb {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: var(--beige);
  cursor: pointer;
  flex: 0 0 auto;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb.is-active {
  border-color: var(--accent);
}

.thumb:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy-deep);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-info {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-cat {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.product h3 {
  font-size: 21px;
  margin: 0;
}

.product p {
  color: var(--muted);
  font-size: 14.5px;
  flex: 1;
  margin: 0;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
}

.product-size {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}

.product-size-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-size-select {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  background: var(--beige)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%235a6b8c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 10px center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 30px 7px 12px;
  cursor: pointer;
}

.product-size-select:focus {
  outline: 3px solid var(--accent-soft);
  border-color: var(--accent);
}

.product-size-select:hover {
  border-color: var(--accent);
}

.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}

.btn-sm {
  padding: 11px 18px;
  font-size: 14.5px;
}

@media (max-width: 980px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

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

.cta {
  position: relative;
  background: var(--navy-deep);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  padding: 120px 0;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(253, 83, 9, 0.4);
  pointer-events: none;
}

.cta::before {
  width: 300px;
  height: 300px;
  left: -110px;
  top: -110px;
}

.cta::after {
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -150px;
}

.cta h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 20px;
}

.cta p {
  color: rgba(255, 248, 237, 0.75);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 34px;
  font-size: 17.5px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 237, 0.85);
  font-weight: 600;
  margin-top: 26px;
}

.cta-mail svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

@media (hover: hover) and (pointer: fine) {
  .cta-mail:hover {
    color: var(--accent);
  }
}

/* -------------------------------- page hero -------------------------------- */

.page-hero {
  padding: calc(var(--header-h) + 72px) 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin: 14px 0 0;
}

.page-hero .eyebrow {
  color: var(--accent);
}

.page-hero p {
  color: var(--muted);
  max-width: 640px;
  font-size: 17.5px;
}

/* ---------------------------------- forms ---------------------------------- */

.form-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 50px -30px rgba(7, 17, 39, 0.25);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.is-full {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.form-label .req {
  color: var(--accent);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition:
    border-color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    background-color 200ms var(--ease-out);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
  color: #9aa7bf;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(253, 83, 9, 0.14);
}

.form-input[aria-invalid="true"],
.form-textarea[aria-invalid="true"] {
  border-color: #d43737;
}

.form-error {
  display: none;
  font-size: 13.5px;
  color: #d43737;
}

.form-field.has-error .form-error {
  display: block;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
}

.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-check a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  display: none;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.form-status svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-status.is-success {
  display: flex;
  background: #e9f3e3;
  color: var(--green);
  border: 1px solid rgba(52, 103, 9, 0.3);
}

.form-status.is-error {
  display: flex;
  background: #fdecec;
  color: #a02b2b;
  border: 1px solid rgba(212, 55, 55, 0.3);
}

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

.form-hint {
  font-size: 13px;
  color: var(--muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@media (max-width: 860px) {
  .form-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field.is-full {
    grid-column: auto;
  }
}

/* ------------------------------ booking sidebar ----------------------------- */

.aside-card {
  background: var(--navy-deep);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 22px;
}

.aside-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.aside-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 248, 237, 0.85);
}

.aside-list svg {
  width: 19px;
  height: 19px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.aside-contact {
  background: var(--beige);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.aside-contact h3 {
  font-size: 18px;
}

.aside-contact p {
  color: var(--muted);
  font-size: 14.5px;
}

.aside-contact a {
  color: var(--navy);
  font-weight: 600;
  word-break: break-all;
}

@media (hover: hover) and (pointer: fine) {
  .aside-contact a:hover {
    color: var(--accent);
  }
}

/* ------------------------------- legal pages ------------------------------- */

.legal {
  max-width: 760px;
  margin-inline: auto;
  padding-bottom: 120px;
}

.legal h2 {
  font-size: 26px;
  margin: 44px 0 12px;
}

.legal h3 {
  font-size: 19px;
  margin: 30px 0 10px;
}

.legal p,
.legal li {
  color: var(--muted);
  font-size: 16px;
}

.legal ul,
.legal ol {
  padding-left: 22px;
}

.legal li {
  margin-bottom: 8px;
}

.legal .legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.legal .table-cookies-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.legal .table-cookies {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 16px 0 24px;
}

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

.legal .table-cookies th {
  background: var(--beige);
  font-family: var(--font-display);
  font-weight: 700;
}

.legal blockquote {
  margin: 20px 0;
  padding: 18px 22px;
  border-left: 3px solid var(--accent);
  background: var(--beige);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink);
}

/* --------------------------------- footer ---------------------------------- */

.site-footer {
  background: var(--navy-black);
  color: var(--cream);
  padding: 72px 0 32px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand p {
  color: rgba(255, 248, 237, 0.7);
  max-width: 300px;
  margin-top: 14px;
}

.footer-col h4 {
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 248, 237, 0.55);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 248, 237, 0.85);
  transition: color 200ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover {
    color: var(--accent);
  }
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 248, 237, 0.6);
  font-size: 13.5px;
}

.footer-bottom .gdpr-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
}

.footer-bottom .gdpr-pill svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.footer-bottom--bare {
  border-top: 0;
  padding-top: 0;
}

.footer-link {
  color: rgba(255, 248, 237, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .footer-link:hover {
    color: var(--accent);
  }
}

@media (max-width: 920px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------------- cart drawer ------------------------------- */

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 150;
  width: min(420px, 92vw);
  height: 100dvh;
  background: var(--cream);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform 500ms var(--ease-drawer);
  will-change: transform;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.cart-drawer[data-open="true"] {
  transform: translateX(0);
}

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

.cart-head h3 {
  font-size: 20px;
  margin: 0;
}

.cart-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform 160ms var(--ease-out);
}

.cart-close:active {
  transform: scale(0.94);
}

.cart-close svg {
  width: 16px;
  height: 16px;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

.cart-empty svg {
  width: 46px;
  height: 46px;
  color: var(--line);
  margin: 0 auto 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  align-items: center;
  animation: cartIn 300ms var(--ease-out) both;
}

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

.cart-item img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.cart-item-info h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  margin: 0 0 4px;
}

.cart-item-info .cart-item-price {
  font-size: 13.5px;
  color: var(--muted);
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 8px;
}

.qty button {
  width: 26px;
  height: 26px;
  border: none;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.qty button:active {
  transform: scale(0.9);
}

@media (hover: hover) and (pointer: fine) {
  .qty button:hover {
    background: var(--beige);
  }
}

.qty span {
  min-width: 26px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.cart-item-remove {
  align-self: start;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.cart-item-remove:active {
  transform: scale(0.9);
}

.cart-item-remove svg {
  width: 16px;
  height: 16px;
}

@media (hover: hover) and (pointer: fine) {
  .cart-item-remove:hover {
    color: #d43737;
  }
}

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  display: grid;
  gap: 14px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}

.cart-total .price {
  font-size: 24px;
}

.cart-note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

.cart-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.cart-view[hidden] {
  display: none;
}

.checkout-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 200ms ease;
}

.cart-back:hover {
  opacity: 1;
}

.cart-back svg {
  width: 16px;
  height: 16px;
}

.checkout-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  line-height: 1.4;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}

.checkout-pay {
  display: grid;
  gap: 10px;
}

.checkout-pay[hidden] {
  display: none;
}

.checkout-pay-btn {
  min-height: 48px;
}

.checkout-pay-btn iframe,
.checkout-pay-btn > div {
  min-height: 48px;
}

.checkout-pay-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.checkout-legal {
  margin: 4px 0 16px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--muted);
}

.checkout-legal a {
  color: var(--accent);
  text-decoration: underline;
}

.checkout-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.checkout-or::before,
.checkout-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.checkout-bank {
  background: var(--navy);
  color: var(--cream);
  border-radius: 12px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.checkout-bank-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.checkout-bank-list {
  margin: 0;
  display: grid;
  gap: 6px;
}

.checkout-bank-list > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
}

.checkout-bank-list dt {
  color: rgba(255, 248, 237, 0.6);
}

.checkout-bank-list dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  word-break: break-all;
}

.checkout-bank-ref {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255, 248, 237, 0.75);
}

.checkout-bank-ref strong {
  color: var(--accent);
  letter-spacing: 0.04em;
}

.order-done {
  text-align: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  padding-top: 8px;
}

.order-done-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
}

.order-done-check svg {
  width: 28px;
  height: 28px;
}

.order-done h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
}

.order-done-sub {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
  max-width: 30ch;
}

.order-ref {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(253, 83, 9, 0.08);
  border: 1px dashed rgba(253, 83, 9, 0.4);
  border-radius: 10px;
  padding: 10px 18px;
}

.order-total {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.order-total strong {
  color: var(--ink);
  font-size: 20px;
  font-family: var(--font-display);
}

.order-done .checkout-bank-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  box-sizing: border-box;
}

.order-done .checkout-bank-list dt {
  color: var(--muted);
}

.order-done .checkout-bank-list dd {
  color: var(--ink);
}

.btn-block {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

.cart-drawer .form-input,
.cart-drawer .form-textarea {
  background: #fff;
}

.cart-drawer .form-field[hidden] {
  display: none;
}

.ship-options {
  display: grid;
  gap: 10px;
}

.ship-option {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  cursor: pointer;
  transition:
    border-color 200ms var(--ease-out),
    background-color 200ms var(--ease-out);
}

.ship-option:hover {
  border-color: var(--ink);
}

.ship-option input {
  accent-color: var(--accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer;
}

.ship-option-body {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.ship-option-name {
  font-weight: 600;
  font-size: 14.5px;
}

.ship-option-price {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.ship-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(253, 83, 9, 0.06);
}

.ship-option:has(input:checked) .ship-option-price {
  color: var(--accent);
  font-weight: 700;
}

.order-delivery {
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 16px;
  max-width: 100%;
  word-break: break-word;
}

/* ----------------------------- cookie consent ------------------------------ */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 0);
  width: min(640px, calc(100vw - 32px));
  z-index: 200;
  background: var(--navy-deep);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  display: none;
  gap: 16px;
  border: 1px solid var(--line-dark);
  transition:
    opacity 400ms var(--ease-out),
    transform 400ms var(--ease-out);
}

.cookie-banner[data-open="true"] {
  display: grid;
}

.cookie-banner[data-starting-style] {
  opacity: 0;
  transform: translate(-50%, 100%);
}

.cookie-banner-text {
  display: grid;
  gap: 8px;
}

.cookie-banner-text h3 {
  font-size: 17px;
  margin: 0;
}

.cookie-banner-text p {
  font-size: 13.5px;
  color: rgba(255, 248, 237, 0.75);
  margin: 0;
}

.cookie-banner-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn-xs {
  padding: 11px 16px;
  font-size: 14px;
}

.cookie-link-btn {
  background: none;
  border: none;
  padding: 10px 6px;
  color: rgba(255, 248, 237, 0.8);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 160ms var(--ease-out);
}

.cookie-link-btn:active {
  transform: scale(0.97);
}

@media (hover: hover) and (pointer: fine) {
  .cookie-link-btn:hover {
    color: var(--accent);
  }
}

/* ------------------------------ consent modal ------------------------------ */

.consent-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease-out);
}

.consent-modal[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.consent-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 39, 0.55);
}

.consent-modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: 82dvh;
  overflow-y: auto;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transform-origin: center;
  transition:
    opacity 250ms var(--ease-out),
    transform 250ms var(--ease-out);
}

.consent-modal[data-starting-style] .consent-modal-card {
  opacity: 0;
  transform: scale(0.96);
}

.consent-modal-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.consent-modal-card > p {
  color: var(--muted);
  font-size: 14.5px;
}

.consent-cat {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin: 12px 0;
  display: grid;
  gap: 4px;
}

.consent-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.consent-cat-head h4 {
  font-size: 15.5px;
  margin: 0;
}

.consent-cat-head .badge-required {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 999px;
}

.consent-cat p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
}

.toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}

.toggle input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--line);
  transition: background-color 200ms var(--ease-out);
}

.toggle-slider::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(7, 17, 39, 0.3);
  transition: transform 200ms var(--ease-out);
}

.toggle input:checked + .toggle-slider {
  background: var(--accent);
}

.toggle input:checked + .toggle-slider::after {
  transform: translateX(20px);
}

.toggle input:focus-visible + .toggle-slider {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.toggle.is-locked input {
  cursor: not-allowed;
}

.toggle.is-locked .toggle-slider {
  background: var(--beige);
}

.consent-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* ------------------------------ scroll reveal ------------------------------ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms var(--ease-out),
    transform 700ms var(--ease-out);
}

.reveal[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

.reveal-clip img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 900ms var(--ease-in-out);
}

.reveal-clip[data-visible="true"] img {
  clip-path: inset(0 0 0 0);
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
}

.reveal-group[data-visible="true"] > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group[data-visible="true"] > *:nth-child(2) { transition-delay: 90ms; }
.reveal-group[data-visible="true"] > *:nth-child(3) { transition-delay: 180ms; }
.reveal-group[data-visible="true"] > *:nth-child(4) { transition-delay: 270ms; }
.reveal-group[data-visible="true"] > *:nth-child(5) { transition-delay: 360ms; }
.reveal-group[data-visible="true"] > *:nth-child(6) { transition-delay: 450ms; }

/* -------------------------------- utilities -------------------------------- */

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

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

.bg-beige {
  background: var(--beige);
}

.bg-cream {
  background: var(--cream);
}

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

/* ------------------------------- 404 / misc -------------------------------- */

.notfound {
  min-height: 72dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 24px 60px;
}

.notfound h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--accent);
  line-height: 1;
}

.notfound p {
  color: var(--muted);
  max-width: 420px;
  margin-inline: auto;
}

/* ------------------------------ reduced motion ----------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-copy,
  .hero-media {
    animation: none;
  }
  .reveal,
  .reveal-group > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-clip {
    clip-path: none;
  }
  .drawer,
  .cart-drawer,
  .site-header,
  .btn,
  .card,
  .product {
    transition-duration: 0.01ms;
  }
  .drawer[data-open="true"] .drawer-nav a,
  .cart-item {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ------------------------ 3D eksperimentālie efekti ------------------------ */

/* 1) Produktu kartīšu 3D tilt (veikals) */
.product {
  transform-style: preserve-3d;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
  transition-delay: 0s !important;
}

/* 2) Hero parallax (seko pelei) */
.hero {
  --px: 0px;
  --py: 0px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-media {
  transform: translate(var(--px), var(--py));
  transition: transform 450ms var(--ease-out);
}

.hero::before {
  transform: translate(calc(var(--px) * -0.6), calc(var(--py) * -0.6));
  transition: transform 450ms var(--ease-out);
}

.hero::after {
  transform: translate(calc(var(--px) * -0.35), calc(var(--py) * -0.35));
  transition: transform 450ms var(--ease-out);
}

/* 3) Kafijas tvaiks, kas ceļas (hero) */
.steam {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.steam span {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 110px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 248, 237, 0.14), transparent 72%);
  filter: blur(16px);
  opacity: 0;
  animation: steamRise 10s linear infinite;
}

.steam span:nth-child(1) { left: 8%;   animation-duration: 9s;  animation-delay: 0s;   transform: scale(1); }
.steam span:nth-child(2) { left: 26%;  animation-duration: 11s; animation-delay: 2.2s; transform: scale(0.8); }
.steam span:nth-child(3) { left: 44%;  animation-duration: 10s; animation-delay: 4s;   transform: scale(1.15); }
.steam span:nth-child(4) { left: 62%;  animation-duration: 12s; animation-delay: 1.2s; transform: scale(0.9); }
.steam span:nth-child(5) { left: 78%;  animation-duration: 9.5s; animation-delay: 3s;   transform: scale(1.05); }
.steam span:nth-child(6) { left: 92%;  animation-duration: 10.5s; animation-delay: 5s;  transform: scale(0.75); }

@keyframes steamRise {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0;
  }
  12% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-42vh) translateX(26px) scale(1.25);
    opacity: 0.35;
  }
  100% {
    transform: translateY(-88vh) translateX(-18px) scale(1.5);
    opacity: 0;
  }
}

/* 4) Flip kartītes (uzklikšķini, lai apgrieztu) */
.card-flip {
  perspective: 1400px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.card-flip:hover {
  transform: none;
}

.card-flip .card-inner {
  position: relative;
  width: 100%;
  min-height: 270px;
  transform-style: preserve-3d;
  transition: transform 600ms var(--ease-out);
  transition-delay: 0s !important;
}

.card-flip:hover .card-inner {
  transform: rotateY(12deg);
}

.card-flip .card-inner.is-flipped {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.card-front {
  align-items: flex-start;
}

.card-front p {
  flex: 1;
}

.card-flip-hint {
  margin-top: auto;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.card-back {
  transform: rotateY(180deg);
  background: var(--navy-deep);
  color: var(--cream);
  border-color: var(--navy-deep);
}

.card-back h3 {
  color: var(--cream);
}

.card-back p {
  color: rgba(255, 248, 237, 0.8);
  flex: 1;
}

.card-back-link {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.04em;
}

/* 5) Marquee perspektīva (pievienota .marquee transform augstāk) */

/* 6) 3D logo hover */
.brand-mark {
  perspective: 600px;
}

.brand-mark img {
  transition:
    transform 450ms var(--ease-out),
    box-shadow 450ms var(--ease-out);
}

.brand:hover .brand-mark img,
.brand-mark:focus-within img {
  transform: rotateY(16deg) rotateX(8deg) scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .steam,
  .steam span {
    display: none;
  }
  .card-flip .card-inner {
    transform: none;
    transition: none;
  }
  .hero-media,
  .hero::before,
  .hero::after {
    transform: none;
    transition: none;
  }
  .brand-mark img {
    transform: none;
    transition: none;
  }
}
