.shopBody {
  background:
    radial-gradient(circle at 75% 8%, rgba(156, 255, 35, 0.07), transparent 26rem),
    #050705;
}

.shopBody .site {
  min-height: 100vh;
}

.shopBody .site select {
  font: inherit;
}

.shopBody .site select:focus-visible,
.shopBody .site [type="checkbox"]:focus-visible,
.shopBody .site [type="radio"]:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

.shopHeader .nav a.active::after,
.shopHeader .nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.navCart span,
.shopHeader .headerCta span {
  display: inline-grid;
  place-items: center;
  min-width: 21px;
  height: 21px;
  border-radius: 999px;
  padding: 0 5px;
  background: #071006;
  color: var(--acid);
  font-size: 10px;
  font-weight: 900;
}

.shopHeader .navCart {
  display: none;
}

.menuGlyph {
  color: var(--white);
  font-size: 22px;
  line-height: 1;
}

.shopMain {
  min-height: calc(100vh - 190px);
  padding-top: 76px;
}

.shopHero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(110deg, rgba(5, 7, 5, 0.98) 20%, rgba(5, 7, 5, 0.7)),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.025) 80px);
}

.shopHero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  content: "";
  opacity: 0.42;
}

.shopHero__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  min-height: 450px;
  padding-block: 74px;
  gap: clamp(40px, 8vw, 120px);
}

.shopHero h1,
.pageIntro h1,
.productDetail h1,
.successCard h1 {
  margin: 20px 0 0;
  color: #f7faf7;
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.shopHero h1 span {
  color: var(--acid);
}

.shopHero p {
  width: min(620px, 100%);
  margin: 25px 0 0;
  color: #a4aca5;
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.75;
}

.shopEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--acid);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.shopEyebrow i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--acid);
  box-shadow: 0 0 13px rgba(156, 255, 35, 0.7);
}

.shopHero__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: min(310px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  transform: rotate(-5deg);
  border: 1px solid rgba(156, 255, 35, 0.28);
  border-radius: 34px;
  background: linear-gradient(145deg, #151b16, #080b09 65%);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55), inset 0 0 70px rgba(156, 255, 35, 0.04);
}

.shopHero__visual::before,
.shopHero__visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
}

.shopHero__visual::before { inset: 18px; }
.shopHero__visual::after { inset: 36px; }
.shopHero__visual span { color: var(--acid); font-size: clamp(72px, 9vw, 125px); font-weight: 950; letter-spacing: -0.14em; text-shadow: 0 0 34px rgba(156, 255, 35, 0.3); }
.shopHero__visual div { position: absolute; right: 26px; bottom: 26px; width: 54px; height: 7px; border-radius: 99px; background: var(--acid); box-shadow: 0 0 18px rgba(156, 255, 35, 0.55); }

.shopSection {
  padding-block: 94px 120px;
}

.shopSectionHeading {
  margin-bottom: 38px;
}

.shopSectionHeading > p {
  color: #878f88;
}
.inlineLegalLink { border-bottom: 1px solid currentColor; color: #b6bdb7 !important; }
.inlineLegalLink:hover { color: var(--acid) !important; }

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

.productGrid > .shopStatus {
  grid-column: 1 / -1;
}

.productCard {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(16, 20, 17, 0.96), rgba(9, 12, 10, 0.96));
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.productCard:hover {
  transform: translateY(-5px);
  border-color: rgba(156, 255, 35, 0.38);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.productCard__image {
  display: grid;
  min-height: 275px;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0f0c;
}

.productCard__image img {
  width: 100%;
  height: 275px;
  object-fit: cover;
  transition: transform 280ms ease;
}

.productCard:hover .productCard__image img { transform: scale(1.025); }

.productCard__content {
  display: flex;
  min-height: 245px;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.productCard__tag {
  margin-bottom: 12px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.productCard__title {
  color: #f7faf7;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.15;
}

.productCard__title:hover { color: var(--acid); }
.productCard__content > p { margin: 13px 0 22px; color: #8d958e; font-size: 13px; line-height: 1.65; }
.productCard__meta { display: flex; justify-content: space-between; margin: -7px 0 20px; gap: 10px; color: #747d75; font-size: 10px; }
.productCard__meta .isAvailable { color: var(--acid); }
.productCard__meta .isUnavailable { color: #ff8e8e; }

.productCard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 16px;
}
.productCard__actions { display: flex; align-items: center; gap: 8px; }

.productPrice { color: #f7faf7; font-size: 22px; letter-spacing: -0.04em; }

.shopButton {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--acid);
  border-radius: 8px;
  padding: 0 21px;
  background: var(--acid);
  color: #071006 !important;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.shopButton:hover:not(:disabled) { transform: translateY(-1px); background: var(--acid-soft); box-shadow: 0 0 30px rgba(156, 255, 35, 0.18); }
.shopButton:disabled { opacity: 0.48; cursor: not-allowed; }
.shopButton--small { min-height: 40px; padding-inline: 15px; font-size: 11px; }
.shopButton--ghost { border-color: rgba(255, 255, 255, 0.17); background: transparent; color: #d1d7d1 !important; }
.shopButton--ghost:hover { border-color: var(--acid); background: rgba(156, 255, 35, 0.06) !important; color: var(--acid) !important; box-shadow: none !important; }
.shopButton--wide { width: 100%; }
.shopButton--order { min-height: 56px; margin-top: 8px; font-size: 14px; }

.shopStatus {
  display: grid;
  min-height: 240px;
  place-items: center;
  align-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 35px;
  background: rgba(12, 15, 13, 0.72);
  text-align: center;
}

.shopStatus strong { font-size: 18px; }
.shopStatus p { max-width: 570px; margin: 10px auto 20px; color: #919991; font-size: 13px; }
.shopStatus--error { border-color: rgba(255, 92, 92, 0.36); }

.shopSpinner {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  animation: shop-spin 800ms linear infinite;
  border: 3px solid rgba(156, 255, 35, 0.15);
  border-top-color: var(--acid);
  border-radius: 50%;
}

@keyframes shop-spin { to { transform: rotate(360deg); } }

.shopMain--detail {
  display: grid;
  align-items: center;
  padding-block: 146px 100px;
}

.productDetail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 105px);
}

.productDetail__media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0b0f0c;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.productDetail__media img { width: 100%; min-height: 480px; object-fit: cover; }
.productDetail h1 { margin-block: 20px 22px; font-size: clamp(40px, 5vw, 66px); }
.productDetail__description { margin: 0 0 28px; color: #a0a8a1; font-size: 16px; line-height: 1.75; }
.productDetail__price { display: block; margin-bottom: 26px; color: var(--acid); font-size: 34px; letter-spacing: -0.04em; }
.backLink { display: block; margin-bottom: 34px; color: #969e97 !important; font-size: 12px; }
.backLink:hover { color: var(--acid) !important; }
.stockNotice { margin: 17px 0; color: var(--acid); font-size: 12px; font-weight: 750; }
.stockNotice--unavailable { color: #ff8e8e; }
.taxNote { margin: 13px 0 0; color: #707871; font-size: 10px; }
.taxNote a { border-bottom: 1px solid currentColor; color: #a9b1aa !important; }

.shopField {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #cbd1cb;
  font-size: 11px;
  font-weight: 700;
}

.shopField input,
.shopField select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  padding: 0 13px;
  background: #090c0a;
  color: #f7faf7;
  font-size: 13px;
}

.shopField input:hover,
.shopField select:hover { border-color: rgba(255, 255, 255, 0.27); }
.shopField input:focus,
.shopField select:focus { border-color: var(--acid); }
.shopField--quantity { width: 100px; }
.shopField--full { grid-column: 1 / -1; }

.pageIntro {
  padding-block: 90px 40px;
  border-bottom: 1px solid var(--line);
}

.pageIntro h1 { margin-top: 17px; font-size: clamp(42px, 5vw, 68px); }
.pageIntro > p { margin: 19px 0 0; color: #929a93; font-size: 14px; }
.shopPageContent { padding-block: 48px 110px; }

.cartLayout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: start;
  gap: 28px;
}

.cartItems { display: grid; gap: 12px; }
.cartItem { display: grid; grid-template-columns: 132px minmax(0, 1fr) auto; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #0b0e0c; }
.cartItem > img { width: 132px; height: 132px; object-fit: cover; border-right: 1px solid var(--line); }
.cartItem__info { padding: 18px 23px; }
.cartItem__info h2 { margin: 0; font-size: 17px; line-height: 1.2; }
.cartItem__info p { margin: 7px 0 12px; color: #858e86; font-size: 11px; }
.cartItem__info strong { color: var(--acid); font-size: 14px; }
.cartItem__controls { display: flex; align-items: end; padding: 18px 22px 18px 5px; gap: 15px; }
.removeButton { min-height: 35px; border: 0; border-bottom: 1px solid #717971; padding: 0; background: transparent; color: #919a92 !important; font-size: 10px !important; cursor: pointer; }
.removeButton:hover { border-color: #ff8e8e; color: #ff8e8e !important; }

.cartSummary,
.checkoutSummary,
.checkoutCard {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, #101411, #090c0a);
}

.cartSummary { position: sticky; top: 100px; padding: 27px; }
.cartSummary h2,
.checkoutSummary h2 { margin: 0 0 23px; font-size: 18px; }
.summaryRow { display: flex; justify-content: space-between; padding: 8px 0; gap: 20px; color: #909890; font-size: 12px; }
.summaryRow--total { margin: 13px 0 22px; border-top: 1px solid var(--line); padding-top: 19px; color: #f7faf7; font-size: 17px; }
.summaryRow--total strong:last-child { color: var(--acid); }
.textLink { display: block; margin-top: 16px; color: #8d958e !important; font-size: 11px; text-align: center; }
.textLink:hover { color: var(--acid) !important; }
.shippingHint { margin: -7px 0 19px; color: #697169; font-size: 9px; line-height: 1.5; }

.checkoutLayout { display: grid; grid-template-columns: minmax(0, 1fr) 370px; align-items: start; gap: 28px; }
.checkoutForms { display: grid; gap: 20px; }
.checkoutCard { padding: clamp(24px, 4vw, 38px); }
.checkoutStep { display: flex; align-items: flex-start; margin-bottom: 30px; gap: 15px; }
.checkoutStep > span { display: grid; width: 32px; height: 32px; flex: none; place-items: center; border: 1px solid var(--acid); border-radius: 7px; color: var(--acid); font-size: 12px; font-weight: 850; }
.checkoutStep h2 { margin: 0; font-size: 20px; }
.checkoutStep p { margin: 5px 0 0; color: #7e877f; font-size: 11px; }
.formGrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.checkField { display: flex; align-items: flex-start; margin: 21px 0; gap: 10px; color: #a8afa9; font-size: 11px; line-height: 1.55; }
.checkField input { width: 16px; height: 16px; flex: none; margin: 1px 0 0; accent-color: var(--acid); }
.checkField a { border-bottom: 1px solid currentColor; color: var(--acid) !important; }
.billingFields { margin: 25px 0; border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.billingFields legend { padding: 0 8px; color: #f7faf7; font-size: 13px; font-weight: 800; }
.legalChecks { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 2px; }
.formError { margin: 17px 0; border-left: 3px solid #ff6b6b; padding: 10px 13px; background: rgba(255, 107, 107, 0.08); color: #ffb0b0; font-size: 11px; }
.checkoutCard h3 { margin: 28px 0 12px; font-size: 13px; }
.choiceList { display: grid; gap: 9px; }
.choiceCard { display: flex; align-items: center; border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 9px; padding: 14px 16px; gap: 12px; cursor: pointer; }
.choiceCard:has(input:checked) { border-color: var(--acid); background: rgba(156, 255, 35, 0.055); }
.choiceCard input { accent-color: var(--acid); }
.choiceCard span { display: flex; width: 100%; justify-content: space-between; gap: 15px; }
.choiceCard strong { font-size: 12px; }
.choiceCard small { color: #8d958e; font-size: 10px; }
.paymentStatus { min-height: 18px; margin: 13px 0; color: #89918a; font-size: 10px; }
.stripeElement { margin: 15px 0 22px; border-radius: 8px; padding: 15px; background: #f7faf7; }
.secureNote { margin: 13px 0 0; color: #626a63; font-size: 9px; text-align: center; }
.secureNote a { border-bottom: 1px solid currentColor; color: #8f978f !important; }
.checkoutSummary { position: sticky; top: 100px; padding: 27px; }
.checkoutItem { display: flex; justify-content: space-between; padding: 10px 0; gap: 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); color: #aab1aa; font-size: 11px; }
.checkoutItem strong { color: #f7faf7; }
.summaryDivider { height: 12px; }

.successMain { display: grid; min-height: calc(100vh - 170px); align-items: center; padding-block: 160px 90px; }
.successCard { width: min(680px, 100%); margin: 0 auto; border: 1px solid rgba(156, 255, 35, 0.3); border-radius: 18px; padding: clamp(35px, 7vw, 70px); background: radial-gradient(circle at 50% 0, rgba(156, 255, 35, 0.1), transparent 45%), #0b0e0c; text-align: center; }
.successCard .shopEyebrow { display: block; }
.successCard h1 { margin-block: 19px; font-size: clamp(38px, 6vw, 60px); }
.successCard > p { color: #9aa29b; font-size: 14px; line-height: 1.7; }
.successIcon { display: grid; width: 58px; height: 58px; place-items: center; margin: 0 auto 25px; border-radius: 50%; background: var(--acid); color: #071006; font-size: 27px; font-weight: 900; box-shadow: 0 0 35px rgba(156, 255, 35, 0.27); }
.successCard .orderReference { margin-top: 26px; color: #f7faf7; font-weight: 750; }
.successTotal { display: block; margin: 7px 0 28px; color: var(--acid); font-size: 25px; }
.successOrderSummary { display: grid; margin: 0 0 28px; border-block: 1px solid var(--line); padding-block: 12px; gap: 6px; }
.successOrderSummary > div { display: flex; justify-content: space-between; gap: 15px; color: #9ca49d; font-size: 11px; text-align: left; }
.successOrderSummary strong { color: #f7faf7; }

.shopFooter { border-top: 1px solid var(--line); }
.shopFooter .footerLinks { flex-wrap: wrap; justify-content: flex-end; }

.legalMain { padding-block: 145px 100px; }
.legalLayout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; align-items: start; gap: 58px; }
.legalNav { position: sticky; top: 105px; display: grid; gap: 6px; border-left: 1px solid var(--line); padding-left: 20px; }
.legalNav a { padding: 7px 0; color: #848c85 !important; font-size: 11px; }
.legalNav a:hover,
.legalNav a[aria-current="page"] { color: var(--acid) !important; }
.legalContent { min-width: 0; }
.legalContent h1 { margin: 16px 0 24px; font-size: clamp(42px, 6vw, 66px); letter-spacing: -0.055em; line-height: 1; }
.legalContent h2 { margin: 40px 0 12px; color: #f7faf7; font-size: 19px; }
.legalContent h3 { margin: 27px 0 9px; font-size: 14px; }
.legalContent p,
.legalContent li { color: #a1a9a2; font-size: 13px; line-height: 1.8; }
.legalContent ul { padding-left: 20px; }
.legalNotice { margin: 30px 0; border: 1px solid rgba(156, 255, 35, 0.3); border-radius: 10px; padding: 18px 20px; background: rgba(156, 255, 35, 0.055); color: #d8dfd8 !important; }
.legalPlaceholder { display: inline-block; border-radius: 4px; padding: 1px 5px; background: rgba(255, 190, 87, 0.12); color: #ffc66e; font-weight: 750; }

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

@media (max-width: 960px) {
  .productGrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cartLayout,
  .checkoutLayout { grid-template-columns: 1fr; }
  .cartSummary,
  .checkoutSummary { position: static; }
}

@media (max-width: 820px) {
  .shopMain { padding-top: 68px; }
  .shopHeader .navCart { display: block; }
  .shopHero__inner { grid-template-columns: 1fr; min-height: auto; padding-block: 75px; }
  .shopHero__visual { width: 235px; grid-row: 1; }
  .shopMain--detail { padding-block: 115px 80px; }
  .productDetail { grid-template-columns: 1fr; gap: 40px; }
  .productDetail__media img { min-height: 380px; }
  .shopFooter .footerLinks { justify-content: flex-start; }
  .legalLayout { grid-template-columns: 1fr; gap: 35px; }
  .legalNav { position: static; grid-template-columns: repeat(2, 1fr); border-left: 0; border-bottom: 1px solid var(--line); padding: 0 0 20px; }
}

@media (max-width: 640px) {
  .productGrid { grid-template-columns: 1fr; }
  .shopSection { padding-block: 70px 85px; }
  .shopHero__inner { gap: 50px; }
  .shopHero h1 { font-size: clamp(41px, 13vw, 62px); }
  .productCard__image,
  .productCard__image img { min-height: 245px; height: 245px; }
  .productCard__content { min-height: 220px; }
  .cartItem { grid-template-columns: 90px 1fr; }
  .cartItem > img { width: 90px; height: 110px; }
  .cartItem__info { padding: 14px; }
  .cartItem__controls { grid-column: 1 / -1; justify-content: space-between; border-top: 1px solid var(--line); padding: 12px 16px; }
  .formGrid { grid-template-columns: 1fr; }
  .shopField--full { grid-column: auto; }
  .checkoutCard { padding: 22px 18px; }
  .choiceCard span { flex-direction: column; gap: 4px; }
  .pageIntro { padding-block: 65px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .shopSpinner { animation-duration: 1.8s; }
  .productCard,
  .productCard__image img,
  .shopButton { transition: none; }
}
