/* ========== DYSON CLONE — BASE ========== */
/* Dyson uses proprietary "Dyson Futura". Futura PT / system Futura (Mac) is
   the closest available facsimile; Inter is the cross-platform fallback. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: "Futura PT", "Futura", "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  background: #fff;
}
.wordmark, .logo {
  font-family: "Futura PT", "Futura", "Inter", "Helvetica Neue", sans-serif;
  font-feature-settings: "ss01", "ss02";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5 { font-weight: 700; letter-spacing: -0.015em; margin: 0; }
h1 { font-size: clamp(2.25rem, 5.5vw, 4.5rem); line-height: 1.02; }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.75rem); line-height: 1.08; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 0.9rem; font-weight: 600; }
p  { margin: 0 0 1rem; }

:root {
  --ink: #000;
  --ink-2: #262626;
  --muted: #6b6b6b;
  --line: #e3e3e3;
  --line-2: #d0d0d0;
  --bg-soft: #f4f4f4;
  --bg-stone: #f7f4f0;
  --bg-dark: #111;
  --accent: #c4912d;
  --danger: #c8102e;
  --success: #2e7d32;
  --dyson-blue: #1e5bd6;
  --dyson-green: #84c133;
  --dyson-green-hover: #6fa52a;
}

/* ========== LAYOUT HELPERS ========== */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-dark { background: var(--bg-dark); color: #fff; }
.section-soft { background: var(--bg-soft); }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 40px;
}
.section-head h2 { margin: 0; }
.section-head .link-arrow { white-space: nowrap; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link-arrow::after {
  content: ""; display: inline-block;
  width: 14px; height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 6 15 12 9 18'/></svg>") no-repeat center / contain;
  transition: transform .2s;
}
.link-arrow:hover::after { transform: translateX(3px); }

/* ========== CONTAINER FLUID (matches dyson.es bootstrap-like grid) ========== */
.container-fluid { width: 100%; padding-left: 24px; padding-right: 24px; margin-right: auto; margin-left: auto; }
.container-fluid--upto-lg { max-width: 1440px; }
.row { display: flex; flex-wrap: wrap; margin-left: -12px; margin-right: -12px; }
[class*="col-"] { padding-left: 12px; padding-right: 12px; box-sizing: border-box; }
.col-xs-12 { width: 100%; }
@media (min-width: 768px) { .col-md-6 { width: 50%; } .col-md-12 { width: 100%; } }
@media (min-width: 1025px) { .col-lg-4 { width: 33.3333%; } .col-lg-6 { width: 50%; } }
.hidden-md-down { display: block; }
@media (max-width: 1024px) { .hidden-md-down { display: none !important; } }

/* ========== SALES BANNER (announce) ========== */
.sales-banner__background {
  width: 100%;
}
.sales-banner__background--blue { background-color: #1e5bd6; }
.sales-banner__link { display: block; text-decoration: none; color: inherit; }
.sales-banner__text-container {
  text-align: center;
  padding: 10px 16px;
}
.sales-banner__font--white, .sales-banner__font--white p { color: #fff; }
.sales-banner__title p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.4;
}
.sales-banner__title b { font-weight: 700; }

/* ========== HEADER (black) ========== */
.header-main, .header.header-main {
  position: sticky; top: 0; z-index: 100;
  background: #000;
  color: #fff;
  border-bottom: 1px solid #1a1a1a;
}

/* Utility menu (top row: logo + small links) */
.utility-menu {
  background: #000;
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid #2a2a2a;
}
.utility-menu__wrapper { padding-top: 18px; padding-bottom: 14px; }
.global-utility__nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.header__logo { display: inline-flex; align-items: center; color: #fff; }
.header__logo-text {
  font-family: "Futura PT", "Futura", "Inter", sans-serif;
  font-size: 24px; font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: lowercase;
  color: #fff;
}
.header__logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.header__logo--mobile .header__logo-img { height: 28px; }
.utility-menu__list {
  display: flex; align-items: center;
  gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.utility-menu__list-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  transition: opacity .15s;
}
.utility-menu__list-link:hover { opacity: 0.7; }
.utility-menu__list-usericon {
  width: 16px; height: 16px;
  display: inline-flex; align-items: center; justify-content: center;
}
.utility-menu__list-usericon svg path { fill: #fff !important; }
.utility-menu__fta-login .utility-menu__list-link { font-weight: 500; }

/* Header bottom row */
.header__row { padding: 14px 0; align-items: center; }
.header__container {
  display: flex; align-items: center; gap: 24px;
}
.header__logo--mobile { display: none; }
.header__logo--mobile .header__logo-text { color: #fff; font-size: 28px; }

/* Primary nav */
.global-nav__block { flex: 1; }
.global-nav__list {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
  flex-wrap: wrap;
}
.global-nav__item { position: relative; }
.global-nav__item.has-mega { position: static; }
.global-nav__item.is-active .nav__linkbtn { font-weight: 600; }
.global-nav__item.is-active .nav__linkbtn::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -16px;
  height: 2px; background: #fff;
}
.nav__linkbtn {
  position: relative;
  font-size: 14px; font-weight: 400;
  color: #fff;
  white-space: nowrap;
  padding: 4px 0;
  display: inline-block;
  transition: opacity .15s;
}
.nav__linkbtn:hover { opacity: 0.7; }
.global-nav__item.has-mega:hover > .nav__linkbtn::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -16px;
  height: 2px; background: #fff;
}

/* Mega-menu dropdown */
.global-nav__item.has-mega .nav__linkbtn::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 28px;
}
.mega-menu {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: #2a2a2a;
  color: #fff;
  z-index: 99;
  padding: 36px 0 56px;
}
.global-nav__item.has-mega:hover > .mega-menu,
.global-nav__item.has-mega:focus-within > .mega-menu {
  display: block;
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 420px);
  gap: 40px;
}
.mega-menu__heading {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
  font-weight: 400;
}
.mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mega-menu__link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .15s;
}
.mega-menu__link:hover {
  opacity: 0.7;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.mega-menu__badge {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  margin-left: 4px;
}

/* Search */
.search-nav {
  flex: 0 1 320px; min-width: 200px;
  height: 40px;
  background: #1f1f1f;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  display: flex; align-items: center;
  padding: 0 6px 0 16px;
}
.search-nav__container { width: 100%; }
.search-nav__box, .search-nav__overlay-fields-wrapper {
  display: flex; align-items: center; gap: 8px; width: 100%;
}
.search-nav__overlay-input {
  border: none; background: transparent;
  flex: 1; outline: none;
  font-size: 14px; font-family: inherit;
  color: #fff;
  height: 40px;
}
.search-nav__overlay-input::placeholder { color: #aaa; }
.search-nav__overlay-clear {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: none; border: none; cursor: pointer;
}

.header__cart-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  position: relative;
  color: #fff;
  transition: background .15s;
}
.header__cart-icon:hover { background: #1f1f1f; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--dyson-blue); color: #fff;
  font-size: 10px; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.global-header__drawer { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.global-header__hamburger,
.global-header__hamburger::before,
.global-header__hamburger::after {
  display: block; width: 22px; height: 2px;
  background: #fff;
  position: relative;
}
.global-header__hamburger::before { content: ""; position: absolute; top: -6px; left: 0; }
.global-header__hamburger::after { content: ""; position: absolute; top: 6px; left: 0; }

@media (max-width: 1024px) {
  .header__logo--mobile { display: inline-flex; }
  .global-nav__block { display: none; }
  .global-nav__block.open {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    z-index: 99;
  }
  .global-nav__block.open .global-nav__list {
    flex-direction: column; gap: 0;
    align-items: stretch;
  }
  .global-nav__block.open .nav__linkbtn {
    padding: 14px 24px;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }
  .global-header__drawer { display: inline-flex; }
  .header__row { padding: 10px 0; }
  .header__container { gap: 12px; }
  .search-nav { flex: 1; min-width: 0; }
}
@media (max-width: 560px) {
  .utility-menu__list { gap: 14px; }
}

/* ========== BUTTONS — dyson.es .button system ========== */
.button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px;
  border-radius: 2px;
  font-weight: 500; font-size: 15px;
  letter-spacing: -0.005em;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  background: #000; color: #fff;
}
.button:hover { background: #1f1f1f; }
.button.green { background: var(--dyson-green); color: #000; }
.button.green:hover { background: var(--dyson-green-hover); color: #000; }
.button--secondary { background: #fff; color: #000; border-color: #000; }
.button--secondary:hover { background: #000; color: #fff; }
.button--linking {
  background: transparent; color: #000;
  border: none; padding: 8px 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
.button[disabled] { opacity: .4; cursor: not-allowed; }
.button--small { padding: 9px 20px; font-size: 14px; }

/* legacy alias so existing pages keep working until migrated */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 13px 28px; border-radius: 2px; font-weight: 500; font-size: 15px; cursor: pointer; }
.btn-green { background: var(--dyson-green); color: #000; }
.btn-green:hover { background: var(--dyson-green-hover); }
.btn-dark, .btn-primary { background: #000; color: #fff; }
.btn-ghost, .btn-light { background: #fff; color: #000; border: 1px solid var(--line-2); }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid #fff; }

/* ========== HERO SUPERSONIC TRAVEL (matches dyson.es: text left, product right) ========== */
.hero-supersonic {
  position: relative;
  background: #faf2ee;
  min-height: 720px;
  height: calc(100vh - 200px);
  max-height: 900px;
  overflow: hidden;
  display: flex; align-items: flex-start;
}
.hero-supersonic__bg { position: absolute; inset: 0; z-index: 0; }
.hero-supersonic__video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.hero-supersonic__inner {
  position: relative; z-index: 1;
  width: 100%;
  padding-top: 32px; padding-bottom: 80px;
}
.hero-supersonic__copy {
  max-width: 520px;
}
.hero-supersonic__wordmark {
  font-family: "Futura PT", "Futura", "Inter", sans-serif;
  display: block;
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-transform: lowercase;
  color: #111;
  margin: 0 0 4px;
}
.hero-supersonic__sub {
  display: block;
  font-family: "Futura PT", "Futura", "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #555;
  margin-bottom: 32px;
  text-transform: lowercase;
}
.hero-supersonic__headline {
  font-family: "Futura PT", "Futura", "Inter", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 1.875rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #111;
  margin: 0 0 14px;
}
.hero-supersonic__headline sup { font-size: 0.55em; font-weight: 400; vertical-align: super; }
.hero-supersonic__body {
  font-size: 16px; line-height: 1.45;
  color: #333;
  margin: 0 0 28px;
  max-width: 440px;
}
.hero-supersonic__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-supersonic__cta .button {
  border-radius: 4px !important;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-supersonic { min-height: 620px; height: auto; }
  .hero-supersonic__bg::after { background: linear-gradient(180deg, rgba(250,242,238,0.95) 0%, rgba(250,242,238,0.55) 50%, rgba(250,242,238,0.85) 100%); }
  .hero-supersonic__inner { padding: 56px 0; }
}
@media (max-width: 640px) {
  .hero-supersonic { min-height: 540px; }
  .hero-supersonic__inner { padding: 40px 0; }
  .hero-supersonic__wordmark { font-size: 3.25rem; }
}

/* ========== RESUME CARD ("continúa desde donde lo dejaste") ========== */
.resume-card {
  position: fixed; left: 24px; bottom: 0;
  z-index: 50;
  background: #000;
  color: #fff;
  width: 460px; max-width: calc(100vw - 48px);
  box-shadow: 0 -8px 32px rgba(0,0,0,.35);
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  padding: 0 0 22px;
}
.resume-card__head {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px 16px;
  position: relative;
}
.resume-card__thumb {
  width: 90px; height: 140px; flex-shrink: 0;
  background: #fff;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.resume-card__thumb img { width: 80%; height: 80%; object-fit: contain; }
.resume-card__copy { flex: 1; line-height: 1.35; min-width: 0; padding-right: 40px; }
.resume-card__title { font-weight: 600; color: #fff; font-size: 19px; margin-bottom: 6px; line-height: 1.25; }
.resume-card__sub { color: #d8d8d8; font-size: 16px; font-weight: 400; }
.resume-card__close {
  position: absolute; top: 18px; right: 18px;
  width: 30px; height: 30px;
  color: #fff;
  font-size: 26px; line-height: 1;
  background: none; border: none; cursor: pointer;
}
.resume-card__cta {
  display: block;
  margin: 4px 28px 0;
  padding: 16px 16px;
  text-align: center;
  font-size: 16px; font-weight: 500;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 2px;
  transition: background .15s;
}
.resume-card__cta:hover { background: #ddd; }
.resume-card__cta:hover { background: #e8e8e8; }
@media (max-width: 640px) { .resume-card { display: none; } }

/* ========== CATEGORY TILES (Dyson-style: product photo on soft bg, title below) ========== */
.cat-tile {
  display: block; color: #000;
  background: #fff;
  transition: transform .25s;
}
.cat-tile:hover { transform: translateY(-4px); }
.cat-tile .tile-media {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 18px;
}
.cat-tile .tile-media img,
.cat-tile .tile-media svg {
  width: 68%; height: 68%; object-fit: contain;
  transition: transform .3s;
  mix-blend-mode: multiply;
}
.cat-tile:hover .tile-media img,
.cat-tile:hover .tile-media svg { transform: scale(1.04); }
.cat-tile h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.cat-tile p { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.cat-tile .link-arrow { font-size: 14px; }

/* ========== PRODUCT CARDS ========== */
.product-card {
  background: #fff;
  display: flex; flex-direction: column;
  color: #000;
  transition: transform .2s;
  position: relative;
}
.product-card:hover { transform: translateY(-3px); }
.product-card .img {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-card .img img,
.product-card .img svg {
  width: 80%; height: 80%; object-fit: contain;
  transition: transform .4s;
  mix-blend-mode: multiply;
}
.product-card:hover .img img,
.product-card:hover .img svg { transform: scale(1.03); }
.product-card .body { padding: 18px 4px 8px; display: flex; flex-direction: column; flex: 1; }
.product-card .cat { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; font-weight: 500; }
.product-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.product-card .desc { font-size: 14px; color: var(--muted); margin-bottom: 14px; flex: 1; line-height: 1.45; }
.product-card .price { font-weight: 600; font-size: 17px; margin-bottom: 4px; }
.product-card .price .old { text-decoration: line-through; color: var(--muted); font-weight: 400; font-size: 14px; margin-left: 10px; }
.product-card .card-cta {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 500; font-size: 14px;
  padding-bottom: 2px;
  border-bottom: 1px solid #000;
  align-self: flex-start;
}
.product-card .card-cta::after {
  content: "›"; font-size: 18px; line-height: 1;
  transition: transform .2s;
}
.product-card:hover .card-cta::after { transform: translateX(3px); }

.badge {
  display: inline-block;
  background: #000; color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  padding: 4px 9px;
  letter-spacing: .08em;
  margin-bottom: 10px;
  align-self: flex-start;
}
.badge-new { background: #000; color: #fff; }
.badge-offer { background: var(--danger); color: #fff; }
.product-card > .card-badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  margin: 0;
}

/* ========== FEATURE BANNER ========== */
.feature-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-soft);
  overflow: hidden;
  min-height: 520px;
}
.feature-banner.reverse { direction: rtl; }
.feature-banner.reverse > * { direction: ltr; }
.feature-banner--dark { background: #111; color: #fff; }
.feature-banner--dark .copy p { color: #c8c8c8; }
.feature-banner--dark .media { background: #0a0a0a; }
.feature-banner--dark .button--secondary { background: transparent; color: #fff; border-color: #fff; }
.feature-banner--dark .button--secondary:hover { background: #fff; color: #000; }
.feature-banner--dark .feat-image { mix-blend-mode: normal; }
.feature-banner .copy { padding: 64px; align-self: center; max-width: 560px; }
.feature-banner .copy h2 { margin-bottom: 20px; }
.feature-banner .copy p { color: var(--muted); font-size: 17px; line-height: 1.5; }
.feature-banner .copy .badge { margin-bottom: 16px; }
.feature-banner .cta-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.feature-banner .media {
  background: #eae6e0;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  min-height: 400px;
}
.feature-banner .media svg { width: 60%; height: 60%; }
.feature-banner .feat-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  position: absolute; inset: 0;
}
.feature-banner .feat-image {
  width: 75%; height: 90%;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
@media (max-width: 900px) {
  .feature-banner { grid-template-columns: 1fr; min-height: 0; }
  .feature-banner .copy { padding: 40px 24px; }
  .feature-banner .media { min-height: 320px; }
}

/* ========== BENEFITS GRID — Compra en Dyson.es 4-up ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.benefit-item {
  text-align: center;
  padding: 16px 8px;
}
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin-bottom: 16px;
  color: #000;
}
.benefit-item h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.benefit-item p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.45; }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ========== FOOTNOTE ========== */
.footnote { padding: 32px 0; background: #fff; }
.footnote p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; max-width: 1100px; }
.footnote sup { font-size: 0.85em; }

/* ========== TRUST BANNER ========== */
.trust-banner {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}
.trust-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 1100px) { .trust-grid--4 { grid-template-columns: repeat(2, 1fr); } }
.trust-item {
  display: flex; align-items: center; gap: 16px;
}
.trust-item .icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: #000;
}
.trust-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: var(--muted); margin: 0; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ========== SUPPORT BANNER (3-col) ========== */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.support-item h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.support-item p { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
@media (max-width: 800px) { .support-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ========== FOOTER ========== */
.site-footer { background: #1a1a1a; color: #fff; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.footer-col h4 { font-size: 14px; margin-bottom: 18px; color: #fff; font-weight: 600; letter-spacing: -0.01em; text-transform: none; }
.footer-col a { display: block; padding: 6px 0; color: #bbb; font-size: 13px; line-height: 1.45; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-social {
  display: flex; gap: 16px;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid #2a2a2a;
}
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: transparent;
  color: #fff;
  transition: background .15s;
}
.footer-social a:hover { background: #2a2a2a; }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding: 18px 0;
  border-top: 1px solid #2a2a2a;
  margin-top: 24px;
}
.footer-legal a { color: #bbb; font-size: 12px; }
.footer-legal a:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 18px;
  font-size: 11px; color: #888;
  display: flex; flex-direction: column; gap: 14px;
}
.footer-finance { font-size: 11px; line-height: 1.5; color: #888; margin: 0; }
.footer-copyright { font-size: 12px; color: #999; }
.country-picker {
  background: transparent; border: 1px solid #333; color: #fff;
  padding: 8px 14px; border-radius: 0; font-size: 13px;
  display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer;
  align-self: flex-start;
}
.country-picker:hover { border-color: #fff; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .footer-grid { grid-template-columns: 1fr; } }

/* ========== NEWSLETTER ========== */
.newsletter {
  background: #000; color: #fff;
  padding: 72px 24px; text-align: center;
}
.newsletter h2 { margin-bottom: 12px; }
.newsletter > .container-sm > p { color: #aaa; font-size: 16px; margin-bottom: 24px; }
.newsletter form {
  display: flex; gap: 8px; max-width: 520px; margin: 0 auto;
}
.newsletter input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid #333;
  background: #111; color: #fff;
  font-size: 15px;
  outline: none;
}
.newsletter input[type="email"]:focus { border-color: #fff; }
.newsletter .btn-primary { background: #fff; color: #000; }
.newsletter .btn-primary:hover { background: #ddd; }

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 56px 24px 40px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.page-header .container-sm { text-align: left; }
.page-header h1 { margin-bottom: 12px; font-size: clamp(2rem, 4.5vw, 3rem); }
.page-header p { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0; }
.breadcrumbs {
  font-size: 13px; color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumbs a:hover { color: #000; text-decoration: underline; }

/* ========== EMPTY STATE ========== */
.empty-state {
  text-align: center;
  padding: 64px 24px;
  max-width: 640px; margin: 0 auto;
}
.empty-state h2 { margin-bottom: 12px; }
.empty-state p { color: var(--muted); margin-bottom: 24px; }

/* ========== PRODUCT DETAIL ========== */
.pdp {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  padding: 48px 24px;
  max-width: 1440px; margin: 0 auto;
}
.pdp-gallery {
  display: grid; gap: 16px;
  grid-template-columns: 72px 1fr;
}
.pdp-thumbs { display: flex; flex-direction: column; gap: 8px; }
.pdp-thumb {
  aspect-ratio: 1; background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.pdp-thumb.active { border-color: #000; border-width: 2px; }
.pdp-thumb img, .pdp-thumb svg { width: 75%; height: 75%; object-fit: contain; }
.pdp-main-img {
  aspect-ratio: 1;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pdp-main-img img, .pdp-main-img svg { width: 85%; height: 85%; object-fit: contain; }
.pdp h1 { font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 6px; font-weight: 600; }
.pdp .subhead { color: var(--muted); margin-bottom: 20px; font-size: 15px; }
.pdp .price-row { display: flex; align-items: baseline; gap: 12px; margin: 20px 0; }
.pdp .price-now { font-size: 28px; font-weight: 600; }
.pdp .price-old { text-decoration: line-through; color: var(--muted); font-size: 18px; }
.variants { margin: 28px 0; }
.variants .label { font-size: 14px; margin-bottom: 10px; font-weight: 500; }
.variant-row { display: flex; gap: 8px; flex-wrap: wrap; }
.variant {
  padding: 10px 16px;
  border: 1px solid var(--line-2);
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: border-color .15s;
}
.variant.active, .variant:hover { border-color: #000; }
.features { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); }
.features h3 { margin-bottom: 16px; font-weight: 600; }
.features ul { padding-left: 1.2rem; }
.features li { margin-bottom: 10px; font-size: 15px; color: var(--ink-2); }

/* Qty stepper (matches dyson.es rounded pill control) */
.qty-control {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 4px 4px;
}
.qty-control button {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; line-height: 1;
  background: transparent; color: #000;
}
.qty-control button:hover { background: #f0f0f0; }
.qty-control span { min-width: 36px; text-align: center; font-size: 15px; font-weight: 500; padding: 0 4px; }

/* PDP CTA row */
.pdp-cta {
  display: flex; gap: 12px;
  margin: 28px 0 28px;
}
.pdp-cta__primary { flex: 1; padding: 16px 24px; font-size: 16px; font-weight: 500; }
.pdp-cta__secondary { width: 56px; padding: 0; }

/* PDP perks (under CTA) */
.pdp-perks {
  display: grid; grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pdp-perk { display: flex; align-items: center; gap: 14px; }
.pdp-perk svg { flex-shrink: 0; color: #000; }
.pdp-perk strong { display: block; font-size: 14px; font-weight: 600; }
.pdp-perk span { display: block; font-size: 13px; color: var(--muted); }

/* PDP accordions */
.pdp-accordions { margin-top: 8px; }
.pdp-acc {
  border-bottom: 1px solid var(--line);
}
.pdp-acc:first-child { border-top: 1px solid var(--line); }
.pdp-acc summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 17px; font-weight: 500;
}
.pdp-acc summary::-webkit-details-marker { display: none; }
.pdp-acc__chev {
  font-size: 22px; line-height: 1; font-weight: 300;
  transition: transform .25s;
}
.pdp-acc[open] .pdp-acc__chev { transform: rotate(45deg); }
.pdp-acc__list, .pdp-acc__body, .pdp-acc__specs { padding: 0 0 24px; }
.pdp-acc__list { padding-left: 1.2rem; margin: 0; }
.pdp-acc__list li { font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.pdp-acc__body p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0 0 12px; }
.pdp-acc__specs { display: flex; flex-direction: column; gap: 10px; }
.pdp-acc__specs > div {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 16px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.pdp-acc__specs > div:last-child { border-bottom: 0; }
.pdp-acc__specs dt { color: var(--muted); margin: 0; }
.pdp-acc__specs dd { margin: 0; color: #000; font-weight: 500; }
@media (max-width: 600px) {
  .pdp-acc__specs > div { grid-template-columns: 1fr; gap: 4px; }
}
@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-thumbs { flex-direction: row; }
  .pdp-thumb { width: 64px; }
}

/* ========== CART (dyson.es style) ========== */
.cart-page { max-width: 1280px; margin: 0 auto; padding: 32px 24px 80px; }
.cart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .cart-grid { grid-template-columns: 1fr; }
}
.cart-main__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px;
}
.cart-main__head h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 400;
  margin: 0;
}
.cart-main__head .seguir {
  font-size: 14px;
  color: #000;
  text-decoration: underline;
}

.cart-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: start;
}
.cart-card__img {
  background: #f7f7f7;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.cart-card__img img, .cart-card__img svg {
  width: 80%; height: 80%; object-fit: contain;
  mix-blend-mode: multiply;
}
.cart-card__body h3 {
  font-size: 18px; font-weight: 400; margin: 0 0 14px;
}
.cart-card__access {
  font-size: 14px; color: #555; margin-bottom: 8px;
}
.cart-card__warranty {
  font-size: 14px; color: #555; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
}
.cart-card__warranty .info-i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid #888; color: #888; font-size: 11px; font-style: italic;
}
.cart-card__price-row {
  display: flex; flex-direction: column; gap: 2px;
}
.cart-card__price {
  font-size: 22px; font-weight: 500; color: #1e5bd6;
}
.cart-card__old {
  font-size: 13px; color: #555;
}
.cart-card__old s { text-decoration: line-through; margin-right: 6px; }
.cart-card__old .save { color: #1e5bd6; text-decoration: underline; }

.cart-card__right {
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 14px;
}
.cart-stepper {
  display: inline-flex; align-items: center;
  border: 1px solid #d0d0d0; border-radius: 999px;
  padding: 4px 4px;
}
.cart-stepper button {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: #000;
}
.cart-stepper button:hover { background: #f0f0f0; }
.cart-stepper span {
  min-width: 32px; text-align: center; font-size: 15px; padding: 0 4px;
}
.cart-stepper .trash {
  width: 36px; height: 36px; margin-right: 4px;
}

.cart-card__expand {
  border-top: 1px solid var(--line);
  margin-top: 22px; padding-top: 22px;
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-size: 15px;
}
.cart-card__expand .chev {
  width: 18px; height: 18px;
  transition: transform .2s;
}

.cart-promo-title {
  font-size: 22px; font-weight: 400;
  margin: 40px 0 18px;
}

.cart-cross {
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 24px;
  align-items: start;
}
.cart-cross__img {
  position: relative;
  background: #f7f7f7;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.cart-cross__img img, .cart-cross__img svg {
  width: 80%; height: 80%; object-fit: contain;
  mix-blend-mode: multiply;
}
.cart-cross__badge {
  position: absolute; top: 14px; left: 14px;
  background: #1e5bd6; color: #fff;
  font-size: 13px; padding: 6px 12px;
}
.cart-cross__body h4 {
  font-size: 18px; font-weight: 400; margin: 0 0 12px;
}
.cart-cross__body p {
  font-size: 14px; color: #444; line-height: 1.55;
  margin: 0 0 18px;
}
.cart-cross__price {
  font-size: 22px; font-weight: 500; margin-bottom: 16px;
}

/* ========= Order summary panel ========= */
.summary-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
}
.summary-card h2 {
  font-size: 22px; font-weight: 400;
  margin: 0 0 20px;
}
.summary-shipnotice {
  background: #f4faf2;
  border-radius: 4px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  margin-bottom: 18px;
}
.summary-shipnotice .check {
  color: #2a8c4a;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
}

.summary-promo {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.summary-promo__head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; cursor: pointer;
}
.summary-promo__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 14px;
}
.summary-promo__form input {
  border: 1px solid #d0d0d0;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  width: 100%;
}
.summary-promo__form button {
  background: #ededed;
  color: #888;
  font-size: 14px;
  padding: 0 22px;
  border-radius: 2px;
  cursor: not-allowed;
}

.summary-lines { padding: 18px 0 8px; }
.summary-line {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: 15px; color: #222;
}
.summary-line .free { color: #1e5bd6; text-decoration: underline; }
.summary-line .info-i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid #888; color: #888;
  font-size: 10px; font-style: italic; margin-left: 6px;
}
.summary-total {
  display: flex; justify-content: space-between;
  font-size: 22px; font-weight: 500;
  margin: 12px 0 4px;
}
.summary-savings {
  display: flex; justify-content: space-between;
  font-size: 14px; color: #1e5bd6;
  padding-bottom: 18px;
}

.pay-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 48px;
  font-size: 15px; font-weight: 500;
  border-radius: 4px; margin-bottom: 12px;
  cursor: pointer;
}
.pay-btn--paypal { background: #ffc439; color: #003087; }
.pay-btn--paypal::before {
  content: ""; display: inline-block;
  width: 80px; height: 22px;
  background: url("../assets/paypal-logo.svg") center/contain no-repeat;
}
.pay-btn--apple { background: #000; color: #fff; }
.pay-btn--apple::before {
  content: ""; display: inline-block; margin-right: 6px;
  width: 14px; height: 14px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M16.4 12.5c0-2.7 2.2-4 2.3-4-.4-.6-2-1.6-3.5-1.6-1.5-.1-2.9.9-3.7.9-.8 0-2-.9-3.2-.9-1.7 0-3.2 1-4.1 2.5-1.7 3-.4 7.4 1.3 9.8.8 1.2 1.7 2.5 3 2.5 1.2 0 1.6-.7 3.1-.7 1.4 0 1.9.7 3.2.7 1.3 0 2.2-1.2 3-2.4.9-1.4 1.3-2.7 1.3-2.8-.1 0-2.6-1-2.7-4zm-2.4-7.4c.7-.8 1.1-1.9 1-3-1 0-2.1.7-2.8 1.5-.6.7-1.1 1.8-1 2.9 1.1.1 2.2-.5 2.8-1.4z' fill='%23000'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M16.4 12.5c0-2.7 2.2-4 2.3-4-.4-.6-2-1.6-3.5-1.6-1.5-.1-2.9.9-3.7.9-.8 0-2-.9-3.2-.9-1.7 0-3.2 1-4.1 2.5-1.7 3-.4 7.4 1.3 9.8.8 1.2 1.7 2.5 3 2.5 1.2 0 1.6-.7 3.1-.7 1.4 0 1.9.7 3.2.7 1.3 0 2.2-1.2 3-2.4.9-1.4 1.3-2.7 1.3-2.8-.1 0-2.6-1-2.7-4zm-2.4-7.4c.7-.8 1.1-1.9 1-3-1 0-2.1.7-2.8 1.5-.6.7-1.1 1.8-1 2.9 1.1.1 2.2-.5 2.8-1.4z' fill='%23000'/></svg>") center/contain no-repeat;
}

.pay-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 6px 0 14px;
  font-size: 13px; color: #888;
}
.pay-divider::before, .pay-divider::after {
  content: ""; flex: 1; height: 1px; background: #e0e0e0;
}

.pay-btn--continue {
  background: #84ce5c; color: #000;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 500;
}
.pay-btn--continue:hover { background: #76bf4d; }

.summary-secure {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: #555;
  margin: 18px 0 14px;
}
.summary-secure svg { width: 14px; height: 14px; }

.pay-methods {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 22px auto 0;
  height: auto;
}

/* trust strip below */
.cart-trust {
  border-top: 1px solid var(--line);
  margin-top: 60px; padding-top: 36px;
}
.cart-trust h3 {
  font-size: 22px; font-weight: 400;
  margin-bottom: 24px;
}
.cart-trust__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .cart-trust__grid { grid-template-columns: repeat(2, 1fr); }
}
.cart-trust__item {
  display: flex; gap: 14px; align-items: flex-start;
}
.cart-trust__item svg { width: 32px; height: 32px; flex-shrink: 0; color: #1e5bd6; }
.cart-trust__item h4 { font-size: 15px; font-weight: 500; margin: 0 0 4px; }
.cart-trust__item p { font-size: 13px; color: #555; margin: 0; line-height: 1.45; }

.cart-empty { text-align: center; padding: 80px 20px; color: var(--muted); }
.cart-empty h2 { color: #000; margin-bottom: 12px; font-weight: 400; }

/* ========== CHECKOUT — MINIMAL LAYOUT (matches dyson.es step 1) ========== */
.checkout-min { background: #fff; }

.checkout-header {
  background: #000;
  height: 60px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.checkout-skip {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 12px;
  text-decoration: underline;
  background: #000; padding: 4px 8px;
  z-index: 2;
}
.checkout-header__logo { display: inline-flex; }
.checkout-header__logo img { height: 28px; width: auto; }

.checkout-min__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

/* Breadcrumb-style step indicator (text only, ›-separated) */
.checkout-breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
  font-size: 14px; color: #666;
  margin: 0 auto 36px;
  flex-wrap: wrap;
}
.checkout-breadcrumb__item { color: #666; }
.checkout-breadcrumb__item.is-current { color: #000; font-weight: 600; }
.checkout-breadcrumb__sep { color: #c0c0c0; font-size: 16px; }

/* ===== Two-column layout ===== */
.ck-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .ck-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== Pago exprés ===== */
.ck-express { margin-bottom: 40px; }
.ck-express__title {
  font-size: 18px; font-weight: 600;
  text-align: center;
  margin: 0 0 16px;
}
.ck-express__buttons {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 600px) {
  .ck-express__buttons { grid-template-columns: 1fr; }
}
.ck-pay {
  height: 48px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  border: none; cursor: pointer;
}
.ck-pay--apple { background: #000; color: #fff; }
.ck-pay--apple span {
  display: inline-block;
  width: 14px; height: 16px;
  margin-right: 4px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M16.4 12.5c0-2.7 2.2-4 2.3-4-.4-.6-2-1.6-3.5-1.6-1.5-.1-2.9.9-3.7.9-.8 0-2-.9-3.2-.9-1.7 0-3.2 1-4.1 2.5-1.7 3-.4 7.4 1.3 9.8.8 1.2 1.7 2.5 3 2.5 1.2 0 1.6-.7 3.1-.7 1.4 0 1.9.7 3.2.7 1.3 0 2.2-1.2 3-2.4.9-1.4 1.3-2.7 1.3-2.8-.1 0-2.6-1-2.7-4zm-2.4-7.4c.7-.8 1.1-1.9 1-3-1 0-2.1.7-2.8 1.5-.6.7-1.1 1.8-1 2.9 1.1.1 2.2-.5 2.8-1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M16.4 12.5c0-2.7 2.2-4 2.3-4-.4-.6-2-1.6-3.5-1.6-1.5-.1-2.9.9-3.7.9-.8 0-2-.9-3.2-.9-1.7 0-3.2 1-4.1 2.5-1.7 3-.4 7.4 1.3 9.8.8 1.2 1.7 2.5 3 2.5 1.2 0 1.6-.7 3.1-.7 1.4 0 1.9.7 3.2.7 1.3 0 2.2-1.2 3-2.4.9-1.4 1.3-2.7 1.3-2.8-.1 0-2.6-1-2.7-4zm-2.4-7.4c.7-.8 1.1-1.9 1-3-1 0-2.1.7-2.8 1.5-.6.7-1.1 1.8-1 2.9 1.1.1 2.2-.5 2.8-1.4z'/></svg>") center/contain no-repeat;
}
.ck-pay--paypal { background: #ffc439; color: #003087; }
.ck-pay__pp { font-style: italic; font-weight: 700; }
.ck-pay--paypal .ck-pay__pp::first-letter { color: #003087; }

.ck-express__divider {
  position: relative;
  text-align: center;
  margin: 24px 0 8px;
  font-size: 13px; color: #666;
}
.ck-express__divider::before,
.ck-express__divider::after {
  content: "";
  position: absolute; top: 50%;
  width: calc(50% - 220px);
  height: 1px;
  background: var(--line);
}
.ck-express__divider::before { left: 0; }
.ck-express__divider::after { right: 0; }
.ck-express__divider span { background: #fff; padding: 0 12px; position: relative; }

/* ===== Form sections ===== */
.ck-section { margin-bottom: 48px; }
.ck-section h2 {
  font-size: 28px; font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.ck-required { font-size: 13px; color: #666; margin: 0 0 24px; }
.ck-section__edit {
  display: inline-block;
  font-size: 14px; color: #000;
  text-decoration: underline;
  margin-bottom: 24px;
}

/* ===== Floating-label fields ===== */
.float-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.float-field {
  position: relative;
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.float-field:focus-within {
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}
.float-field--full { grid-column: 1 / -1; }
.float-field input,
.float-field select {
  width: 100%;
  border: none; outline: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px; color: #000;
  padding: 22px 16px 8px;
  border-radius: 4px;
  appearance: none;
}
.float-field--select select { padding-right: 36px; cursor: pointer; }
.float-field--select::after {
  content: "";
  position: absolute; right: 14px; top: 50%;
  width: 14px; height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>") center/contain no-repeat;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555;
}
.float-field label {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  font-size: 16px; color: #777;
  pointer-events: none;
  transition: top .15s, font-size .15s, color .15s;
  background: transparent;
}
.float-field input:focus + label,
.float-field input:not(:placeholder-shown) + label,
.float-field select:focus + label,
.float-field--select label {
  top: 12px;
  transform: translateY(0);
  font-size: 12px;
  color: #555;
}
.float-field--withicon input { padding-right: 44px; }
.float-field__icon {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  color: #555;
  pointer-events: none;
}
@media (max-width: 600px) {
  .float-grid { grid-template-columns: 1fr; }
}

.ck-help {
  font-size: 13px; color: #666;
  margin: 4px 4px 0;
  line-height: 1.45;
  grid-column: 1 / -1;
}
.ck-help--tight { margin-top: 18px; margin-bottom: 14px; }

/* ===== Checkbox / radio rows ===== */
.ck-check {
  display: flex; gap: 12px;
  align-items: flex-start;
  font-size: 14px; line-height: 1.5; color: #222;
  margin: 18px 0 0;
  cursor: pointer;
}
.ck-check input {
  margin-top: 2px;
  width: 18px; height: 18px;
  accent-color: #000;
  flex-shrink: 0;
}
.ck-check em { font-style: normal; color: #555; }
.ck-check a { color: #000; text-decoration: underline; }

.ck-radio-row { display: flex; gap: 24px; margin-top: 6px; }
.ck-radio {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; cursor: pointer;
}
.ck-radio input { width: 18px; height: 18px; accent-color: #000; }

/* ===== Continue button ===== */
.ck-continue {
  width: 100%;
  background: #84ce5c; color: #000;
  border: none; border-radius: 4px;
  padding: 18px 24px;
  font-size: 16px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background .15s;
  margin-top: 8px;
}
.ck-continue:hover { background: #76bf4d; }
.ck-continue:disabled { opacity: .6; cursor: not-allowed; }

/* ===== Right summary ===== */
.ck-summary {
  position: sticky; top: 24px;
}
.ck-summary__scroll {
  font-size: 12px; color: #666;
  text-align: right;
  margin: 0 0 8px;
}

.ck-product {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 18px;
  margin-bottom: 14px;
}
.ck-product__img {
  background: #f7f7f7;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.ck-product__img img,
.ck-product__img svg { width: 85%; height: 85%; object-fit: contain; mix-blend-mode: multiply; }
.ck-product__body { font-size: 14px; line-height: 1.45; }
.ck-product__name { font-size: 15px; font-weight: 600; margin: 0 0 8px; }
.ck-product__warranty,
.ck-product__access,
.ck-product__qty { font-size: 13px; color: #555; margin: 0 0 4px; }
.ck-product__price {
  font-size: 18px; font-weight: 600;
  color: #1e5bd6;
  margin: 8px 0 2px;
}
.ck-product__old { font-size: 12px; color: #555; margin: 0 0 2px; }
.ck-product__save { font-size: 12px; color: #1e5bd6; margin: 0; }

.ck-modify {
  display: block; text-align: center;
  font-size: 14px; color: #000;
  text-decoration: underline;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

/* Promo code accordion */
.ck-promo {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.ck-promo summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 500; cursor: pointer;
}
.ck-promo summary::-webkit-details-marker { display: none; }
.ck-promo__chev { font-size: 20px; line-height: 1; transition: transform .2s; }
.ck-promo[open] .ck-promo__chev { transform: rotate(45deg); }
.ck-promo__form {
  display: grid; grid-template-columns: 1fr auto;
  gap: 8px; margin-top: 12px;
}
.ck-promo__form input {
  border: 1px solid #c0c0c0;
  padding: 12px 14px; font-size: 14px;
  border-radius: 2px;
  background: #fff;
}
.ck-promo__form button {
  background: #ededed; color: #888;
  font-size: 14px; padding: 0 22px;
  border-radius: 2px; cursor: pointer;
}

.ck-totals { padding: 18px 0 4px; }
.ck-total-line {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: 15px; color: #222;
}
.ck-total-line .free { color: #1e5bd6; text-decoration: underline; }
.ck-total-line .info-i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid #888; color: #888;
  font-size: 10px; font-style: italic; margin-left: 4px;
}
.ck-total-line--total {
  font-size: 22px; font-weight: 600;
  margin-top: 12px;
}
.ck-total-savings {
  font-size: 14px; color: #1e5bd6;
  padding: 4px 0 12px;
}

.ck-secure {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: #555;
  padding: 14px 0 12px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.ck-paymethods {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  height: auto;
}

/* ===== Minimal footer ===== */
.checkout-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 32px 24px;
}
.checkout-footer__inner {
  max-width: 1280px; margin: 0 auto;
  text-align: center;
}
.checkout-footer__legal {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px 24px;
  margin-bottom: 24px;
}
.checkout-footer__legal a {
  font-size: 13px; color: #555;
  text-decoration: underline;
}
.checkout-footer__legal a:hover { color: #000; }
.checkout-footer__finance {
  font-size: 11px; color: #777;
  line-height: 1.55;
  max-width: 980px; margin: 0 auto 20px;
}
.checkout-footer__copy { font-size: 12px; color: #888; }

/* ===== Existing legacy classes still used by the success message ===== */
.checkout-page { max-width: 1280px; margin: 0 auto; padding: 24px 24px 80px; }
.checkout-page .breadcrumbs { margin-bottom: 24px; }

.checkout-steps {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; align-items: center; gap: 0;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.checkout-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
  flex: 0 0 auto;
  padding-right: 36px;
  position: relative;
}
.checkout-step + .checkout-step::before {
  content: ""; position: absolute; left: -22px; top: 50%;
  width: 28px; height: 1px; background: var(--line-2);
}
.checkout-step__bubble {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #ededed; color: #888;
  font-weight: 600; font-size: 13px;
  flex-shrink: 0;
}
.checkout-step--current .checkout-step__bubble { background: #000; color: #fff; }
.checkout-step--current .checkout-step__label { color: #000; font-weight: 600; }
.checkout-step--done .checkout-step__bubble { background: #2a8c4a; color: #fff; }
.checkout-step--done .checkout-step__label { color: #2a8c4a; }
@media (max-width: 600px) {
  .checkout-step { padding-right: 18px; font-size: 13px; }
  .checkout-step + .checkout-step::before { width: 14px; left: -14px; }
}
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .checkout-grid { grid-template-columns: 1fr; }
}

.checkout-section {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
  margin-bottom: 20px;
}
.checkout-section h2 {
  font-size: 20px; font-weight: 400;
  margin: 0 0 22px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field > span {
  font-size: 13px; color: #444;
}
.field > span em { color: var(--muted); font-style: normal; font-size: 12px; }
.field input,
.field select {
  border: 1px solid #d0d0d0;
  background: #fff;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 2px;
  width: 100%;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--dyson-blue);
  box-shadow: 0 0 0 2px rgba(30, 91, 214, .15);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: var(--danger);
}

.pay-methods-list { display: flex; flex-direction: column; gap: 12px; }
.pay-method {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-2);
  padding: 14px 16px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 2px;
}
.pay-method input { accent-color: var(--dyson-blue); }
.card-fields { padding: 4px 4px 8px; }
@media (max-width: 600px) {
  .field-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: 1; }
}

.checkout-terms {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #333;
  margin: 8px 0 18px;
}
.checkout-terms input { margin-top: 3px; accent-color: var(--dyson-blue); }
.checkout-terms a { color: var(--dyson-blue); text-decoration: underline; }

.checkout-back {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: var(--dyson-blue);
}
.checkout-back:hover { text-decoration: underline; }

.checkout-summary { position: sticky; top: 24px; }
.checkout-sum__items {
  display: flex; flex-direction: column; gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 8px;
}
.checkout-sum__item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; }
.checkout-sum__img {
  width: 64px; height: 64px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.checkout-sum__img img,
.checkout-sum__img svg { max-width: 100%; max-height: 100%; }
.checkout-sum__name { font-size: 14px; line-height: 1.35; }
.checkout-sum__qty { font-size: 12px; color: var(--muted); margin-top: 2px; }
.checkout-sum__price { font-size: 14px; font-weight: 500; }

.checkout-success {
  text-align: center;
  padding: 80px 20px;
  max-width: 560px;
  margin: 0 auto;
}
.checkout-success__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #f4faf2;
  color: #2a8c4a;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.checkout-success__icon svg { width: 32px; height: 32px; }
.checkout-success h2 { font-weight: 400; margin-bottom: 12px; }
.checkout-success p { color: var(--muted); margin-bottom: 24px; }

/* ========== SUBCATEGORY CHIPS (under hero, sticky pill nav) ========== */
.subcat-chips {
  position: sticky; top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 14px 24px;
  display: flex; gap: 10px; flex-wrap: wrap;
  max-width: 1440px; margin: 0 auto;
  overflow-x: auto;
}
.chip {
  display: inline-flex; align-items: center;
  padding: 8px 18px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  color: #000; background: #fff;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
.chip:hover { border-color: #000; }
.chip--active { background: #000; color: #fff; border-color: #000; }
.chip--active:hover { background: #1f1f1f; }

/* ========== FILTERS (category page) ========== */
.listing { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 40px 24px 80px; max-width: 1440px; margin: 0 auto; }
.filters h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; font-weight: 600; }
.filter-group { border-bottom: 1px solid var(--line); padding: 20px 0; }
.filter-group:last-child { border-bottom: 0; }
.filter-group label { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; cursor: pointer; }
.filter-group input[type="checkbox"] { accent-color: #000; width: 16px; height: 16px; }
.listing-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.listing-header .count { color: var(--muted); font-size: 14px; }
.listing-header select {
  padding: 10px 16px;
  border: 1px solid var(--line-2); background: #fff;
  font-size: 14px;
  cursor: pointer;
}
.listing-header select:focus { outline: none; border-color: #000; }
@media (max-width: 800px) {
  .listing { grid-template-columns: 1fr; gap: 24px; }
  .filters { order: 2; }
}

/* ========== UTILS ========== */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }
.muted { color: var(--muted); }
.hidden { display: none !important; }

/* ========== ACCESSIBLE FOCUS ========== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
