:root {
  color-scheme: light;
  --navy: #061b35;
  --navy-2: #0b294c;
  --red: #dd0018;
  --red-dark: #a90014;
  --ink: #111923;
  --muted: #5c6f85;
  --line: #d9e2ec;
  --soft: #f5f8fb;
  --surface: #ffffff;
  --gold: #f7c23d;
  --gold-soft: #fff6dc;
  --teal: #08724f;
  --teal-soft: #e5f6ee;
  --shadow: 0 22px 60px rgba(6, 27, 53, 0.11);
  font-family:
    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(--soft);
  color: var(--ink);
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.top-strip {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 0 36px;
  font-size: 0.9rem;
  font-weight: 760;
}

.top-strip nav,
.site-header,
.header-tools,
.category-nav,
.hero-showcase,
.hero-mini-trust,
.trust-rail,
.section-bar,
.section-actions,
.quote-section {
  display: flex;
  align-items: center;
}

.top-strip nav {
  gap: 30px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: max-content minmax(280px, 720px) max-content;
  gap: 30px;
  min-height: 92px;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  padding: 0 38px;
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  font-weight: 920;
  letter-spacing: -0.05em;
  line-height: 1;
}

.brand strong {
  color: var(--red);
}

.search-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 72px;
  width: 100%;
  max-width: 720px;
  min-width: 280px;
  justify-self: center;
}

.search-form input {
  min-height: 54px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 6px 0 0 6px;
  background: var(--surface);
  color: var(--navy);
  padding: 0 20px;
  font-size: 1rem;
  outline: none;
}

.search-form input:focus {
  border-color: #9aaabc;
  box-shadow: inset 0 0 0 1px #9aaabc;
}

.search-form button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0 6px 6px 0;
  background: var(--red);
  color: #fff;
}

.search-form svg,
.cart-button svg,
.sign-in-link svg {
  width: 25px;
  height: 25px;
}

.header-tools {
  justify-self: end;
  gap: 22px;
  color: var(--navy);
  font-weight: 820;
  white-space: nowrap;
}

.sign-in-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--navy);
}

.cart-button span {
  position: absolute;
  top: 2px;
  right: -2px;
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

[hidden] {
  display: none !important;
}

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

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

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 53, 0.34);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer.open .cart-drawer-backdrop {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(440px, 100vw);
  max-width: 100vw;
  height: 100%;
  border-left: 1px solid var(--line);
  background: #fff;
  box-shadow: -24px 0 58px rgba(6, 27, 53, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.cart-drawer-open {
  overflow: hidden;
}

.cart-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.cart-drawer-header span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-drawer-header h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 1.8rem;
  line-height: 1;
}

.cart-drawer-header button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 700;
}

.cart-drawer-items {
  overflow-y: auto;
  padding: 6px 24px 24px;
}

.cart-drawer-line {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.cart-drawer-art {
  display: grid;
  height: 92px;
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdff;
}

.cart-drawer-art img,
.drawer-product-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.drawer-product-art {
  background: linear-gradient(135deg, #f8fafc, #dfe7ef);
}

.cart-drawer-copy {
  min-width: 0;
}

.cart-drawer-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
}

.cart-drawer-copy p {
  margin: 8px 0 12px;
  color: var(--muted);
  font-weight: 760;
}

.cart-drawer-copy p s {
  margin-left: 6px;
}

.cart-drawer-remove {
  grid-column: 2 / -1;
  width: max-content;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 840;
}

.cart-drawer-summary {
  border-top: 1px solid var(--line);
  background: #fbfcfe;
  padding: 22px 24px 24px;
}

.cart-drawer-summary dl {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.cart-drawer-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
}

.cart-drawer-summary dd {
  margin: 0;
  color: var(--navy);
  font-weight: 920;
}

.cart-drawer-summary dl div:last-child dd {
  color: var(--teal);
}

.cart-drawer-summary button,
.cart-drawer-summary a {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 900;
}

.cart-drawer-summary button {
  border: 0;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(221, 0, 24, 0.2);
}

.cart-drawer-summary button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cart-drawer-summary a {
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.cart-drawer-summary p,
.cart-drawer-empty p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.4;
}

.cart-drawer-empty {
  padding: 34px 0;
}

.cart-drawer-empty h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
}

.category-nav {
  position: sticky;
  top: 92px;
  z-index: 19;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  padding: 0 36px;
  backdrop-filter: blur(14px);
}

.category-nav button {
  flex: 0 0 auto;
  min-height: 54px;
  border: 0;
  background: transparent;
  color: var(--navy);
  padding: 0 16px;
  font-size: 0.93rem;
  font-weight: 840;
}

.category-nav button.active,
.category-nav button:hover {
  color: var(--red);
}

.hero-showcase {
  align-items: stretch;
  gap: 0;
  margin: 30px 38px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  flex: 0 0 42%;
  padding: 48px 44px;
}

.quality-line {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 920;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-bar h2,
.quote-section h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3rem, 5.6vw, 5.5rem);
  font-weight: 930;
  line-height: 0.96;
}

.hero-copy > p:not(.quality-line) {
  max-width: 520px;
  margin: 22px 0 0;
  color: #3f5268;
  font-size: 1.08rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-actions a,
.featured-actions a,
.featured-actions button,
.deal-actions a,
.deal-actions button,
.quote-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 880;
}

.hero-actions a:first-child {
  background: var(--red);
  box-shadow: 0 14px 28px rgba(221, 0, 24, 0.23);
  color: #fff;
  padding: 0 22px;
}

.hero-actions a:last-child {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  padding: 0 18px;
}

.hero-mini-trust {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-mini-trust span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdff;
  color: var(--navy);
  padding: 0 12px;
  font-size: 0.84rem;
  font-weight: 820;
}

.hero-mini-trust svg {
  width: 20px;
  height: 20px;
}

.hero-media {
  position: relative;
  flex: 1;
  min-height: 450px;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 38%;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  display: block;
}

.featured-deal {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  width: min(340px, calc(100% - 56px));
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  box-shadow: 0 16px 40px rgba(6, 27, 53, 0.2);
  backdrop-filter: blur(18px);
}

.featured-deal span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 920;
  text-transform: uppercase;
}

.featured-deal strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.1;
}

.featured-deal p {
  margin: 8px 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.featured-actions button,
.featured-actions a {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.86rem;
}

.featured-actions button {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
}

.featured-actions button.added {
  border-color: var(--teal);
  background: var(--teal);
}

.featured-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.featured-actions a {
  border: 1px solid var(--line);
  color: var(--navy);
}

.featured-actions a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 22px 38px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-rail div {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 14px;
  min-height: 102px;
  align-content: center;
  border-right: 1px solid var(--line);
  padding: 20px 26px;
}

.trust-rail div:last-child {
  border-right: 0;
}

.trust-rail svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  color: var(--navy);
}

.trust-rail strong {
  color: var(--navy);
  font-size: 1rem;
}

.trust-rail span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.deals-section {
  scroll-margin-top: 150px;
  padding: 42px 38px 50px;
}

.section-bar {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-bar h2 {
  font-size: 1.85rem;
}

.section-bar p {
  margin: 6px 0 0;
  color: var(--muted);
}

.section-actions {
  gap: 18px;
}

.section-actions > a {
  color: #14539b;
  font-size: 0.9rem;
  font-weight: 860;
}

.section-actions label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 780;
}

.section-actions select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--navy);
  padding: 0 38px 0 12px;
  font-weight: 760;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
  justify-content: start;
  gap: 30px 22px;
}

.deal-card {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe6ee;
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.deal-card:hover {
  border-color: rgba(6, 27, 53, 0.32);
  box-shadow: 0 16px 32px rgba(6, 27, 53, 0.08);
  transform: translateY(-1px);
}

.save-tag,
.pack-tag {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 920;
  text-transform: uppercase;
}

.save-tag {
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
}

.pack-tag {
  top: 16px;
  right: 16px;
  border: 1px solid #b8c9dc;
  background: #eef6ff;
  color: #164a85;
}

.product-art,
.product-photo {
  width: 100%;
  height: 360px;
  border-bottom: 1px solid #edf1f5;
  background: #f7f8fa;
  object-fit: contain;
  padding: 28px;
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0;
}

.product-art::before,
.product-art::after {
  position: absolute;
  content: "";
}

.deal-copy {
  padding: 18px 18px 0;
}

.deal-copy span {
  color: #5d6d7f;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.deal-card h3 {
  min-height: 64px;
  margin: 9px 0 0;
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 820;
  line-height: 1.28;
  letter-spacing: 0;
}

.deal-pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: auto 18px 18px;
  border-top: 1px solid #e4eaf1;
  border-radius: 0;
  background: #fff;
  padding: 14px 0 0;
}

.deal-price-stack,
.product-price-stack {
  min-width: 0;
}

.deal-pricing span,
.product-price-panel span {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 920;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deal-pricing strong,
.product-price-panel strong {
  display: block;
  margin-top: 5px;
  color: var(--red);
  font-size: 2.05rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.deal-pricing p,
.product-price-panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.deal-pricing s,
.product-price-panel s {
  color: #3b4c60;
  font-weight: 820;
}

.deal-pricing em {
  display: inline-flex;
  margin-top: 10px;
  border: 1px solid rgba(9, 113, 101, 0.18);
  border-radius: 2px;
  background: #f5fbfa;
  color: var(--teal);
  padding: 7px 9px;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
}

.deal-savings-callout {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  align-items: center;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(9, 113, 101, 0.18);
  border-radius: 2px;
  background: #f5fbfa;
  color: var(--teal);
  padding: 7px 8px 7px 11px;
  box-shadow: none;
}

.deal-savings-callout span {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.deal-savings-callout svg {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  padding: 5px;
}

.deal-savings-callout svg path,
.deal-savings-callout svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.savings-callout {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  margin: 0;
  border: 1px solid rgba(9, 113, 101, 0.2);
  border-radius: 2px;
  background: #f5fbfa;
  color: var(--teal);
  padding: 8px 9px 8px 13px;
  box-shadow: none;
}

.savings-callout span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
}

.savings-callout svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  padding: 6px;
}

.savings-callout svg path,
.savings-callout svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.deal-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #edf1f5;
  padding: 15px 18px 18px;
}

.deal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.stock {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  gap: 6px;
  border-radius: 6px;
  background: var(--teal-soft);
  color: var(--teal);
  padding: 0 10px;
  font-size: 0.82rem;
  font-weight: 860;
}

.deal-actions button,
.deal-actions a {
  min-width: 92px;
  padding: 0 12px;
  font-size: 0.86rem;
}

.deal-actions button {
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
}

.deal-actions button.added {
  border-color: var(--teal);
  background: var(--teal);
}

.deal-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.deal-actions a {
  border: 1px solid var(--line);
  color: var(--navy);
}

.deal-actions a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.quantity-picker {
  display: inline-grid;
  grid-template-columns: 34px minmax(42px, 52px) 34px;
  align-items: center;
  overflow: hidden;
  width: max-content;
  border: 1px solid #c8d5e3;
  border-radius: 999px;
  background: #fff;
}

.quantity-picker button {
  display: grid;
  min-height: 34px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
}

.quantity-picker input {
  width: 100%;
  min-width: 0;
  border: 0;
  border-right: 1px solid #e0e8f0;
  border-left: 1px solid #e0e8f0;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
  outline: none;
  appearance: textfield;
}

.quantity-picker input::-webkit-outer-spin-button,
.quantity-picker input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.coffee::before {
  width: 90px;
  height: 108px;
  border-radius: 12px 12px 18px 18px;
  background:
    linear-gradient(90deg, transparent 0 74px, #202934 74px 90px),
    linear-gradient(180deg, #f4f7fa 0 42%, #202934 42% 100%);
  box-shadow: 0 16px 34px rgba(6, 27, 53, 0.22);
}

.coffee::after {
  width: 84px;
  height: 38px;
  border: 8px solid #202934;
  border-left: 0;
  border-radius: 0 24px 24px 0;
  transform: translate(72px, 16px);
}

.detergent::before,
.protein::before {
  width: 104px;
  height: 128px;
  border-radius: 8px 8px 18px 18px;
  background:
    linear-gradient(180deg, #f7fbff 0 26%, #dff5d7 26% 52%, #95ce56 52% 100%);
  box-shadow: 0 16px 30px rgba(6, 27, 53, 0.16);
}

.detergent::after {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff, #a6dd63 70%);
  transform: translate(14px, 28px);
}

.airfryer::before {
  width: 116px;
  height: 124px;
  border-radius: 24px 24px 18px 18px;
  background:
    radial-gradient(circle at 50% 30px, #94a3b4 0 7px, transparent 8px),
    linear-gradient(180deg, #263241, #111923);
  box-shadow: 0 18px 34px rgba(6, 27, 53, 0.24);
}

.trashbags::before {
  width: 126px;
  height: 94px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 46%),
    linear-gradient(90deg, #263241, #4b5565);
  box-shadow: 0 16px 30px rgba(6, 27, 53, 0.18);
}

.flosser::before {
  width: 30px;
  height: 136px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0 30%, #dce8f3 30% 100%);
  box-shadow: 28px 0 0 #eaf2f8, 0 18px 28px rgba(6, 27, 53, 0.12);
}

.flosser::after {
  width: 96px;
  height: 14px;
  border-radius: 999px;
  background: #50b8d6;
  transform: translateY(-62px);
}

.protein::before {
  border-radius: 18px 18px 8px 8px;
  background:
    linear-gradient(180deg, #111923 0 16%, #ffffff 16% 100%),
    #ffffff;
}

.protein::after {
  width: 82px;
  height: 28px;
  border-radius: 999px;
  background: #f0d28c;
  transform: translateY(26px);
}

.headphones::before {
  width: 132px;
  height: 98px;
  border: 14px solid #121d2a;
  border-bottom: 0;
  border-radius: 82px 82px 0 0;
}

.headphones::after {
  width: 50px;
  height: 56px;
  border-radius: 50%;
  background: #1d2b39;
  box-shadow: 74px 0 0 #1d2b39;
  transform: translate(-37px, 36px);
}

.tumbler::before {
  width: 82px;
  height: 120px;
  border-radius: 16px 16px 28px 28px;
  background: linear-gradient(145deg, #42515b, #131f26);
}

.tumbler::after {
  width: 32px;
  height: 76px;
  border-radius: 0 18px 18px 0;
  background: #142126;
  transform: translate(52px, 26px);
}

.generic::before {
  width: 110px;
  height: 110px;
  border-radius: 20px;
  background: linear-gradient(135deg, #dce8f3, #ffffff);
  box-shadow: 0 18px 32px rgba(6, 27, 53, 0.14);
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed #b7c7d9;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

.product-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 38px 64px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.product-breadcrumb a {
  color: #14539b;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 58fr) minmax(360px, 42fr);
  gap: 48px;
  align-items: start;
}

.product-media-column {
  display: grid;
  gap: 14px;
}

.product-gallery {
  display: grid;
  min-height: 720px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #e1e7ee;
  border-radius: 2px;
  background:
    radial-gradient(circle at 50% 45%, rgba(6, 27, 53, 0.06), transparent 34%),
    linear-gradient(180deg, #fff, #f7f8fa);
}

.product-gallery .product-art,
.product-gallery .product-photo {
  height: 100%;
  min-height: 720px;
  border-bottom: 0;
  background: transparent;
  padding: 46px;
}

.product-gallery .product-art::before,
.product-gallery .product-art::after {
  scale: 1.7;
}

.product-thumb-row {
  display: flex;
  gap: 10px;
}

.product-thumb-row button {
  width: 92px;
  height: 112px;
  overflow: hidden;
  border: 1px solid var(--navy);
  border-radius: 2px;
  background: #f7f8fa;
  color: transparent;
}

.product-thumb-row button img,
.product-thumb-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-thumb-art {
  background: linear-gradient(135deg, #f8fafc, #dfe7ef);
}

.product-commerce {
  position: sticky;
  top: 172px;
  display: grid;
  gap: 22px;
  min-width: 0;
}

.product-info {
  border-bottom: 1px solid #e5ebf2;
  padding-bottom: 20px;
}

.product-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  color: #17263a;
  font-size: 0.78rem;
  font-weight: 930;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info h1 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  font-weight: 870;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.product-price-panel {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(221, 0, 24, 0.2);
  border-radius: 2px;
  background: #fff;
  padding: 22px 24px;
  box-shadow: inset 5px 0 0 var(--red);
}

.product-price-panel strong {
  font-size: 3.35rem;
}

.product-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid #e5ebf2;
  border-bottom: 1px solid #e5ebf2;
  padding: 16px 0;
}

.product-option-row span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-option-row strong {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 900;
  text-transform: capitalize;
}

.buy-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.buy-box-stock {
  display: grid;
  gap: 8px;
  border: 1px solid #dfe7ef;
  border-radius: 2px;
  background: #fbfcfd;
  padding: 15px;
}

.buy-box-stock small {
  color: var(--muted);
  line-height: 1.35;
}

.product-quantity {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #dfe7ef;
  border-radius: 2px;
  background: #fbfdff;
  padding: 12px 14px;
}

.product-quantity > span {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.buy-box > button,
.buy-box > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-weight: 900;
}

.buy-box > button {
  border: 0;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(221, 0, 24, 0.18);
}

.buy-box > a {
  border: 1px solid var(--line);
  color: var(--navy);
}

.product-accordions {
  border-top: 1px solid #dfe7ef;
}

.product-accordions details {
  border-bottom: 1px solid #dfe7ef;
}

.product-accordions summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}

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

.product-accordions summary::after {
  color: var(--muted);
  content: "+";
  font-size: 1.2rem;
  font-weight: 600;
}

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

.product-accordions p {
  margin: 0 0 18px;
  color: #3f5268;
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-highlights {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.product-highlights li {
  color: #3f5268;
  font-size: 0.98rem;
  line-height: 1.45;
}

.product-highlights li::before {
  margin-right: 8px;
  color: var(--red);
  content: "-";
  font-weight: 900;
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.product-trust div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.product-trust strong,
.product-trust span {
  display: block;
}

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

.product-trust span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.4;
}

.account-page {
  padding: 32px 38px 56px;
}

.account-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.account-hero > div,
.account-form,
.account-panel,
.account-shopify-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(6, 27, 53, 0.07);
}

.account-hero > div {
  background:
    radial-gradient(circle at 80% 12%, rgba(247, 194, 61, 0.18), transparent 30%),
    linear-gradient(135deg, #fff, #f8fbff);
  padding: 44px;
}

.account-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.account-hero p {
  max-width: 620px;
  color: #3f5268;
  font-size: 1.08rem;
  line-height: 1.5;
}

.account-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.account-form h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.5rem;
}

.account-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 820;
}

.account-form input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  padding: 0 12px;
}

.account-form button,
.account-form .shopify-account-button,
.profile-panel button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.account-form .shopify-account-button {
  width: 100%;
}

.account-note {
  min-height: 19px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.account-dashboard {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.account-panel {
  padding: 22px;
}

.account-panel > span,
.account-shopify-note span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 920;
  text-transform: uppercase;
}

.account-panel h2,
.account-shopify-note h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.12;
}

.account-panel p,
.account-shopify-note p {
  color: var(--muted);
  line-height: 1.45;
}

.profile-panel button {
  margin-top: 16px;
  padding: 0 16px;
}

.saved-deals {
  display: grid;
  gap: 10px;
}

.saved-deals a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  padding: 12px;
}

.saved-deals strong {
  color: var(--navy);
}

.saved-deals span {
  color: var(--red);
  font-weight: 920;
}

.account-shopify-note {
  margin-top: 22px;
  padding: 28px;
}

.quote-section {
  scroll-margin-top: 150px;
  align-items: stretch;
  justify-content: space-between;
  gap: 34px;
  background: var(--navy);
  color: #fff;
  padding: 48px 38px;
}

.quote-section h2 {
  max-width: 540px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.quote-section p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
}

.quote-form {
  display: grid;
  width: min(480px, 100%);
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 780;
}

.quote-form input,
.quote-form select {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 12px;
  outline: none;
}

.quote-form select option {
  color: var(--ink);
}

.quote-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.quote-form button {
  border: 0;
  background: var(--gold);
  color: var(--navy);
}

.form-note {
  min-height: 19px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.cart-page {
  padding: 32px 38px 56px;
}

.cart-hero,
.cart-items,
.cart-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 42px rgba(6, 27, 53, 0.07);
}

.cart-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(247, 194, 61, 0.16), transparent 28%),
    linear-gradient(135deg, #fff, #f8fbff);
  padding: 42px;
}

.cart-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.cart-hero p {
  max-width: 620px;
  color: #3f5268;
  font-size: 1.08rem;
  line-height: 1.5;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.36fr);
  gap: 22px;
  align-items: start;
  margin-top: 22px;
}

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

.cart-line {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 120px 120px auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px;
}

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

.cart-line-art {
  display: grid;
  height: 96px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.cart-line-art .product-art,
.cart-line-art .product-photo {
  height: 96px;
  border-bottom: 0;
}

.cart-line-art .product-art::before,
.cart-line-art .product-art::after {
  scale: 0.55;
}

.cart-line span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 860;
  text-transform: uppercase;
}

.cart-line h2 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.18;
}

.cart-line p {
  margin: 7px 0 0;
  color: var(--muted);
}

.cart-line p s {
  margin-left: 6px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 36px 42px 36px;
  align-items: center;
  overflow: hidden;
  width: max-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.quantity-control button {
  display: grid;
  min-height: 36px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.quantity-control strong {
  text-align: center;
}

.cart-line-total {
  color: var(--red);
  font-size: 1.2rem;
}

.remove-line {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 820;
}

.cart-summary {
  position: sticky;
  top: 166px;
  padding: 22px;
}

.cart-summary > span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 920;
  text-transform: uppercase;
}

.cart-summary dl {
  display: grid;
  gap: 13px;
  margin: 18px 0;
}

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

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

.cart-summary dd {
  margin: 0;
  color: var(--navy);
  font-weight: 920;
}

.cart-summary .cart-savings dd {
  color: var(--teal);
}

.cart-summary button,
.cart-summary > a,
.cart-empty a {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 900;
}

.cart-summary button {
  border: 0;
  background: var(--red);
  color: #fff;
  box-shadow: 0 14px 28px rgba(221, 0, 24, 0.2);
}

.cart-summary button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cart-summary > a,
.cart-empty a {
  border: 1px solid var(--line);
  color: var(--navy);
}

.cart-summary p,
.cart-empty p {
  color: var(--muted);
  line-height: 1.4;
}

.cart-empty {
  padding: 34px;
}

.cart-empty h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.7rem;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: max-content minmax(240px, 1fr) max-content;
    gap: 18px;
    padding: 18px 24px;
  }

  .search-form {
    max-width: none;
    min-width: 0;
  }

  .category-nav {
    top: 130px;
  }

  .hero-showcase,
  .quote-section {
    flex-direction: column;
  }

  .hero-copy {
    flex-basis: auto;
  }

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

  .product-detail {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
    gap: 30px;
  }

  .product-gallery {
    min-height: 560px;
  }

  .product-gallery .product-art,
  .product-gallery .product-photo {
    min-height: 560px;
  }

  .product-commerce {
    top: 142px;
  }

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

  .account-hero,
  .account-dashboard {
    grid-template-columns: 1fr 1fr;
  }

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

  .cart-summary {
    position: static;
  }

  .cart-line {
    grid-template-columns: 96px minmax(0, 1fr) 120px;
  }

  .cart-line-total,
  .remove-line {
    grid-column: 2 / -1;
  }

  .account-hero > div {
    grid-column: 1 / -1;
  }

  .trust-rail div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .site-header {
    position: static;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand tools"
      "search search";
    gap: 16px;
    padding: 18px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    font-size: clamp(1.35rem, 6vw, 1.75rem);
  }

  .header-tools {
    grid-area: tools;
    justify-content: flex-end;
    font-size: 0.9rem;
  }

  .search-form {
    grid-area: search;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 56px;
    min-width: 0;
  }

  .category-nav {
    position: static;
    padding: 0 12px;
  }

  .hero-showcase {
    margin: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .hero-copy {
    padding: 44px 18px 28px;
  }

  .hero-copy h1 {
    font-size: 3.45rem;
  }

  .hero-media {
    min-height: 340px;
  }

  .hero-media::before {
    display: none;
  }

  .featured-deal {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
  }

  .trust-rail,
  .deal-grid {
    grid-template-columns: 1fr;
  }

  .trust-rail {
    margin: 0;
  }

  .trust-rail div,
  .trust-rail div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .deals-section {
    padding: 32px 18px 38px;
  }

  .section-bar,
  .section-actions,
  .deal-card footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .deal-pricing,
  .product-price-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-page {
    padding: 22px 18px 42px;
  }

  .account-page {
    padding: 22px 18px 42px;
  }

  .cart-page {
    padding: 22px 18px 42px;
  }

  .sign-in-link {
    gap: 0;
    font-size: 0;
  }


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

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

  .product-gallery .product-art,
  .product-gallery .product-photo {
    min-height: 420px;
    padding: 28px;
  }

  .product-gallery .product-art::before,
  .product-gallery .product-art::after {
    scale: 1.18;
  }

  .product-commerce {
    position: static;
    gap: 18px;
  }

  .product-price-panel strong {
    font-size: 2.8rem;
  }

  .product-info h1 {
    font-size: 2.35rem;
  }

  .product-thumb-row button {
    width: 72px;
    height: 88px;
  }

  .cart-drawer-panel {
    left: 0;
    width: 100vw;
    max-width: 100vw;
  }

  .account-hero,
  .account-dashboard {
    grid-template-columns: 1fr;
  }

  .account-hero > div,
  .account-form,
  .account-panel,
  .account-shopify-note {
    padding: 20px;
  }

  .account-hero h1 {
    font-size: 3.15rem;
  }

  .cart-hero {
    padding: 28px 20px;
  }

  .cart-hero h1 {
    font-size: 3.15rem;
  }

  .cart-line {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
  }

  .quantity-control,
  .cart-line-total,
  .remove-line {
    grid-column: 2 / -1;
  }

  .quote-section {
    padding: 38px 18px;
  }
}
