* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #992626;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.site-header-inner {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 10px clamp(22px, 4vw, 56px) 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-shadow: 0 0 14px rgba(214, 178, 72, .18);
}

.site-header > .site-logo {
  margin-left: clamp(28px, 4vw, 56px);
  padding: 10px 0 9px;
}

.site-header-extra {
  display: none;
}

.site-header-extra span {
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header-extra nav {
  display: flex;
  gap: 18px;
  margin-top: 3px;
}

.site-header-extra a {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.lp-flow {
  width: min(100%, 736px);
  margin: 0 auto;
  background: #000;
}

.lp-flow-desktop {
  display: none;
}

.lp-flow img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
}

.order-section {
  position: relative;
  margin-top: 144px;
}

.lp-flow .order-section-image {
  margin-top: 0;
}

.first-product-link {
  position: absolute;
  left: 7%;
  top: 6.6%;
  width: 86%;
  height: 43.4%;
  z-index: 2;
  display: block;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 155, 26, .22);
}

.second-product-link {
  position: absolute;
  left: 4%;
  top: 53%;
  width: 92%;
  height: 46%;
  z-index: 2;
  display: block;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 155, 26, .22);
}

.first-product-link:focus-visible,
.second-product-link:focus-visible {
  outline: 3px solid #ff9b1a;
  outline-offset: 3px;
}

.site-footer {
  width: 100%;
  margin: 144px 0 0;
  padding: 0;
  background: #992626;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.site-footer-inner {
  width: min(100%, 1400px);
  margin: 0 auto;
  padding: 28px clamp(22px, 4vw, 56px) 34px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-nav a {
  color: #f4f4f4;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.shop-info {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
}

@media (min-width: 560px) {
  .footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (min-width: 768px) {
  .site-header-extra {
    display: block;
    text-align: right;
  }

  .lp-flow-mobile {
    display: none;
  }

  .lp-flow-desktop {
    display: block;
    width: min(100%, 1120px);
  }

  .desktop-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
    align-items: center;
    min-height: calc(100vh - 63px);
    padding: 34px clamp(24px, 4vw, 56px);
    background: #000;
  }

  .desktop-hero-media {
    align-self: center;
    min-height: 0;
  }

  .desktop-hero-media img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 132px);
    object-fit: contain;
    object-position: center;
  }

  .desktop-hero-copy {
    padding-left: clamp(34px, 5vw, 72px);
  }

  .desktop-hero-copy h1 {
    margin: 0;
    color: #fff;
    font-family: "Arial Black", "Impact", "Segoe UI", sans-serif;
    font-size: clamp(52px, 5.1vw, 80px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: 0;
    text-transform: none;
    text-shadow: 0 0 18px rgba(255, 255, 255, .16), 0 8px 28px rgba(0, 0, 0, .65);
    animation: hero-copy-rise .9s ease-out both;
  }

  .desktop-hero-copy h1 .hero-line {
    display: block;
    white-space: nowrap;
  }

  .desktop-hero-subtitle {
    display: block;
    margin-top: 34px;
    color: rgba(255, 255, 255, .88);
    font-family: "Yu Gothic", "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    font-size: clamp(17px, 1.3vw, 21px);
    font-weight: 900;
    line-height: 1.35;
    white-space: nowrap;
    text-shadow: 0 0 14px rgba(215, 180, 90, .2);
    animation: hero-copy-rise .9s ease-out .18s both;
  }

  @keyframes hero-copy-rise {
    from {
      opacity: 0;
      transform: translateY(22px);
      filter: blur(4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  .desktop-section {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
    gap: clamp(34px, 5vw, 70px);
    align-items: center;
    padding: 86px clamp(24px, 4vw, 56px);
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .desktop-print {
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr);
    padding-top: 76px;
  }

  .desktop-print .desktop-section-media {
    transform: translateX(-44px);
  }

  .desktop-section-copy {
    max-width: 520px;
  }

  .desktop-eyebrow {
    margin: 0 0 16px;
    color: #d7b45a;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
  }

  .desktop-section-copy h2,
  .desktop-products h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 3.7vw, 52px);
    font-weight: 950;
    line-height: 1.22;
    letter-spacing: 0;
  }

  .desktop-section-copy h2 span {
    display: block;
    white-space: nowrap;
  }

  .desktop-print-title {
    font-size: clamp(30px, 3.3vw, 46px);
  }

  @supports (animation-timeline: view()) {
    .desktop-points .desktop-section-copy h2,
    .desktop-points .desktop-section-copy li,
    .desktop-print .desktop-section-copy h2,
    .desktop-print .desktop-section-copy li {
      opacity: 0;
      animation: section-copy-rise .85s ease-out both;
      animation-timeline: view();
      animation-range: entry 8% cover 34%;
    }

    .desktop-points .desktop-section-copy li:nth-child(2),
    .desktop-print .desktop-section-copy li:nth-child(2) {
      animation-range: entry 12% cover 38%;
    }

    .desktop-points .desktop-section-copy li:nth-child(3),
    .desktop-print .desktop-section-copy li:nth-child(3) {
      animation-range: entry 16% cover 42%;
    }
  }

  @keyframes section-copy-rise {
    from {
      opacity: 0;
      transform: translateY(24px);
      filter: blur(4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }

  .desktop-section-copy ul {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
  }

  .desktop-section-copy li {
    position: relative;
    padding-left: 34px;
    color: rgba(255, 255, 255, .84);
    font-size: 17px;
    font-weight: 750;
    line-height: 1.75;
  }

  .desktop-section-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .38em;
    width: 21px;
    height: 21px;
    border: 3px solid #f2d127;
    transform: none;
  }

  .desktop-section-copy li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: .35em;
    width: 20px;
    height: 11px;
    border-left: 5px solid #f2d127;
    border-bottom: 5px solid #f2d127;
    transform: rotate(-45deg);
  }

  .desktop-section-media img {
    width: 100%;
    max-height: 760px;
    object-fit: contain;
    object-position: center;
  }

  .desktop-points .desktop-section-media {
    justify-self: end;
    width: 100%;
    margin-right: 0;
    transform: translateX(52px);
  }

  .desktop-points .desktop-section-media img {
    object-position: right center;
  }

  .desktop-products {
    padding: 88px clamp(24px, 4vw, 56px) 10px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .desktop-products h2 {
    text-align: center;
    text-shadow: 0 0 18px rgba(215, 180, 90, .45);
  }

  .desktop-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
  }

  .desktop-product-card {
    display: grid;
    grid-template-rows: auto auto auto auto auto;
    gap: 14px;
    min-width: 0;
    padding: 20px 20px 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 6px;
    background: #111;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
  }

  .desktop-product-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1600 / 1395;
    object-fit: contain;
    object-position: center;
    background: #000;
  }

  .desktop-product-card span {
    color: #d7b45a;
    font-size: 14px;
    font-weight: 900;
  }

  .desktop-product-card strong {
    min-width: 0;
    font-size: clamp(20px, 1.9vw, 30px);
    line-height: 1.25;
  }

  .desktop-product-price {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: clamp(6px, .8vw, 12px);
    margin: 4px 0 0;
    color: #fff;
    white-space: nowrap;
  }

  .desktop-product-price em {
    padding: 2px 8px;
    background: #e00000;
    color: #fff;
    font-style: normal;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.2;
  }

  .desktop-product-price s {
    color: #fff;
    font-size: clamp(18px, 1.8vw, 30px);
    font-weight: 950;
    text-decoration-thickness: 2px;
  }

  .desktop-product-price i {
    color: #fff;
    font-style: normal;
    font-size: clamp(18px, 1.7vw, 28px);
    font-weight: 900;
  }

  .desktop-product-price b {
    color: #ff1414;
    font-size: clamp(28px, 2.8vw, 46px);
    font-weight: 950;
    line-height: 1;
  }

  .desktop-product-price small {
    color: #fff;
    font-size: clamp(16px, 1.3vw, 22px);
    font-weight: 900;
  }

  .desktop-product-card .desktop-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(240px, 100%);
    margin-top: 8px;
    padding: 14px 22px;
    border-radius: 5px;
    background: #ff9b1a;
    color: #fff;
    font-size: 22px;
    font-weight: 950;
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
  }
}

.contact-page {
  width: min(100%, 736px);
  margin: 0 auto;
  padding: 44px 20px 54px;
  background: #000;
  color: #fff;
}

.contact-page h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-lead {
  margin: 14px 0 28px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field span {
  font-size: 13px;
  font-weight: 700;
}

.contact-field b {
  margin-left: 6px;
  color: #ff9b1a;
  font-size: 11px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  padding: 13px 14px;
  background: #151515;
  color: #fff;
  font: inherit;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.7;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(255, 155, 26, .8);
  outline-offset: 2px;
}

.contact-submit {
  width: min(100%, 340px);
  min-height: 52px;
  justify-self: center;
  border: 0;
  border-radius: 6px;
  background: #ff9b1a;
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.contact-submit:disabled {
  opacity: .65;
  cursor: wait;
}

.contact-result {
  min-height: 1.6em;
  margin: 0;
  text-align: center;
  font-size: 14px;
}

.contact-result.success {
  color: #76dfa0;
}

.contact-result.error {
  color: #ff8c8c;
}

.contact-footer {
  margin-top: 0;
  padding: 28px clamp(22px, 4vw, 56px) 34px;
}

.contact-footer > .footer-nav,
.contact-footer > .shop-info {
  width: min(100%, 1400px);
  margin-left: auto;
  margin-right: auto;
}

.legal-page {
  width: min(100%, 736px);
  margin: 0 auto;
  min-height: 52vh;
  padding: 44px 20px 54px;
  background: #000;
  color: #fff;
}

.legal-page h1 {
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-content {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 22px 18px;
  background: #101010;
}

.legal-content p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.8;
}

.sale-bar {
  width: min(100%, 736px);
  margin: 0 auto;
  padding: 10px 14px;
  background: #a12628;
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 3.8vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.product-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  width: min(100%, 736px);
  min-height: 58px;
  margin: 0 auto;
  padding: 0 18px;
  background: #030303;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.product-logo {
  color: rgba(255, 255, 255, .78);
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0;
}

.header-icon,
.header-actions a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  text-decoration: none;
}

.header-actions {
  display: none;
  justify-content: flex-end;
  gap: 8px;
}

.header-actions a {
  font-size: 28px;
}

.product-page {
  width: min(100%, 736px);
  margin: 0 auto;
  padding: 34px 20px 0;
  background: #000;
  color: #fff;
}

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

.product-main-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #080808;
}

.product-main-image::before {
  content: "⌕";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .82);
  color: #fff;
  font-size: 21px;
}

.product-main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-thumbnails {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(92px, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 0 0 4px;
  scrollbar-width: thin;
}

.product-thumb {
  min-width: 92px;
  padding: 0;
  border: 2px solid transparent;
  background: #111;
  cursor: pointer;
}

.product-thumb.active {
  border-color: #fff;
}

.product-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-summary {
  padding: 24px 0 28px;
}

.product-brand {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.product-summary h1 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: 0;
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  font-weight: 900;
}

.price-before {
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
  text-decoration: line-through;
}

.price-arrow {
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
}

.price-current {
  color: #ff251d;
  font-size: 42px;
  line-height: 1;
}

.price-tax {
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
}

.sale-pill {
  display: inline-block;
  margin-top: 12px;
  border-radius: 999px;
  padding: 6px 20px;
  background: #bd4248;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.product-form {
  display: grid;
  gap: 24px;
  padding: 0 0 72px;
}

.product-field {
  display: grid;
  gap: 10px;
}

.product-field span,
.quantity-block > span,
.product-agree span {
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.product-field b,
.product-agree b {
  color: #e33434;
}

.product-field input,
.product-field select {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 4px;
  padding: 0 16px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 17px;
}

.product-field select {
  background: #070707;
  color: rgba(255, 255, 255, .72);
}

.product-field input:focus,
.product-field select:focus {
  outline: 2px solid #ff9b1a;
  outline-offset: 2px;
}

.product-agree {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
}

.product-agree input {
  width: 22px;
  height: 22px;
  margin-top: 6px;
  accent-color: #ff9b1a;
}

.quantity-block {
  display: grid;
  gap: 10px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 184px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, .7);
}

.quantity-control button,
.quantity-control strong {
  display: grid;
  place-items: center;
  border: 0;
  background: #050505;
  color: #fff;
  font: inherit;
  font-size: 22px;
  font-weight: 700;
}

.quantity-control button {
  cursor: pointer;
}

.add-cart-button {
  width: 100%;
  min-height: 62px;
  border: 1px solid rgba(255, 255, 255, .88);
  border-radius: 0;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}

.add-cart-button:disabled {
  opacity: .65;
  cursor: wait;
}

.complete-home-button {
  display: grid;
  place-items: center;
  margin: 28px 0 72px;
  text-decoration: none;
}

.image-mail-box {
  display: grid;
  gap: 10px;
  width: min(100%, 440px);
  margin-top: 72px;
  justify-self: center;
}

.image-mail-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 4px 12px;
  min-height: 76px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 8px;
  padding: 12px 16px;
  background: #ff9b1a;
  color: #111;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 155, 26, .26);
}

.image-mail-link span {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .88);
  color: #fff;
  font-size: 21px;
  line-height: 1;
}

.image-mail-link strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.image-mail-link small {
  display: block;
  color: rgba(17, 17, 17, .78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.image-mail-link:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.mail-provider-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mail-provider-links span {
  width: 100%;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
}

.mail-provider-links a,
.mail-provider-links button {
  display: inline-grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  padding: 0 12px;
  background: #151515;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.mail-provider-links button {
  background: rgba(255, 155, 26, .16);
}

.mail-address-note {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.cart-message {
  min-height: 1.5em;
  margin: -12px 0 0;
  color: #ffb142;
  text-align: center;
  font-weight: 800;
}

.faq-float {
  position: fixed;
  left: max(14px, calc(50% - 340px));
  bottom: 22px;
  z-index: 20;
  max-width: calc(100vw - 130px);
  border-radius: 999px;
  padding: 10px 16px;
  background: #d82323;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .36);
}

.cart-float {
  position: fixed;
  right: max(18px, calc(50% - 338px));
  bottom: 24px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ff9500;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .38);
}

.cart-float span {
  position: absolute;
  top: -7px;
  left: -7px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f40017;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.cart-float strong {
  font-size: 31px;
  line-height: 1;
}

@media (min-width: 900px) {
  .product-header {
    width: 100%;
    max-width: none;
    min-height: 56px;
    padding: 0 clamp(28px, 5vw, 72px);
    background: #992626;
  }

  .product-logo {
    color: #fff;
  }

  .product-page {
    display: grid;
    grid-template-columns: minmax(440px, 1.12fr) minmax(390px, .88fr);
    grid-template-rows: auto 1fr;
    column-gap: clamp(32px, 4.5vw, 72px);
    width: min(100%, 1320px);
    min-height: calc(100vh - 56px);
    padding: clamp(22px, 3vw, 38px) clamp(28px, 4vw, 56px) 36px;
    align-items: start;
  }

  .product-gallery {
    grid-column: 1;
    grid-row: 1 / span 2;
    gap: 12px;
  }

  .product-main-image {
    display: grid;
    place-items: center;
    min-height: 0;
  }

  .product-main-image::before {
    display: none;
  }

  .product-main-image img {
    width: 100%;
    max-height: calc(100vh - 198px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    background: #080808;
  }

  .product-thumbnails {
    grid-auto-columns: 92px;
    justify-content: start;
    overflow: visible;
  }

  .product-thumb,
  .product-thumb img {
    min-width: 0;
    width: 92px;
  }

  .product-summary {
    grid-column: 2;
    padding: 0 0 16px;
  }

  .product-brand {
    margin-bottom: 5px;
    color: #d7b45a;
    font-weight: 900;
  }

  .product-summary h1 {
    margin-bottom: 12px;
    font-size: clamp(28px, 2.4vw, 38px);
    line-height: 1.18;
  }

  .product-price {
    flex-wrap: nowrap;
    gap: 10px;
    white-space: nowrap;
  }

  .price-before,
  .price-arrow {
    font-size: clamp(20px, 1.7vw, 26px);
  }

  .price-current {
    font-size: clamp(40px, 3.4vw, 56px);
  }

  .price-tax {
    font-size: clamp(16px, 1.3vw, 21px);
  }

  .sale-pill {
    margin-top: 10px;
    border-radius: 4px;
    padding: 4px 12px;
    background: #e00000;
    font-size: 14px;
  }

  .product-form {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
    padding: 0;
    align-content: start;
  }

  .product-field {
    gap: 6px;
  }

  .product-field span,
  .quantity-block > span,
  .product-agree span {
    font-size: 14px;
    line-height: 1.35;
  }

  .product-field input,
  .product-field select {
    min-height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }

  .quantity-block,
  .add-cart-button,
  .image-mail-box,
  .cart-message {
    grid-column: 1 / -1;
  }

  .quantity-block {
    gap: 7px;
  }

  .quantity-control {
    width: 164px;
    height: 46px;
  }

  .quantity-control button,
  .quantity-control strong {
    font-size: 18px;
  }

  .add-cart-button {
    min-height: 54px;
    border: 0;
    border-radius: 5px;
    background: #ff9b1a;
    color: #fff;
    font-size: 20px;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(255, 155, 26, .18);
  }

  .image-mail-box {
    width: 100%;
    margin-top: 8px;
  }

  .image-mail-link {
    min-height: 64px;
  }

  .mail-provider-links {
    gap: 7px;
  }

  .mail-provider-links a,
  .mail-provider-links button {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .cart-message {
    min-height: 1.2em;
    margin: -4px 0 0;
    font-size: 13px;
  }
}

.checkout-page {
  width: min(100%, 736px);
  margin: 0 auto;
  padding: 34px 20px 0;
  background: #000;
  color: #fff;
}

.checkout-summary {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  padding: 22px 18px;
  background: #101010;
}

.checkout-summary h1 {
  margin: 0 0 22px;
  font-size: 25px;
  line-height: 1.25;
  letter-spacing: 0;
}

.checkout-item,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 15px;
}

.checkout-item span,
.checkout-total span {
  color: rgba(255, 255, 255, .68);
}

.checkout-item strong,
.checkout-total strong {
  text-align: right;
}

.checkout-total {
  align-items: baseline;
  font-size: 18px;
  font-weight: 900;
}

.checkout-total strong {
  color: #ff9b1a;
  font-size: 26px;
}

.checkout-form {
  display: grid;
  gap: 24px;
  padding: 28px 0 72px;
}

.checkout-body {
  background: #000;
  color: #fff;
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  width: min(100%, 736px);
  min-height: 56px;
  margin: 0 auto;
  padding: 0 14px;
  background: #992626;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.checkout-back,
.checkout-logo {
  color: #fff;
  text-decoration: none;
}

.checkout-back {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 36px;
  line-height: 1;
}

.checkout-logo {
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.maplit-checkout {
  padding: 12px 16px 40px;
  background: #000;
  color: #fff;
}

.route-order-form {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.maplit-checkout .confirm-card {
  background: #101010;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 14px 16px;
}

.maplit-checkout .confirm-card-title {
  margin-bottom: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.maplit-checkout .form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
}

.maplit-checkout .form-group:first-of-type {
  margin-top: 0;
}

.maplit-checkout .form-label {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 600;
}

.maplit-checkout .required {
  margin-left: 4px;
  color: #ff9b1a;
  font-size: 11px;
}

.maplit-checkout .form-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
  padding: 10px 13px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 14px;
}

.maplit-checkout .form-input:focus {
  outline: none;
  border-color: #ff9b1a;
  box-shadow: 0 0 0 2px rgba(255, 155, 26, .22);
}

.maplit-checkout .price-summary {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  padding: 12px 16px;
  background: #101010;
}

.maplit-checkout .price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 3px 0;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
}

.maplit-checkout .price-row span:last-child {
  text-align: right;
}

.maplit-checkout .price-total {
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 6px;
  color: #ff9b1a;
  font-size: 17px;
  font-weight: 700;
}

.payment-method-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-method-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  padding: 12px 14px;
  background: #151515;
  cursor: pointer;
}

.payment-method-option:has(input:checked) {
  border-color: #ff9b1a;
  background: rgba(153, 38, 38, .36);
}

.payment-method-option input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #ff9b1a;
}

.payment-method-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-method-name {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.payment-method-hint {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
}

.payment-submethod-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: -4px;
  padding: 8px 12px 4px 38px;
}

.payment-submethod-list[hidden] {
  display: none;
}

.payment-submethod-option {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 8px 10px;
  background: #151515;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
}

.payment-submethod-option:has(input:checked) {
  border-color: #ff9b1a;
  background: rgba(153, 38, 38, .36);
}

.maplit-checkout .form-note {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  line-height: 1.55;
}

.maplit-checkout .btn {
  border: 0;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
}

.maplit-checkout .btn-order {
  width: 100%;
  margin-top: 4px;
  padding: 14px;
  background: #ff9b1a;
  color: #fff;
}

.maplit-checkout .btn-order:disabled {
  background: #ccc;
  cursor: wait;
}

.maplit-checkout .cart-message {
  min-height: 1.5em;
  margin: 0;
  color: #ffb142;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.maplit-checkout .cart-message.error {
  color: #ff8c8c;
}

@media (max-width: 430px) {
  .product-page {
    padding-inline: 16px;
  }

  .product-header {
    grid-template-columns: 40px 1fr 40px;
    padding-inline: 14px;
  }

  .product-logo {
    font-size: 22px;
  }

  .price-current {
    font-size: 36px;
  }

  .product-field span,
  .quantity-block > span,
  .product-agree span {
    font-size: 16px;
  }

  .image-mail-box {
    width: 100%;
  }

  .mail-provider-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .mail-provider-links span {
    grid-column: 1 / -1;
  }

  .mail-provider-links a,
  .mail-provider-links button {
    width: 100%;
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }

  .mail-address-note {
    word-break: break-all;
  }
}
