:root {
  --navy: #061e43;
  --navy-2: #0a356f;
  --blue: #0074c8;
  --aqua: #12b8bc;
  --green: #10da71;
  --mint: #d9fbf3;
  --sky: #e7f5fb;
  --ink: #071b35;
  --muted: #53657a;
  --line: #d7e2ea;
  --paper: #fff;
  --alert: #ff6a42;
  font-family: Inter, "Aptos", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, #fff 0 47rem, #f4f9fc 47rem);
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.promo-bar {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-bar p {
  margin: 0;
}

.promo-bar button {
  min-height: 1.9rem;
  border-radius: 0.18rem;
  background: var(--green);
  padding: 0 0.65rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-bar a {
  min-height: 1.9rem;
  border-radius: 0.18rem;
  background: var(--green);
  padding: 0.45rem 0.65rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.store-header {
  position: sticky;
  top: 0;
  z-index: 4;
  border-bottom: 1px solid var(--line);
  background: rgb(255 255 255 / 96%);
  backdrop-filter: blur(0.8rem);
}

.header-main {
  display: grid;
  grid-template-columns: minmax(12rem, 18rem) minmax(18rem, 39rem) auto;
  width: min(92rem, calc(100% - 2rem));
  min-height: 5.9rem;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.6vw, 3rem);
  margin: 0 auto;
}

.brand {
  width: min(100%, 17rem);
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 3.25rem;
  min-height: 3.25rem;
  border: 1px solid #b8c9d7;
  background: #f7fbfd;
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 1rem;
  color: var(--ink);
}

.search-box button {
  position: relative;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.search-box button span {
  position: relative;
  width: 1.05rem;
  height: 1.05rem;
  border: 0.15rem solid currentColor;
  border-radius: 50%;
}

.search-box button span::after {
  position: absolute;
  right: -0.42rem;
  bottom: -0.25rem;
  width: 0.58rem;
  height: 0.15rem;
  border-radius: 2rem;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.header-actions,
.hero-actions,
.product-buy {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 0.7rem;
}

.account-button,
.login-button,
.bag-button {
  position: relative;
  display: flex;
  min-width: 7.7rem;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  gap: 0.55rem;
  overflow: hidden;
  border: 1px solid #b7ccda;
  background:
    linear-gradient(180deg, #fff, #f3fbfd);
  padding: 0.35rem 0.9rem;
  color: var(--navy);
  text-align: center;
  font-size: 0.93rem;
  font-weight: 950;
  text-transform: uppercase;
}

.account-button span,
.login-button span,
.bag-button span {
  display: block;
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.account-button,
.login-button {
  flex-direction: column;
  align-items: flex-start;
  border-left: 0.28rem solid var(--green);
}

.account-button::after,
.login-button::after {
  position: absolute;
  right: -1.9rem;
  bottom: -2.4rem;
  width: 5.2rem;
  height: 5.2rem;
  border: 0.55rem solid rgb(23 176 209 / 18%);
  border-radius: 50%;
  content: "";
}

.bag-button {
  border-color: var(--navy);
  background:
    radial-gradient(circle at 80% 0, rgb(23 210 113 / 24%), transparent 2.2rem),
    linear-gradient(135deg, var(--navy), #0a4773);
  color: #fff;
}

.bag-button span {
  color: #c8e9f2;
}

.bag-button strong {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 0.82rem;
}

.category-nav {
  display: flex;
  width: min(92rem, calc(100% - 2rem));
  min-height: 3.25rem;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 3rem);
  margin: 0 auto;
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 950;
  overflow-x: auto;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-nav a {
  position: relative;
  display: grid;
  min-height: 3.25rem;
  align-items: center;
}

.category-nav a:last-child {
  color: var(--alert);
}

.category-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0.22rem;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.category-nav a:hover::after,
.category-nav a:focus-visible::after {
  transform: scaleX(1);
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(43rem, calc(100svh - 8.5rem));
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}

.hero,
.kids-zone,
.gear-shelf,
.market-catalog,
.shelf,
.campaign-band {
  scroll-margin-top: 9.7rem;
}

.hero-photo,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04) translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 800ms ease-out;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(4 20 46 / 94%) 0 32%, rgb(4 20 46 / 50%) 57%, rgb(4 20 46 / 16%) 100%),
    linear-gradient(180deg, rgb(5 20 44 / 6%), rgb(5 20 44 / 55%));
}

.hero-copy {
  display: grid;
  width: min(92rem, calc(100% - 2rem));
  align-content: center;
  margin: 0 auto;
  padding: clamp(3.3rem, 8vw, 7rem) 0 clamp(5rem, 9vw, 7.6rem);
  color: #fff;
}

.hero-copy .kicker {
  color: #8ff8d1;
}

.hero h1 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(3.2rem, 7.3vw, 7.2rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-copy > p:not(.kicker) {
  max-width: 31rem;
  margin: 1.2rem 0 1.6rem;
  color: #e5f5ff;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  gap: 0.65rem;
}

.primary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.25rem;
  font-weight: 1000;
  text-align: center;
}

input.primary-button {
  border: 0;
  cursor: pointer;
}

.primary-button {
  background: var(--green);
  color: var(--navy);
}

.ghost-button {
  border: 1px solid rgb(255 255 255 / 50%);
  background: rgb(255 255 255 / 12%);
  color: #fff;
}

.outline-button {
  border: 1px solid var(--navy);
  background: #fff;
  color: var(--navy);
}

.retail-shortcuts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(92rem, calc(100% - 2rem));
  margin: -2.15rem auto 0;
  border-top: 0.28rem solid var(--green);
  background: #fff;
  box-shadow: 0 1.1rem 3.2rem rgb(6 30 67 / 14%);
}

.retail-shortcuts a {
  display: grid;
  min-height: 8.5rem;
  align-content: center;
  gap: 0.32rem;
  border-right: 1px solid var(--line);
  padding: 1rem clamp(0.85rem, 2vw, 1.7rem);
}

.retail-shortcuts a:last-child {
  border-right: 0;
}

.retail-shortcuts span {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.retail-shortcuts strong {
  color: var(--navy);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  text-transform: uppercase;
}

.kids-zone,
.gear-shelf,
.market-catalog,
.shelf,
.campaign-band,
.offer-row,
.newsletter {
  width: min(92rem, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

.shelf {
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.gear-shelf {
  padding: clamp(3.2rem, 6vw, 5.4rem) 0 0;
}

.market-catalog {
  padding: clamp(4rem, 7vw, 6rem) 0 0;
}

.catalog-intro,
.catalog-tools {
  display: flex;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 3rem);
}

.catalog-intro {
  align-items: end;
  margin-bottom: 1.25rem;
}

.catalog-intro div {
  max-width: 54rem;
}

.catalog-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.catalog-intro > p {
  max-width: 33rem;
  margin: 0 0 0.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.catalog-tools {
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
}

.catalog-tools p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.catalog-tabs button {
  min-height: 2.6rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.55rem 0.82rem;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.catalog-tabs a {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.55rem 0.82rem;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.catalog-tabs button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.catalog-tabs a.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 1rem;
}

.market-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.market-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.72rem;
  padding: 0.82rem;
}

.market-media {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--sky), #fff 65%);
}

.market-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.market-card:hover .market-media img {
  transform: scale(1.035);
}

.market-chip {
  justify-self: start;
  background: var(--mint);
  padding: 0.38rem 0.52rem;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.market-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.18vw, 1.12rem);
  line-height: 1.32;
}

.market-buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  border-top: 1px solid var(--line);
  margin-top: auto;
  padding-top: 0.72rem;
}

.market-buy b {
  color: var(--navy);
  font-size: 1.12rem;
  white-space: nowrap;
}

.market-buy button {
  min-height: 2.7rem;
  background: var(--navy);
  padding: 0.58rem 0.68rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.catalog-more {
  display: flex;
  min-width: min(16rem, 100%);
  margin: 1rem auto 0;
}

.catalog-more[hidden] {
  display: none;
}

.catalog-empty {
  grid-column: 1 / -1;
  border-left: 0.28rem solid var(--green);
  background: #fff;
  padding: 1rem;
  color: var(--muted);
}

.kids-zone {
  padding: clamp(3.5rem, 6vw, 5rem) 0 0;
}

.kids-stage {
  display: grid;
  grid-template-columns: minmax(22rem, 1fr) minmax(19rem, 35rem);
  min-height: 33rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 88%), rgb(255 255 255 / 60%)),
    repeating-linear-gradient(135deg, #c8f7fb 0 1.1rem, #eefcff 1.1rem 2.2rem);
  border: 1px solid #bfe6ef;
  border-left: 0.5rem solid var(--green);
  padding: clamp(1.2rem, 4vw, 4rem);
}

.kids-copy {
  max-width: 47rem;
}

.kids-copy h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.15vw, 4.25rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.kids-copy > p:not(.kicker) {
  max-width: 39rem;
  margin: 1rem 0 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.kids-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.kids-choices button {
  min-height: 2.8rem;
  border: 1px solid #9ecce0;
  background: #fff;
  padding: 0.58rem 0.8rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.kids-choices button.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.kids-pick {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8.5rem, 12rem) 1fr;
  align-items: center;
  gap: 0.9rem;
  border-top: 0.28rem solid var(--green);
  background: #fff;
  padding: clamp(0.9rem, 2vw, 1.25rem);
  box-shadow: 0 1rem 3rem rgb(6 30 67 / 13%);
}

.kids-pick-media {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(145deg, var(--sky), #fff 62%);
}

.kids-pick-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.kids-pick.is-changing .kids-pick-media img {
  opacity: 0.2;
  transform: scale(0.94);
}

.kids-pick p,
.kids-card p {
  margin: 0 0 0.35rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.kids-pick h3,
.kids-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.kids-pick span,
.kids-card span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  line-height: 1.45;
}

.kids-pick button,
.kids-card > button,
.kids-link {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 0.7rem 0.85rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.kids-pick .primary-button {
  grid-column: 1 / -1;
  width: 100%;
}

.kids-pick button {
  grid-column: 1 / -1;
  background: var(--green);
  color: var(--navy);
}

.kids-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.kids-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: stretch;
  gap: 0;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.kids-card > a:first-child {
  display: grid;
  grid-template-columns: minmax(6rem, 9.5rem) 1fr;
  gap: 0.9rem;
  align-items: center;
  min-width: 0;
  padding: 0.85rem;
}

.kids-card > a:first-child p,
.kids-card > a:first-child h3,
.kids-card > a:first-child span {
  grid-column: 2;
}

.kids-card-media {
  grid-column: 1;
  grid-row: 1 / span 3;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  background: var(--sky);
}

.kids-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.kids-card:hover .kids-card-media img {
  transform: scale(1.04);
}

.kids-link {
  align-self: stretch;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.45rem;
}

.section-head h2,
.campaign-copy h2,
.newsletter h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.section-head > a {
  border-bottom: 0.18rem solid var(--green);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.accessory-card .product-media {
  background:
    radial-gradient(circle at 50% 10%, #fff 0 18%, transparent 18.3%),
    linear-gradient(145deg, var(--sky), #fff 68%);
}

.product-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  border-color: #9ac5d9;
  box-shadow: 0 1rem 2.4rem rgb(6 30 67 / 12%);
  transform: translateY(-0.18rem);
}

.product-card > a {
  display: grid;
  align-content: start;
  padding: 0.85rem;
}

.product-media {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.product-media span {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
  background: var(--navy);
  padding: 0.36rem 0.5rem;
  color: #fff;
  font-size: 0.69rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0.85rem 0 0.35rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.22;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.product-buy {
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 0.85rem;
}

.product-buy b {
  color: var(--navy);
  font-size: 1.18rem;
  white-space: nowrap;
}

.product-buy button {
  min-height: 2.7rem;
  background: var(--navy);
  padding: 0.6rem 0.72rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.product-consult em {
  color: var(--muted);
  font-size: 0.83rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.catalog-link {
  display: inline-flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 0.6rem 0.72rem;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.campaign-band {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(18rem, 31rem);
  min-height: 31rem;
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  overflow: hidden;
  background:
    linear-gradient(120deg, var(--navy), #062c55 54%, #00717f);
  color: #fff;
}

.campaign-copy {
  max-width: 42rem;
  padding: clamp(2rem, 5vw, 5rem);
}

.campaign-copy .kicker {
  color: #8ff8d1;
}

.campaign-copy h2 {
  color: #fff;
}

.campaign-copy p:not(.kicker) {
  max-width: 34rem;
  margin: 1rem 0 1.5rem;
  color: #d7e9f3;
  font-size: 1.08rem;
  line-height: 1.6;
}

.campaign-photo {
  align-self: stretch;
  display: grid;
  min-height: 24rem;
  place-items: center;
  background:
    repeating-linear-gradient(90deg, transparent 0 5rem, rgb(255 255 255 / 11%) 5rem 5.22rem),
    linear-gradient(145deg, rgb(18 184 188 / 80%), rgb(16 218 113 / 42%));
}

.campaign-photo img {
  width: min(80%, 25rem);
  aspect-ratio: 1 / 1;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 1.4rem 4rem rgb(0 10 25 / 28%);
}

.offer-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 1rem;
  background: var(--line);
  border: 1px solid var(--line);
}

.offer-row article {
  min-height: 9rem;
  background: #fff;
  padding: clamp(1rem, 2vw, 1.6rem);
}

.offer-row strong {
  color: var(--navy);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  text-transform: uppercase;
}

.offer-row p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.newsletter {
  display: flex;
  min-height: 18rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.newsletter div {
  max-width: 58rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2.1rem clamp(1rem, 5vw, 4.5rem);
  border-top: 0.28rem solid var(--green);
  background: var(--navy);
  color: #dff8f2;
}

.site-footer div {
  max-width: 33rem;
}

.site-footer img {
  display: block;
  width: min(13rem, 52vw);
  margin-bottom: 0.65rem;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: rgb(223 248 242 / 78%);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.site-footer a {
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 999rem;
  padding: 0.62rem 0.88rem;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.site-footer a:hover {
  border-color: var(--green);
  color: var(--green);
}

.legal-page {
  display: grid;
  width: min(54rem, calc(100% - 2rem));
  gap: 1rem;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.legal-logo {
  width: min(16rem, 100%);
}

.legal-page h1 {
  margin: 1rem 0 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.legal-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.miranda {
  display: grid;
  grid-template-columns: minmax(17rem, 0.82fr) minmax(24rem, 1fr);
  width: min(92rem, calc(100% - 2rem));
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  margin: clamp(2rem, 5vw, 5rem) auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(125deg, #f5fbfd 0 52%, #dff7f2 100%);
  padding: clamp(1rem, 3vw, 2.4rem);
}

.miranda-copy h2 {
  max-width: 8ch;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4.1vw, 4.35rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.miranda-copy p:not(.kicker) {
  max-width: 31rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.miranda-chat {
  display: grid;
  min-height: 26rem;
  grid-template-rows: minmax(13rem, 1fr) auto auto;
  gap: 0.8rem;
  border: 1px solid #bdd8e3;
  border-top: 0.28rem solid var(--green);
  background: #fff;
  padding: clamp(0.8rem, 2vw, 1.2rem);
  box-shadow: 0 1.2rem 3.2rem rgb(6 30 67 / 14%);
}

.miranda-messages {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.miranda-message {
  width: min(88%, 29rem);
  border: 1px solid var(--line);
  padding: 0.8rem 0.9rem;
  line-height: 1.45;
}

.miranda-message strong {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.miranda-message p {
  margin: 0.28rem 0 0;
}

.miranda-message.is-miranda {
  border-left: 0.24rem solid var(--green);
  background: #f3fbfc;
}

.miranda-message.is-customer {
  justify-self: end;
  border-right: 0.24rem solid var(--blue);
  background: var(--navy);
  color: #fff;
}

.miranda-message.is-customer strong {
  color: #bff8df;
}

.miranda-prompts {
  display: flex;
  gap: 0.48rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.miranda-prompts button {
  min-height: 2.35rem;
  flex: 0 0 auto;
  border: 1px solid #bad4df;
  background: var(--sky);
  padding: 0 0.72rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.miranda-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid #abc7d6;
  background: #f7fbfd;
}

.miranda-form input {
  min-width: 0;
  min-height: 3.3rem;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 0.9rem;
  color: var(--ink);
}

.miranda-form button {
  min-width: 6rem;
  background: var(--navy);
  padding: 0 0.9rem;
  color: #fff;
  font-weight: 1000;
  text-transform: uppercase;
}

.miranda-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.whatsapp-float {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.8rem);
  bottom: clamp(0.9rem, 2vw, 1.8rem);
  z-index: 5;
  display: flex;
  min-height: 3.7rem;
  align-items: center;
  gap: 0.62rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 48%);
  border-radius: 999rem;
  background:
    radial-gradient(circle at 18% 4%, rgb(255 255 255 / 42%), transparent 1.15rem),
    linear-gradient(135deg, var(--green), var(--aqua) 58%, var(--blue));
  padding: 0.42rem 0.95rem 0.42rem 0.42rem;
  color: var(--navy);
  box-shadow: 0 1rem 2.8rem rgb(6 30 67 / 28%);
}

.whatsapp-float::after {
  position: absolute;
  inset: auto -15% -50%;
  height: 70%;
  border-radius: 50%;
  background: rgb(255 255 255 / 22%);
  content: "";
  animation: drift 4.5s ease-in-out infinite;
}

.whatsapp-float img {
  z-index: 1;
  width: 2.85rem;
  height: 2.85rem;
  border: 0.16rem solid rgb(255 255 255 / 68%);
  border-radius: 50%;
  background: var(--navy);
  padding: 0.42rem;
}

.whatsapp-float strong {
  z-index: 1;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.whatsapp-dock {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.8rem);
  bottom: clamp(5rem, 7vw, 6rem);
  z-index: 5;
  display: grid;
  width: min(22rem, calc(100% - 1.8rem));
  gap: 0.7rem;
  border-top: 0.28rem solid var(--green);
  background: #fff;
  padding: 1.25rem;
  color: var(--ink);
  box-shadow: 0 1.4rem 4.8rem rgb(6 30 67 / 27%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.8rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.whatsapp-dock.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-dock .kicker {
  margin-bottom: 0;
}

.whatsapp-dock > strong {
  color: var(--navy);
  font-size: 1.45rem;
  text-transform: uppercase;
}

.whatsapp-dock > p:not(.kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.round-close {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: #e9f0f6;
  color: var(--navy);
  font-weight: 1000;
}

.whatsapp-dock .round-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 6;
  background: rgb(4 18 40 / 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 7;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: min(29rem, 100%);
  height: 100dvh;
  gap: 1rem;
  background: #fff;
  padding: clamp(1rem, 3vw, 1.6rem);
  box-shadow: -1rem 0 4rem rgb(4 18 40 / 30%);
  transform: translateX(102%);
  transition: transform 240ms ease;
}

body.cart-open {
  overflow: hidden;
}

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

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

.drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.drawer-head .kicker {
  margin-bottom: 0.28rem;
}

.drawer-head h2,
.dialog-shell h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1;
  text-transform: uppercase;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  overflow-y: auto;
}

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

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.75rem;
  border: 1px solid var(--line);
  border-left: 0.25rem solid var(--green);
  padding: 0.85rem;
}

.cart-row strong {
  color: var(--navy);
}

.cart-row span {
  color: var(--muted);
}

.cart-row button {
  grid-row: span 2;
  align-self: center;
  background: #e9f0f6;
  padding: 0.52rem;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: var(--navy);
}

.cart-total strong {
  font-size: 1.65rem;
}

.checkout-button {
  width: 100%;
}

.checkout-dialog {
  width: min(89rem, calc(100% - 1rem));
  max-height: calc(100dvh - 1rem);
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
}

.checkout-dialog::backdrop {
  background: rgb(3 18 42 / 78%);
  backdrop-filter: blur(0.36rem);
}

.checkout-screen {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(29rem, 1fr) minmax(18rem, 0.56fr);
  max-height: calc(100dvh - 1rem);
  overflow: hidden auto;
  border: 1px solid rgb(255 255 255 / 34%);
  background: #f7fbfd;
  box-shadow: 0 1.7rem 5rem rgb(2 14 36 / 50%);
}

.checkout-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: #fff;
}

.checkout-water {
  position: relative;
  display: grid;
  min-height: 42rem;
  align-content: space-between;
  gap: 2rem;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgb(4 22 54 / 92%), rgb(4 86 138 / 78%)),
    url("./assets/swim-hero.png") center / cover;
  padding: clamp(1.2rem, 2.5vw, 2.2rem);
  color: #fff;
}

.checkout-water::after {
  position: absolute;
  right: -16%;
  bottom: 8%;
  z-index: -1;
  width: 130%;
  height: 9rem;
  border-top: 1px solid rgb(255 255 255 / 35%);
  border-bottom: 1px solid rgb(255 255 255 / 24%);
  background: rgb(20 214 199 / 18%);
  content: "";
  transform: rotate(-8deg);
}

.checkout-brand {
  display: grid;
  gap: 0.72rem;
  justify-items: start;
}

.checkout-brand img {
  width: min(13.5rem, 100%);
  border: 1px solid rgb(255 255 255 / 34%);
  background: rgb(255 255 255 / 92%);
  padding: 0.7rem;
}

.checkout-brand p,
.checkout-water > div > p:not(.kicker) {
  margin: 0;
  color: #dff7ff;
  line-height: 1.55;
}

.checkout-water .kicker {
  color: #9effdd;
}

.checkout-water h2 {
  max-width: 7ch;
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.checkout-lanes {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: lane;
}

.checkout-lanes li {
  display: flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.72rem;
  border: 1px solid rgb(255 255 255 / 28%);
  background: rgb(4 22 54 / 56%);
  padding: 0.45rem 0.65rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.checkout-lanes li::before {
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  place-items: center;
  background: var(--green);
  color: var(--navy);
  content: counter(lane);
  counter-increment: lane;
}

.checkout-form-area {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 2rem);
}

.checkout-panel,
.checkout-summary {
  border: 1px solid #bdd4df;
  background: #fff;
  padding: clamp(0.95rem, 2vw, 1.4rem);
}

.checkout-panel-head .kicker,
.checkout-summary .kicker {
  margin-bottom: 0.35rem;
}

.checkout-panel h3,
.checkout-summary h3 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.checkout-fields label {
  display: grid;
  gap: 0.34rem;
  min-width: 0;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.checkout-fields .field-wide {
  grid-column: 1 / -1;
}

.checkout-fields input {
  width: 100%;
  min-height: 3.25rem;
  min-width: 0;
  border: 1px solid #b9cad7;
  background: #f7fbfd;
  padding: 0 0.82rem;
  color: var(--ink);
  text-transform: none;
}

.quote-button {
  min-height: 3.15rem;
  border: 1px solid var(--blue);
  background: #e6f7f3;
  color: var(--navy);
  font-weight: 1000;
  text-transform: uppercase;
}

.payment-choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.payment-choices label {
  position: relative;
  min-width: 0;
}

.payment-choices input {
  position: absolute;
  opacity: 0;
}

.payment-choices span {
  display: grid;
  min-height: 6.1rem;
  align-content: center;
  gap: 0.2rem;
  border: 1px solid #c3d7e2;
  background: #f3f9fc;
  padding: 0.75rem;
  color: var(--muted);
  line-height: 1.3;
}

.payment-choices strong {
  color: var(--navy);
  text-transform: uppercase;
}

.payment-choices input:checked + span {
  border-color: var(--navy);
  outline: 0.18rem solid rgb(16 218 113 / 44%);
  background: linear-gradient(135deg, #eefcff, #e0fbf1);
}

.checkout-summary {
  display: grid;
  grid-template-rows: auto auto minmax(9rem, 1fr) auto auto auto;
  align-content: start;
  gap: 0.8rem;
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
  background:
    linear-gradient(180deg, #fff, #edf9fc);
}

.checkout-summary-items {
  display: grid;
  align-content: start;
  gap: 0.58rem;
  max-height: 18rem;
  overflow-y: auto;
}

.checkout-summary-row {
  display: grid;
  gap: 0.26rem;
  border-left: 0.22rem solid var(--aqua);
  background: #f5fbfd;
  padding: 0.72rem;
}

.checkout-summary-row strong {
  color: var(--navy);
  line-height: 1.35;
}

.checkout-summary-row span,
.checkout-note {
  color: var(--muted);
}

.checkout-summary-total {
  display: grid;
  gap: 0.25rem;
  border-top: 1px solid var(--line);
  padding-top: 0.95rem;
  color: var(--navy);
}

.checkout-summary-soft {
  gap: 0.15rem;
  padding-top: 0.72rem;
}

.checkout-summary-total strong {
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

.checkout-summary-total.checkout-summary-soft strong {
  font-size: 1rem;
}

.checkout-note {
  margin: 0;
  border: 1px solid #cce5ed;
  background: #f6fcfd;
  padding: 0.72rem;
  font-size: 0.87rem;
  line-height: 1.45;
}

.checkout-submit {
  width: 100%;
}

.shop-dialog {
  width: min(29rem, calc(100% - 2rem));
  max-height: calc(100dvh - 1rem);
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--ink);
}

.shop-dialog::backdrop {
  background: rgb(4 18 40 / 68%);
  backdrop-filter: blur(0.25rem);
}

.dialog-shell {
  position: relative;
  display: grid;
  max-height: calc(100dvh - 1rem);
  gap: 0.85rem;
  border-top: 0.32rem solid var(--green);
  background: #fff;
  overflow-y: auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  box-shadow: 0 1.5rem 5rem rgb(4 18 40 / 38%);
}

.auth-shell {
  overflow: hidden;
}

.auth-shell > *:not(.auth-watermark) {
  position: relative;
  z-index: 1;
}

.auth-watermark {
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 13rem;
  height: 13rem;
  border: 1.1rem solid rgb(23 176 209 / 13%);
  border-radius: 50%;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  border: 1px solid #c9dde8;
  background: #f2f9fc;
  padding: 0.35rem;
}

.auth-tabs button {
  min-height: 2.75rem;
  background: transparent;
  color: var(--navy);
  font-weight: 1000;
  text-transform: uppercase;
}

.auth-tabs button.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: inset 0 -0.25rem 0 var(--green);
}

.auth-helper {
  margin: 0;
  border-left: 0.22rem solid var(--green);
  background: #f4fbfd;
  padding: 0.72rem 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.forgot-button {
  justify-self: start;
  background: transparent;
  padding: 0;
  color: var(--blue);
  font-weight: 1000;
  text-decoration: underline;
  text-transform: uppercase;
}

.dialog-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
}

.dialog-shell label {
  display: grid;
  gap: 0.34rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.dialog-shell label[hidden],
.forgot-button[hidden] {
  display: none;
}

.dialog-shell input,
.dialog-shell select {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid #b9cad7;
  background: #f7fbfd;
  padding: 0 0.82rem;
  color: var(--ink);
  text-transform: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 9;
  max-width: min(31rem, calc(100% - 2rem));
  border-left: 0.28rem solid var(--green);
  background: var(--navy);
  padding: 0.9rem 1rem;
  color: #fff;
  box-shadow: 0 1rem 2.6rem rgb(4 18 40 / 35%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0.9rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.order-success {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.8rem);
  bottom: clamp(5rem, 7vw, 6.4rem);
  z-index: 8;
  display: grid;
  width: min(24rem, calc(100% - 1.8rem));
  gap: 0.65rem;
  border-top: 0.28rem solid var(--green);
  background: #fff;
  padding: 1.2rem;
  color: var(--ink);
  box-shadow: 0 1.25rem 3.5rem rgb(4 18 40 / 24%);
}

.order-success[hidden] {
  display: none;
}

.order-success .round-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
}

.order-success strong {
  color: var(--navy);
  font-size: 1.25rem;
  text-transform: uppercase;
}

.order-success span {
  color: var(--muted);
  line-height: 1.45;
}

.order-success .primary-button {
  justify-content: center;
  text-decoration: none;
}

.js-ready .reveal,
.js-ready .reveal-item {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.js-ready .reveal-item {
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready .is-visible {
  opacity: 1;
  transform: translateY(0);
}

.template-category .market-catalog,
.template-search .market-catalog,
.template-category .market-catalog .reveal-item,
.template-search .market-catalog .reveal-item {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@keyframes drift {
  50% {
    transform: translateY(-0.45rem) rotate(2deg);
  }
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: minmax(10rem, 1fr) auto;
    min-height: auto;
    gap: 0.75rem;
    padding: 0.8rem 0;
  }

  .brand {
    width: min(15rem, 100%);
  }

  .search-box {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(4 20 46 / 92%) 0 40%, rgb(4 20 46 / 44%) 84%),
      linear-gradient(180deg, rgb(5 20 44 / 5%), rgb(5 20 44 / 66%));
  }

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

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

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

  .campaign-band {
    grid-template-columns: 1fr;
  }

  .miranda {
    grid-template-columns: 1fr;
  }

  .checkout-screen {
    grid-template-columns: minmax(17rem, 0.6fr) 1fr;
  }

  .checkout-summary {
    grid-column: 1 / -1;
    grid-template-rows: auto auto auto auto auto auto;
    border-top: 1px solid #bdd4df;
    border-left: 0;
  }

  .checkout-summary-items {
    max-height: 11rem;
  }

  .kids-stage {
    grid-template-columns: 1fr;
  }

  .kids-grid {
    grid-template-columns: 1fr;
  }

  .campaign-photo {
    order: -1;
    min-height: 20rem;
  }
}

@media (max-width: 640px) {
  .promo-bar {
    justify-content: space-between;
    gap: 0.55rem;
    padding: 0 0.7rem;
    font-size: 0.67rem;
  }

  .promo-bar p {
    max-width: 23ch;
  }

  .header-main,
  .category-nav,
  .hero-copy,
  .retail-shortcuts,
  .kids-zone,
  .gear-shelf,
  .market-catalog,
  .shelf,
  .campaign-band,
  .offer-row,
  .miranda,
  .newsletter {
    width: calc(100% - 1rem);
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    width: min(10.8rem, 100%);
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .account-button,
  .bag-button {
    flex: 1;
    min-width: 0;
  }

  .bag-button {
    padding-right: 0.62rem;
    padding-left: 0.62rem;
  }

  .search-box {
    min-height: 2.9rem;
  }

  .category-nav {
    min-height: 2.9rem;
    gap: 1.2rem;
    font-size: 0.78rem;
  }

  .category-nav a {
    min-height: 2.9rem;
  }

  .hero {
    min-height: min(43rem, calc(100svh - 11rem));
  }

  .hero,
  .kids-zone,
  .gear-shelf,
  .market-catalog,
  .shelf,
  .campaign-band {
    scroll-margin-top: 11.2rem;
  }

  .hero-photo {
    object-position: 65% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgb(4 20 46 / 58%), rgb(4 20 46 / 93%)),
      linear-gradient(90deg, rgb(4 20 46 / 68%), transparent);
  }

  .hero-copy {
    align-content: start;
    padding-top: 3rem;
    padding-bottom: 4.9rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13.3vw, 4.7rem);
  }

  .hero-actions,
  .newsletter {
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .hero-actions a,
  .newsletter button {
    width: 100%;
  }

  .retail-shortcuts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -1rem;
  }

  .retail-shortcuts a {
    min-height: 6.5rem;
    border-bottom: 1px solid var(--line);
  }

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

  .catalog-intro,
  .catalog-tools {
    align-items: start;
    flex-direction: column;
  }

  .product-grid,
  .accessory-grid,
  .catalog-grid,
  .offer-row {
    grid-template-columns: 1fr;
  }

  .miranda {
    min-height: auto;
    padding: 1rem;
  }

  .checkout-dialog {
    width: calc(100% - 0.5rem);
    max-height: calc(100dvh - 0.5rem);
  }

  .checkout-screen {
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 0.5rem);
  }

  .checkout-water {
    min-height: 24rem;
  }

  .checkout-water h2 {
    max-width: 8ch;
  }

  .checkout-form-area {
    padding: 0.75rem;
  }

  .checkout-fields,
  .payment-choices {
    grid-template-columns: 1fr;
  }

  .checkout-fields .field-wide {
    grid-column: auto;
  }

  .payment-choices span {
    min-height: 4.5rem;
  }

  .miranda-copy h2 {
    max-width: none;
  }

  .miranda-chat {
    min-height: 24rem;
  }

  .miranda-message {
    width: 100%;
  }

  .miranda-form {
    grid-template-columns: 1fr;
  }

  .miranda-form button {
    min-height: 2.9rem;
  }

  .kids-stage {
    min-height: auto;
    padding: 1rem;
  }

  .kids-copy h2 {
    max-width: none;
  }

  .kids-pick,
  .kids-card,
  .kids-card > a:first-child {
    grid-template-columns: 1fr;
  }

  .kids-pick-media,
  .kids-card-media,
  .kids-card > a:first-child p,
  .kids-card > a:first-child h3,
  .kids-card > a:first-child span {
    grid-column: auto;
  }

  .kids-card-media {
    grid-row: auto;
  }

  .kids-card > button,
  .kids-link {
    width: 100%;
  }

  .campaign-photo img {
    width: min(76%, 18rem);
  }

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float {
    padding-right: 0.42rem;
  }
}

/* HeroBand integrated search bar */
.store-header .brand {
  display: none;
}

.header-main {
  grid-template-columns: minmax(22rem, 1fr) auto;
}

.search-box {
  grid-template-columns: minmax(9rem, 15rem) minmax(9rem, 1fr) 4.2rem;
  width: min(54rem, 100%);
  min-height: 4.65rem;
  align-items: center;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #12b8bc, #06264f) border-box;
  box-shadow:
    0 1rem 2.2rem rgb(6 30 67 / 10%),
    0 0 0 0.28rem rgb(18 184 188 / 5%);
}

.search-logo {
  display: grid;
  min-width: 0;
  height: 100%;
  align-items: center;
  padding-left: clamp(1rem, 2vw, 1.65rem);
  padding-right: clamp(0.55rem, 1.2vw, 1rem);
}

.search-logo img {
  width: min(13.2rem, 100%);
  max-height: 3.1rem;
  object-fit: contain;
}

.search-box input {
  height: 100%;
  padding: 0 0.8rem;
  color: #6f7480;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.search-box input::placeholder {
  color: #74777d;
  opacity: 1;
}

.search-box button {
  height: 100%;
  border-left: 0;
  background: transparent;
  color: #70747a;
}

.search-box button span {
  width: 1.55rem;
  height: 1.55rem;
  border-width: 0.16rem;
}

.search-box button span::after {
  right: -0.58rem;
  bottom: -0.36rem;
  width: 0.82rem;
  height: 0.16rem;
}

.search-box:focus-within {
  box-shadow:
    0 1.15rem 2.4rem rgb(6 30 67 / 13%),
    0 0 0 0.32rem rgb(18 184 188 / 12%);
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .search-box {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .search-box {
    grid-template-columns: minmax(7rem, 9.6rem) minmax(0, 1fr) 3.35rem;
    min-height: 3.55rem;
    border-width: 1.5px;
  }

  .search-logo {
    padding-left: 0.9rem;
    padding-right: 0.45rem;
  }

  .search-logo img {
    width: min(8.9rem, 100%);
    max-height: 2.2rem;
  }

  .search-box input {
    padding: 0 0.35rem;
    font-size: 0.95rem;
  }

  .search-box button span {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js-ready .reveal,
  .js-ready .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* Hero Band premium refinement layer */
:root {
  --navy: #06264f;
  --navy-2: #0b3f78;
  --blue: #126fb3;
  --aqua: #17b7c8;
  --green: #19c978;
  --mint: #e8faf4;
  --sky: #eef8fb;
  --ink: #10243d;
  --muted: #607086;
  --line: #dce9ef;
  --soft-shadow: 0 18px 50px rgb(12 47 83 / 10%);
  --button-radius: 999px;
}

body {
  background: #fff;
  color: var(--ink);
}

.promo-bar {
  min-height: 2.35rem;
  background: #06264f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.promo-bar button,
.primary-button,
.ghost-button,
.outline-button,
.product-buy button,
.market-buy button,
.catalog-link,
.kids-card > button,
.kids-link,
.kids-pick button,
.footer-whatsapp,
.miranda-form button,
.catalog-tabs button {
  border-radius: var(--button-radius);
}

.promo-bar button {
  min-height: 1.65rem;
  background: #dff8ef;
  color: var(--navy);
  font-size: 0.7rem;
}

.promo-bar a {
  min-height: 1.65rem;
  border-radius: var(--button-radius);
  background: #dff8ef;
  padding: 0.42rem 0.72rem;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.store-header {
  border-bottom: 1px solid rgb(220 233 239 / 86%);
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 10px 30px rgb(13 45 76 / 5%);
}

.header-main {
  grid-template-columns: minmax(9rem, 13rem) minmax(18rem, 36rem) auto;
  min-height: 4.85rem;
  gap: clamp(0.9rem, 2vw, 2.1rem);
}

.brand {
  width: min(100%, 12.6rem);
}

.nav-toggle {
  display: none;
  min-height: 2.65rem;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: #fff;
  padding: 0 1rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 850;
}

.search-box {
  min-height: 2.95rem;
  border-color: var(--line);
  border-radius: var(--button-radius);
  background: #f8fbfc;
  overflow: hidden;
}

.search-box input::placeholder {
  color: #8190a0;
}

.search-box button {
  border-left-color: var(--line);
}

.header-actions {
  gap: 0.55rem;
}

.account-button,
.login-button,
.bag-button {
  min-width: auto;
  min-height: 2.85rem;
  border-radius: var(--button-radius);
  padding: 0.45rem 0.95rem;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: none;
}

.account-button,
.login-button {
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
}

.account-button::after,
.login-button::after {
  content: none;
}

.account-button span,
.login-button span,
.bag-button span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: none;
}

.bag-button {
  background: var(--navy);
  color: #fff;
}

.bag-button strong {
  background: var(--green);
  color: #06264f;
}

.category-nav {
  min-height: 2.9rem;
  gap: clamp(1rem, 2.3vw, 2.4rem);
  color: #213b58;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: none;
}

.category-nav a {
  min-height: 2.9rem;
}

.category-nav a:last-child {
  color: var(--blue);
}

.category-nav a::after {
  height: 0.14rem;
  border-radius: 999px;
  background: var(--green);
}

.kicker {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.hero {
  min-height: min(42rem, calc(100svh - 7.75rem));
  background: #082a54;
}

.hero-photo {
  object-position: 58% center;
  transform: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(4 24 52 / 88%) 0 34%, rgb(4 24 52 / 52%) 56%, rgb(4 24 52 / 8%) 100%),
    linear-gradient(180deg, rgb(4 24 52 / 5%), rgb(4 24 52 / 36%));
}

.hero-copy {
  padding-top: clamp(3rem, 7vw, 6.2rem);
  padding-bottom: clamp(4.4rem, 8vw, 7rem);
}

.hero-copy .kicker {
  color: #a4efd2;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.85rem, 6vw, 5.9rem);
  line-height: 0.96;
  text-transform: none;
}

.hero-copy > p:not(.kicker) {
  max-width: 35rem;
  color: #ecf8fb;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.primary-button,
.ghost-button,
.outline-button {
  min-height: 3.05rem;
  padding: 0.82rem 1.35rem;
  font-weight: 850;
}

.primary-button {
  background: var(--green);
  color: #06264f;
  box-shadow: 0 12px 26px rgb(25 201 120 / 23%);
}

.ghost-button {
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 10%);
  backdrop-filter: blur(10px);
}

.retail-shortcuts {
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.retail-shortcuts a {
  min-height: 7.2rem;
}

.retail-shortcuts span,
.retail-shortcuts strong,
.section-head > a,
.catalog-tools p,
.catalog-tabs button,
.product-media span,
.market-chip,
.product-buy button,
.market-buy button,
.catalog-link,
.offer-row strong {
  text-transform: none;
}

.retail-shortcuts strong {
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.kids-zone,
.gear-shelf,
.market-catalog,
.shelf,
.campaign-band,
.offer-row,
.miranda,
.newsletter {
  width: min(88rem, calc(100% - 2rem));
}

.kids-zone,
.gear-shelf,
.market-catalog,
.shelf {
  padding-top: clamp(3.8rem, 6.5vw, 6.2rem);
}

.kids-stage,
.miranda {
  border-radius: 8px;
  border-color: var(--line);
  background:
    linear-gradient(135deg, #f8fcfd, #fff 58%),
    #fff;
  box-shadow: 0 18px 50px rgb(12 47 83 / 7%);
}

.kids-copy h2,
.section-head h2,
.catalog-intro h2,
.newsletter h2,
.campaign-copy h2,
.miranda-copy h2 {
  color: var(--navy);
  letter-spacing: 0;
  text-transform: none;
}

.section-head {
  margin-bottom: 1.15rem;
}

.section-head > a {
  border-bottom: 1px solid var(--green);
  font-weight: 800;
}

.product-grid,
.accessory-grid,
.catalog-grid {
  gap: 1.15rem;
}

.product-card,
.market-card,
.kids-card {
  border-color: var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 32px rgb(12 47 83 / 6%);
  overflow: hidden;
}

.product-card:hover,
.market-card:hover,
.kids-card:hover {
  border-color: rgb(23 183 200 / 58%);
  box-shadow: 0 18px 45px rgb(12 47 83 / 12%);
  transform: translateY(-0.12rem);
}

.product-card > a,
.market-card {
  padding: 1rem;
}

.product-media,
.market-media,
.kids-card-media {
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 20%, #fff 0 18%, transparent 18.2%),
    linear-gradient(145deg, #eef8fb, #fff 68%);
}

.product-media span,
.market-chip {
  border-radius: 999px;
  background: #e8faf4;
  color: var(--navy);
  font-weight: 800;
}

.product-card h3,
.market-card h3 {
  min-height: 2.7em;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
}

.product-card p {
  min-height: 2.7em;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-buy,
.market-buy {
  min-height: 4.7rem;
  border-top-color: var(--line);
}

.product-buy b,
.market-buy b {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 900;
}

.product-buy button,
.market-buy button,
.catalog-link {
  background: var(--navy);
  color: #fff;
  font-weight: 850;
}

.product-buy button:hover,
.market-buy button:hover,
.catalog-link:hover,
.primary-button:hover,
.outline-button:hover {
  filter: brightness(0.97);
}

.catalog-tools {
  border-color: var(--line);
}

.catalog-tabs button {
  border-color: var(--line);
  font-weight: 800;
}

.catalog-tabs a {
  border-color: var(--line);
  border-radius: var(--button-radius);
  font-weight: 800;
  text-transform: none;
}

.catalog-tabs button.is-active {
  background: var(--navy);
}

.catalog-tabs a.is-active {
  background: var(--navy);
}

.campaign-band {
  min-height: 28rem;
  border-radius: 8px;
  background:
    linear-gradient(120deg, #06264f, #0a4773 58%, #0b838c);
}

.campaign-photo {
  background:
    linear-gradient(145deg, rgb(255 255 255 / 12%), rgb(25 201 120 / 24%));
}

.campaign-photo img {
  border-radius: 8px;
  box-shadow: 0 18px 50px rgb(0 12 28 / 20%);
}

.offer-row {
  border-radius: 8px;
  overflow: hidden;
}

.newsletter {
  min-height: 14rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(17rem, 1.5fr) repeat(3, minmax(10rem, 0.8fr));
  align-items: start;
  gap: clamp(1.2rem, 3vw, 3rem);
  border-top: 0;
  background: #06264f;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 5vw, 4.5rem);
}

.site-footer div {
  max-width: none;
}

.site-footer img {
  width: min(11.5rem, 52vw);
}

.footer-column {
  display: grid;
  gap: 0.65rem;
}

.footer-column strong {
  color: #fff;
  font-size: 0.86rem;
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
  justify-content: start;
}

.site-footer a {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: rgb(223 248 242 / 78%);
  font-weight: 700;
}

.site-footer a:hover {
  color: #fff;
}

.footer-whatsapp {
  justify-self: start;
  min-height: 2.6rem;
  background: var(--green);
  padding: 0.65rem 1rem;
  color: #06264f;
  font-weight: 850;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(19rem, 34rem);
  width: min(88rem, calc(100% - 2rem));
  gap: clamp(1rem, 4vw, 4rem);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.product-detail-media,
.product-detail-copy {
  min-width: 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-gallery:not(.is-expanded) .is-extra {
  display: none;
}

.product-gallery-more {
  width: 100%;
  margin-top: 1rem;
}

.product-gallery img,
.product-detail-media > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, #fff 0 18%, transparent 18.2%),
    linear-gradient(145deg, #eef8fb, #fff 68%);
  object-fit: contain;
}

.product-gallery img {
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-gallery img.is-changing {
  opacity: 0.45;
  transform: scale(0.985);
}

.product-detail-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.product-detail-copy h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  line-height: 1;
}

.product-detail-price {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}

.product-description {
  color: var(--muted);
  line-height: 1.65;
}

.product-form,
.product-variants,
.shipping-box {
  display: grid;
  gap: 0.85rem;
}

.product-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 10px 32px rgb(12 47 83 / 6%);
}

.product-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
}

.product-form select,
.product-form input {
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfc;
  padding: 0 0.9rem;
}

.shipping-box {
  border-left: 0.22rem solid var(--green);
  background: #f4fbfd;
  padding: 1rem;
}

.shipping-box p {
  margin: 0;
}

.pagination {
  justify-content: center;
  margin-top: 2rem;
}

.cart-page {
  width: min(88rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.cart-page-head {
  max-width: 45rem;
  margin-bottom: 1.5rem;
}

.cart-page-head h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.98;
}

.cart-page-head p:not(.kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.cart-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 25rem);
  gap: 1rem;
  align-items: start;
}

.cart-page-items,
.cart-page-summary,
.cart-page-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 32px rgb(12 47 83 / 6%);
}

.cart-page-items {
  display: grid;
  overflow: hidden;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) minmax(6.5rem, 8rem) minmax(6rem, 7rem) minmax(6.5rem, 8rem);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-page-item:last-child {
  border-bottom: 0;
}

.cart-page-image {
  display: grid;
  aspect-ratio: 1 / 1;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 20%, #fff 0 18%, transparent 18.2%),
    linear-gradient(145deg, #eef8fb, #fff 68%);
}

.cart-page-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-page-info {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.cart-page-title {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
}

.cart-page-chip {
  justify-self: start;
  border-radius: 999px;
  background: var(--mint);
  padding: 0.32rem 0.55rem;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 850;
}

.cart-page-quantity {
  display: grid;
  gap: 0.35rem;
}

.cart-page-quantity span,
.cart-page-price span,
.cart-page-subtotal span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.cart-page-quantity input {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fbfc;
  padding: 0 0.85rem;
  color: var(--navy);
  font-weight: 850;
}

.cart-page-price,
.cart-page-subtotal {
  display: grid;
  gap: 0.35rem;
}

.cart-page-price strong,
.cart-page-subtotal strong,
.cart-page-summary dd {
  color: var(--navy);
  font-weight: 900;
}

.cart-page-remove {
  grid-column: 2;
  justify-self: start;
  background: transparent;
  padding: 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: underline;
}

.cart-page-mobile-price {
  display: none;
}

.cart-page-summary {
  position: sticky;
  top: 8rem;
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.cart-page-summary dl {
  display: grid;
  gap: 0.65rem;
  margin: 0;
}

.cart-page-summary dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
}

.cart-page-summary dt,
.cart-page-summary dd {
  margin: 0;
}

.cart-page-total-row {
  align-items: end;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.cart-page-total-row dt,
.cart-page-total-row dd {
  font-size: 1.35rem;
  font-weight: 950;
}

.cart-page-note {
  margin: 0;
  border-left: 0.22rem solid var(--green);
  background: #f4fbfd;
  padding: 0.75rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.cart-page-checkout,
.cart-page-continue {
  width: 100%;
}

.cart-page-empty {
  display: grid;
  gap: 1rem;
  justify-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.cart-page-empty p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(20rem, 1.2fr);
  width: min(88rem, calc(100% - 2rem));
  gap: clamp(1rem, 4vw, 4rem);
  margin: 1rem auto 0;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.faq-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 0.98;
}

.faq-head p:not(.kicker) {
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 32px rgb(12 47 83 / 6%);
  overflow: hidden;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
  padding: 1rem 1.1rem;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: grid;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  content: "+";
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0.95rem 1.1rem 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 780px) {
  .product-detail {
    grid-template-columns: 1fr;
    width: calc(100% - 1rem);
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .cart-page {
    width: calc(100% - 1rem);
  }

  .cart-page-shell {
    grid-template-columns: 1fr;
  }

  .cart-page-summary {
    position: static;
  }

  .cart-page-item {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .cart-page-quantity {
    grid-column: 1 / -1;
  }

  .cart-page-price,
  .cart-page-subtotal {
    display: none;
  }

  .cart-page-mobile-price {
    display: block;
    color: var(--navy);
    font-weight: 900;
  }

  .cart-page-remove {
    grid-column: 1 / -1;
  }

  .faq-section {
    grid-template-columns: 1fr;
    width: calc(100% - 1rem);
  }
}

@media (max-width: 980px) {
  .header-main {
    grid-template-columns: minmax(8rem, 1fr) auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .search-box {
    grid-column: 1 / -1;
  }

  .category-nav {
    display: none;
    width: min(88rem, calc(100% - 1rem));
    padding: 0.45rem 0 0.8rem;
  }

  body.nav-open .category-nav {
    display: flex;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .promo-bar {
    min-height: 2.2rem;
  }

  .header-main,
  .hero-copy,
  .retail-shortcuts,
  .kids-zone,
  .gear-shelf,
  .market-catalog,
  .shelf,
  .campaign-band,
  .offer-row,
  .faq-section,
  .miranda,
  .newsletter {
    width: calc(100% - 1rem);
  }

  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.65rem 0;
  }

  .brand {
    width: min(9.2rem, 100%);
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
    min-height: 2.45rem;
    padding: 0 0.82rem;
  }

  .header-actions {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .account-button,
  .login-button,
  .bag-button {
    min-height: 2.65rem;
  }

  .category-nav {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow: visible;
    border-top: 1px solid var(--line);
  }

  .category-nav a {
    min-height: 2.65rem;
    border-bottom: 1px solid var(--line);
  }

  .category-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo {
    object-position: 72% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgb(4 24 52 / 50%), rgb(4 24 52 / 91%)),
      linear-gradient(90deg, rgb(4 24 52 / 64%), transparent);
  }

  .hero-copy {
    min-height: 34rem;
    justify-content: start;
    padding-top: 2.5rem;
    padding-bottom: 3.2rem;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 11vw, 3.55rem);
  }

  .retail-shortcuts {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .retail-shortcuts a {
    min-height: 5.8rem;
  }

  .product-card h3,
  .market-card h3,
  .product-card p {
    min-height: 0;
  }

  .product-buy,
  .market-buy {
    align-items: stretch;
    flex-direction: column;
  }

  .product-buy button,
  .market-buy button,
  .catalog-link {
    width: 100%;
  }

  .campaign-band {
    border-radius: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

/* Premium product and catalog refinement */
.product-price-stack {
  display: grid;
  gap: 0.18rem;
}

.product-price-stack small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.catalog-hero-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid rgb(23 183 200 / 25%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 86% 20%, rgb(25 201 120 / 18%), transparent 16rem),
    linear-gradient(135deg, #06264f, #0a4773 58%, #0b838c);
  margin-bottom: 1.4rem;
  padding: clamp(1rem, 2.6vw, 1.6rem);
  color: #fff;
}

.catalog-hero-band .kicker {
  color: #8ff8d1;
}

.catalog-hero-band strong {
  display: block;
  max-width: 32rem;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.catalog-hero-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-hero-band li {
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  padding: 0.5rem 0.72rem;
  color: rgb(255 255 255 / 86%);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-detail {
  align-items: start;
}

.product-detail-media {
  position: sticky;
  top: 8rem;
}

.product-gallery img:first-child {
  grid-column: 1 / -1;
}

.product-detail-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  box-shadow: 0 18px 50px rgb(12 47 83 / 8%);
}

.product-meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: -0.25rem;
}

.product-meta-badges span {
  background: rgb(23 183 200 / 9%);
  border: 1px solid rgb(23 183 200 / 28%);
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.45rem 0.65rem;
  text-transform: uppercase;
}

.product-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-trust-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfc;
  padding: 0.72rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
}

.product-trust-list li::before {
  color: var(--green);
  content: "✓ ";
  font-weight: 950;
}

.product-form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.85rem;
}

.product-form-head .kicker {
  margin-bottom: 0.2rem;
}

.product-form-head strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.product-action-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin: -0.15rem 0 0;
}

.product-support-box {
  border: 1px solid rgb(23 183 200 / 30%);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgb(25 201 120 / 12%), transparent 8rem),
    #f8fbfc;
  padding: 1rem;
}

.product-support-box strong {
  color: var(--navy);
}

.product-support-box p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.product-mini-faq {
  display: grid;
  gap: 0.55rem;
}

.product-mini-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-mini-faq summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  padding: 0.9rem 1rem;
}

.product-mini-faq summary::-webkit-details-marker {
  display: none;
}

.product-mini-faq summary::after {
  color: var(--green);
  content: "+";
  float: right;
  font-size: 1.2rem;
  line-height: 1;
}

.product-mini-faq details[open] summary::after {
  content: "-";
}

.product-mini-faq p {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin: 0;
  padding: 0 1rem 1rem;
}

@media (max-width: 780px) {
  .product-detail-media {
    position: static;
  }

  .product-gallery img:first-child {
    grid-column: auto;
  }

  .product-trust-list {
    grid-template-columns: 1fr;
  }

  .product-meta-badges span {
    font-size: 0.68rem;
  }

  .catalog-hero-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-hero-band ul {
    justify-content: flex-start;
  }
}

/* HeroBand commercial polish */
.retail-shortcuts {
  border: 0;
  background:
    linear-gradient(180deg, #fff, #f7fbfd);
}

.retail-shortcuts a {
  position: relative;
  min-height: 8.2rem;
  overflow: hidden;
  border-right-color: rgb(215 226 234 / 72%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.retail-shortcuts a::before {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 5.5rem;
  height: 5.5rem;
  border: 0.7rem solid rgb(18 184 188 / 10%);
  border-radius: 50%;
  content: "";
}

.retail-shortcuts a:hover {
  background: #f0fbfd;
  transform: translateY(-0.08rem);
}

.retail-shortcuts em {
  max-width: 14rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.35;
}

.product-card {
  grid-template-rows: 1fr auto;
}

.product-card > a {
  gap: 0.55rem;
}

.product-media {
  border: 1px solid rgb(215 226 234 / 72%);
}

.product-media span {
  top: 0.65rem;
  left: 0.65rem;
  box-shadow: 0 0.45rem 1rem rgb(6 30 67 / 10%);
}

.product-card h3 {
  margin-top: 0.45rem;
  min-height: 2.55em;
}

.product-buy {
  background:
    linear-gradient(180deg, #fff, #f8fbfc);
}

.product-price-stack small {
  display: block;
  margin-top: 0.12rem;
}

.catalog-link {
  min-width: 7.1rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 0, rgb(25 201 120 / 20%), transparent 2.4rem),
    var(--navy);
}

.catalog-link:hover {
  background:
    radial-gradient(circle at 78% 0, rgb(25 201 120 / 30%), transparent 2.7rem),
    #092b59;
}

.campaign-band {
  position: relative;
  isolation: isolate;
  min-height: 25rem;
  margin-top: clamp(3rem, 6vw, 5rem);
}

.campaign-band::after {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.campaign-copy h2 {
  max-width: 11ch;
  color: #fff;
}

.campaign-copy p:not(.kicker) {
  color: rgb(255 255 255 / 84%);
  line-height: 1.6;
}

.product-detail {
  grid-template-columns: minmax(20rem, 1.05fr) minmax(20rem, 31rem);
}

.product-detail-copy h1 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

.product-form {
  border-color: rgb(25 201 120 / 34%);
  background:
    linear-gradient(180deg, #fff, #f7fcfb);
}

.product-form .primary-button {
  min-height: 3.35rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--green), #19c978);
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
  box-shadow: 0 0.85rem 1.8rem rgb(25 201 120 / 24%);
}

.product-form .primary-button:hover {
  filter: brightness(1.02);
  transform: translateY(-0.08rem);
}

.product-form-head {
  align-items: start;
}

.product-form-head strong {
  max-width: 14rem;
  text-align: right;
}

.product-trust-list {
  grid-template-columns: 1fr;
}

.product-trust-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 0.72rem;
}

.product-trust-list li::before {
  display: grid;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  border-radius: 50%;
  background: rgb(25 201 120 / 14%);
  content: "\2713";
}

@media (max-width: 780px) {
  .retail-shortcuts em {
    font-size: 0.78rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-form-head strong {
    text-align: left;
  }
}

/* Product gallery, color swatches and mobile purchase polish */
.product-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
}

.product-gallery [data-gallery-image] {
  cursor: pointer;
}

.product-gallery [data-gallery-image]:first-child {
  grid-column: 1 / -1;
  cursor: default;
}

.product-gallery [data-gallery-image]:not(:first-child) {
  aspect-ratio: 1 / 1;
  padding: 0.35rem;
  background:
    linear-gradient(145deg, #f7fbfd, #fff);
}

.product-gallery [data-gallery-image].is-active:not(:first-child) {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgb(25 201 120 / 18%);
}

.product-gallery [data-gallery-image]:focus-visible {
  outline: 3px solid rgb(18 184 188 / 35%);
  outline-offset: 2px;
}

.shipping-box {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(23 183 200 / 20%);
  border-left: 0.28rem solid var(--green);
  border-radius: 8px;
}

.shipping-box::after {
  position: absolute;
  right: -1.6rem;
  bottom: -1.9rem;
  width: 6rem;
  height: 6rem;
  border: 0.7rem solid rgb(18 184 188 / 8%);
  border-radius: 50%;
  content: "";
}

@media (max-width: 640px) {
  .promo-bar {
    gap: 0.45rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.72rem;
  }

  .promo-bar a {
    min-height: 1.65rem;
    padding: 0.36rem 0.5rem;
    font-size: 0.66rem;
  }

  .header-main {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .search-box {
    min-height: 2.85rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .account-button,
  .login-button,
  .bag-button {
    min-width: 0;
    min-height: 2.35rem;
    flex: 1 1 0;
    padding: 0.35rem 0.5rem;
    font-size: 0.78rem;
  }

  .account-button span,
  .login-button span,
  .bag-button span {
    font-size: 0.58rem;
  }

  .product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-gallery [data-gallery-image]:first-child {
    grid-column: 1 / -1;
  }

  .product-detail-copy {
    padding: 0.9rem;
  }

}

/* Final header search with integrated logo */
.store-header .header-main {
  display: grid !important;
  grid-template-columns: minmax(24rem, 46rem) auto !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(1rem, 2vw, 2rem) !important;
  min-height: 5rem !important;
}

.store-header > .header-main > .brand {
  display: none !important;
}

.store-header .search-box {
  display: grid !important;
  grid-template-columns: minmax(8.5rem, 12rem) minmax(0, 1fr) 3.6rem !important;
  align-items: center !important;
  width: min(46rem, 100%) !important;
  height: 3.65rem !important;
  min-height: 3.65rem !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  border-radius: 999px !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #13b8a8, #06285d) border-box !important;
  box-shadow: 0 0.8rem 1.8rem rgb(6 30 67 / 8%) !important;
}

.store-header .search-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  padding: 0 0.85rem 0 1rem !important;
  border-right: 1px solid rgb(6 40 93 / 10%) !important;
}

.store-header .search-logo img {
  display: block !important;
  width: min(10.5rem, 100%) !important;
  max-width: 10.5rem !important;
  max-height: 2.35rem !important;
  object-fit: contain !important;
}

.store-header .search-box input {
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  padding: 0 0.7rem !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--navy) !important;
  font-size: 1.06rem !important;
  line-height: 1 !important;
}

.store-header .search-box input::placeholder {
  color: rgb(0 24 64 / 58%) !important;
}

.store-header .search-box button {
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  place-items: center !important;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid rgb(6 40 93 / 10%) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.store-header .search-box button span {
  display: block !important;
  width: 1.45rem !important;
  height: 1.45rem !important;
  border: 0.18rem solid var(--navy) !important;
  border-radius: 50% !important;
  position: relative !important;
}

.store-header .search-box button span::after {
  position: absolute !important;
  right: -0.42rem !important;
  bottom: -0.35rem !important;
  width: 0.65rem !important;
  height: 0.18rem !important;
  border-radius: 999px !important;
  background: var(--navy) !important;
  content: "" !important;
  transform: rotate(45deg) !important;
}

@media (max-width: 980px) {
  .store-header .header-main {
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  .store-header .nav-toggle {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .store-header .search-box {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    width: 100% !important;
  }

  .store-header .header-actions {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
  }
}

@media (max-width: 640px) {
  .store-header .header-main {
    gap: 0.65rem !important;
    min-height: 0 !important;
    padding: 0.65rem 0 !important;
  }

  .store-header .search-box {
    grid-template-columns: minmax(6.8rem, 8.7rem) minmax(0, 1fr) 3rem !important;
    height: 3.1rem !important;
    min-height: 3.1rem !important;
  }

  .store-header .search-logo {
    padding: 0 0.55rem 0 0.75rem !important;
  }

  .store-header .search-logo img {
    width: min(8rem, 100%) !important;
    max-height: 2rem !important;
  }

  .store-header .search-box input {
    padding: 0 0.35rem !important;
    font-size: 0.88rem !important;
  }

  .store-header .search-box button span {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }
}

/* Header account, client area and bag premium pills */
.store-header .header-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.85rem !important;
}

.store-header .account-button,
.store-header .login-button,
.store-header .bag-button {
  position: relative !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.7rem !important;
  min-width: 0 !important;
  min-height: 3.55rem !important;
  padding: 0.55rem 1.25rem !important;
  overflow: hidden !important;
  border: 2px solid transparent !important;
  border-radius: 999px !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, rgb(6 30 67 / 82%), #082a5b) border-box !important;
  color: var(--navy) !important;
  box-shadow:
    0 0.65rem 1.45rem rgb(6 30 67 / 10%),
    inset 0 0 0 1px rgb(255 255 255 / 70%) !important;
  font-size: clamp(0.92rem, 1vw, 1.08rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease !important;
}

.store-header .account-button::after,
.store-header .login-button::after {
  content: none !important;
}

.store-header .account-button:hover,
.store-header .login-button:hover,
.store-header .bag-button:hover {
  transform: translateY(-0.08rem) !important;
  box-shadow:
    0 0.9rem 1.8rem rgb(6 30 67 / 14%),
    inset 0 0 0 1px rgb(255 255 255 / 80%) !important;
}

.store-header .bag-button {
  border-color: transparent !important;
  background:
    linear-gradient(#f9ffff, #f9ffff) padding-box,
    linear-gradient(90deg, #33d7ca, #10a596) border-box !important;
  box-shadow:
    0 0.75rem 1.8rem rgb(18 184 188 / 18%),
    0 0 1.4rem rgb(18 184 188 / 12%) !important;
}

.store-header .action-copy {
  display: inline !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.store-header .action-icon {
  position: relative !important;
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: 1.85rem !important;
  height: 1.85rem !important;
  color: var(--navy) !important;
}

.store-header .action-icon-account::before {
  position: absolute !important;
  top: 0.05rem !important;
  left: 50% !important;
  width: 0.78rem !important;
  height: 0.78rem !important;
  border-radius: 50% !important;
  background: currentColor !important;
  content: "" !important;
  transform: translateX(-50%) !important;
}

.store-header .action-icon-account::after {
  position: absolute !important;
  right: 0.12rem !important;
  bottom: 0.08rem !important;
  left: 0.12rem !important;
  height: 0.85rem !important;
  border-radius: 1rem 1rem 0.35rem 0.35rem !important;
  background: currentColor !important;
  content: "" !important;
}

.store-header .action-icon-client::before {
  position: absolute !important;
  top: 0.04rem !important;
  left: 0.2rem !important;
  width: 0.68rem !important;
  height: 0.68rem !important;
  border-radius: 50% !important;
  background: currentColor !important;
  box-shadow: 0.06rem 0.82rem 0 0.18rem currentColor !important;
  content: "" !important;
}

.store-header .action-icon-client::after {
  position: absolute !important;
  right: 0.02rem !important;
  bottom: 0.02rem !important;
  width: 0.76rem !important;
  height: 0.76rem !important;
  border: 0.16rem solid currentColor !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle, transparent 0.18rem, currentColor 0.19rem, currentColor 0.24rem, transparent 0.25rem),
    linear-gradient(currentColor, currentColor) center / 0.12rem 100% no-repeat,
    linear-gradient(currentColor, currentColor) center / 100% 0.12rem no-repeat !important;
  content: "" !important;
  transform: rotate(18deg) !important;
}

.store-header .action-icon-bag {
  color: #06345f !important;
}

.store-header .action-icon-bag::before {
  position: absolute !important;
  right: 0.22rem !important;
  bottom: 0.08rem !important;
  left: 0.22rem !important;
  height: 1.28rem !important;
  border: 0.18rem solid currentColor !important;
  border-radius: 0.22rem 0.22rem 0.38rem 0.38rem !important;
  content: "" !important;
}

.store-header .action-icon-bag::after {
  position: absolute !important;
  top: 0.1rem !important;
  left: 50% !important;
  width: 0.85rem !important;
  height: 0.72rem !important;
  border: 0.18rem solid currentColor !important;
  border-bottom: 0 !important;
  border-radius: 0.7rem 0.7rem 0 0 !important;
  content: "" !important;
  transform: translateX(-50%) !important;
}

.store-header .bag-button strong {
  display: grid !important;
  width: 1.68rem !important;
  height: 1.68rem !important;
  margin-left: -0.25rem !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: var(--green) !important;
  color: var(--navy) !important;
  font-size: 0.88rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

@media (max-width: 1180px) {
  .store-header .header-actions {
    gap: 0.55rem !important;
  }

  .store-header .account-button,
  .store-header .login-button,
  .store-header .bag-button {
    min-height: 3.2rem !important;
    padding: 0.5rem 0.82rem !important;
    font-size: 0.9rem !important;
  }

  .store-header .action-icon {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }
}

@media (max-width: 640px) {
  .store-header .header-actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.45rem !important;
    width: 100% !important;
  }

  .store-header .account-button,
  .store-header .login-button,
  .store-header .bag-button {
    width: 100% !important;
    min-height: 2.75rem !important;
    padding: 0.42rem 0.44rem !important;
    gap: 0.34rem !important;
    font-size: 0.74rem !important;
  }

  .store-header .action-icon {
    width: 1.14rem !important;
    height: 1.14rem !important;
  }

  .store-header .bag-button strong {
    width: 1.35rem !important;
    height: 1.35rem !important;
    font-size: 0.74rem !important;
  }
}

/* Header buttons image-match refinement */
.store-header .header-actions {
  gap: 1rem !important;
}

.store-header .account-button,
.store-header .login-button,
.store-header .bag-button {
  min-height: 4.15rem !important;
  padding: 0.68rem 1.55rem !important;
  gap: 0.85rem !important;
  border-width: 2px !important;
  border-radius: 999px !important;
  background:
    linear-gradient(180deg, #fff, #fbfdff) padding-box,
    linear-gradient(90deg, #061f4b, #062a5d) border-box !important;
  color: #062657 !important;
  box-shadow:
    0 1.05rem 1.9rem rgb(6 31 75 / 9%),
    inset 0 0 0 1px rgb(255 255 255 / 90%) !important;
  font-size: 1.16rem !important;
  font-weight: 900 !important;
}

.store-header .account-button {
  min-width: 10.3rem !important;
}

.store-header .login-button {
  min-width: 16.4rem !important;
}

.store-header .bag-button {
  min-width: 12.1rem !important;
  background:
    linear-gradient(180deg, #fff, #fbfffe) padding-box,
    linear-gradient(90deg, #30d4c7, #0bb7a5) border-box !important;
  box-shadow:
    0 1.05rem 2.05rem rgb(11 183 165 / 17%),
    0 0 1.3rem rgb(11 183 165 / 12%),
    inset 0 0 0 1px rgb(255 255 255 / 90%) !important;
}

.store-header .action-icon {
  width: 2.15rem !important;
  height: 2.15rem !important;
}

.store-header .action-icon svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.store-header .action-icon svg circle,
.store-header .action-icon svg path {
  fill: currentColor !important;
  stroke: none !important;
}

.store-header .action-icon-client svg .gear-ring,
.store-header .action-icon-client svg .gear-spokes,
.store-header .action-icon-bag svg .bag-handle,
.store-header .action-icon-bag svg .bag-body,
.store-header .action-icon-bag svg .bag-wave {
  fill: none !important;
  stroke: currentColor !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  stroke-width: 2.4 !important;
}

.store-header .action-icon-client svg .gear-spokes {
  stroke-width: 1.9 !important;
}

.store-header .action-icon-bag {
  color: #062657 !important;
}

.store-header .action-icon-bag svg .bag-handle,
.store-header .action-icon-bag svg .bag-wave {
  stroke: #43d7cb !important;
}

.store-header .bag-button strong {
  position: absolute !important;
  top: 0.48rem !important;
  right: 0.6rem !important;
  width: 1.55rem !important;
  height: 1.55rem !important;
  margin: 0 !important;
  background: var(--green) !important;
  color: var(--navy) !important;
  font-size: 0.78rem !important;
}

.store-header .action-icon-account::before,
.store-header .action-icon-account::after,
.store-header .action-icon-client::before,
.store-header .action-icon-client::after,
.store-header .action-icon-bag::before,
.store-header .action-icon-bag::after {
  content: none !important;
}

@media (max-width: 1180px) {
  .store-header .header-actions {
    gap: 0.55rem !important;
  }

  .store-header .account-button,
  .store-header .login-button,
  .store-header .bag-button {
    min-height: 3.4rem !important;
    padding: 0.5rem 0.82rem !important;
    gap: 0.46rem !important;
    font-size: 0.84rem !important;
  }

  .store-header .account-button,
  .store-header .login-button,
  .store-header .bag-button {
    min-width: 0 !important;
  }

  .store-header .action-icon {
    width: 1.55rem !important;
    height: 1.55rem !important;
  }
}

@media (max-width: 640px) {
  .store-header .account-button,
  .store-header .login-button,
  .store-header .bag-button {
    min-height: 2.85rem !important;
    padding: 0.42rem 0.42rem !important;
    gap: 0.25rem !important;
    font-size: 0.72rem !important;
  }

  .store-header .action-icon {
    width: 1.1rem !important;
    height: 1.1rem !important;
  }
}

/* Mobile header and cart readability */
@media (max-width: 640px) {
  .store-header .header-main {
    width: calc(100% - 1rem) !important;
    gap: 0.5rem !important;
    padding: 0.45rem 0 0.6rem !important;
  }

  .store-header .nav-toggle {
    min-height: 2.35rem !important;
    padding: 0.35rem 0.9rem !important;
    font-size: 0.82rem !important;
  }

  .store-header .search-box {
    grid-template-columns: minmax(6.3rem, 7.2rem) minmax(0, 1fr) 2.65rem !important;
    height: 2.8rem !important;
    min-height: 2.8rem !important;
  }

  .store-header .search-logo {
    padding: 0 0.45rem 0 0.65rem !important;
  }

  .store-header .search-logo img {
    width: min(6.75rem, 100%) !important;
    max-height: 1.7rem !important;
  }

  .store-header .search-box input {
    font-size: 0.76rem !important;
  }

  .store-header .search-box button span {
    width: 1.08rem !important;
    height: 1.08rem !important;
    border-width: 0.15rem !important;
  }

  .store-header .header-actions {
    grid-template-columns: 0.88fr 1.22fr 0.9fr !important;
    gap: 0.35rem !important;
  }

  .store-header .account-button,
  .store-header .login-button,
  .store-header .bag-button {
    min-height: 2.35rem !important;
    padding: 0.3rem 0.36rem !important;
    gap: 0.22rem !important;
    font-size: 0.64rem !important;
    border-width: 1.5px !important;
  }

  .store-header .action-icon {
    width: 0.95rem !important;
    height: 0.95rem !important;
  }

  .store-header .bag-button strong {
    top: 0.16rem !important;
    right: 0.2rem !important;
    width: 1.22rem !important;
    height: 1.22rem !important;
    font-size: 0.65rem !important;
  }

  #shoppingCartPage.cart-page {
    padding-top: 2rem !important;
  }

  #shoppingCartPage .cart-page-head {
    margin-bottom: 1rem !important;
  }

  #shoppingCartPage .cart-page-head h1 {
    font-size: clamp(2rem, 11vw, 3rem) !important;
  }
}

/* Clean premium catalog cards */
.product-card {
  grid-template-rows: auto 1fr auto !important;
  border: 1px solid #d7e7ef !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, #fff 0%, #fafdff 100%) !important;
  box-shadow: 0 1rem 2.8rem rgb(6 38 79 / 6%) !important;
}

.product-card::before {
  display: none !important;
}

.product-card:hover {
  border-color: #39d4c4 !important;
  box-shadow: 0 1.25rem 3.2rem rgb(6 38 79 / 11%), 0 0 0 1px rgb(57 212 196 / 18%) !important;
  transform: translateY(-3px) !important;
}

.product-card > a {
  grid-template-rows: auto auto !important;
  gap: 0.85rem !important;
  padding: 1rem 1rem 0 !important;
  color: inherit !important;
  text-decoration: none !important;
}

.product-card .product-media {
  aspect-ratio: 1 / 0.82 !important;
  border: 1px solid #e3edf2 !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 52% 24%, #fff 0 34%, #eef8fb 100%) !important;
  padding: 0.75rem !important;
}

.product-card .product-media img {
  object-fit: contain !important;
  transform-origin: center !important;
}

.product-card:hover .product-media img {
  transform: scale(1.025) !important;
}

.product-card .product-media span {
  max-width: calc(100% - 1.4rem) !important;
  overflow: hidden !important;
  border: 1px solid rgb(57 212 196 / 30%) !important;
  background: #ecfffb !important;
  color: #06264f !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.product-card h3 {
  display: -webkit-box !important;
  min-height: 3.15rem !important;
  overflow: hidden !important;
  margin: 0 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  color: #061f4b !important;
  font-size: clamp(1rem, 1.1vw, 1.18rem) !important;
  font-weight: 950 !important;
  line-height: 1.08 !important;
  text-transform: none !important;
}

.product-card p {
  display: none !important;
}

.product-buy {
  min-height: 4.8rem !important;
  align-items: center !important;
  margin: 1rem 1rem 1rem !important;
  border-top: 1px solid #dce8ee !important;
  background: transparent !important;
  padding-top: 0.9rem !important;
}

.product-price-stack {
  min-width: 0 !important;
}

.product-price-stack b {
  color: #061f4b !important;
  font-size: 1.22rem !important;
  line-height: 1 !important;
}

.product-price-stack small {
  color: #5c6e82 !important;
  font-size: 0.66rem !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.catalog-link {
  min-width: 6.8rem !important;
  min-height: 2.35rem !important;
  border: 1px solid #06264f !important;
  background: #06264f !important;
  box-shadow: 0 0.65rem 1.2rem rgb(6 38 79 / 14%) !important;
  color: #fff !important;
}

.catalog-link:hover {
  border-color: #22d6bf !important;
  background: #22c879 !important;
  color: #06264f !important;
}

@media (max-width: 640px) {
  .product-card > a {
    padding: 0.8rem 0.8rem 0 !important;
  }

  .product-card .product-media {
    aspect-ratio: 1 / 0.78 !important;
  }

  .product-card h3 {
    min-height: 2.55rem !important;
    font-size: 0.98rem !important;
    -webkit-line-clamp: 2 !important;
  }

  .product-buy {
    min-height: 0 !important;
    margin: 0.85rem 0.8rem 0.8rem !important;
  }

  .catalog-link {
    width: auto !important;
    min-width: 6rem !important;
  }
}

/* Home commercial paths and quick-buy cards */
.home-commerce-path {
  display: grid !important;
  width: min(88rem, calc(100% - 2rem)) !important;
  gap: 1.2rem !important;
  margin: clamp(2rem, 4vw, 3.5rem) auto 0 !important;
}

.home-path-head {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 28rem) !important;
  gap: 1.5rem !important;
  align-items: end !important;
  border-bottom: 1px solid #dce8ee !important;
  padding-bottom: 1.2rem !important;
}

.home-path-head h2 {
  max-width: 42rem !important;
  margin: 0 !important;
  color: #06264f !important;
  font-size: clamp(2rem, 4vw, 4rem) !important;
  line-height: 0.98 !important;
}

.home-path-head p:not(.kicker) {
  margin: 0 !important;
  color: #617189 !important;
  line-height: 1.55 !important;
}

.home-path-grid {
  display: grid !important;
  grid-template-columns: 1.15fr repeat(3, 1fr) !important;
  gap: 0.9rem !important;
}

.home-path-card {
  position: relative !important;
  display: grid !important;
  min-height: 10.5rem !important;
  align-content: end !important;
  gap: 0.55rem !important;
  overflow: hidden !important;
  border: 1px solid #d7e7ef !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 100% 0, rgb(57 212 196 / 18%), transparent 7rem),
    linear-gradient(180deg, #fff, #f7fbfd) !important;
  padding: 1.1rem !important;
  color: #06264f !important;
  text-decoration: none !important;
  box-shadow: 0 1rem 2.6rem rgb(6 38 79 / 6%) !important;
}

.home-path-card::after {
  position: absolute !important;
  top: -2.5rem !important;
  right: -2rem !important;
  width: 8rem !important;
  height: 8rem !important;
  border: 1px solid rgb(57 212 196 / 25%) !important;
  border-radius: 50% !important;
  content: "" !important;
}

.home-path-card:hover {
  border-color: #39d4c4 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 1.35rem 3rem rgb(6 38 79 / 11%) !important;
}

.home-path-card span {
  width: max-content !important;
  border-radius: 999px !important;
  background: #eafffb !important;
  padding: 0.28rem 0.55rem !important;
  color: #008e82 !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
}

.home-path-card strong {
  max-width: 14rem !important;
  color: #061f4b !important;
  font-size: clamp(1.25rem, 2vw, 1.8rem) !important;
  line-height: 1.02 !important;
}

.home-path-card em {
  max-width: 17rem !important;
  color: #5d6f84 !important;
  font-style: normal !important;
  line-height: 1.42 !important;
}

.home-path-featured {
  background:
    linear-gradient(135deg, rgb(6 38 79 / 94%), rgb(0 136 132 / 86%)),
    radial-gradient(circle at 95% 20%, rgb(57 212 196 / 28%), transparent 9rem) !important;
  color: #fff !important;
}

.home-path-featured span {
  background: rgb(255 255 255 / 14%) !important;
  color: #78fff0 !important;
}

.home-path-featured strong,
.home-path-featured em {
  color: #fff !important;
}

.product-card-form {
  margin: 0 !important;
}

.product-card-form .catalog-link {
  cursor: pointer !important;
  font-family: inherit !important;
}

@media (max-width: 900px) {
  .home-path-head,
  .home-path-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 640px) {
  .home-commerce-path {
    width: calc(100% - 1rem) !important;
    margin-top: 1.5rem !important;
  }

  .home-path-head,
  .home-path-grid {
    grid-template-columns: 1fr !important;
  }

  .home-path-card {
    min-height: 8.5rem !important;
  }

  .product-card-form,
  .product-card-form .catalog-link {
    width: auto !important;
  }
}

/* Header spacing correction after premium buttons */
.store-header .header-main {
  grid-template-columns: minmax(22rem, 39rem) auto !important;
  gap: clamp(3rem, 5vw, 6rem) !important;
}

.store-header .search-box {
  width: min(39rem, 100%) !important;
}

.store-header .header-actions {
  margin-left: auto !important;
}

@media (max-width: 1180px) {
  .store-header .header-main {
    grid-template-columns: minmax(20rem, 1fr) auto !important;
    gap: 1rem !important;
  }
}

@media (max-width: 980px) {
  .store-header .header-main {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 0.8rem !important;
  }

  .store-header .search-box {
    width: 100% !important;
  }
}

/* Aquatic editorial catalog banner */
#catalogo.market-catalog .catalog-hero-band {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(24rem, 1fr) minmax(31rem, 0.92fr) !important;
  align-items: center !important;
  gap: clamp(1.5rem, 4vw, 4rem) !important;
  min-height: clamp(8.4rem, 13vw, 10.6rem) !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(ellipse at 74% 4%, rgb(139 255 238 / 50%), transparent 18rem),
    radial-gradient(ellipse at 83% 72%, rgb(18 184 188 / 28%), transparent 18rem),
    linear-gradient(100deg, #061f4b 0%, #07355a 36%, #0d8a87 100%) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-bottom: clamp(1.4rem, 3vw, 2rem) !important;
  margin-left: calc(50% - 50vw) !important;
  padding: clamp(1.35rem, 3vw, 2.2rem) max(1rem, calc((100vw - 92rem) / 2 + 1rem)) !important;
  color: #fff !important;
  box-shadow:
    0 0.65rem 1.65rem rgb(6 38 79 / 10%),
    inset 0 0 0 1px rgb(255 255 255 / 9%) !important;
}

#catalogo.market-catalog .catalog-hero-band::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 68% 6%, rgb(255 255 255 / 20%), transparent 12rem),
    linear-gradient(165deg, transparent 0 47%, rgb(255 255 255 / 12%) 47.2% 47.7%, transparent 48%),
    linear-gradient(165deg, transparent 0 76%, rgb(255 255 255 / 10%) 76.2% 76.7%, transparent 77%),
    repeating-linear-gradient(166deg, rgb(255 255 255 / 7%) 0 1px, transparent 1px 5.8rem),
    repeating-linear-gradient(14deg, rgb(255 255 255 / 4%) 0 1px, transparent 1px 8rem);
  content: "";
  pointer-events: none;
}

#catalogo.market-catalog .catalog-hero-band::after {
  content: none !important;
}

#catalogo.market-catalog .catalog-hero-band > * {
  position: relative;
  z-index: 1;
}

#catalogo.market-catalog .catalog-hero-band .kicker {
  display: none !important;
}

#catalogo.market-catalog .catalog-hero-band strong {
  max-width: 38rem !important;
  color: #fff !important;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem) !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
}

#catalogo.market-catalog .catalog-hero-band ul {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  justify-content: end !important;
  gap: 0.9rem !important;
  width: 100% !important;
}

#catalogo.market-catalog .catalog-hero-band li {
  position: relative !important;
  min-height: 4.55rem !important;
  border: 1px solid rgb(255 255 255 / 36%) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(145deg, rgb(255 255 255 / 32%), rgb(255 255 255 / 14%)) !important;
  padding: 0.78rem 0.7rem 0.72rem 2.7rem !important;
  color: #06264f !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  line-height: 1.14 !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  box-shadow:
    inset 0 1px 0 rgb(255 255 255 / 45%),
    0 0.75rem 1.6rem rgb(6 38 79 / 8%) !important;
}

#catalogo.market-catalog .catalog-hero-band li::before {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: #06264f;
  content: "";
}

#catalogo.market-catalog .catalog-hero-band li:nth-child(1)::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0.38rem, currentColor 0.4rem 0.48rem, transparent 0.5rem),
    linear-gradient(currentColor, currentColor) center / 1.05rem 0.12rem no-repeat,
    linear-gradient(currentColor, currentColor) center / 0.12rem 1.05rem no-repeat;
}

#catalogo.market-catalog .catalog-hero-band li:nth-child(2)::before {
  background:
    linear-gradient(currentColor, currentColor) 0.36rem 0.45rem / 0.7rem 0.12rem no-repeat,
    linear-gradient(currentColor, currentColor) 0.36rem 0.72rem / 0.92rem 0.12rem no-repeat,
    linear-gradient(currentColor, currentColor) 0.36rem 1rem / 0.52rem 0.12rem no-repeat;
}

#catalogo.market-catalog .catalog-hero-band li:nth-child(3)::before {
  background:
    radial-gradient(ellipse at 50% 54%, transparent 0.42rem, currentColor 0.44rem 0.52rem, transparent 0.54rem),
    linear-gradient(currentColor, currentColor) 0.3rem 0.73rem / 0.18rem 0.42rem no-repeat,
    linear-gradient(currentColor, currentColor) 1.08rem 0.73rem / 0.18rem 0.42rem no-repeat,
    linear-gradient(currentColor, currentColor) 0.86rem 1.1rem / 0.34rem 0.12rem no-repeat,
    radial-gradient(circle at 1.16rem 1.16rem, currentColor 0 0.08rem, transparent 0.09rem);
  transform: translateY(0.02rem);
}

/* Editorial product cards with newspaper/catalog mood */
.product-card {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid #d9e4ea !important;
  border-radius: 8px !important;
  background:
    linear-gradient(90deg, rgb(6 38 79 / 4%) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #ffffff, #fbfdfe) !important;
  background-size: 2.2rem 100%, auto !important;
  box-shadow:
    0 1rem 2.4rem rgb(6 38 79 / 8%),
    inset 0 0 0 1px rgb(255 255 255 / 70%) !important;
}

.product-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgb(6 38 79 / 9%), transparent);
  content: "";
  pointer-events: none;
}

.product-card > a {
  display: grid !important;
  gap: 0.95rem !important;
  padding: 1rem 1rem 0 !important;
}

.product-card .product-media {
  aspect-ratio: 1 / 0.92 !important;
  overflow: hidden !important;
  border: 1px solid #e2ebef !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 50% 20%, #fff, #eef7f8 76%) !important;
  padding: 0.8rem !important;
}

.product-card .product-media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0.8rem 1.15rem rgb(6 38 79 / 12%));
}

.product-card .product-media span {
  top: 0.75rem !important;
  left: 0.75rem !important;
  border: 1px solid rgb(6 38 79 / 12%) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #06264f !important;
  font-size: 0.62rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

.product-card h3 {
  min-height: 3.2rem !important;
  margin: 0 !important;
  color: #111820 !important;
  font-size: clamp(1.02rem, 1.2vw, 1.28rem) !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1.14 !important;
  text-transform: uppercase !important;
}

.product-card p {
  color: #44515d !important;
  font-family: Arial, sans-serif !important;
  font-size: 0.82rem !important;
  line-height: 1.35 !important;
}

.product-buy {
  align-items: end !important;
  margin: 0.95rem 1rem 1rem !important;
  border-top: 1px solid #d9e4ea !important;
  padding-top: 0.9rem !important;
}

.product-price-stack b {
  color: #061f4b !important;
  font-size: 1.18rem !important;
  font-weight: 950 !important;
}

.product-price-stack small {
  color: #111820 !important;
  font-size: 0.62rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

.catalog-link {
  min-height: 2.35rem !important;
  border: 1px solid #061f4b !important;
  border-radius: 999px !important;
  background: #061f4b !important;
  padding: 0.68rem 0.9rem !important;
  color: #fff !important;
  font-size: 0.74rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
}

@media (max-width: 980px) {
  #catalogo.market-catalog .catalog-hero-band {
    grid-template-columns: 1fr !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  #catalogo.market-catalog .catalog-hero-band ul {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  #catalogo.market-catalog .catalog-hero-band {
    min-height: 0 !important;
    padding: 1.25rem 1rem !important;
  }

  #catalogo.market-catalog .catalog-hero-band strong {
    font-size: 1.55rem !important;
  }

  #catalogo.market-catalog .catalog-hero-band ul {
    grid-template-columns: 1fr !important;
  }

  #catalogo.market-catalog .catalog-hero-band li {
    min-height: 3.9rem !important;
  }
}

/* Final mobile cart spacing */
@media (max-width: 640px) {
  .store-header .header-main {
    width: calc(100% - 1rem) !important;
    gap: 0.48rem !important;
    padding: 0.45rem 0 0.7rem !important;
  }

  .store-header .search-box {
    width: 100% !important;
    grid-template-columns: minmax(6rem, 7rem) minmax(0, 1fr) 2.55rem !important;
    height: 2.7rem !important;
    min-height: 2.7rem !important;
  }

  .store-header .search-logo {
    padding: 0 0.42rem 0 0.62rem !important;
  }

  .store-header .search-logo img {
    width: min(6.55rem, 100%) !important;
    max-height: 1.62rem !important;
  }

  .store-header .search-box input {
    overflow: hidden !important;
    padding: 0 0.35rem !important;
    font-size: 0.76rem !important;
    text-overflow: ellipsis !important;
  }

  .store-header .search-box button span {
    width: 1rem !important;
    height: 1rem !important;
    border-width: 0.14rem !important;
  }

  .store-header .header-actions {
    grid-template-columns: 0.9fr 1.22fr 0.9fr !important;
    gap: 0.35rem !important;
  }

  .store-header .account-button,
  .store-header .login-button,
  .store-header .bag-button {
    min-height: 2.28rem !important;
    padding: 0.28rem 0.32rem !important;
    gap: 0.2rem !important;
    font-size: 0.62rem !important;
    border-width: 1.5px !important;
    box-shadow: 0 0.75rem 1.35rem rgb(6 38 79 / 8%) !important;
  }

  .store-header .action-icon {
    width: 0.9rem !important;
    height: 0.9rem !important;
  }

  .store-header .bag-button strong {
    top: 0.12rem !important;
    right: 0.18rem !important;
    width: 1.18rem !important;
    height: 1.18rem !important;
    font-size: 0.62rem !important;
  }

  #shoppingCartPage.cart-page {
    padding-top: 2.4rem !important;
  }

  #shoppingCartPage .cart-page-head {
    margin-bottom: 1.1rem !important;
  }

  #shoppingCartPage .cart-page-head h1 {
    font-size: clamp(2.1rem, 10.5vw, 3rem) !important;
    line-height: 0.98 !important;
  }
}

/* Final clean product card priority */
.product-card {
  grid-template-rows: auto 1fr auto !important;
  border: 1px solid #d7e7ef !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #fff 0%, #fafdff 100%) !important;
  box-shadow: 0 1rem 2.8rem rgb(6 38 79 / 6%) !important;
}

.product-card::before {
  display: none !important;
}

.product-card > a {
  display: grid !important;
  grid-template-rows: auto auto !important;
  gap: 0.85rem !important;
  padding: 1rem 1rem 0 !important;
}

.product-card .product-media {
  aspect-ratio: 1 / 0.82 !important;
  border: 1px solid #e3edf2 !important;
  border-radius: 8px !important;
  background: radial-gradient(circle at 52% 24%, #fff 0 34%, #eef8fb 100%) !important;
  padding: 0.75rem !important;
}

.product-card h3 {
  display: -webkit-box !important;
  min-height: 3.15rem !important;
  overflow: hidden !important;
  margin: 0 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;
  color: #061f4b !important;
  font-size: clamp(1rem, 1.1vw, 1.18rem) !important;
  font-weight: 950 !important;
  line-height: 1.08 !important;
  text-transform: none !important;
}

.product-card p {
  display: none !important;
}

.product-buy {
  align-items: center !important;
  min-height: 4.8rem !important;
  margin: 1rem 1rem 1rem !important;
  border-top: 1px solid #dce8ee !important;
  background: transparent !important;
  padding-top: 0.9rem !important;
}

.product-card-form {
  display: block !important;
  margin: 0 !important;
}

.product-card-form .catalog-link,
.product-buy .catalog-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 6.8rem !important;
  min-height: 2.35rem !important;
  border: 1px solid #06264f !important;
  border-radius: 999px !important;
  background: #06264f !important;
  padding: 0.66rem 0.9rem !important;
  color: #fff !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 0.74rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.product-card-form .catalog-link:hover,
.product-buy .catalog-link:hover {
  border-color: #22d6bf !important;
  background: #22c879 !important;
  color: #06264f !important;
}

@media (max-width: 640px) {
  .product-card h3 {
    min-height: 2.55rem !important;
    font-size: 0.98rem !important;
    -webkit-line-clamp: 2 !important;
  }

  .product-buy {
    min-height: 0 !important;
    margin: 0.85rem 0.8rem 0.8rem !important;
  }
}

/* Layout refinement: product purchase, home focus, compact mobile header */
.template-home .campaign-band,
.template-home .offer-row {
  display: none !important;
}

.template-home .retail-shortcuts {
  margin-bottom: 0 !important;
}

.template-home .home-commerce-path {
  margin-top: clamp(1.25rem, 3vw, 2.4rem) !important;
}

.product-detail-copy .product-form {
  order: 5 !important;
  border-color: rgb(34 216 191 / 45%) !important;
  background:
    radial-gradient(circle at 100% 0, rgb(34 216 191 / 14%), transparent 9rem),
    linear-gradient(180deg, #fff, #f4fbfd) !important;
  box-shadow: 0 1rem 2.8rem rgb(6 38 79 / 10%) !important;
}

.product-detail-copy .product-trust-list {
  order: 6 !important;
}

.product-detail-copy .product-description {
  order: 7 !important;
}

.product-detail-copy .shipping-box {
  order: 8 !important;
}

.product-detail-copy .product-support-box {
  order: 9 !important;
}

.product-detail-copy .product-mini-faq {
  order: 10 !important;
}

.product-detail-copy .product-form-head strong {
  color: #06264f !important;
  font-size: 1.05rem !important;
}

.product-detail-copy .product-form .primary-button {
  min-height: 3.25rem !important;
  box-shadow: 0 0.85rem 1.8rem rgb(25 201 120 / 18%) !important;
}

@media (max-width: 640px) {
  .store-header .topbar {
    min-height: 2rem !important;
    padding: 0.35rem 0.5rem !important;
    font-size: 0.68rem !important;
  }

  .store-header .header-main {
    gap: 0.38rem !important;
    padding: 0.35rem 0 0.52rem !important;
  }

  .store-header .nav-toggle {
    min-height: 2.1rem !important;
    padding: 0.28rem 0.75rem !important;
    font-size: 0.76rem !important;
  }

  .store-header .search-box {
    grid-template-columns: minmax(5.7rem, 6.55rem) minmax(0, 1fr) 2.35rem !important;
    height: 2.45rem !important;
    min-height: 2.45rem !important;
  }

  .store-header .search-logo img {
    width: min(6.05rem, 100%) !important;
    max-height: 1.45rem !important;
  }

  .store-header .search-box input {
    font-size: 0.72rem !important;
  }

  .store-header .header-actions {
    gap: 0.28rem !important;
  }

  .store-header .account-button,
  .store-header .login-button,
  .store-header .bag-button {
    min-height: 2.05rem !important;
    padding: 0.22rem 0.26rem !important;
    font-size: 0.58rem !important;
  }

  .store-header .action-icon {
    width: 0.82rem !important;
    height: 0.82rem !important;
  }

  .store-header .bag-button strong {
    width: 1.08rem !important;
    height: 1.08rem !important;
    font-size: 0.58rem !important;
  }

  .product-detail {
    padding-top: 1.1rem !important;
  }

  .product-detail-copy h1 {
    font-size: clamp(2rem, 10vw, 2.85rem) !important;
  }

  .product-detail-copy .product-form {
    margin-top: 0.35rem !important;
    padding: 0.85rem !important;
  }
}
