:root {
  --ink: #202020;
  --muted: #666666;
  --line: #dfdfdf;
  --soft: #f7f7f7;
  --panel: #ffffff;
  --red: #ff3653;
  --red-dark: #db1832;
  --yellow: #ffcd00;
  --yellow-soft: #fffae5;
  --green: #008a40;
  --blue: #006dc7;
  --shadow: 0 18px 60px rgba(32, 32, 32, 0.12);
  --radius: 8px;
  --max: 1230px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Source Sans Pro", "Outfit", Arial, Helvetica, sans-serif;
  background: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  min-width: 0;
}

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

.notice-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 6px 20px;
  color: #ffffff;
  background: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.notice-bar p {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.notice-bar a {
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  white-space: nowrap;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin-inline: auto;
  min-width: 0;
}

.brand img {
  width: 144px;
  height: 38px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding-block: 26px;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--yellow);
  transition: width 180ms ease;
}

.primary-nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

.cart-link {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}

.icon-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.icon-user {
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
}

.icon-user::after {
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 22px;
  height: 12px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  content: "";
  transform: translateX(-50%);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.product-area {
  padding: 46px 0 62px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 54%, var(--yellow-soft) 54%, var(--yellow-soft) 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
  min-width: 0;
}

.gallery {
  position: sticky;
  top: 130px;
  min-width: 0;
}

.image-stage {
  display: grid;
  place-items: center;
  min-height: 530px;
  padding: 36px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stage img {
  width: min(100%, 530px);
  height: auto;
  object-fit: contain;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.thumb {
  display: grid;
  place-items: center;
  height: 92px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
}

.thumb img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.thumb.is-active {
  border-color: var(--red);
  box-shadow: inset 0 0 0 2px var(--red);
}

.gallery-assurance {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
}

.gallery-assurance a {
  color: var(--red-dark);
  font-weight: 800;
}

.buy-panel {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 4px;
  content: "";
  background: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin: 10px 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 10px 0 16px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 8px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0;
}

.sku-price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.sku {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.sku strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.price {
  color: var(--red-dark);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.lead {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.benefit-list,
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}

.benefit-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  overflow-wrap: break-word;
}

.benefit-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  content: "";
  background: var(--green);
}

.benefit-list li::after,
.check-list li::after {
  position: absolute;
  left: 5px;
  top: 8px;
  width: 5px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.tier-table {
  overflow: hidden;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  min-width: 0;
}

.tier-table div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
}

.tier-table .tier-head {
  border-top: 0;
  color: #ffffff;
  background: var(--ink);
  font-weight: 800;
}

.tier-table strong,
.tier-table a {
  justify-self: end;
}

.tier-table a {
  color: var(--red-dark);
  font-weight: 900;
}

.tier-table s {
  color: var(--muted);
  font-weight: 600;
}

.quantity-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 24px 0;
}

.quantity-row label,
.field-block label {
  font-weight: 900;
}

.stepper {
  display: grid;
  grid-template-columns: 40px 64px 40px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.stepper button {
  border: 0;
  background: var(--soft);
  cursor: pointer;
  font-weight: 900;
}

.stepper input {
  width: 64px;
  border: 0;
  border-inline: 1px solid var(--line);
  text-align: center;
  font-weight: 800;
}

#line-total {
  justify-self: end;
  color: var(--green);
  font-weight: 900;
}

.field-block {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.field-block p,
.fee-section p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.field-block input,
.fee-grid input,
.mini-form input,
.mini-form select,
.newsletter input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.option-section {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.option-section h2 {
  margin: 0;
  font-size: 20px;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.text-button {
  border: 0;
  color: var(--red-dark);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

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

.option-card {
  min-height: 150px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  text-align: left;
}

.option-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.option-card span {
  display: block;
  margin-top: 12px;
  font-weight: 900;
}

.option-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
}

.option-card.is-selected,
.segmented button.is-selected {
  border-color: var(--red);
  background: #fff7f8;
  box-shadow: inset 0 0 0 2px var(--red);
}

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

.segmented.compact {
  width: min(280px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.segmented button {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 900;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.check-row input {
  width: 20px;
  height: 20px;
  accent-color: var(--red);
}

.fee-section {
  display: grid;
  gap: 14px;
}

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

.fee-grid label {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
  font-weight: 900;
}

.fee-output {
  color: var(--green) !important;
  font-weight: 900;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.primary-cta,
.secondary-cta,
.mini-form button,
.newsletter button,
.sticky-buy a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
}

.sticky-buy a {
  flex: 0 0 auto;
  min-width: 128px;
  padding-inline: 16px;
}

.primary-cta,
.mini-form button,
.newsletter button,
.sticky-buy a {
  color: #ffffff;
  background: var(--red);
}

.primary-cta:hover,
.mini-form button:hover,
.newsletter button:hover,
.sticky-buy a:hover {
  background: var(--red-dark);
}

.secondary-cta {
  border-color: var(--ink);
  background: #ffffff;
}

.primary-cta.dark {
  color: #ffffff;
  background: var(--ink);
}

.account-band {
  padding: 46px 0;
  color: #ffffff;
  background: var(--ink);
}

.account-band .eyebrow {
  color: #ffffff;
}

.account-grid {
  display: grid;
  grid-template-columns: 1fr auto 1.25fr;
  align-items: center;
  gap: 28px;
}

.account-grid p {
  margin-bottom: 0;
  color: #d9d9d9;
}

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

.overview-band,
.features-band,
.faq-band {
  padding: 82px 0;
  background: #ffffff;
}

.overview-grid,
.payment-grid,
.engagement-grid,
.details-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.overview-copy p,
.payment-grid p,
.engagement-grid p,
.feature-card p,
.accordion p,
.site-footer p {
  color: var(--muted);
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 14px;
  align-items: end;
}

.image-mosaic img,
.engagement-grid > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-mosaic img:nth-child(2) {
  transform: translateY(34px);
}

.payment-band {
  padding: 72px 0;
  background: var(--soft);
}

.payment-grid img {
  width: min(100%, 560px);
  justify-self: end;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.engagement-band {
  padding: 82px 0;
  background: var(--yellow-soft);
}

.engagement-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

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

.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.feature-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.details-band {
  padding: 82px 0;
  color: #ffffff;
  background: #272727;
}

.details-band .eyebrow,
.details-band h2 {
  color: #ffffff;
}

.spec-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.spec-list dt {
  color: #ffffff;
  font-weight: 900;
}

.spec-list dd {
  margin: 0;
  color: #d4d4d4;
}

.faq-grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.accordion summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

.accordion p {
  margin: 0;
  padding: 0 20px 20px;
}

.sticky-buy {
  position: sticky;
  bottom: 0;
  z-index: 45;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.sticky-product {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.sticky-product img {
  width: 46px;
  height: 52px;
  object-fit: contain;
}

.sticky-product strong,
.sticky-product span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-product div {
  min-width: 0;
}

.sticky-product span {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 58px 0 0;
  color: #ffffff;
  background: #111111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.2fr;
  gap: 34px;
}

.site-footer img {
  width: 146px;
  height: 40px;
  object-fit: contain;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer nav a,
.footer-bottom a {
  color: #dfdfdf;
}

.newsletter {
  display: grid;
  gap: 12px;
}

.newsletter label {
  display: flex;
  gap: 10px;
  color: #dfdfdf;
  font-size: 13px;
}

.newsletter input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--yellow);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
  padding: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #dfdfdf;
  font-size: 14px;
}

.info-modal {
  width: min(520px, calc(100% - 32px));
  padding: 30px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-modal::backdrop {
  background: rgba(0, 0, 0, 0.48);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 1040px) {
  .nav-wrap {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 114px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 10px;
  }

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

  .nav-actions {
    justify-self: end;
  }

  .product-grid,
  .overview-grid,
  .payment-grid,
  .engagement-grid,
  .details-grid,
  .faq-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    position: static;
  }

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

  .payment-grid img {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .notice-bar {
    flex-direction: column;
    gap: 6px;
    padding-inline: 12px;
    text-align: center;
  }

  .notice-bar p {
    width: 100%;
    font-size: 13px;
    line-height: 1.25;
  }

  .nav-wrap {
    min-height: 66px;
    gap: 12px;
  }

  .brand img {
    width: 114px;
    height: 34px;
  }

  .nav-actions .icon-link {
    display: none;
  }

  .product-area {
    padding-top: 24px;
    background: #ffffff;
  }

  .buy-panel {
    padding: 22px;
  }

  .image-stage {
    min-height: 340px;
    padding: 22px;
  }

  .thumb-row {
    grid-template-columns: repeat(5, minmax(54px, 1fr));
    overflow-x: auto;
  }

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

  .gallery-assurance strong,
  .gallery-assurance a {
    grid-column: 1 / -1;
  }

  .sku-price-row,
  .cta-row,
  .section-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .quantity-row,
  .option-card-grid,
  .fee-grid,
  .mini-form,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tier-table div {
    grid-template-columns: 1fr auto;
  }

  #line-total {
    justify-self: start;
  }

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

  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .image-mosaic img:nth-child(2) {
    transform: none;
  }

  .overview-band,
  .features-band,
  .engagement-band,
  .details-band,
  .faq-band {
    padding: 56px 0;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sticky-buy {
    width: 100%;
    margin: 0;
    gap: 10px;
    overflow: hidden;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }

  .sticky-product strong {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-product span {
    max-width: 150px;
  }

  .sticky-buy a {
    min-width: 108px;
    padding-inline: 12px;
  }
}
