/* Kova Cheats — dark blue theme (hero illustrations visible) */
:root {
  --cl-accent: 59, 130, 246;
  --cl-background: 3, 10, 24;
  --cl-t-primary: 255, 255, 255;
  --cl-t-secondary: 186, 210, 245;
  --cl-t-accent: 255, 255, 255;
  --cl-snow: 255, 255, 255;
  --product-card-image-aspect-ratio: 16/9;
  --product-page-image-aspect-ratio: 16/9;
  --group-card-image-aspect-ratio: 16/9;
  --blog-card-image-aspect-ratio: 16/9;
  --product-image-fit: cover;
  --group-image-fit: cover;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(37, 99, 235, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(14, 165, 233, 0.12), transparent 50%),
    #030a18 !important;
  color: rgb(var(--cl-t-primary));
  font-family: "Geist", system-ui, sans-serif;
}

.bg-background,
.bg-background\/50,
.bg-background\/75,
.bg-background\/95 {
  background-color: rgba(3, 10, 24, 0.92) !important;
}

.bg-gradient-text-headline {
  background-image: linear-gradient(to right, #3b82f6, #7dd3fc) !important;
}

.bg-gradient-text-title {
  background-image: linear-gradient(
    to right,
    #e2e8f0,
    #60a5fa,
    #f8fafc,
    #38bdf8,
    #e2e8f0
  ) !important;
}

.bg-gradient-button-primary {
  background-image: linear-gradient(to top, #1d4ed8, #3b82f6) !important;
  color: #fff !important;
}

.bg-gradient-button-secondary {
  background-image: linear-gradient(rgb(30, 41, 59), rgba(30, 41, 59, 0.65)) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.bg-footer-discord {
  background:
    radial-gradient(
      ellipse 70% 80% at 50% 50%,
      rgba(37, 99, 235, 0.16) 0%,
      rgba(37, 99, 235, 0.06) 45%,
      transparent 72%
    ) !important;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
}

.bg-gradient-card {
  background-image: linear-gradient(
    to right bottom,
    rgba(15, 23, 42, 0.85),
    rgba(37, 99, 235, 0.08),
    rgba(15, 23, 42, 0.85)
  ) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* Lightweight hero rings — no SVG filters */
.hero-ripple-bg {
  width: min(920px, 130vw);
  height: min(920px, 130vw);
  margin: -12% auto 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 18%, rgba(255, 255, 255, 0.04) 19%, transparent 20%),
    radial-gradient(circle, transparent 28%, rgba(255, 255, 255, 0.05) 29%, transparent 30%),
    radial-gradient(circle, transparent 38%, rgba(255, 255, 255, 0.045) 39%, transparent 40%),
    radial-gradient(circle, transparent 48%, rgba(255, 255, 255, 0.04) 49%, transparent 50%),
    radial-gradient(circle, transparent 58%, rgba(255, 255, 255, 0.035) 59%, transparent 60%),
    radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, transparent 42%);
  opacity: 0.9;
  contain: paint;
}

.headline::before,
.headline::after {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(59, 130, 246, 0.55)) !important;
}

.before-border::before,
.before-border-wh::before {
  background: linear-gradient(to right, #1e293b, #475569, #1e293b) border-box !important;
}

.before-border-wh::after {
  background: linear-gradient(
    to right,
    rgba(37, 99, 235, 0.5),
    #38bdf8,
    rgba(37, 99, 235, 0.5)
  ) !important;
}

.text-t-primary\/60,
.text-t-primary\/50,
.text-t-primary\/80 {
  color: rgba(226, 232, 240, 0.7) !important;
}

.text-t-secondary\/60,
.text-t-secondary\/80 {
  color: rgba(186, 210, 245, 0.65) !important;
}

.border-white\/5,
.border-white\/10 {
  border-color: rgba(148, 163, 184, 0.18) !important;
}

.bg-white\/5,
.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.06) !important;
}

.text-accent-500 {
  color: #60a5fa !important;
}

.bg-accent-500 {
  background-color: #3b82f6 !important;
}

input,
textarea,
select {
  color: #f8fafc !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
}

input::placeholder,
textarea::placeholder {
  color: rgba(186, 210, 245, 0.45) !important;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 8px;
}

/* Why-us flex grid (avoid missing Tailwind col-span utilities) */
.kova-why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .kova-why-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .kova-why-span-6 {
    grid-column: span 6 / span 6;
  }
  .kova-why-span-2 {
    grid-column: span 2 / span 2;
  }
  .kova-why-span-4 {
    grid-column: span 4 / span 4;
  }
  .kova-why-span-3 {
    grid-column: span 3 / span 3;
  }
}

.kova-why-feature-media {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 0.85rem 0.75rem 0;
  background: transparent;
}

.kova-why-feature-media img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: right center;
  display: block;
}

.kova-why-feature-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 16, 32, 0.97) 0%,
    rgba(10, 16, 32, 0.7) 14%,
    rgba(10, 16, 32, 0.25) 34%,
    transparent 58%
  );
  pointer-events: none;
}

.kova-why-feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 100%;
}

.kova-why-feature-copy.has-media {
  max-width: 46%;
}

@media (max-width: 767px) {
  .kova-why-feature-media {
    inset: 0 0 0 48%;
    padding: 0.65rem 0.55rem 0.65rem 0;
  }

  .kova-why-feature-copy.has-media {
    max-width: 52%;
  }

  .kova-why-feature-fade {
    background: linear-gradient(
      90deg,
      rgba(10, 16, 32, 1) 0%,
      rgba(10, 16, 32, 0.85) 20%,
      rgba(10, 16, 32, 0.35) 45%,
      transparent 70%
    );
  }
}

@media (max-width: 639px) {
  .kova-why-feature-media {
    display: none;
  }

  .kova-why-feature-copy.has-media {
    max-width: 100%;
  }
}

.product-placeholder {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.35), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.2), transparent 40%),
    linear-gradient(135deg, #0b1224 0%, #111827 55%, #0c1a33 100%);
  color: #e2e8f0;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}

.checkout-shell {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 4rem;
}

.checkout-card {
  width: 100%;
  max-width: 28rem;
  border-radius: 1.25rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(
    to bottom right,
    rgba(15, 23, 42, 0.95),
    rgba(30, 58, 138, 0.35)
  );
  border: 1px solid rgba(96, 165, 250, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.checkout-spinner {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.25rem;
  border-radius: 9999px;
  border: 3px solid rgba(96, 165, 250, 0.2);
  border-top-color: #60a5fa;
  animation: kova-spin 0.8s linear infinite;
}

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

.navbar-fix {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(
    to bottom,
    rgba(3, 10, 24, 0.85),
    rgba(3, 10, 24, 0.4),
    transparent
  );
  backdrop-filter: blur(6px);
}

/* —— Product detail layout —— */
.product-page {
  position: relative;
  max-width: 74rem;
  margin: 0 auto;
  padding: 5.75rem 1.15rem 4.5rem;
  isolation: isolate;
}

.product-ambient {
  pointer-events: none;
  position: absolute;
  inset: 0 auto auto 50%;
  z-index: -1;
  width: min(980px, 100%);
  height: 28rem;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(37, 99, 235, 0.28), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(14, 165, 233, 0.12), transparent 70%);
}

.product-loading {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 40vh;
  color: rgba(186, 210, 245, 0.65);
}

.product-loading-pulse {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 2px solid rgba(96, 165, 250, 0.25);
  border-top-color: #60a5fa;
  animation: product-spin 0.8s linear infinite;
}

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

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.product-chip:hover {
  border-color: rgba(96, 165, 250, 0.55);
  background: rgba(30, 58, 138, 0.35);
  transform: translateX(-2px);
}

.product-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(186, 210, 245, 0.55);
  font-size: 0.8rem;
}

.product-breadcrumb span:last-child {
  color: #e2e8f0;
  font-weight: 600;
}

.product-breadcrumb i {
  font-size: 0.55rem;
  opacity: 0.7;
}

.product-layout {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .product-layout {
    grid-template-columns: 1.4fr 0.95fr;
    align-items: start;
    gap: 1.5rem;
  }
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.product-media-frame {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #050d1c;
  aspect-ratio: 16 / 10;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.08),
    0 24px 60px rgba(2, 8, 23, 0.55);
}

.product-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  background: #050d1c;
  display: block;
  transform: scale(1.08);
  transition: transform 0.5s ease;
}

.product-media-frame:hover img {
  transform: scale(1.14);
}

.product-media-fallback {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  display: grid;
  place-content: center;
  gap: 0.75rem;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.35), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.2), transparent 40%),
    linear-gradient(160deg, #0b1630, #07101f 60%, #0a152c);
}

.product-media-fallback-mark {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #60a5fa, #2563eb);
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.product-media-fallback strong {
  color: #f8fafc;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.product-media-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 58%,
    rgba(3, 10, 24, 0.35) 100%
  );
}

.product-media-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.product-live-pill,
.product-media-caption-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(6, 28, 18, 0.75);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  backdrop-filter: blur(8px);
}

.product-live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: product-pulse 1.8s ease-out infinite;
}

@keyframes product-pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.product-media-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(11, 18, 32, 0.9));
  padding: 0.95rem 1.1rem;
}

.product-media-caption-label {
  margin: 0 0 0.15rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.75);
  font-weight: 700;
}

.product-media-caption-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
}

.product-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 640px) {
  .product-highlights {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-highlight {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.55);
  padding: 0.8rem 0.9rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
}

.product-highlight i {
  color: #60a5fa;
  width: 1rem;
  text-align: center;
}

.product-desc-card {
  border-radius: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(11, 18, 32, 0.7);
  padding: 1rem 1.1rem;
}

.product-desc-label {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
  font-weight: 700;
}

.product-desc {
  color: rgba(186, 210, 245, 0.78);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.product-panel {
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #0d1524;
  padding: 1.35rem 1.25rem 1.4rem;
}

@media (min-width: 960px) {
  .product-buy {
    position: sticky;
    top: 5.5rem;
  }
}

.product-buy-header {
  margin-bottom: 1rem;
}

.product-buy-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
  color: #60a5fa;
}

.product-buy-title {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.product-buy-sub {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(186, 210, 245, 0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-buy-sub i {
  color: #60a5fa;
}

.product-selected-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: rgba(37, 99, 235, 0.1);
  padding: 0.7rem 0.85rem;
}

.product-selected-price span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(186, 210, 245, 0.65);
  font-weight: 650;
}

.product-selected-price strong {
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 650;
}

.product-variants {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.95rem;
}

.product-variant {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  text-align: left;
  border-radius: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: transparent;
  padding: 0.85rem 0.95rem;
  color: #f1f5f9;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.product-variant:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.02);
}

.product-variant.is-selected {
  border-color: #3b82f6;
  background: rgba(37, 99, 235, 0.12);
}

.product-variant-left {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.product-variant-radio {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 999px;
  border: 1.5px solid rgba(148, 163, 184, 0.45);
  background: transparent;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.product-variant.is-selected .product-variant-radio {
  border-color: #3b82f6;
  background: #3b82f6;
  box-shadow: inset 0 0 0 2px #0d1524;
}

.product-variant-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
}

.product-variant-price {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #93c5fd;
}

.product-purchase {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 0.55rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.95rem 1rem;
  cursor: pointer;
  transition: background 0.15s;
}

.product-purchase:hover:not(:disabled) {
  background: #1d4ed8;
}

.product-purchase:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-basket {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 0.55rem;
  background: transparent;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.product-basket:hover:not(:disabled) {
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(37, 99, 235, 0.1);
}

.product-basket.is-added {
  border-color: rgba(34, 197, 94, 0.45);
  background: rgba(34, 197, 94, 0.1);
  color: #4ade80;
}

.product-basket:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-refund {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(34, 197, 94, 0.3);
  background: rgba(34, 197, 94, 0.06);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 550;
  padding: 0.7rem 0.85rem;
}

.product-payments {
  margin-top: 1.1rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  text-align: center;
}

.product-payments p {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
  font-weight: 650;
}

.product-payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(203, 213, 225, 0.7);
  font-size: 1.3rem;
}

.product-recommended {
  margin-top: 3.75rem;
  padding: 1.75rem 0 0.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.product-recommended-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.product-recommended-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #60a5fa;
}

.product-recommended-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: #f8fafc;
}

.product-recommended-sub {
  margin: 0.4rem 0 0;
  max-width: 28rem;
  color: rgba(186, 210, 245, 0.65);
  font-size: 0.92rem;
}

.product-recommended-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #93c5fd;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.15s, gap 0.15s;
}

.product-recommended-link:hover {
  color: #bfdbfe;
  gap: 0.65rem;
}

.product-recommended-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-recommended-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-recommended-grid.is-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .product-recommended-grid:not(.is-compact) {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .product-recommended-grid:not(.is-compact) {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-rec-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(8, 14, 28, 0.98));
  overflow: hidden;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
}

.product-rec-card:hover {
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.45);
}

.product-rec-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0b1220;
  overflow: hidden;
}

.product-rec-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  background: #050d1c;
  display: block;
  transform: scale(1.08);
  transition: transform 0.45s ease;
}

.product-rec-card:hover .product-rec-media img {
  transform: scale(1.14);
}

.product-rec-media-fade {
  pointer-events: none;
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(3, 10, 24, 0.75));
}

.product-rec-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(59, 130, 246, 0.32), transparent 50%),
    linear-gradient(160deg, #0d1730, #081120);
  color: #e2e8f0;
  font-weight: 700;
}

.product-rec-status {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.4);
  background: rgba(6, 28, 18, 0.8);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  backdrop-filter: blur(8px);
}

.product-rec-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.05rem 1.1rem 1.2rem;
  flex: 1;
}

.product-rec-body h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.product-rec-card:hover .product-rec-body h3 {
  color: #bfdbfe;
}

.product-rec-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-rec-meta {
  font-size: 0.8rem;
  color: rgba(186, 210, 245, 0.65);
}

.product-rec-price {
  font-size: 0.95rem;
  font-weight: 750;
  color: #7dd3fc;
}

.product-rec-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 650;
  transition: gap 0.15s;
}

.product-rec-card:hover .product-rec-cta {
  gap: 0.65rem;
}

/* —— Status page —— */
.status-page {
  max-width: 56rem;
  margin: 0 auto;
  padding: 5.5rem 1rem 3.5rem;
}

.status-hero {
  text-align: center;
  margin-bottom: 1.75rem;
}

.status-hero-sub {
  margin: 0.85rem auto 0;
  max-width: 32rem;
  color: rgba(186, 210, 245, 0.7);
  font-size: 1rem;
}

.status-updated {
  margin-top: 0.65rem;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.7);
  letter-spacing: 0.04em;
}

.status-overall {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid;
  border-radius: 1rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: 1rem;
}

.status-overall-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.status-overall-left h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8fafc;
}

.status-overall-left p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(186, 210, 245, 0.7);
}

.status-overall-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.status-overall-meta span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  color: rgba(186, 210, 245, 0.65);
}

.status-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.status-legend i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  display: inline-block;
}

.status-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95),
    rgba(30, 58, 138, 0.12)
  );
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}

.status-row:hover {
  border-color: rgba(96, 165, 250, 0.45);
  transform: translateY(-1px);
}

.status-row-main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.status-thumb {
  width: 3rem;
  height: 3rem;
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: #0b1220;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #60a5fa;
  font-weight: 800;
}

.status-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #050d1c;
  transform: scale(1.1);
}

.status-copy {
  min-width: 0;
}

.status-copy h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
}

.status-copy p {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: rgba(186, 210, 245, 0.65);
  text-transform: capitalize;
}

.status-sep {
  margin: 0 0.35rem;
  opacity: 0.5;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid;
  padding: 0.45rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  flex-shrink: 0;
  box-shadow: 0 0 10px currentColor;
}

.status-error,
.status-empty {
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: #fca5a5;
  border-radius: 0.9rem;
  padding: 1rem 1.15rem;
}

.status-empty {
  border-color: rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.6);
  color: rgba(186, 210, 245, 0.7);
  text-align: center;
}

.status-foot {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.status-foot p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.75);
  max-width: 36rem;
  line-height: 1.5;
}

.status-back {
  color: #60a5fa;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.status-back:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .status-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* —— Site footer —— */
.site-footer {
  margin-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: linear-gradient(
    to top,
    rgba(3, 10, 24, 1),
    rgba(3, 10, 24, 0.4)
  );
}

.site-footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 2rem;
}

.site-footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  margin-bottom: 2.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(96, 165, 250, 0.22);
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.95),
    rgba(37, 99, 235, 0.14)
  );
}

.site-footer-cta h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.site-footer-cta p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(186, 210, 245, 0.7);
}

.site-footer-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(to top, #1d4ed8, #3b82f6);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: opacity 0.15s;
}

.site-footer-discord:hover {
  opacity: 0.9;
}

.site-footer-grid {
  display: grid;
  gap: 2rem 1.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .site-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer-brand {
  max-width: 16rem;
}

.site-footer-logo-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.4rem;
}

.site-footer-logo {
  max-height: 2.5rem;
  width: auto;
  border-radius: 0.5rem;
}

.site-footer-name {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(to right, #3b82f6, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer-tag {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(148, 163, 184, 0.75);
}

.site-footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.site-footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer-grid a {
  color: rgba(148, 163, 184, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer-grid a:hover {
  color: #f8fafc;
}

.site-footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.site-footer-bottom p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.55);
}

.site-footer-bottom p + p {
  margin-top: 0.35rem;
}

.site-footer-bottom a {
  color: rgba(148, 163, 184, 0.85);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer-bottom a:hover {
  color: #7dd3fc;
}

.hero-showcase {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(59, 130, 246, 0.12), transparent 70%),
    rgba(255, 255, 255, 0.03);
}

/* —— Cart / basket —— */
.cart-page {
  max-width: 52rem;
  margin: 0 auto;
  padding: 5.5rem 1.15rem 4rem;
}

.cart-panel {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: #0d1524;
  padding: 1.5rem 1.35rem 1.6rem;
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.cart-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 650;
  color: #60a5fa;
}

.cart-header h1 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: #f8fafc;
}

.cart-count {
  font-size: 0.85rem;
  color: rgba(186, 210, 245, 0.6);
  padding-top: 0.35rem;
}

.cart-empty {
  text-align: center;
  padding: 2.5rem 1rem;
}

.cart-empty p,
.cart-empty-text {
  margin: 0 0 1rem;
  color: rgba(186, 210, 245, 0.65);
  text-align: center;
}

.cart-browse,
.cart-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  border-radius: 0.55rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.cart-continue {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #e2e8f0;
}

.cart-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.9rem;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 0.75rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}

@media (min-width: 640px) {
  .cart-item {
    grid-template-columns: 5.5rem 1fr auto;
  }
}

.cart-item-image {
  width: 5.5rem;
  height: 4rem;
  object-fit: cover;
  border-radius: 0.5rem;
  background: #050d1c;
}

.cart-item-fallback {
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: rgba(226, 232, 240, 0.7);
  text-align: center;
  padding: 0.25rem;
}

.cart-item-name {
  display: block;
  font-weight: 700;
  color: #f1f5f9;
  text-decoration: none;
}

.cart-item-name:hover {
  color: #93c5fd;
}

.cart-item-variant,
.cart-item-price {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: rgba(186, 210, 245, 0.65);
}

.cart-item-price {
  color: #7dd3fc;
  font-weight: 650;
}

.cart-item-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .cart-item-controls {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-end;
  }
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.5rem;
  overflow: hidden;
}

.cart-qty button {
  width: 2rem;
  height: 2rem;
  border: 0;
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}

.cart-qty button:hover {
  background: rgba(59, 130, 246, 0.2);
}

.cart-qty span {
  min-width: 2rem;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 650;
  color: #f8fafc;
}

.cart-item-line {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
}

.cart-remove {
  border: 0;
  background: none;
  color: #f87171;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0;
}

.cart-remove:hover {
  text-decoration: underline;
}

.cart-summary {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding-top: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-email label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.82rem;
  color: rgba(186, 210, 245, 0.7);
}

.cart-email input {
  width: 100%;
  border-radius: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(0, 0, 0, 0.2);
  color: #f8fafc;
  padding: 0.7rem 0.85rem;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-total span {
  font-size: 1rem;
  font-weight: 650;
  color: #e2e8f0;
}

.cart-total strong {
  font-size: 1.45rem;
  color: #60a5fa;
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cart-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 0;
  border-radius: 0.55rem;
  background: #2563eb;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-checkout:hover:not(:disabled) {
  background: #1d4ed8;
}

.cart-checkout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.cart-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: transparent;
  color: #e2e8f0;
  font-size: 0.88rem;
  font-weight: 650;
  cursor: pointer;
}

/* —— Phone / small screens —— */
@media (max-width: 639px) {
  html {
    -webkit-text-size-adjust: 100%;
  }

  .navbar-fix .mx-auto.max-w-7xl {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .navbar-fix img.max-h-10 {
    max-height: 2rem;
  }

  /* Hero */
  .hero-section {
    overflow: hidden;
  }

  .hero-inner {
    padding-top: 5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .hero-content {
    gap: 1.35rem !important;
  }

  .hero-copy {
    gap: 0.85rem !important;
  }

  .hero-title {
    margin-top: 0 !important;
    font-size: clamp(1.65rem, 7.2vw, 2.15rem) !important;
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .hero-sub {
    font-size: 0.95rem !important;
    line-height: 1.45;
    max-width: 22rem;
  }

  .hero-ctas {
    gap: 0.55rem !important;
  }

  .hero-ctas a {
    flex: 1 1 auto;
    min-width: 8.5rem;
    justify-content: center;
  }

  .hero-showcase {
    aspect-ratio: auto !important;
    padding: 1.35rem 1rem;
    border-radius: 1rem;
  }

  .hero-showcase-title {
    font-size: 1.35rem !important;
  }

  .hero-deco {
    opacity: 0.65;
  }

  /* Products section */
  .products-section .products-inner {
    margin-bottom: 3.5rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .products-title {
    font-size: 1.75rem;
  }

  .products-sub {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .products-grid {
    gap: 0.85rem;
  }

  .product-card-wrap {
    width: 100%;
  }

  .product-card-body {
    padding: 0.95rem 1rem 1.05rem;
  }

  .product-card-top {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
  }

  .product-card-top h3 {
    font-size: 1.05rem;
    flex: 1 1 100%;
    min-width: 0;
  }

  .product-status-badge {
    padding: 0.3rem 0.65rem;
    gap: 0.4rem;
  }

  .product-status-badge span {
    font-size: 0.7rem;
  }

  .product-card-meta .text-xl {
    font-size: 1.15rem;
  }

  /* Product detail page */
  .product-page {
    padding: 4.5rem 0.85rem 3rem;
  }

  .product-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
  }

  .product-breadcrumb {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 0.25rem;
    font-size: 0.75rem;
  }

  .product-breadcrumb span:last-child {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .product-layout {
    gap: 1rem;
  }

  .product-media-frame {
    border-radius: 0.9rem;
    aspect-ratio: 16 / 11;
  }

  .product-media-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 0.95rem;
  }

  .product-media-caption-name {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .product-highlights {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .product-highlight {
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }

  .product-desc-card {
    padding: 0.95rem;
  }

  .product-panel {
    padding: 1.05rem 0.95rem 1.15rem;
    border-radius: 0.9rem;
  }

  .product-buy-title {
    font-size: 1.35rem;
  }

  .product-selected-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.75rem 0.85rem;
  }

  .product-selected-price strong {
    font-size: 0.88rem;
    overflow-wrap: anywhere;
  }

  .product-variants {
    gap: 0.45rem;
  }

  .product-variant {
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.8rem 0.8rem;
  }

  .product-variant-left {
    min-width: 0;
    flex: 1 1 auto;
    align-items: flex-start;
  }

  .product-variant-name {
    font-size: 0.88rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }

  .product-variant-price {
    flex-shrink: 0;
    font-size: 0.95rem;
    padding-top: 0.1rem;
  }

  .product-actions {
    gap: 0.5rem;
  }

  .product-purchase,
  .product-basket {
    padding: 0.9rem 0.85rem;
    font-size: 0.9rem;
  }

  .product-refund {
    font-size: 0.78rem;
    padding: 0.7rem 0.75rem;
  }

  .product-payment-icons {
    gap: 0.55rem;
    font-size: 1.25rem;
  }

  .product-recommended {
    margin-top: 2rem;
  }

  .product-recommended-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .product-recommended-head h2 {
    font-size: 1.35rem;
  }

  .product-recommended-sub {
    font-size: 0.88rem;
  }

  .product-recommended-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .product-rec-body {
    padding: 0.85rem 0.9rem 1rem;
  }

  .product-rec-body h3 {
    font-size: 1rem;
  }

  /* Why Us */
  .kova-why-span-6.h-72 {
    height: auto;
    min-height: 16rem;
  }

  .kova-why-feature-copy h3 {
    font-size: 1.45rem !important;
  }

  /* Cart */
  .cart-page {
    padding: 4.5rem 0.85rem 3rem;
  }

  .cart-panel {
    padding: 1.15rem 0.95rem 1.25rem;
  }

  .cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .cart-header h1 {
    font-size: 1.45rem;
  }

  .cart-item {
    grid-template-columns: 4.5rem 1fr;
    gap: 0.7rem;
    padding: 0.7rem;
  }

  .cart-item-image {
    width: 4.5rem;
    height: 3.35rem;
  }

  .cart-actions {
    flex-direction: column;
  }

  .cart-checkout,
  .cart-clear,
  .cart-continue {
    width: 100%;
  }

  /* Footer */
  .site-footer-inner {
    padding: 2rem 0.85rem 1.75rem;
  }

  .site-footer-cta {
    padding: 1.1rem 1rem;
    gap: 1rem;
  }

  .site-footer-cta h2 {
    font-size: 1.15rem;
  }

  .site-footer-discord {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-ctas a {
    width: 100%;
    min-width: 0;
  }

  .product-variant {
    flex-wrap: wrap;
  }

  .product-variant-price {
    width: 100%;
    padding-left: 1.65rem;
  }
}
