body.page-products {
  font-family: var(--font-display);
  background-color: var(--bg-deep);
  background-image: none;
  color: var(--text);
  min-height: 100vh;
}

body.page-products::before {
  opacity: 0.28;
}

.page-products .shop-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-products .shop-particles::before,
.page-products .shop-particles::after {
  content: "";
  position: absolute;
  inset: -30%;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(225, 29, 140, 0.16) 0, transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(124, 58, 237, 0.14) 0, transparent 40%),
    radial-gradient(circle at 40% 88%, rgba(225, 29, 140, 0.08) 0, transparent 38%);
  animation: shopParticles 28s ease-in-out infinite;
}

.page-products .shop-particles::after {
  animation-delay: -14s;
  opacity: 0.75;
  filter: blur(2px);
}

@keyframes shopParticles {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-3%, 2%) rotate(6deg);
  }
}

.page-products .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.site-header--shop .logo--shop {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-mark--shop {
  background: linear-gradient(135deg, var(--accent), var(--violet)) !important;
  box-shadow: 0 6px 28px var(--accent-glow) !important;
}

.nav-main--shop a.is-active {
  color: var(--accent-soft);
  font-weight: 600;
}

.header-cart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 245, 245, 0.72);
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.header-cart-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f5f5f5;
}

.header-cart-icon:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.header-cart-icon__svg {
  display: block;
  opacity: 0.85;
}

.header-cart-icon__count {
  position: absolute;
  top: -0.15rem;
  right: -0.15rem;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1.125rem;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.site-header--shop .header-cart-icon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.shop-main {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.products-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.75rem 1.5rem 2rem;
  text-align: center;
}

.products-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: #ddd6fe;
  margin-bottom: 1.25rem;
}

.products-kicker__icon {
  font-size: 1rem;
  line-height: 1;
}

.products-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 0.65rem;
}

.products-hero p {
  color: #a3a3a3;
  font-size: 1.05rem;
  max-width: 42ch;
  margin: 0 auto;
}

.products-grid-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

@media (min-width: 720px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (min-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  position: relative;
}

.product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card__inner:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 29, 140, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.product-card--oos .product-card__inner {
  opacity: 0.92;
}

.product-card__visual {
  position: relative;
  padding: 2rem 1rem 2.25rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.04), transparent 55%);
}

.product-card__visual--cover {
  padding: 0;
  min-height: 0;
  background: #141414;
}

.product-card__cover-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}

.product-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__ribbon-cover {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fafafa;
  white-space: nowrap;
}

.product-card__glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 55%, transparent), transparent 68%);
  filter: blur(18px);
  opacity: 0.95;
  pointer-events: none;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.product-box {
  position: relative;
  width: 118px;
  height: 138px;
  border-radius: 14px;
  transform: perspective(520px) rotateY(-22deg) rotateX(8deg);
  background: linear-gradient(155deg, color-mix(in srgb, var(--brand) 72%, #080808), #0d0d0d);
  box-shadow:
    -18px 22px 45px rgba(0, 0, 0, 0.55),
    0 0 50px color-mix(in srgb, var(--brand) 38%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-box__shine {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.22), transparent 48%);
  opacity: 0.35;
  pointer-events: none;
}

.product-box__logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2.35rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.product-box__ribbon {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fafafa;
  white-space: nowrap;
}

.product-box--sm {
  width: 88px;
  height: 104px;
}

.product-box--sm .product-box__logo {
  font-size: 1.65rem;
}

.product-card__oos-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  z-index: 3;
}

.product-card__body {
  padding: 1.1rem 1.15rem 1.35rem;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.product-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-card__sub {
  font-size: 0.88rem;
  color: #a3a3a3;
}

.product-card__price {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.product-card__cta {
  margin-top: auto;
  padding-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  margin-left: -1.15rem;
  margin-right: -1.15rem;
  margin-bottom: -1.35rem;
  padding: 0.85rem 1.15rem;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card__wm {
  position: absolute;
  right: 10px;
  bottom: 58px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.products-empty {
  max-width: 520px;
  margin: 3rem auto 4rem;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 20px;
  background: rgba(18, 18, 18, 0.85);
  border: 1px dashed rgba(255, 255, 255, 0.12);
}

.products-empty__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.products-empty h2 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.products-empty p {
  color: #a3a3a3;
  font-size: 1rem;
  line-height: 1.55;
}

.product-not-found {
  max-width: 520px;
  margin: 4rem auto;
  padding: 2.5rem 1.75rem;
  text-align: center;
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-not-found h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.product-not-found p {
  color: #a3a3a3;
  margin-bottom: 1.25rem;
}

.product-not-found a {
  display: inline-flex;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff !important;
}

.product-detail {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.product-detail__title {
  font-size: clamp(1.5rem, 3.5vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.product-detail__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .product-detail__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
    gap: 2.5rem;
  }
}

.product-detail__visual {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.product-detail__visual .product-card__glow {
  width: 260px;
  height: 260px;
}

.product-detail__visual .product-box {
  width: 160px;
  height: 188px;
  transform: perspective(640px) rotateY(-18deg) rotateX(6deg);
}

.product-detail__visual .product-box__logo {
  font-size: 3rem;
}

.product-detail__visual--cover {
  padding: 0;
  overflow: hidden;
  min-height: 0;
}

.product-detail__cover-frame {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

.product-detail__cover-img {
  width: 100%;
  height: auto;
  max-height: min(420px, 52vh);
  object-fit: cover;
  display: block;
}

.product-detail__ribbon-cover {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fafafa;
  white-space: nowrap;
}

.product-buy {
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.product-buy__price {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-buy__stock {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.product-buy__stock--ok {
  color: #4ade80;
}

.product-buy__stock--bad {
  color: #fb7185;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 1.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0c0c;
  overflow: hidden;
}

.qty button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s;
}

.qty button:hover {
  background: rgba(255, 255, 255, 0.06);
}

.qty input {
  width: 56px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.product-buy__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.btn-buy-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow: 0 10px 32px rgba(225, 29, 140, 0.35);
  transition: transform 0.2s ease;
}

.btn-buy-primary:hover {
  transform: translateY(-2px);
}

.btn-buy-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-buy-secondary:hover {
  background: #222;
}

.product-plans {
  margin-top: 3rem;
}

.product-plans__head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.product-plans__head h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-plans__head p {
  margin-top: 0.35rem;
  color: #a3a3a3;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.15rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  text-decoration: none;
  color: inherit !important;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: rgba(225, 29, 140, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
}

.plan-card--oos {
  opacity: 0.88;
}

.plan-card__visual {
  position: relative;
  padding: 1.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
}

.plan-card__glow {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 55%, transparent), transparent 68%);
  filter: blur(14px);
  opacity: 0.9;
}

.plan-card__oos {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(124, 58, 237, 0.88);
  color: #fff;
  z-index: 2;
}

.plan-card__body {
  padding: 1rem 1.1rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.plan-card__title {
  font-size: 1.05rem;
  font-weight: 800;
}

.plan-card__sub {
  font-size: 0.8rem;
  color: #a3a3a3;
  line-height: 1.35;
}

.plan-card__price {
  margin-top: 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.product-extra-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 880px) {
  .product-extra-grid {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }

  .product-extra-grid--single {
    grid-template-columns: 1fr;
  }
}

.product-desc {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.product-desc h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.product-desc__body {
  color: #c4c4c4;
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-desc__intro {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: #a3a3a3;
  line-height: 1.45;
}

.product-desc-variant {
  margin-bottom: 1.35rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.product-desc-variant:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.product-desc-variant__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ececec;
}

.product-desc-variant__body {
  margin: 0;
}

.product-together {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.product-together h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.product-together__empty {
  color: #737373;
  font-size: 0.92rem;
}

.shop-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.25rem;
  background: rgba(0, 0, 0, 0.35);
}

.shop-footer__copy {
  text-align: center;
  font-size: 0.82rem;
  color: #737373;
}

@media (max-width: 719px) {
  .site-header--shop .nav-main {
    display: none;
  }

  .site-header--shop .header-cart-icon {
    width: 2.35rem;
    height: 2.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-products .shop-particles::before,
  .page-products .shop-particles::after,
  .product-card__glow {
    animation: none !important;
  }
}

.product-buy__delivery {
  font-size: 0.82rem;
  color: #a3a3a3;
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.product-buy__pick-plan {
  font-size: 0.88rem;
  color: #c4c4c4;
  margin: 0;
}

.product-buy__actions form {
  margin-bottom: 0.6rem;
}

.plan-grid {
  align-items: stretch;
}

.plan-card-wrap {
  display: block;
  height: 100%;
}

.plan-card--cart {
  display: block;
  padding: 0;
  margin: 0;
}

.plan-card__hit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card, #121212);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}

a.plan-card__hit:hover {
  border-color: rgba(225, 29, 140, 0.45);
  box-shadow: 0 0 0 1px rgba(225, 29, 140, 0.12);
}

.plan-card-wrap--current .plan-card__hit {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.22);
}

.plan-card__hit--oos {
  opacity: 0.92;
}

.plan-card__hit .plan-card__visual {
  padding: 0.35rem 0.25rem;
  min-height: 0;
}

.plan-card__hit .plan-card__body {
  padding: 0;
  align-self: center;
}

.product-detail__crumb {
  margin-bottom: 0.85rem;
}

.product-detail__crumb a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #c4b5fd;
  text-decoration: none;
}

.product-detail__crumb a:hover {
  text-decoration: underline;
  color: #ddd6fe;
}

.plan-card__cover-wrap {
  display: block;
  width: 88px;
  height: 104px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #111;
}

.plan-card__cover-wrap--oos {
  opacity: 0.55;
}

.plan-card__cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.plan-card__stock-hint {
  display: block;
  font-size: 0.78rem;
  color: #a3a3a3;
  margin-top: 0.25rem;
}

.plan-card-buy-now {
  margin: 0;
}

.plan-card__buy-now-btn {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #e5e5e5;
  cursor: pointer;
  font-family: inherit;
}

.plan-card__buy-now-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.plan-card--oos {
  opacity: 0.75;
  filter: grayscale(0.2);
}

.shop-order-thanks .cart-hero {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 1.5rem;
}

.shop-order-thanks h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cart-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
}

.cart-page-head {
  margin-bottom: 2.25rem;
  text-align: center;
}

.cart-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 auto 1rem;
  padding: 0.42rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0abfc;
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid rgba(168, 85, 247, 0.35);
}

.cart-kicker__icon {
  flex-shrink: 0;
  opacity: 0.95;
}

.cart-page-head h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: #fff;
}

.cart-page-head p {
  margin: 0;
  color: #888;
  font-size: 1rem;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  gap: 1.75rem;
  align-items: start;
}

.cart-line-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-line-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.cart-line-card__main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  flex: 1 1 200px;
}

.cart-item-thumb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(145deg, var(--cart-thumb, #e11d8c), color-mix(in srgb, var(--cart-thumb, #e11d8c) 55%, #000));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.cart-item-thumb--img {
  padding: 0;
  overflow: hidden;
  background: #141418 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.cart-item-thumb--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-line-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.cart-line-card__title {
  font-weight: 700;
  font-size: 0.98rem;
  color: #fff;
  line-height: 1.35;
}

.cart-line-card__variant {
  font-size: 0.84rem;
  color: #888;
  line-height: 1.35;
}

.cart-line-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-shrink: 0;
}

.cart-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
}

.cart-stepper__form {
  margin: 0;
  display: inline;
}

.cart-stepper__btn {
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #e5e5e5;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.cart-stepper__btn:hover:not(:disabled) {
  background: rgba(225, 29, 140, 0.2);
  color: #fff;
}

.cart-stepper__btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.cart-stepper__value {
  min-width: 1.75rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.cart-line-card__price {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  min-width: 4.5rem;
  text-align: right;
}

.cart-line-remove {
  margin: 0;
}

.cart-line-remove__btn {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #9ca3af;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.cart-line-remove__btn:hover {
  background: rgba(239, 68, 68, 0.18);
  color: #fca5a5;
}

.cart-stock-note {
  display: block;
  font-size: 0.72rem;
  color: #fb923c;
  margin-top: 0.35rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.cart-page-aside {
  position: sticky;
  top: 5.5rem;
}

.cart-aside-card {
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.cart-aside-heading {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.cart-aside-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.15rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  color: #b4b4b4;
}

.cart-aside-row span:last-child {
  font-weight: 700;
  color: #fff;
}

.cart-aside-checkout {
  gap: 0.35rem;
}

.cart-aside-checkout__arrow {
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-checkout-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep, #b3126d));
  color: #fff !important;
  border: none;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 10px 36px var(--accent-glow),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.btn-checkout-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 44px var(--accent-glow),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn-checkout-cta--block {
  width: 100%;
  box-sizing: border-box;
}

.btn-checkout-cta--wide {
  width: 100%;
  margin-top: 0.25rem;
}

.btn-checkout-cta-arrow {
  font-size: 1.1rem;
  opacity: 0.95;
}

.page-checkout .shop-checkout {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  max-width: none;
}

body.page-checkout-fullscreen {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

body.page-checkout-fullscreen .shop-main.shop-checkout {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-checkout-fullscreen .checkout-layout {
  flex: 1;
  min-height: 100vh;
  min-height: 100dvh;
}

.page-checkout-fullscreen .checkout-empty-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  max-width: none;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 2rem 1.25rem;
  border-radius: 0;
  border: none;
  background: transparent;
}

.checkout-empty-wrap {
  max-width: 420px;
  margin: 4rem auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 22, 0.85);
}

.checkout-empty-msg {
  margin: 0 0 1.25rem;
  color: #c4c4c4;
}

.checkout-alert {
  margin: 0 auto 1rem;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.38);
  color: #fdba74;
  text-align: center;
  font-size: 0.92rem;
}

.checkout-alert--banner {
  max-width: min(1120px, calc(100% - 2.5rem));
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
  min-height: calc(100vh - 72px);
  align-items: stretch;
}

.checkout-sidebar {
  padding: 2.25rem 2rem 2rem;
  background: linear-gradient(180deg, #16161a 0%, #0e0e12 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.checkout-sidebar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.checkout-sidebar-brand .logo-mark--shop {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.05rem;
}

.checkout-pay-label {
  margin: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8f8f97;
  font-weight: 700;
}

.checkout-pay-total {
  margin: 0.5rem 0 1.75rem;
  font-size: clamp(2rem, 5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.1;
}

.checkout-item-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.checkout-item-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.checkout-item-row:last-of-type {
  border-bottom: none;
}

.checkout-item-thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(145deg, var(--checkout-thumb, #e11d8c), color-mix(in srgb, var(--checkout-thumb, #e11d8c) 50%, #000));
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.checkout-item-thumb--img {
  padding: 0;
  overflow: hidden;
  background: #141418 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.checkout-item-thumb--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.checkout-item-body {
  flex: 1;
  min-width: 0;
}

.checkout-item-title {
  display: block;
  font-weight: 600;
  font-size: 0.94rem;
  color: #f0f0f2;
  line-height: 1.4;
}

.checkout-item-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #7a7a82;
  line-height: 1.35;
}

.checkout-item-price {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.95rem;
  color: #e8e8ea;
}

.checkout-breakdown {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.checkout-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #b4b4bc;
  padding: 0.35rem 0;
}

.checkout-breakdown-row--emph {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}

.checkout-sidebar-foot {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  color: #5c5c64;
}

.checkout-panel {
  padding: 2rem 2.5rem 3.5rem;
  background: #000;
}

.checkout-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: #a78bfa;
  text-decoration: none;
}

.checkout-back:hover {
  color: #c4b5fd;
  text-decoration: underline;
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 2.25rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-step {
  font-size: 0.78rem;
  font-weight: 600;
  color: #5a5a62;
  padding-bottom: 0.75rem;
  margin-bottom: -1px;
  border-bottom: 3px solid transparent;
}

.checkout-step.is-active {
  color: #fff;
  border-bottom-color: var(--accent);
}

.checkout-form {
  max-width: 560px;
}

.checkout-block {
  margin-bottom: 1.75rem;
}

.checkout-block--muted {
  opacity: 0.55;
  pointer-events: none;
}

.checkout-block-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7a82;
}

.checkout-block-label--inline {
  margin-bottom: 0;
}

.checkout-block-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.checkout-block-head .checkout-block-label {
  margin-bottom: 0;
}

.checkout-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.checkout-input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 14, 16, 0.95);
  color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.checkout-input:focus {
  outline: none;
  border-color: rgba(225, 29, 140, 0.45);
  box-shadow: 0 0 0 3px rgba(225, 29, 140, 0.12);
}

.checkout-discount-row {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-input--discount {
  border: none;
  border-radius: 0;
  flex: 1;
  opacity: 0.7;
}

.checkout-discount-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 1rem;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: #888;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: not-allowed;
  font-family: inherit;
}

.checkout-discount-arrow {
  opacity: 0.6;
}

.checkout-secure-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: #6b6b74;
  max-width: 18rem;
  line-height: 1.35;
}

.checkout-lock {
  flex-shrink: 0;
  opacity: 0.65;
}

.checkout-no-payment {
  padding: 1.25rem 1.15rem;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #a3a3ab;
  font-size: 0.92rem;
  text-align: center;
  line-height: 1.45;
}

.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1.5rem 0 1.25rem;
  font-size: 0.86rem;
  color: #b8b8c0;
  line-height: 1.45;
  cursor: pointer;
}

.checkout-terms input {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.checkout-footnote {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: #6b6b74;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .checkout-sidebar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .checkout-panel {
    padding: 1.75rem 1.25rem 2.5rem;
  }

  .checkout-form {
    max-width: none;
  }

  .cart-page-grid {
    grid-template-columns: 1fr;
  }

  .cart-page-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .cart-line-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem 1rem;
  }

  .cart-line-card__meta {
    justify-content: space-between;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cart-line-card__price {
    margin-left: auto;
  }
}

@supports not (background: color-mix(in srgb, red, blue)) {
  .cart-item-thumb {
    background: linear-gradient(145deg, var(--cart-thumb, #e11d8c), #6b0d3d);
  }

  .checkout-item-thumb {
    background: linear-gradient(145deg, var(--checkout-thumb, #e11d8c), #6b0d3d);
  }
}

.card-like {
  max-width: 520px;
  margin: 0 auto 1.25rem;
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card, #121212);
}

.order-summary-box p,
.order-credentials p {
  color: #c4c4c4;
  line-height: 1.55;
}

.order-payment-pending {
  color: #fbbf24;
  font-size: 0.9rem;
}

.order-cred-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.order-cred-list li {
  margin-bottom: 0.4rem;
  word-break: break-all;
}

.order-cred-list code {
  display: block;
  padding: 0.5rem 0.65rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #e5e5e5;
}

/* ——— Order thanks (confirmation) ——— */
.page-order-thanks .shop-order-thanks.order-thanks {
  position: relative;
  padding: 2rem 1rem 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.order-thanks__bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(225, 29, 140, 0.28), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 40%, rgba(124, 58, 237, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(225, 29, 140, 0.1), transparent 45%);
}

.order-thanks__shell {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.order-thanks__hero {
  text-align: center;
  margin-bottom: 1.75rem;
}

.order-thanks__success {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-thanks__success-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 210deg, #e11d8c, #a855f7, #e11d8c);
  opacity: 0.95;
  animation: order-thanks-pulse 3s ease-in-out infinite;
}

.order-thanks__success-ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 100%);
}

.order-thanks__check {
  position: relative;
  z-index: 1;
  color: #fda4d0;
  filter: drop-shadow(0 0 12px rgba(225, 29, 140, 0.45));
}

@keyframes order-thanks-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

.order-thanks__kicker {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fbcfe8;
  background: rgba(225, 29, 140, 0.18);
  border: 1px solid rgba(225, 29, 140, 0.35);
}

.order-thanks__title {
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  color: #fff;
  line-height: 1.15;
}

.order-thanks__subtitle {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.55;
  color: #a3a3a3;
}

.order-thanks__number-card {
  margin: 0 auto 1.5rem;
  padding: 1.35rem 1.5rem 1.15rem;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(145deg, rgba(24, 24, 24, 0.95) 0%, rgba(12, 12, 12, 0.98) 100%);
  border: 1px solid rgba(225, 29, 140, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(225, 29, 140, 0.08);
}

.order-thanks__number-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #737373;
  margin-bottom: 0.5rem;
}

.order-thanks__number-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  margin-bottom: 1rem;
}

.order-thanks__number-value {
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.order-thanks__number-ref {
  font-size: 0.85rem;
  color: #737373;
  font-weight: 600;
}

.order-thanks__copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #e5e5e5;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.order-thanks__copy-btn:hover {
  background: rgba(225, 29, 140, 0.15);
  border-color: rgba(225, 29, 140, 0.45);
  color: #fff;
}

.order-thanks__copy-btn.is-copied {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.45);
  color: #86efac;
}

.order-thanks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

@media (max-width: 520px) {
  .order-thanks__grid {
    grid-template-columns: 1fr;
  }
}

.order-thanks__panel {
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(8px);
}

.order-thanks__panel--accent {
  border-color: rgba(225, 29, 140, 0.22);
  background: linear-gradient(160deg, rgba(225, 29, 140, 0.12) 0%, rgba(18, 18, 18, 0.9) 100%);
}

.order-thanks__panel-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.order-thanks__panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  flex-shrink: 0;
}

.order-thanks__panel-icon--mail {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.order-thanks__panel-icon--total {
  color: #fda4d0;
  background: rgba(225, 29, 140, 0.18);
  border: 1px solid rgba(225, 29, 140, 0.3);
}

.order-thanks__panel-title {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #737373;
}

.order-thanks__panel-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  word-break: break-word;
}

.order-thanks__email {
  color: #e5e5e5;
}

.order-thanks__total-amt {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.order-thanks__banner {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}

.order-thanks__banner--payment {
  border: 1px solid rgba(251, 191, 36, 0.28);
  background: rgba(251, 191, 36, 0.08);
}

.order-thanks__banner-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: #fde047;
  background: rgba(251, 191, 36, 0.12);
}

.order-thanks__banner-title {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fcd34d;
}

.order-thanks__banner-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #d6d3d1;
}

.order-thanks__discord-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(88, 101, 242, 0.35);
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(18, 18, 22, 0.95) 55%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.order-thanks__discord-visual {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #fff;
  background: #5865f2;
  box-shadow: 0 8px 24px rgba(88, 101, 242, 0.45);
}

.order-thanks__discord-copy {
  min-width: 0;
}

.order-thanks__section-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.order-thanks__credentials-hint,
.order-thanks__discord-text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #a3a3a3;
}

.order-thanks__credentials {
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 16, 0.85);
}

.order-thanks__credentials-head {
  margin-bottom: 1rem;
}

.order-thanks__cred-block {
  margin-bottom: 1rem;
}

.order-thanks__cred-block:last-child {
  margin-bottom: 0;
}

.order-thanks__cred-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #737373;
}

.order-thanks__cred-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.order-thanks__cred-list li {
  margin-bottom: 0.45rem;
}

.order-thanks__cred-list code {
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  color: #e5e5e5;
  word-break: break-all;
}

.order-thanks__btn-discord {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff !important;
  background: #5865f2;
  border: none;
  box-shadow: 0 8px 28px rgba(88, 101, 242, 0.45);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.order-thanks__btn-discord:hover {
  background: #4752c4;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.55);
}

.order-thanks__actions {
  text-align: center;
  padding-top: 0.25rem;
}

.order-thanks__btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  color: #0a0a0a !important;
  background: linear-gradient(135deg, #fda4d0 0%, #e11d8c 55%, #b0106e 100%);
  box-shadow:
    0 4px 24px rgba(225, 29, 140, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  transition: transform 0.15s, box-shadow 0.15s;
}

.order-thanks__btn-shop:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px rgba(225, 29, 140, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.order-thanks__btn-shop svg {
  transform: rotate(-45deg);
  opacity: 0.95;
}

/* ——— Customer login (magic PIN) ——— */
.page-account-login .shop-account-login {
  position: relative;
  padding: 2.5rem 1rem 3.5rem;
  min-height: 50vh;
}

.account-login__bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(225, 29, 140, 0.22), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 50%, rgba(124, 58, 237, 0.12), transparent 50%);
}

.account-login__shell {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
}

.account-login__alert {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(251, 113, 133, 0.4);
  background: rgba(251, 113, 133, 0.1);
  color: #fecdd3;
  font-size: 0.9rem;
  line-height: 1.45;
}

.account-login__hero {
  text-align: center;
  margin-bottom: 1.5rem;
}

.account-login__kicker {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f9a8d4;
  background: rgba(225, 29, 140, 0.2);
  border: 1px solid rgba(225, 29, 140, 0.35);
}

.account-login__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 4.5vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.account-login__lead {
  margin: 0;
  color: #a3a3a3;
  font-size: 0.98rem;
  line-height: 1.55;
}

.account-login__card {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(22, 22, 22, 0.96), rgba(10, 10, 12, 0.98));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.account-login__label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #737373;
}

.account-login__input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
  font-size: 1rem;
}

.account-login__input:focus {
  outline: none;
  border-color: rgba(225, 29, 140, 0.55);
  box-shadow: 0 0 0 3px rgba(225, 29, 140, 0.15);
}

.account-login__input--pin {
  letter-spacing: 0.45em;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.account-login__submit {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  color: #0a0a0a;
  background: linear-gradient(135deg, #fda4d0 0%, #e11d8c 60%, #b0106e 100%);
  box-shadow: 0 8px 28px rgba(225, 29, 140, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}

.account-login__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(225, 29, 140, 0.45);
}

.account-login__hint {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: #737373;
  text-align: center;
}

.account-login__back {
  display: block;
  margin-top: 1.15rem;
  text-align: center;
  font-size: 0.88rem;
  color: #a78bfa !important;
  text-decoration: none;
}

.account-login__back:hover {
  text-decoration: underline;
}

/* ——— Customer account (orders) ——— */
.page-account .shop-account {
  position: relative;
  padding: 2rem 1rem 3.5rem;
  min-height: 55vh;
}

.shop-account__bg {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 45% at 80% 10%, rgba(225, 29, 140, 0.15), transparent 55%),
    radial-gradient(ellipse 55% 40% at 15% 70%, rgba(124, 58, 237, 0.12), transparent 50%);
}

.shop-account__shell {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.shop-account__hero {
  text-align: center;
  margin-bottom: 2rem;
}

.shop-account__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a3a3a3;
}

.shop-account__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.shop-account__email {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: #d4d4d4;
}

.shop-account__logout {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #a78bfa !important;
  text-decoration: none;
}

.shop-account__logout:hover {
  text-decoration: underline;
}

.shop-account__back-nav {
  margin-bottom: 1rem;
}

.shop-account__back-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #c4b5fd !important;
  text-decoration: none;
}

.shop-account__back-nav a:hover {
  text-decoration: underline;
}

.shop-account__order-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shop-account__order-card {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.65rem 1rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(18, 18, 20, 0.9);
  text-decoration: none;
  color: inherit !important;
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.shop-account__order-card:hover {
  border-color: rgba(225, 29, 140, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.shop-account__order-main {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.shop-account__order-num {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: 0.03em;
}

.shop-account__order-date {
  font-size: 0.78rem;
  color: #737373;
}

.shop-account__order-total {
  font-weight: 700;
  font-size: 1rem;
  color: #fda4d0;
}

.shop-account__order-arrow {
  color: #525252;
  font-size: 1.1rem;
}

@media (max-width: 560px) {
  .shop-account__order-card {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .shop-account__badge {
    grid-column: 1;
  }

  .shop-account__order-total {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .shop-account__order-arrow {
    display: none;
  }
}

.shop-account__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
  color: #d4d4d4;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-account__badge--pending_delivery,
.shop-account__badge--pending_payment {
  color: #fde047;
  border-color: rgba(253, 224, 71, 0.35);
  background: rgba(253, 224, 71, 0.1);
}

.shop-account__badge--processing {
  color: #93c5fd;
  border-color: rgba(147, 197, 253, 0.35);
  background: rgba(59, 130, 246, 0.12);
}

.shop-account__badge--completed {
  color: #86efac;
  border-color: rgba(134, 239, 172, 0.35);
  background: rgba(34, 197, 94, 0.12);
}

.shop-account__badge--cancelled {
  color: #fca5a5;
  border-color: rgba(252, 165, 165, 0.35);
  background: rgba(239, 68, 68, 0.12);
}

.shop-account__badge--unknown {
  color: #a3a3a3;
}

.shop-account__empty {
  text-align: center;
  padding: 2.5rem 1.25rem;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
}

.shop-account__empty p {
  margin: 0 0 1.25rem;
  color: #a3a3a3;
}

.shop-account__cta {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #0a0a0a !important;
  background: linear-gradient(135deg, #fda4d0, #e11d8c);
}

.shop-account__detail {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 14, 16, 0.92);
}

.shop-account__detail-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-account__detail-num {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.shop-account__detail-meta {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: #737373;
}

.shop-account__detail-total {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: #e5e5e5;
}

.shop-account__notes {
  margin-bottom: 1.25rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(225, 29, 140, 0.08);
  border: 1px solid rgba(225, 29, 140, 0.2);
}

.shop-account__notes-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fda4d0;
  margin-bottom: 0.35rem;
}

.shop-account__notes p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #d4d4d4;
}

.shop-account__lines-title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #737373;
}

.shop-account__lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.shop-account__line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-account__line:last-child {
  border-bottom: none;
}

.shop-account__line-title {
  grid-column: 1 / -1;
  font-weight: 600;
  color: #f5f5f5;
}

.shop-account__line-meta {
  font-size: 0.82rem;
  color: #737373;
}

.shop-account__line-price {
  font-weight: 700;
  color: #fda4d0;
  justify-self: end;
}

.shop-account__deliverables {
  margin-top: 1.5rem;
}

.shop-account__manual-block {
  margin-top: 0.65rem;
}

.shop-account__manual-block:first-child {
  margin-top: 0;
}

.shop-account__manual-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a3a3a3;
}

.shop-account__manual-body {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  line-height: 1.45;
  color: #e5e5e5;
  word-break: break-word;
}
