:root {
  --ink: #17202a;
  --muted: #667085;
  --line: #e8edf2;
  --paper: #ffffff;
  --mist: #f3f8fb;
  --aqua: #00a7bd;
  --aqua-dark: #007d91;
  --coral: #ff6b5f;
  --sun: #ffc857;
  --leaf: #4eaf74;
  --shadow: 0 22px 70px rgba(23, 32, 42, 0.12);
  --radius: 8px;
  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;
  color: var(--ink);
  background: var(--paper);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.promo {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 10px 16px;
  color: white;
  background: #17202a;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav,
.hero,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: white;
  background: linear-gradient(135deg, var(--aqua), var(--leaf));
  box-shadow: 0 10px 24px rgba(0, 167, 189, 0.24);
}

.brand-name {
  font-size: 21px;
}

.brand-name span {
  color: var(--aqua-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #344054;
  font-weight: 650;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: white;
  cursor: pointer;
}

.icon-button:hover {
  border-color: #b9c9d4;
  background: var(--mist);
}

.icon-button svg,
.button svg,
.trust-band svg,
.upload-box svg,
.search-field svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  color: white;
  background: var(--coral);
  font-size: 12px;
  font-weight: 800;
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 64px;
  padding: 64px 0 80px;
}

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

.hero h1,
.section-heading h2,
.custom-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.06;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 7vw, 82px);
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: #475467;
  font-size: 19px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--aqua-dark);
  box-shadow: 0 16px 36px rgba(0, 125, 145, 0.25);
}

.button.primary:hover {
  background: #006b7d;
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: #b9c9d4;
  background: var(--mist);
}

.button.wide {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 600px;
  margin: 42px 0 0;
}

.hero-stats div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-size: 27px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-media {
  position: relative;
  min-height: 610px;
}

.hero-product {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: var(--shadow);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  color: white;
  background: rgba(23, 32, 42, 0.82);
  border-radius: var(--radius);
  font-weight: 800;
}

.hero-product figcaption span {
  color: var(--sun);
  font-size: 12px;
}

.main-product {
  position: absolute;
  inset: 0 56px 58px 0;
}

.side-product {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 250px;
}

.side-product figcaption {
  font-size: 13px;
}

.proof-strip {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.12);
}

.proof-strip span {
  padding: 9px 8px;
  border-radius: 6px;
  color: #344054;
  background: #f7fafc;
  text-align: center;
  font-size: 13px;
  font-weight: 750;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: #fbfdfe;
}

.trust-band article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-band article:last-child {
  border-right: 0;
}

.trust-band svg {
  color: var(--aqua-dark);
}

.trust-band h2 {
  margin: 12px 0 6px;
  font-size: 17px;
}

.trust-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-heading.compact {
  max-width: 620px;
}

.section-heading h2,
.custom-copy h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.section-heading p:not(.eyebrow),
.custom-copy > p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.product-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #344054;
  background: white;
  cursor: pointer;
  font-weight: 750;
}

.chip.active,
.chip:hover {
  color: white;
  border-color: var(--aqua-dark);
  background: var(--aqua-dark);
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.12);
}

.product-card[hidden] {
  display: none;
}

.product-image-button,
.product-image-link {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--mist);
}

.product-image-link {
  text-decoration: none;
}

.product-card img,
.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--mist);
}

.product-info {
  padding: 18px;
}

.tag {
  display: inline-block;
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
}

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

.product-info h3 a {
  color: inherit;
  text-decoration: none;
}

.product-info h3 a:hover {
  color: var(--aqua-dark);
}

.product-info p:not(.tag) {
  min-height: 46px;
  margin: 10px 0 16px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

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

.product-row strong {
  font-size: 20px;
  white-space: nowrap;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: white;
  background: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

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

.mini-button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.mini-button.secondary:hover {
  border-color: var(--aqua-dark);
  color: var(--aqua-dark);
  background: #f7fafc;
}

.detail-main {
  background: #f8fbfc;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--aqua-dark);
  text-decoration: none;
  font-weight: 800;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 36px;
  align-items: start;
}

.product-detail-gallery,
.product-detail-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-detail-gallery {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.detail-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--mist);
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.detail-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--mist);
  cursor: pointer;
}

.detail-thumb.active,
.detail-thumb:hover {
  border-color: var(--aqua-dark);
}

.detail-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.product-detail-info {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.product-detail-info h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.detail-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.detail-price {
  font-size: 30px;
  font-weight: 900;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.detail-panel h2 {
  margin: 0;
  font-size: 18px;
}

.detail-panel p,
.detail-panel ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.detail-panel ul {
  padding-left: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.custom-copy {
  position: sticky;
  top: 104px;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
  font-weight: 750;
}

.steps span {
  color: var(--aqua-dark);
  font-weight: 900;
}

.custom-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

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

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

label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7e0e8;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdfe;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 167, 189, 0.18);
  border-color: var(--aqua-dark);
}

.file-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.upload-box {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 24px;
  border: 2px dashed #cbd7e2;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fbfdfe;
  text-align: center;
  cursor: pointer;
}

.upload-box:hover {
  border-color: var(--aqua);
}

.upload-box strong {
  margin-top: 10px;
  color: var(--ink);
}

.upload-box small {
  margin-top: 5px;
  font-weight: 500;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--aqua-dark);
  font-weight: 800;
  text-align: center;
}

.material-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.material-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.material-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.material-grid p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.shipping-section {
  background: #f8fbfc;
}

.shipping-tracker {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}

.tracking-form,
.tracking-result,
.shipping-method-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.tracking-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.tracking-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.tracking-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fbfdfe;
  color: var(--ink);
  font: inherit;
}

.tracking-result {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  min-height: 154px;
}

.tracking-result i,
.shipping-method-grid i {
  color: var(--aqua-dark);
}

.tracking-result strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.tracking-result p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.65;
}

.tracking-result small {
  color: var(--muted);
}

.tracking-events {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.tracking-events li {
  display: grid;
  gap: 2px;
  padding-left: 14px;
  border-left: 2px solid var(--aqua);
  color: var(--ink);
  line-height: 1.5;
}

.tracking-events span {
  color: var(--muted);
  font-size: 12px;
}

.tracking-result.warning {
  border-color: #f2b84b;
  background: #fff9ed;
}

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

.shipping-method-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.shipping-method-grid h3 {
  margin: 0;
}

.shipping-method-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 820px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 850;
}

details p {
  padding: 0 20px 20px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.footer p,
.footer address {
  color: var(--muted);
  line-height: 1.7;
  font-style: normal;
}

.footer-links,
.footer address {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer address a:hover {
  color: var(--aqua-dark);
}

.search-dialog {
  width: min(640px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.search-dialog::backdrop,
.gallery-dialog::backdrop {
  background: rgba(23, 32, 42, 0.48);
}

.dialog-head,
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dialog-head h2,
.drawer-head h2 {
  margin: 0;
}

.search-field {
  position: relative;
}

.search-field svg {
  position: absolute;
  left: 14px;
  top: 42px;
  color: var(--muted);
}

.search-field input {
  padding-left: 44px;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.result-item:hover {
  border-color: var(--aqua-dark);
  background: #f7fafc;
}

.gallery-dialog {
  width: min(960px, calc(100% - 32px));
  max-height: min(900px, calc(100vh - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.gallery-dialog .dialog-head {
  align-items: flex-start;
}

.gallery-dialog .eyebrow {
  margin-bottom: 6px;
}

.gallery-main {
  width: 100%;
  max-height: 62vh;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.gallery-thumb {
  padding: 3px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  background: white;
  cursor: pointer;
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--aqua-dark);
}

.gallery-thumb img {
  border-radius: 5px;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  width: min(420px, 100%);
  height: 100vh;
  padding: 24px;
  background: white;
  box-shadow: -30px 0 70px rgba(23, 32, 42, 0.18);
  transform: translateX(110%);
  transition: transform 180ms ease;
}

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

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 140px;
  margin-bottom: 18px;
}

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

.cart-line small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.checkout-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.shipping-panel {
  display: grid;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.checkout-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-weight: 850;
}

.checkout-title small,
.shipping-note {
  color: var(--muted);
  font-size: 12px;
}

.shipping-panel label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.shipping-panel input,
.shipping-panel select,
.shipping-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.shipping-panel textarea {
  resize: vertical;
}

.shipping-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shipping-note {
  margin: 0;
  line-height: 1.5;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 850;
}

.muted-total {
  color: var(--muted);
  font-weight: 750;
}

.order-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.cart-total strong {
  font-size: 22px;
}

.payment-message {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
}

.paypal-buttons {
  min-height: 0;
}

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

.scrim {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(23, 32, 42, 0.42);
}

.scrim.open {
  display: block;
}

@media (max-width: 960px) {
  .promo {
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .nav {
    min-height: 64px;
  }

  .nav-links {
    position: fixed;
    inset: 64px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
    border-bottom: 0;
  }

  .menu-button {
    display: inline-grid;
  }

  .hero,
  .split-section,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding-top: 44px;
  }

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

  .custom-copy {
    position: static;
  }

  .trust-band,
  .product-grid,
  .material-grid,
  .shipping-tracker,
  .shipping-method-grid,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-band article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .promo {
    justify-content: flex-start;
    font-size: 13px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text {
    font-size: 16px;
  }

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

  .hero-stats,
  .trust-band,
  .product-grid,
  .material-grid,
  .shipping-tracker,
  .shipping-method-grid,
  .detail-actions,
  .form-grid,
  .form-grid.three,
  .shipping-fields,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .main-product {
    inset: 0 32px 70px 0;
  }

  .side-product {
    width: 54%;
    height: 170px;
  }

  .side-product figcaption {
    display: none;
  }

  .proof-strip {
    left: 12px;
    right: 12px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }

  .trust-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .custom-form {
    padding: 20px;
  }
}
