/* =====================================================
   GameVault — Play Beyond Limits
   ===================================================== */

:root {
  --primary: #2563EB;
  --primary-hover: #3B82F6;
  --secondary: #1E293B;
  --bg: #0F172A;
  --card: #1E293B;
  --text: #FFFFFF;
  --text-muted: #94A3B8;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --border: rgba(148, 163, 184, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 20px; height: 20px; flex-shrink: 0; }

a { text-decoration: none; color: inherit; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all 150ms ease;
}

.btn .icon { width: 18px; height: 18px; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }

.btn-sm { height: 42px; padding: 0 20px; font-size: 14px; }

/* ================= Navbar ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
}

.logo-mark svg { width: 100%; height: 100%; }

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--primary-hover); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 150ms ease;
}

.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-actions {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-box {
  position: relative;
  width: 230px;
}

.search-box input {
  width: 100%;
  height: 42px;
  padding: 0;
  padding-inline: 16px 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 150ms ease;
}

.search-box input::placeholder { color: var(--text-muted); }

.search-box input:focus { border-color: var(--primary); }

.search-box .icon {
  position: absolute;
  inset-inline-end: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.cart-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--text);
  transition: background 150ms ease;
}

.cart-btn:hover { background: var(--card); }

.btn-login { height: 42px; padding: 0 22px; font-size: 14px; }

.menu-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; }

/* ================= Hero ================= */
.hero {
  position: relative;
  margin-top: 24px;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-slide.is-active { opacity: 1; }

/* mountain-sunset scene (CSS art) */
.slide-1 {
  background:
    radial-gradient(ellipse 60% 45% at 72% 30%, rgba(253, 186, 116, 0.55), transparent 65%),
    radial-gradient(ellipse 45% 35% at 85% 20%, rgba(251, 146, 60, 0.4), transparent 60%),
    linear-gradient(115deg, #0c1526 0%, #16233c 34%, #3d4a63 55%, #8a6a52 76%, #c98a4b 100%);
}

.slide-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, transparent 52%, rgba(10, 16, 30, 0.85) 53%, rgba(10, 16, 30, 0.55) 100%),
    linear-gradient(200deg, transparent 60%, rgba(8, 13, 26, 0.9) 61%, rgba(8, 13, 26, 0.6) 100%);
}

.slide-2 {
  background:
    radial-gradient(ellipse 55% 45% at 70% 35%, rgba(96, 165, 250, 0.4), transparent 65%),
    linear-gradient(115deg, #0c1526 0%, #101f3a 40%, #1c3a6e 70%, #2c5aa8 100%);
}

.slide-3 {
  background:
    radial-gradient(ellipse 55% 45% at 75% 30%, rgba(192, 132, 252, 0.35), transparent 65%),
    linear-gradient(115deg, #120c26 0%, #1d1440 45%, #372368 75%, #5b3a9e 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.55) 45%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px;
  max-width: 640px;
}

.hero-kicker {
  display: block;
  color: var(--primary-hover);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.35em;
  margin-bottom: 14px;
}

.hero-title {
  font-size: 58px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.hero-title span { color: var(--primary-hover); }

.hero-desc {
  margin-top: 18px;
  color: #cbd5e1;
  font-size: 16px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  transition: all 250ms ease;
}

.dot.is-active {
  width: 26px;
  background: var(--primary-hover);
}

/* ================= Sections ================= */
.section { margin-top: 56px; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-hover);
  font-size: 14px;
  font-weight: 600;
  transition: gap 150ms ease;
}

.view-all:hover { gap: 8px; }

.view-all .icon { width: 16px; height: 16px; }

/* ================= Game Cards ================= */
.games-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.game-card {
  cursor: pointer;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.game-card:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
  border-color: rgba(59, 130, 246, 0.35);
}

.game-cover {
  position: relative;
  height: 170px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  overflow: hidden;
}

.cover-name {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.cover-name.serif { font-family: Georgia, 'Times New Roman', serif; letter-spacing: 0.1em; }

.game-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 18, 0.55) 100%);
}

/* --- CSS cover art per game --- */
.cover-rdr2 {
  background:
    radial-gradient(circle at 75% 25%, rgba(255, 200, 80, 0.5), transparent 45%),
    linear-gradient(145deg, #7f1d1d 0%, #b91c1c 45%, #ea580c 100%);
}

.cover-elden {
  background:
    radial-gradient(circle at 50% 42%, rgba(250, 204, 21, 0.75), rgba(202, 138, 4, 0.25) 38%, transparent 62%),
    linear-gradient(160deg, #0b1120 0%, #131c33 60%, #1a2440 100%);
}

.cover-elden .cover-name { color: #fde68a; }

.cover-gow {
  background:
    radial-gradient(circle at 70% 30%, rgba(147, 197, 253, 0.45), transparent 50%),
    linear-gradient(150deg, #1e3a5f 0%, #33547c 55%, #64748b 100%);
}

.cover-hogwarts {
  background:
    radial-gradient(circle at 60% 35%, rgba(103, 232, 249, 0.4), transparent 48%),
    linear-gradient(155deg, #0c1a30 0%, #14294a 55%, #1e3a6d 100%);
}

.cover-cyberpunk {
  background:
    radial-gradient(circle at 80% 15%, rgba(34, 211, 238, 0.5), transparent 42%),
    linear-gradient(140deg, #facc15 0%, #eab308 55%, #ca8a04 100%);
}

.cover-cyberpunk .cover-name { color: #0f172a; text-shadow: none; }

.cover-witcher {
  background:
    radial-gradient(circle at 65% 30%, rgba(148, 163, 184, 0.4), transparent 50%),
    linear-gradient(150deg, #1c1917 0%, #292524 55%, #44403c 100%);
}

.cover-valhalla {
  background:
    radial-gradient(circle at 70% 25%, rgba(125, 211, 252, 0.35), transparent 50%),
    linear-gradient(150deg, #0f1b2d 0%, #1b3a5c 60%, #2c5578 100%);
}

.cover-forza {
  background:
    radial-gradient(circle at 70% 30%, rgba(254, 215, 170, 0.5), transparent 48%),
    linear-gradient(145deg, #9a3412 0%, #dc2626 55%, #f97316 100%);
}

.cover-re4 {
  background:
    radial-gradient(circle at 65% 30%, rgba(239, 68, 68, 0.35), transparent 50%),
    linear-gradient(155deg, #0a0a0f 0%, #18181f 55%, #27272f 100%);
}

.game-body { padding: 16px; }

.game-name {
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rating {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}

.rating .star {
  width: 15px;
  height: 15px;
  color: var(--warning);
}

.game-foot {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 16px;
  font-weight: 700;
}

.old-price {
  margin-inline-start: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.add-cart {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(148, 163, 184, 0.08);
  color: var(--text);
  transition: all 150ms ease;
}

.add-cart .icon { width: 17px; height: 17px; }

.add-cart:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* ================= Categories ================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: var(--shadow);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cat-icon .icon { width: 22px; height: 22px; }

.cat-blue   { background: rgba(37, 99, 235, 0.18);  color: #60a5fa; }
.cat-purple { background: rgba(168, 85, 247, 0.18); color: #c084fc; }
.cat-green  { background: rgba(34, 197, 94, 0.16);  color: #4ade80; }
.cat-orange { background: rgba(245, 158, 11, 0.16); color: #fbbf24; }
.cat-cyan   { background: rgba(34, 211, 238, 0.16); color: #22d3ee; }
.cat-red    { background: rgba(239, 68, 68, 0.16);  color: #f87171; }
.cat-yellow { background: rgba(234, 179, 8, 0.16);  color: #facc15; }
.cat-pink   { background: rgba(236, 72, 153, 0.16); color: #f472b6; }

.cat-name {
  font-size: 14px;
  font-weight: 600;
}

/* ================= Special Offers ================= */
.offers-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 20px;
}

.promo-card {
  background:
    radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.22), transparent 55%),
    var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
}

.promo-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  margin-bottom: 6px;
}

.promo-badge .icon { width: 26px; height: 26px; }

.promo-kicker {
  color: var(--primary-hover);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.promo-title {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.promo-desc {
  color: var(--text-muted);
  font-size: 14px;
}

.promo-card .btn { margin-top: 10px; }

.offer-card .game-cover { height: 150px; }

.discount-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.offer-card .cover-name { font-size: 13px; }

/* seo.js pins a MOD pill to the start corner; when both badges are on a
   cover, the discount moves to the opposite corner instead of stacking. */
.game-cover:has(.card-mod-badge) .discount-badge {
  inset-inline-start: auto;
  inset-inline-end: 12px;
}

.offer-card .game-name { white-space: normal; min-height: 42px; }

/* ================= Features ================= */
.features {
  margin-top: 56px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary-hover);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.feature-icon .icon { width: 24px; height: 24px; }

.feature h4 {
  font-size: 15px;
  font-weight: 700;
}

.feature p {
  margin-top: 3px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ================= Footer ================= */
.footer {
  margin-top: 64px;
  background: #0B1222;
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 240px;
}

.socials {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease;
}

.socials a:hover {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.socials .icon { width: 17px; height: 17px; }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 150ms ease;
  width: fit-content;
}

.footer-col a:hover { color: #fff; }

.footer-newsletter p {
  color: var(--text-muted);
  font-size: 13.5px;
  margin-bottom: 4px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 150ms ease;
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form input:focus { border-color: var(--primary); }

.newsletter-form button {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}

.newsletter-form button:hover { background: var(--primary-hover); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

.payments {
  display: flex;
  align-items: center;
  gap: 22px;
}

.pay {
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.pay-visa { font-style: italic; letter-spacing: 0.04em; }

.pay-mc { gap: 0; }

.pay-mc i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
}

.pay-mc i:first-child { background: #EB001B; }

.pay-mc i:last-child { background: #F79E1B; margin-inline-start: -8px; opacity: 0.9; }

.pay-paypal { font-style: italic; }

.pay-paypal b { color: var(--primary-hover); }

.pay-apple .icon { width: 16px; height: 16px; }

/* ================= Reveal animation ================= */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ================= Language switcher ================= */
.lang-switch { position: relative; }

.lang-btn {
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 150ms ease;
}

.lang-btn:hover { background: var(--card); }

.lang-btn .icon { width: 18px; height: 18px; }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  min-width: 160px;
  background: #111C31;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  display: none;
  z-index: 300;
  box-shadow: var(--shadow);
}

.lang-switch.open .lang-menu { display: block; }

.lang-item {
  display: block;
  width: 100%;
  text-align: start;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 150ms ease;
}

.lang-item:hover { background: rgba(148, 163, 184, 0.08); color: #fff; }

.lang-item.active { background: rgba(37, 99, 235, 0.18); color: #fff; font-weight: 600; }

.lang-float {
  position: fixed;
  top: 18px;
  inset-inline-end: 18px;
  z-index: 400;
}

.lang-float .lang-btn {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

/* ================= Arabic font ================= */
html[lang="ar"] body,
html[lang="ar"] button,
html[lang="ar"] input,
html[lang="ar"] select,
html[lang="ar"] textarea {
  font-family: 'Cairo', 'Inter', system-ui, sans-serif;
}

html[lang="ar"] .hero-title,
html[lang="ar"] .hero-kicker,
html[lang="ar"] .promo-kicker {
  letter-spacing: 0;
}

/* ================= RTL adjustments ================= */
[dir="rtl"] .view-all .icon,
[dir="rtl"] .breadcrumb > .icon,
[dir="rtl"] .hero-actions .btn .icon,
[dir="rtl"] .also-nav .icon,
[dir="rtl"] .continue-btn .icon {
  transform: scaleX(-1);
}

[dir="rtl"] .hero-overlay {
  background: linear-gradient(270deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.55) 45%, transparent 75%);
}

/* ================= Responsive ================= */
@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .offers-grid { grid-template-columns: 1fr 1fr; }
  .promo-card { grid-column: span 2; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .search-box { width: 170px; }
  .nav-links { gap: 18px; }
}

@media (max-width: 980px) {
  .search-box { display: none; }
  .navbar-inner { gap: 20px; }
  .nav-links { gap: 16px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px;
    display: none;
  }

  .nav-links.is-open { display: flex; }

  .nav-links a { padding: 12px 0; width: 100%; }

  .menu-toggle { display: inline-flex; }

  .hero { height: 420px; }

  .hero-content { padding: 0 28px; }

  .hero-title { font-size: 40px; }

  .games-grid { grid-template-columns: 1fr; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .offers-grid { grid-template-columns: 1fr; }

  .promo-card { grid-column: span 1; }

  .features { grid-template-columns: 1fr; padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom { flex-direction: column; }
}
