/* =========================================================
   GTA CITY RP — TEBEX TEMPLATE
   Design: Gaming Noir — deep black + amber accents
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

/* ---------- TOKENS ---------- */
:root {
  --bg:           #0A0A0B;
  --bg-soft:      #121214;
  --surface:      #17171A;
  --surface-hi:   #1F1F23;
  --surface-hov:  #26262B;
  --border:       #2A2A30;
  --border-hi:    #3A3A42;

  --text:         #F5F5F7;
  --text-muted:   #9A9AA3;
  --text-dim:     #6A6A73;

  --accent:       #197DCD;                /* bleu principal */
  --accent-hi:    #3B9EE5;                /* bleu clair (hover) */
  --accent-dim:   rgba(25,125,205,0.12);
  --accent-glow:  rgba(25,125,205,0.35);

  --success:      #3DD68C;
  --danger:       #FF4D5E;
  --warning:      #FFCC4D;

  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    16px;

  --shadow-sm:    0 2px 8px rgba(0,0,0,.35);
  --shadow:       0 12px 40px rgba(0,0,0,.45);
  --shadow-glow:  0 10px 40px -10px var(--accent-glow);

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --container:    1280px;
  --header-h:     76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

/* Atmospheric background — subtle grain + light glow */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(25,125,205,.08), transparent 60%),
    radial-gradient(800px 500px at 10% 110%, rgba(25,125,205,.05), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .4;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
main {
  position: relative;
  z-index: 1;
  padding: 32px 0 80px;
  min-height: calc(100vh - var(--header-h) - 200px);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(10,10,11,.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .06em;
  color: var(--text);
}
.brand-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #0F5A9E);
  display: grid; place-items: center;
  font-weight: 700;
  color: #0A0A0B;
  font-family: var(--font-display);
  font-size: 20px;
  box-shadow: 0 6px 20px -4px var(--accent-glow);
}
.brand strong { color: var(--accent); font-weight: 400; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .02em;
  position: relative;
  transition: all .2s ease;
}
.nav a:hover, .nav a.active {
  color: var(--text);
  background: var(--surface);
}
.nav a.active::after {
  content:"";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--text-muted);
  font-size: 14px;
}
.nav-dropdown-menu a:hover { background: var(--surface-hi); color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.basket-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s ease;
}
.basket-btn:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  color: var(--accent);
}
.basket-btn .count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--accent);
  color: #0A0A0B;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
}
.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--accent);
  color: #FFFFFF;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all .2s ease;
}
.user-btn:hover {
  background: var(--accent-hi);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  margin: 24px 0 56px;
  padding: 72px 48px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(10,10,11,.85), rgba(10,10,11,.65)),
    linear-gradient(135deg, #081825, #0a0a0b 70%);
  border: 1px solid var(--border);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content:"";
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  z-index: -1;
  filter: blur(40px);
}
.hero::after {
  content:"";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(25,125,205,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25,125,205,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
  margin: 0 0 20px;
  letter-spacing: .02em;
  max-width: 900px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), #5ED4FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 17px;
  margin: 0 0 32px;
}
.hero-cta {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  transition: all .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: var(--accent-hi);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--border-hi);
  background: var(--surface-hi);
  color: var(--text);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--text); background: var(--surface); }

.btn-danger {
  background: transparent;
  color: var(--danger);
  border-color: rgba(255,77,94,.3);
}
.btn-danger:hover { background: rgba(255,77,94,.1); color: var(--danger); }

.btn-block { display: flex; width: 100%; }

/* Hero stats bar */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 6px;
}

/* ---------- SECTION HEADER ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 24px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  margin: 0;
  line-height: 1;
  letter-spacing: .02em;
}
.section-head .eyebrow {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 600;
  margin: 0 0 8px;
}
.section-head p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0;
}

/* ---------- CATEGORIES GRID ---------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin: 0 0 72px;
}
.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  isolation: isolate;
}
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
}
.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.category-card:hover::before { opacity: 1; }
.category-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 16px;
  font-size: 22px;
  border: 1px solid rgba(25,125,205,.25);
}
.category-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 6px;
  letter-spacing: .02em;
}
.category-card .count {
  color: var(--text-muted);
  font-size: 13px;
}
.category-card .arrow {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--text-dim);
  transition: all .3s ease;
}
.category-card:hover .arrow {
  color: var(--accent);
  transform: translate(4px, -4px);
}

/* -- Category variant : Gold (VIP / Fast Pass) -- */
.category-card--gold::before {
  background: linear-gradient(135deg, rgba(255,204,77,.18), transparent 60%);
}
.category-card--gold:hover {
  border-color: var(--warning);
  box-shadow: 0 12px 40px -10px rgba(255,204,77,.35);
}
.category-card--gold .category-icon {
  background: rgba(255,204,77,.12);
  color: var(--warning);
  border-color: rgba(255,204,77,.25);
}
.category-card--gold:hover .arrow {
  color: var(--warning);
}

/* -- Category variant : Green (Argent / Cash) -- */
.category-card--green::before {
  background: linear-gradient(135deg, rgba(61,214,140,.15), transparent 60%);
}
.category-card--green:hover {
  border-color: var(--success);
  box-shadow: 0 12px 40px -10px rgba(61,214,140,.3);
}
.category-card--green .category-icon {
  background: rgba(61,214,140,.12);
  color: var(--success);
  border-color: rgba(61,214,140,.25);
}
.category-card--green:hover .arrow {
  color: var(--success);
}

/* ---------- PACKAGES GRID ---------- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .25s ease;
}
.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: var(--shadow);
}
.package-image {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-soft), var(--surface-hi));
  overflow: hidden;
  display: grid;
  place-items: center;
}
.package-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.package-card:hover .package-image img { transform: scale(1.05); }
.package-image-placeholder {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--border-hi);
  letter-spacing: .02em;
}
.package-badge {
  position: absolute;
  top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(10,10,11,.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.package-badge.discount {
  background: var(--danger);
  border-color: var(--danger);
  color: white;
}
.package-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.package-title {
  font-family: var(--font-display);
  font-size: 38px;
  margin: 0;
  letter-spacing: .02em;
  line-height: 1.1;
}
.package-desc {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price .amount {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--accent);
  letter-spacing: .02em;
  line-height: 1;
}
.price .old {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 14px;
}
.btn-buy {
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-buy:hover {
  background: var(--accent-hi);
  color: #FFFFFF;
  transform: translateY(-1px);
}
.btn-buy.disabled {
  background: var(--surface-hi);
  color: var(--text-dim);
  cursor: not-allowed;
}
.btn-buy.disabled:hover { background: var(--surface-hi); color: var(--text-dim); transform: none; }
.btn-buy.in-basket-btn {
  background: var(--success);
  color: #0A0A0B;
}
.btn-buy.in-basket-btn:hover { background: #5BE5A3; color: #0A0A0B; }

.package-badge.in-basket {
  right: 12px; left: auto;
  background: var(--success);
  border-color: var(--success);
  color: #0A0A0B;
}

.price .period-sm {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
}
.package-pricing .period {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 6px;
}
.checkout-item-price .amount small {
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  margin-left: 2px;
}

/* ---------- CATEGORY LAYOUT ---------- */
.category-header {
  margin: 0 0 32px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--text); }

.category-banner {
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  margin: 0 0 32px;
}
.category-banner::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(40px);
}
.category-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  margin: 0 0 12px;
  letter-spacing: .02em;
  line-height: 1;
  position: relative;
}
.category-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0;
  position: relative;
}
.category-meta {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  position: relative;
}
.category-meta .chip {
  padding: 6px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 99px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- PACKAGE PAGE ---------- */
.package-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}
.package-gallery {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.package-gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.package-gallery .placeholder {
  font-family: var(--font-display);
  font-size: 160px;
  color: var(--border-hi);
  letter-spacing: .02em;
}
.package-info { padding: 12px 0; }
.package-info .category-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.package-info h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 60px);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: .02em;
}
.package-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
  padding: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.package-pricing .amount {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
}
.package-pricing .old {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 18px;
}
.package-pricing .pct {
  margin-left: auto;
  padding: 4px 10px;
  background: var(--danger);
  color: white;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
}
.package-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 28px;
}
.package-description h2, .package-description h3 {
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: .02em;
  margin: 28px 0 12px;
}
.package-description ul { padding-left: 20px; }
.package-description li { margin: 6px 0; }
.package-actions {
  display: flex;
  gap: 12px;
  margin: 0 0 32px;
}
.package-actions .btn-primary { flex: 1; padding: 16px 24px; font-size: 16px; }

.package-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  padding: 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item .icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
}
.trust-item .txt { font-size: 13px; line-height: 1.3; }
.trust-item .txt strong { display: block; color: var(--text); }
.trust-item .txt span { color: var(--text-muted); font-size: 12px; }

/* ---------- CHECKOUT / BASKET ---------- */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 28px;
  align-items: flex-start;
}
.checkout-items {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.checkout-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  padding: 20px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-img {
  width: 80px; height: 80px;
  background: var(--bg-soft);
  border-radius: 10px;
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
}
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-info h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 4px;
  letter-spacing: .02em;
}
.checkout-item-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}
.checkout-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.checkout-item-price .amount {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent);
  line-height: 1;
}
.checkout-item-price .unit-price {
  display: block;
  color: var(--text-dim);
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 4px;
}

/* -- Quantity control -- */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  background: transparent;
  transition: all .15s ease;
  cursor: pointer;
  border: 0;
  padding: 0;
  font-family: inherit;
}
.qty-btn:hover {
  background: var(--surface-hi);
  color: var(--text);
}
.qty-btn-add:hover { color: var(--accent); }
.qty-btn-minus:hover { color: var(--warning); }
.qty-btn-remove:hover { color: var(--danger); }
.qty-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}
.qty-btn.qty-btn-locked {
  position: relative;
  opacity: .3;
  cursor: not-allowed;
}
.qty-btn.qty-btn-locked:hover {
  background: transparent;
  color: var(--text-muted);
}
.qty-error {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(255,77,94,.1);
  border: 1px solid rgba(255,77,94,.3);
  color: var(--danger);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  max-width: fit-content;
  animation: qtyErrorIn .25s ease;
}
@keyframes qtyErrorIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.qty-value {
  min-width: 44px;
  width: 44px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text);
  padding: 0 4px;
  border-top: 0;
  border-bottom: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  background: transparent;
  height: 32px;
  line-height: 32px;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
  cursor: text;
  transition: background .15s ease;
}
.qty-value:hover {
  background: var(--surface-hi);
}
.qty-value:focus {
  background: var(--surface-hi);
  color: var(--accent);
}
.qty-value::-webkit-outer-spin-button,
.qty-value::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-value[readonly] {
  cursor: not-allowed;
  opacity: .7;
}

/* -- Checkout suggestions (upsell) -- */
.checkout-suggestions {
  margin-top: 24px;
}
.suggestions-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .04em;
  margin: 0 0 16px;
  color: var(--text);
}
.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.suggestion-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s ease;
}
.suggestion-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.suggestion-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-soft), var(--surface-hi));
  overflow: hidden;
  display: grid;
  place-items: center;
}
.suggestion-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.suggestion-card:hover .suggestion-img img { transform: scale(1.05); }
.suggestion-placeholder {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--border-hi);
}
.suggestion-info {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.suggestion-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text);
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.suggestion-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.delivery-target {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0 0 20px;
}
.delivery-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.delivery-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.delivery-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}
.delivery-name {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  font-family: var(--font-mono);
  word-break: break-all;
}
.delivery-change {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
  transition: color .2s ease;
}
.delivery-change:hover { color: var(--accent-hi); }

.checkout-summary h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 0 0 18px;
  letter-spacing: .02em;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 14px;
}
.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 18px;
  color: var(--text);
  font-size: 16px;
}
.summary-row.total .amount {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.coupon-form {
  display: flex;
  gap: 8px;
  margin: 18px 0;
}
.coupon-form input {
  flex: 1;
  padding: 11px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
}
.coupon-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.coupon-form button {
  padding: 11px 16px;
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  transition: all .2s ease;
}
.coupon-form button:hover { background: var(--accent); color: #0A0A0B; border-color: var(--accent); }

.checkout-empty {
  text-align: center;
  padding: 80px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.checkout-empty .emoji {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: .5;
}
.checkout-empty h2 {
  font-family: var(--font-display);
  font-size: 40px;
  margin: 0 0 8px;
}
.checkout-empty p {
  color: var(--text-muted);
  margin: 0 0 24px;
}

/* ---------- ALERT ---------- */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin: 0 0 24px;
  border: 1px solid;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.alert-success {
  background: rgba(61,214,140,.08);
  border-color: rgba(61,214,140,.3);
  color: var(--success);
}
.alert-danger {
  background: rgba(255,77,94,.08);
  border-color: rgba(255,77,94,.3);
  color: var(--danger);
}
.alert-info {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- FOOTER ---------- */
.site-footer {
  margin-top: 80px;
  padding: 60px 0 30px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .08em;
  color: var(--text);
  margin: 0 0 16px;
  text-transform: uppercase;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-grid li { margin: 8px 0; }
.footer-grid a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color .2s ease;
}
.footer-grid a:hover { color: var(--accent); }
.footer-about p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  transition: all .2s ease;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0A0A0B;
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 13px;
}
.footer-bottom .powered {
  display: inline-flex; align-items: center; gap: 6px;
}

/* ---------- FORM (username, options) ---------- */
.form-card {
  max-width: 520px;
  margin: 40px auto;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-card h1 {
  font-family: var(--font-display);
  font-size: 40px;
  margin: 0 0 8px;
  letter-spacing: .02em;
}
.form-card > p { color: var(--text-muted); margin: 0 0 28px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  transition: all .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.form-field .hint { font-size: 12px; color: var(--text-muted); margin-top: 6px; }

/* ---------- LOGIN PAGE (Steam / OAuth) ---------- */
.login-card { text-align: center; }
.login-card h1, .login-card > p { text-align: center; }
.login-card > p { margin-bottom: 28px; }

.provider-logo {
  width: 96px; height: 96px;
  margin: 0 auto 24px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--accent);
  box-shadow: 0 10px 40px -10px var(--accent-glow);
  position: relative;
}
.provider-logo::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  border: 1px solid var(--accent-dim);
  opacity: .6;
  pointer-events: none;
}

.btn-provider {
  padding: 16px 24px !important;
  font-size: 16px !important;
  margin-top: 8px;
  gap: 10px;
}

.login-info {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.login-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.login-info .info-icon {
  font-size: 18px;
  line-height: 1.3;
  flex-shrink: 0;
}
.login-info li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.login-info strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.login-info span {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.login-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.login-footer a { color: var(--accent); font-weight: 500; }

/* ---------- DISCORD BUTTON (options.html) ---------- */
.btn-discord {
  background: #5865F2;
  color: white;
  border: none;
}
.btn-discord:hover {
  background: #4752c4;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -6px rgba(88,101,242,0.4);
}
.discord-linked {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 14px;
}
.discord-linked strong { color: #5865F2; }

/* ---------- OPTIONS FORM ---------- */
.options-form .form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A9AA3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
  cursor: pointer;
}

/* ---------- SIDEBAR MODULES (homepage grid) ---------- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.sidebar-module {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .3s ease;
  overflow: hidden;
  isolation: isolate;
  position: relative;
}
.sidebar-module::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
}
.sidebar-module:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.sidebar-module:hover::before { opacity: 1; }

/* -- Hover specifique : Top Donator (doré / premium) -- */
.module-topdonator::before {
  background: linear-gradient(135deg, rgba(255,204,77,.15), transparent 60%);
}
.module-topdonator:hover {
  border-color: var(--warning);
  box-shadow: 0 12px 40px -10px rgba(255,204,77,.35);
}
.module-topdonator:hover .donator-avatar img {
  border-color: var(--warning);
  box-shadow: 0 4px 16px -4px rgba(255,204,77,.5);
}
.module-topdonator:hover .donator-crown {
  background: var(--warning);
  transform: scale(1.1) rotate(-8deg);
}
.module-topdonator .donator-crown {
  transition: all .3s ease;
}

/* -- Hover specifique : Recent Payments (vert / dynamique) -- */
.module-payments::before {
  background: linear-gradient(135deg, rgba(61,214,140,.12), transparent 60%);
}
.module-payments:hover {
  border-color: var(--success);
  box-shadow: 0 12px 40px -10px rgba(61,214,140,.3);
}
.module-payments:hover .payment-price {
  color: var(--success);
}
.module-payments .payment-price {
  transition: color .3s ease;
}
.sidebar-module h4 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: .04em;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--text);
}

/* -- Top donator module -- */
.donator-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.donator-avatar {
  position: relative;
  flex-shrink: 0;
}
.donator-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 2px solid var(--accent);
  object-fit: cover;
  box-shadow: 0 4px 16px -4px var(--accent-glow);
}
.donator-crown {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #0A0A0B;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.donator-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.donator-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1;
}
.donator-amount {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.donator-period {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: capitalize;
}

/* -- Payments module -- */
.payment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}
.payment-item:last-child { border-bottom: none; }
.payment-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.payment-name {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.payment-package {
  color: var(--text-muted);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.payment-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}
.payment-price {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent);
  line-height: 1;
}
.payment-time {
  color: var(--text-dim);
  font-size: 12px;
}

/* -- Featured package module -- */
.featured-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-hi);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s ease;
  color: inherit;
}
.featured-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px -6px var(--accent-glow);
}
.featured-card:hover .featured-img img { transform: scale(1.05); }
.featured-card:hover .featured-cta { color: var(--accent-hi); gap: 10px; }
.featured-img {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-soft), var(--surface-hi));
  overflow: hidden;
  display: grid;
  place-items: center;
}
.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.featured-placeholder {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--border-hi);
  letter-spacing: .02em;
}
.featured-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 10px;
  background: rgba(10,10,11,.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.featured-badge.discount {
  background: var(--danger);
  border-color: var(--danger);
  color: white;
}
.featured-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.featured-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.featured-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1.1;
}
.featured-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}
.featured-price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
}
.featured-old {
  color: var(--text-dim);
  text-decoration: line-through;
  font-size: 14px;
}
.featured-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 18px;
}

/* -- Module empty state -- */
.module-empty {
  color: var(--text-dim);
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
  margin: 0;
}

/* -- Goal / progress bar modules -- */
.sidebar-module .progress,
.sidebar-module progress {
  width: 100%;
  height: 8px;
  border-radius: 99px;
  background: var(--surface-hi);
  overflow: hidden;
  border: none;
  appearance: none;
  -webkit-appearance: none;
}
.sidebar-module progress::-webkit-progress-bar { background: var(--surface-hi); border-radius: 99px; }
.sidebar-module progress::-webkit-progress-value { background: var(--accent); border-radius: 99px; }
.sidebar-module progress::-moz-progress-bar { background: var(--accent); border-radius: 99px; }

/* -- General module fallbacks -- */
.sidebar-module a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease;
}
.sidebar-module a:hover { color: var(--accent-hi); }
.sidebar-module p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.sidebar-module img {
  max-width: 100%;
  border-radius: var(--radius);
}
.sidebar-module table { width: 100%; border-collapse: collapse; }
.sidebar-module table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.sidebar-module table tr:last-child td { border-bottom: none; }

/* ---------- CMS PAGE ---------- */
.cms-page {
  max-width: 760px;
  margin: 40px auto;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.cms-page h1 {
  font-family: var(--font-display);
  font-size: 48px;
  margin: 0 0 24px;
  letter-spacing: .02em;
}
.cms-page p, .cms-page li { color: var(--text-muted); line-height: 1.7; }
.cms-page a { color: var(--accent); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav { display: none; }
  .site-header .container { gap: 16px; }
  .brand { font-size: 20px; gap: 10px; }
  .brand-logo { width: 36px; height: 36px; font-size: 18px; }
  .hero { padding: 40px 24px; }
  .package-layout { grid-template-columns: 1fr; gap: 24px; }
  .package-gallery { position: static; aspect-ratio: 16/10; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .stat-value { font-size: 28px; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .site-header .container { gap: 10px; }
  .brand { font-size: 17px; gap: 8px; min-width: 0; }
  .brand span:not(.brand-logo) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand-logo { width: 32px; height: 32px; font-size: 16px; flex-shrink: 0; }
  .basket-btn span:not(.count),
  .user-btn span { display: none; }
  .basket-btn, .user-btn { padding: 10px 12px; }
  .header-actions { gap: 6px; }
  .hero { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .checkout-item { grid-template-columns: 60px 1fr; }
  .checkout-item-img { width: 60px; height: 60px; }
  .checkout-item-price { grid-column: 1 / -1; align-items: flex-start; flex-direction: row; justify-content: space-between; }
  .form-card { padding: 28px 20px; }
  .cms-page { padding: 28px 20px; }
  .category-banner { padding: 28px 20px; }
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
