:root {
  color-scheme: light;
  --ink: #14212b;
  --muted: #5b6b73;
  --line: #dbe6e7;
  --panel: #ffffff;
  --wash: #f3f8f8;
  --aqua: #0f7c80;
  --aqua-dark: #095b62;
  --blue: #2f8fd0;
  --shadow: 0 18px 45px rgba(20, 33, 43, 0.1);
  --radius: 8px;
  font-family:
    "Aptos", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
}

body.cart-open,
body.modal-open {
  overflow: hidden;
}

.icon-sprite {
  display: none;
}

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

button,
input,
select {
  font: inherit;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.asset-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.store-bar {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 4vw, 44px);
  padding: 9px 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 750;
}

.store-bar span,
.cart-summary span,
.cart-drawer__header h2,
.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.store-bar .icon {
  width: 15px;
  height: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.store-bar .asset-icon {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(219, 230, 231, 0.9);
  background: rgba(243, 248, 248, 0.9);
  backdrop-filter: blur(16px);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.utility-link:hover {
  color: var(--aqua-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  font-size: 1.15rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: lowercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--aqua-dark);
}

.cart-button,
.button,
.icon-button {
  border: 0;
  cursor: pointer;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
}

.cart-button__count {
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--aqua);
  color: #fff;
  font-size: 0.82rem;
}

.cart-button .asset-icon {
  width: 18px;
  height: 18px;
}

.hero {
  display: block;
  min-height: 42svh;
  padding: clamp(28px, 5vw, 62px) clamp(18px, 5vw, 72px) clamp(32px, 4vw, 52px);
  background:
    linear-gradient(90deg, rgba(243, 248, 248, 0.98), rgba(243, 248, 248, 0.78)),
    radial-gradient(circle at 88% 24%, rgba(47, 143, 208, 0.18), transparent 34%);
}

.hero__copy {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--aqua-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.6vw, 6.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero__lead,
.section__heading p,
.band__content p,
.compliance-copy,
.footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero__lead {
  max-width: 680px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 820;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:disabled,
.add-button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.button--primary {
  background: var(--aqua);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 124, 128, 0.24);
}

.button--primary .asset-icon {
  width: 24px;
  height: 16px;
  padding: 2px 4px;
  border-radius: 4px;
  background: #fff;
}

.button--primary:hover {
  background: var(--aqua-dark);
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button--full {
  width: 100%;
}

.section,
.band {
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.service-strip article {
  display: flex;
  gap: 12px;
  min-height: 100px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.service-strip .icon,
.support-grid .icon,
.service-strip .asset-icon,
.support-grid .asset-icon {
  color: var(--aqua);
}

.service-strip .asset-icon,
.support-grid .asset-icon {
  width: 22px;
  height: 22px;
}

.service-strip h3,
.support-grid h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.service-strip p,
.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.section__heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section__heading p {
  max-width: 660px;
  margin-bottom: 0;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.category-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.category-row a:hover {
  border-color: rgba(15, 124, 128, 0.4);
  color: var(--aqua-dark);
}

.search {
  flex: 1 1 340px;
  max-width: 440px;
}

.search input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.search input:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(15, 124, 128, 0.12);
}

.catalog-note {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 462px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 26px rgba(20, 33, 43, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(15, 124, 128, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-card__media {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 22px;
  background:
    linear-gradient(180deg, #f8fbfb, #eef7f7);
}

.product-card__media img {
  width: min(100%, 230px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(20, 33, 43, 0.13));
  transform: rotate(-1.5deg) scale(1);
  transition:
    transform 190ms ease,
    filter 190ms ease;
}

.product-card:hover .product-card__media img {
  filter: drop-shadow(0 22px 28px rgba(20, 33, 43, 0.18));
  transform: rotate(4deg) scale(1.045);
}

.product-card__content {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 18px;
}

.category {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #e8f6f5;
  color: var(--aqua-dark);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.product-card h3 {
  margin: 14px 0 16px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.variant-select {
  display: grid;
  gap: 8px;
  align-self: end;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.variant-select select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}

.variant-select select:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(15, 124, 128, 0.12);
}

.product-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
}

.price {
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
}

.add-button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
}

.add-button:hover {
  background: var(--aqua-dark);
}

.add-button:disabled:hover {
  background: var(--ink);
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
  background: #fff;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.quality-list article {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.quality-list__index {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--blue);
  font-weight: 900;
}

.quality-list p {
  color: var(--muted);
  line-height: 1.6;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.9fr);
  gap: 36px;
  align-items: start;
}

.support-section {
  background: #fff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.support-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--wash);
}

.support-grid h3 {
  margin-top: 18px;
  font-size: 1.18rem;
}

.support-grid a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--aqua-dark);
  font-weight: 850;
}

.support-grid a:hover {
  text-decoration: underline;
}

.compliance-copy {
  padding-left: 24px;
  border-left: 3px solid var(--aqua);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 33, 43, 0.38);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: min(100%, 430px);
  height: 100%;
  padding: 24px;
  background: #fff;
  box-shadow: -18px 0 40px rgba(20, 33, 43, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-drawer__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: 2rem;
}

.cart-drawer__header h2 .icon {
  width: 26px;
  height: 26px;
  color: var(--aqua);
}

.cart-drawer__header h2 .asset-icon {
  width: 27px;
  height: 27px;
}

.icon-button {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--wash);
  color: var(--ink);
  font-weight: 900;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 18px 0;
}

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

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-item h3 {
  margin-bottom: 3px;
  font-size: 1rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.quantity {
  display: inline-grid;
  grid-template-columns: 34px 36px 34px;
  align-items: center;
  overflow: hidden;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.quantity button {
  height: 34px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.quantity span {
  text-align: center;
  font-weight: 800;
}

.cart-summary {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-summary .icon {
  width: 17px;
  height: 17px;
  color: var(--aqua);
}

.cart-summary .asset-icon {
  width: 19px;
  height: 19px;
}

.cart-drawer__fineprint {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.agreement-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  visibility: hidden;
}

.agreement-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.agreement-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 33, 43, 0.48);
  opacity: 0;
  transition: opacity 180ms ease;
}

.agreement-modal.is-open .agreement-modal__backdrop {
  opacity: 1;
}

.agreement-modal__panel {
  position: relative;
  width: min(100%, 560px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 26px 60px rgba(20, 33, 43, 0.24);
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.agreement-modal.is-open .agreement-modal__panel {
  transform: translateY(0);
}

.agreement-modal__panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.agreement-modal__panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.agreement-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.status-page {
  display: grid;
  place-items: center;
  min-height: calc(100svh - 73px);
  padding: clamp(32px, 7vw, 72px);
}

.status-card {
  width: min(100%, 760px);
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.status-card h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.status-details {
  display: grid;
  grid-template-columns: minmax(120px, max-content) minmax(0, 1fr);
  gap: 10px 18px;
  margin: 24px 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-details dt {
  color: var(--muted);
  font-weight: 750;
}

.status-details dd {
  margin: 0;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  padding: 44px clamp(18px, 5vw, 72px) 28px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer .brand {
  color: #fff;
}

.footer__brand {
  max-width: 470px;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.footer__badges .icon {
  width: 17px;
  height: 17px;
}

.footer__badges .asset-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.footer__columns h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.95rem;
}

.footer__columns a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer__columns a:hover {
  color: #fff;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.policy-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  visibility: hidden;
}

.policy-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.policy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 33, 43, 0.52);
  opacity: 0;
  transition: opacity 180ms ease;
}

.policy-modal.is-open .policy-modal__backdrop {
  opacity: 1;
}

.policy-modal__panel {
  position: relative;
  width: min(100%, 720px);
  max-height: min(84svh, 760px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 26px 60px rgba(20, 33, 43, 0.24);
  transform: translateY(12px);
  transition: transform 180ms ease;
}

.policy-modal.is-open .policy-modal__panel {
  transform: translateY(0);
}

.policy-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.policy-modal h2 {
  max-width: 590px;
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.policy-modal h3 {
  margin: 22px 0 8px;
  font-size: 1.05rem;
}

.policy-modal p {
  color: var(--muted);
  line-height: 1.65;
}

.policy-modal ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

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

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .band,
  .section--split {
    grid-template-columns: 1fr;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .search {
    flex-basis: auto;
    max-width: none;
  }

  .catalog-note {
    font-size: 0.86rem;
  }

  .compliance-copy {
    padding-left: 16px;
  }

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

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .store-bar {
    justify-content: start;
    overflow-x: auto;
    white-space: nowrap;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text {
    font-size: 1rem;
  }

  .cart-button {
    min-height: 38px;
    padding: 0 10px;
  }

  .utility-link span {
    display: none;
  }

  .utility-link {
    width: 38px;
    min-height: 38px;
    justify-content: center;
    padding: 0;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

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

  .service-strip,
  .support-grid,
  .footer__columns {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 420px;
  }

  .agreement-modal__actions,
  .agreement-modal__actions .button {
    width: 100%;
  }

  .agreement-modal__actions {
    flex-direction: column-reverse;
  }
}
