/* ============================================================
   SkinGush — CS2 Skins Marketplace
   BEM methodology · 4px spacing scale · Manrope
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* surfaces */
  --bg: #0b0b0e;
  --bg-alt: #0f0f13;
  --surface: #16161c;
  --surface-2: #1d1d25;
  --surface-3: #25252f;
  --border: rgba(255, 255, 255, .07);
  --border-2: rgba(255, 255, 255, .12);

  /* text */
  --text: #f4f4f7;
  --text-dim: #9b9ba8;
  --text-mute: #6c6c7a;

  /* brand */
  --gold-1: #f7cf6b;
  --gold-2: #e89a3c;
  --gold-3: #d97a22;
  --grad-gold: linear-gradient(135deg, #f7cf6b 0%, #e89a3c 55%, #d97a22 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(247, 207, 107, .18), rgba(216, 122, 34, .06));

  /* rarity */
  --rar-blue: #4b8fe6;
  --rar-purple: #9b6cf0;
  --rar-pink: #e25aa0;
  --rar-red: #e2554a;
  --rar-gold: #f3b73e;
 
  /* spacing (4px scale) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 20px;
  --s-6: 24px;
  --s-8: 32px;
  --s-10: 40px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;

  /* radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* effects */
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .8);
  --shadow-gold: 0 16px 44px -16px rgba(232, 154, 60, .55);
  --ring: 0 0 0 3px rgba(247, 207, 107, .35);
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* typography */
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-display: 'Manrope', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif !important;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
button, input, select, textarea {
  font-family: inherit;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

input {
  font: inherit;
}

ul {
  list-style: none;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--s-6);
}



.section {
  padding-block: var(--s-20);
  position: relative;
}

.section--alt {
  background: var(--bg-alt);
}

.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: none;
}

/* Mask-based icon (uses currentColor, sources external SVGs from /icons) */
.ico {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: none;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.ico--steam {
  -webkit-mask-image: url('../img/icons/steam.svg');
  mask-image: url('../img/icons/steam.svg');
}

.ico--knives {
  -webkit-mask-image: url('../img/icons/Knives.svg');
  mask-image: url('../img/icons/Knives.svg');
}

.ico--gloves {
  -webkit-mask-image: url('../img/icons/gloves.svg');
  mask-image: url('../img/icons/gloves.svg');
}

.ico--sniper {
  -webkit-mask-image: url('../img/icons/sniper.svg');
  mask-image: url('../img/icons/sniper.svg');
}

.ico--rifles {
  -webkit-mask-image: url('../img/icons/Rifles.svg');
  mask-image: url('../img/icons/Rifles.svg');
}

.ico--machineguns {
  -webkit-mask-image: url('../img/icons/Machineguns.svg');
  mask-image: url('../img/icons/Machineguns.svg');
}

.ico--pistols {
  -webkit-mask-image: url('../img/icons/Pistols.svg');
  mask-image: url('../img/icons/Pistols.svg');
}

.ico--smgs {
  -webkit-mask-image: url('../img/icons/smg.svg');
  mask-image: url('../img/icons/smg.svg');
}

.text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Section heads ---------- */
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: var(--s-10);
}

.section__head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: var(--s-3);
}

.section__lead {
  color: var(--text-dim);
  max-width: 38ch;
}

.section__lead--center {
  max-width: 52ch;
}

.section__foot {
  display: flex;
  justify-content: center;
  margin-top: var(--s-12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  gap: var(--s-2);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-1);
  padding: var(--s-2) var(--s-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  background: var(--grad-gold-soft);
}

.eyebrow .icon {
  width: 16px;
  height: 16px;
}

.eyebrow--live {
  color: #58d18a;
}

.eyebrow--live .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #58d18a;
  box-shadow: 0 0 0 0 rgba(88, 209, 138, .6);
  animation: pulse 1.8s var(--ease) infinite;
}

/* ============================================================
   BUTTONS (reused everywhere)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-weight: 700;
  font-size: .95rem;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
    background-color .18s var(--ease), border-color .18s var(--ease);
}

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.btn--primary {
  background: linear-gradient(98deg, #F5C864 -2.27%, #DC8128 102.55%);
  color: #2a1705;
  box-shadow: 0 8px 20px 0 rgba(242, 194, 95, .2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px 0 rgba(242, 194, 95, .34);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--primary,
.btn--primary:hover,
.btn--primary:active,
.btn--primary:focus,
.btn--primary:visited {
  color: #2a1705;
}

.btn--ghost {
  background: var(--surface-2);
  color: var(--text);
  border-color: var(--border-2);
}

.btn--ghost:hover {
  background: var(--surface-3);
  border-color: var(--gold-2);
  color: var(--gold-1);
}

.btn--ghost:active {
  transform: translateY(1px);
}

.btn--steam {
  background: linear-gradient(135deg, #2a2f44, #1a1d2b);
  color: var(--text);
  border-color: var(--border-2);
}

.btn--steam:hover {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 1px rgba(247, 207, 107, .25);
  transform: translateY(-2px);
}

.btn--steam:active {
  transform: translateY(0);
}

.btn--sm {
  padding: var(--s-2) var(--s-4);
  font-size: .85rem;
}

.btn--lg {
  padding: var(--s-4) var(--s-8);
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* .btn:visited { color: inherit; } */

/* ============================================================
   BADGE / COUNTER / PILL
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 800;
  padding: var(--s-1) var(--s-2);
  border-radius: var(--r-sm);
  letter-spacing: .02em;
}

.badge--sale {
  background: var(--grad-gold);
  color: #2a1705;
}

.badge--gold {
  background: var(--grad-gold-soft);
  color: var(--gold-1);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: var(--s-2) var(--s-3);
}

.counter {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  font-size: .68rem;
  font-weight: 800;
  border-radius: var(--r-pill);
  background: var(--surface-3);
  color: var(--text);
  border: 2px solid var(--bg);
}

.counter--gold {
  background: var(--grad-gold);
  color: #2a1705;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(rgba(12, 12, 16, .9), rgba(12, 12, 16, .9)),
    url('../img/header-bg.png') center / cover no-repeat,
    var(--bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-6);
  min-height: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
}

.logo__mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--grad-gold);
  color: #2a1705;
  box-shadow: var(--shadow-gold);
}

.logo__mark .icon {
  width: 24px;
  height: 24px;
}

.logo__text {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.02em;
}

.logo__accent {
  color: var(--gold-1);
}

.nav {
  display: flex;
  gap: var(--s-1);
  margin-right: auto;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-dim);
  transition: color .16s var(--ease), background-color .16s var(--ease);
}

.nav__link .icon {
  width: 18px;
  height: 18px;
}

.nav__link:hover {
  color: var(--text);
  background: var(--surface-2);
}

.nav__link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.nav__link:visited {
  color: var(--text-dim);
}

.nav__link--active,
.nav__link--active:visited {
  color: var(--gold-1);
  background: var(--grad-gold-soft);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.header__action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: var(--s-2);
  border-radius: var(--r-md);
  color: var(--text-dim);
  font-weight: 700;
  font-size: .9rem;
  transition: color .16s var(--ease), transform .16s var(--ease);
  overflow: visible;
}

.header__action .icon {
  width: 22px;
  height: 22px;
}

.header__action:hover {
  color: var(--gold-1);
}

.header__action:active {
  transform: scale(.95);
}

.header__action:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.header__action:visited {
  color: var(--text-dim);
}

.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: color .16s var(--ease), border-color .16s var(--ease),
    background-color .16s var(--ease), transform .16s var(--ease);
}

.icon-btn:hover {
  color: var(--gold-1);
  border-color: var(--gold-2);
  background: var(--surface-2);
}

.icon-btn:active {
  transform: scale(.94);
}

.icon-btn:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.header__profile {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-pill);
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .16s var(--ease), background .16s var(--ease), color .16s var(--ease), transform .16s var(--ease);
}

.header__profile:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
  background: var(--surface-3);
}

.header__profile:active {
  transform: scale(.96);
}

.header__profile:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.header__profile-avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-gold-soft);
  color: var(--gold-1);
  flex-shrink: 0;
}

.header__profile-avatar .icon {
  width: 16px;
  height: 16px;
}

.header__profile-label {
  white-space: nowrap;
}

.nav-toggle,
.nav-burger {
  display: none;
}

.nav-burger__close {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: var(--s-16);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(11, 11, 14, .35) 0%, rgba(11, 11, 14, .8) 72%, var(--bg) 100%),
    var(--hero-bg-img, url('../img/hero-bg-fullscreen.png')) center top / cover no-repeat,
    var(--bg);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
  transition: background 0.5s ease;
}

.hero__glow--a {
  width: 520px;
  height: 520px;
  top: -160px;
  right: -60px;
  background: radial-gradient(circle, rgba(232, 154, 60, .32), transparent 70%);
  animation: drift 14s var(--ease) infinite alternate;
}

.hero__glow--b {
  width: 460px;
  height: 460px;
  bottom: -200px;
  left: -120px;
  background: radial-gradient(circle, rgba(155, 108, 240, .22), transparent 70%);
  animation: drift 18s var(--ease) infinite alternate-reverse;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__head {
  max-width: 640px;
  margin-bottom: var(--s-12);
}

.hero__title {
  font-size: clamp(2rem, 5.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: var(--s-4) 0 var(--s-4);
}

.hero__subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 48ch;
}

.hero__head,
.hero__left,
.hero__cards {
  animation: rise .7s var(--ease) both;
}

.hero__head {
  animation-delay: 0s;
}

.hero__left {
  animation-delay: .07s;
}

.hero__cards {
  animation-delay: .16s;
}

.hero__showcase {
  display: flex;
  gap: var(--s-6);
  /* 24px — matches Figma */
  align-items: center;
  /* vertically center the two groups */
}

/* Left group: featured card + promos side-by-side */
.hero__left {
  display: flex;
  gap: var(--s-6);
  align-items: flex-start;
  flex: 2;
  /* takes 2/3 of available width */
}

.hero__promos {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  flex: 1;
}

/* Right group: 2×2 skin cards */
.hero__cards {
  flex: 1;
  /* takes 1/3 of available width */
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.hero__cards-row {
  display: flex;
  gap: var(--s-6);
}

.hero__cards-row .card {
  flex: 1;
  height: 299px;
}

/* ---------- Featured card ---------- */
.featured {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    align-self: stretch;
    border-radius: var(--r-xl);
    background: radial-gradient(ellipse 90% 55% at 50% 35%, rgba(240, 160, 50, .9) 0%, rgba(200, 110, 20, .7) 45%, transparent 75%), radial-gradient(ellipse 100% 45% at 50% 100%, rgba(160, 80, 10, .85) 0%, transparent 65%), linear-gradient(180deg, #2d1604 0%, #180c02 100%);
    border: 1px solid rgba(247, 207, 107, .18);
    overflow: hidden;
}

.featured__orbit {
  position: absolute;
  inset: -40% -40% auto -40%;
  height: 480px;
  background: conic-gradient(from 0deg, transparent, rgba(247, 207, 107, .25), transparent 45%);
  animation: spin 16s linear infinite;
  z-index: 0;
}

.featured>*:not(.featured__orbit):not(.featured__overlay) {
  position: relative;
  z-index: 1;
}

.featured .badge--gold {
  align-self: flex-start;
}

.featured__media {
    position: relative;
    width: 100%;
    height: 100%; /* Теперь 100% от родителя */
    overflow: hidden;
}

.featured__media .weapon {
  width: 78%;
  height: auto;
  color: var(--gold-1);
}

.featured__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняет блок, обрезая лишнее */
    object-position: center; /* Центрирует изображение */
}

.featured:hover .featured__img {
  transform: scale(1.04);
}

.featured__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 3;
}

.featured__cat {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.featured__name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: var(--s-1) 0 var(--s-1);
}

.featured__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-top: var(--s-4);
}

.price {
  display: flex;
  flex-direction: column;
}

.price__old {
  color: var(--text-mute);
  text-decoration: line-through;
  font-size: .85rem;
}

.price__now {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-1);
}

/* ---------- Promo blocks ---------- */
.promo {
  position: relative;
  flex: 0 0 299px;
  /* fixed 299px — matches Figma card height */
  height: 299px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-8);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255, 255, 255, .09);
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}

.promo:hover {
  transform: translateY(-4px);
  border-color: var(--gold-2);
}

.promo--discount {
  background:
    radial-gradient(120% 130% at 100% 60%, rgba(232, 154, 60, .38), transparent 62%),
    linear-gradient(135deg, var(--surface-2), var(--surface));
}

.promo--shop {
  background:
    radial-gradient(120% 130% at 100% 60%, rgba(232, 154, 60, .2), transparent 62%),
    linear-gradient(135deg, var(--surface-2), var(--surface));
}

.promo__shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .12), transparent);
  transform: skewX(-18deg);
  animation: shine 5s var(--ease) infinite;
  z-index: 2;
}

.promo--shop .promo__shine {
  animation-delay: 2.5s;
}

.promo__art {
  position: absolute;
  right: -10px;
  bottom: -64px;
  width: 300px !important;
  height: 300px;
  /* max-width: 210px; */
  pointer-events: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .55));
  animation: float 6s var(--ease) infinite;
}

.promo--shop .promo__art {
  animation-delay: 1.6s;
  width: 50%;
}

.promo__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.promo__title {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.promo__desc {
  color: var(--text-dim);
  font-size: .9rem;
  max-width: 60%;
}

.promo .btn {
  position: relative;
  z-index: 1;
  align-self: flex-start;
}

/* ============================================================
   SKIN CARD (reused: hero cards + grid)
   ============================================================ */
.card {
  --rar: var(--rar-blue);
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background:
    radial-gradient(120% 70% at 50% 0%, color-mix(in srgb, var(--rar) 26%, transparent), transparent 70%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

.card--blue {
  --rar: var(--rar-blue);
}

.card--purple {
  --rar: var(--rar-purple);
}

.card--pink {
  --rar: var(--rar-pink);
}

.card--red {
  --rar: var(--rar-red);
}

.card--gold {
  --rar: var(--rar-gold);
}

.card:hover {
  border-color: color-mix(in srgb, var(--rar) 70%, transparent);
  box-shadow: 0 22px 50px -22px color-mix(in srgb, var(--rar) 75%, transparent);
}

.card--hidden {
  display: none;
}

/* Full-card link overlay — covers the whole card. Sits ABOVE media/body
   (which have z-index 1 from wow-effects block) so the entire card is clickable.
   Interactive children (.card__fav, .card__cart) live at z-index 2/3 above this. */
.card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.card__fav {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  z-index: 2;
  pointer-events: auto;
  touch-action: manipulation;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 11, 14, .6);
  border: 1px solid var(--border-2);
  color: var(--text-dim);
  transition: color .16s var(--ease), background-color .16s var(--ease), transform .16s var(--ease);
}

.card__fav .icon {
  width: 18px;
  height: 18px;
}

.card__fav:hover {
  color: var(--rar-pink);
  background: rgba(11, 11, 14, .9);
}

.card__fav:active {
  transform: scale(.9);
}

.card__fav:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.card__fav.card__fav--active {
  color: var(--rar-pink);
  background: rgba(226, 90, 160, .15);
}

.card__fav.card__fav--active:hover {
  background: rgba(226, 90, 160, .25);
}

.card__media {
  flex: 1;
  display: grid;
  place-items: center;
  padding: var(--s-6) var(--s-5) var(--s-4);
  min-height: 138px;
  pointer-events: none;
}

.card__media .weapon {
  width: 84%;
  height: auto;
  color: color-mix(in srgb, var(--rar) 55%, #ffffff);
  filter: drop-shadow(0 8px 18px color-mix(in srgb, var(--rar) 60%, transparent));
  transition: transform .25s var(--ease);
}

.card:hover .card__media .weapon {
  transform: translateY(-4px) scale(1.06);
}

.card__img {
  max-width: 100%;
  max-height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .55));
  transition: transform .25s var(--ease);
}

.card:hover .card__img {
  transform: translateY(-4px) scale(1.07);
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-4);
  border-top: 1px solid var(--border);
  pointer-events: none;
}

.card__name {
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card__wear {
  font-size: .8rem;
  color: var(--text-mute);
}

.card__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: var(--s-2);
  row-gap: 2px;
  margin-top: var(--s-2);
}

.card__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold-1);
}

.card__price-old {
  order: -1;
  /* визуально встаёт первым */
  flex-basis: 100%;
  /* занимает всю строку → основная цена уходит вниз */
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-mute);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, .3);
  line-height: 1;
}

.card__cart {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  touch-action: manipulation;
  margin-left: auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--surface-3);
  color: var(--text-dim);
  transition: background-color .16s var(--ease), color .16s var(--ease), transform .16s var(--ease);
}

.card__cart .icon {
  width: 18px;
  height: 18px;
}

.card__cart:hover {
  background: var(--grad-gold);
  color: #2a1705;
}

.card__cart:active {
  transform: scale(.9);
}

.card__cart:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* ---------- Grid layouts ---------- */
.grid {
  display: grid;
  gap: var(--s-5);
}

.grid--skins {
  grid-template-columns: repeat(6, 1fr);
}

.grid--trust {
  grid-template-columns: repeat(4, 1fr);
}

.grid--blog {
  grid-template-columns: repeat(3, 1fr);
}

/* ---------- Filters ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
}

.filter {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: color .16s var(--ease), background-color .16s var(--ease),
    border-color .16s var(--ease), transform .16s var(--ease);
}

.filter .icon {
  width: 16px;
  height: 16px;
}

.filter__ic {
  width: 16px;
  height: 16px;
  flex: none;
}

.filter--active .filter__ic {
  filter: brightness(0);
}

.btn__ic {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn--primary .btn__ic {
  filter: brightness(0);
}

.filter:hover {
  color: var(--text);
  border-color: var(--border-2);
}

.filter:active {
  transform: translateY(1px);
}

.filter:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.filter--active {
  background: var(--grad-gold);
  color: #2a1705;
  border-color: transparent;
}

/* ============================================================
   TRUSTED
   ============================================================ */
.trust {
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}

.trust:hover {
  transform: translateY(-4px);
  border-color: var(--gold-2);
}

.trust__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--grad-gold-soft);
  border: 1px solid var(--border-2);
  color: var(--gold-1);
  margin-bottom: var(--s-4);
}

.trust__title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--s-2);
}

.trust__desc {
  color: var(--text-dim);
  font-size: .92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-5);
  padding: var(--s-8);
  border-radius: var(--r-lg);
  background:
    radial-gradient(100% 140% at 50% 0%, rgba(232, 154, 60, .12), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  text-align: center;
}

.stats__num {
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.stats__label {
  color: var(--text-dim);
  font-size: .85rem;
}

/* ============================================================
   LIVE BUYING
   ============================================================ */
.live {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.live__row {
  display: grid;
  grid-template-columns: 2fr 1.4fr 1fr;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-6);
}

.live__row--head {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.live__col {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.live__col--price {
  text-align: right;
}

.live__list {
  display: flex;
  flex-direction: column;
}

.live__list .live__row {
  border-bottom: 1px solid var(--border);
  animation: liveRow 9s var(--ease) infinite;
}

.live__list .live__row:last-child {
  border-bottom: 0;
}

.live__list .live__row:nth-child(1) {
  animation-delay: 0s;
}

.live__list .live__row:nth-child(2) {
  animation-delay: -1.3s;
}

.live__list .live__row:nth-child(3) {
  animation-delay: -2.6s;
}

.live__list .live__row:nth-child(4) {
  animation-delay: -3.9s;
}

.live__list .live__row:nth-child(5) {
  animation-delay: -5.2s;
}

.live__list .live__row:nth-child(6) {
  animation-delay: -6.5s;
}

.live__list .live__row:nth-child(7) {
  animation-delay: -7.8s;
}

.live:hover .live__row {
  animation-play-state: paused;
}

.live__item {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  font-weight: 700;
  font-size: .95rem;
}

.live__chip {
  --rar: var(--rar-gold);
  flex-shrink: 0;
  width: 64px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 4px;
  border-radius: var(--r-sm);
  background:
    radial-gradient(120% 90% at 50% 30%, color-mix(in srgb, var(--rar) 24%, transparent), transparent 70%),
    var(--surface-3);
  border: 1px solid color-mix(in srgb, var(--rar) 45%, transparent);
  box-shadow: inset 0 0 12px color-mix(in srgb, var(--rar) 18%, transparent);
}

.live__chip img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .5));
}

.live__chip--blue {
  --rar: var(--rar-blue);
}

.live__chip--purple {
  --rar: var(--rar-purple);
}

.live__chip--pink {
  --rar: var(--rar-pink);
}

.live__chip--red {
  --rar: var(--rar-red);
}

.live__chip--gold {
  --rar: var(--rar-gold);
}

.live__user {
  color: var(--text-dim);
  font-size: .9rem;
  letter-spacing: .04em;
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}

.live__price {
  font-weight: 800;
  color: var(--gold-1);
  text-align: right;
}

@keyframes liveRow {
  0% {
    opacity: 0;
    transform: translateX(-48px);
  }

  10%,
  88% {
    opacity: 1;
    transform: translateX(0);
  }

  98%,
  100% {
    opacity: 0;
    transform: translateX(48px);
  }
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
}

.bonus {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  min-height: 396px;
  padding: var(--s-8);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background:
    linear-gradient(119deg, rgba(217, 217, 217, .07) 20%, rgba(35, 35, 35, .04) 99%),
    var(--surface);
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}

.bonus:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
}

.bonus--login:hover {
  border-color: #2abd69;
}

.bonus>*:not(.bonus__art) {
  position: relative;
  z-index: 1;
}

.bonus__text {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.bonus__title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, .5));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bonus__title--green {
  background: none;
  color: #2abd69;
}

.bonus__desc {
  color: var(--text-dim);
  font-size: .95rem;
}

.bonus__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #2abd69;
  border: 2px solid #2abd69;
  background: rgba(42, 189, 105, .08);
}

.bonus--login {
  gap: var(--s-6);
}

.bonus--login .bonus__text {
  flex: 1;
}

.bonus__steam {
  margin-top: auto;
  background: rgba(42, 189, 105, .06);
  border: 1px solid #2abd69;
  box-shadow: inset 0 0 12px rgba(42, 189, 105, .12);
}

.bonus__steam:hover {
  background: rgba(42, 189, 105, .16);
}

.bonus__steam:active {
  transform: translateY(1px);
}

.bonus__steam,
.bonus__steam:hover,
.bonus__steam:visited,
.bonus__steam:focus {
  color: #ffffff;
}

.bonus__socials {
  display: flex;
  gap: var(--s-2);
}

.bonus__social {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--r-sm);
  background: #242321;
  border: 1px solid var(--border-2);
  color: var(--text-dim);
  transition: color .16s var(--ease), border-color .16s var(--ease), transform .16s var(--ease);
}

.bonus__social .icon {
  width: 20px;
  height: 20px;
}

.bonus__social:hover {
  color: var(--gold-1);
  border-color: var(--gold-2);
}

.bonus__social:active {
  transform: scale(.92);
}

.bonus__social:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

/* Per-card decorative background sheets (semi-transparent overlay on the dark base) */
.bonus--gift {
  background:
    url('../img/bonuses1.png') center / cover no-repeat,
    url('../img/bonuses1.png') center / cover no-repeat,
    linear-gradient(119deg, rgba(217, 217, 217, .07) 20%, rgba(35, 35, 35, .04) 99%),
    var(--surface);
}

.bonus--social {
  background:
    url('../../../uploads/2026/06/3card.png') center / cover no-repeat,
    url('../../../uploads/2026/06/3card.png') center / cover no-repeat,
    linear-gradient(119deg, rgba(217, 217, 217, .07) 20%, rgba(35, 35, 35, .04) 99%),
    var(--surface);
}

.bonus--daily {
  background:
    url('../img/bonuses3.png') center / cover no-repeat,
    url('../img/bonuses3.png') center / cover no-repeat,
    linear-gradient(119deg, rgba(217, 217, 217, .07) 20%, rgba(35, 35, 35, .04) 99%),
    var(--surface);
}

/* ============================================================
   GIVEAWAY
   ============================================================ */
.give {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: var(--s-10);
  align-items: center;
  padding: var(--s-12);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-2);
  background:
    radial-gradient(80% 120% at 100% 50%, rgba(247, 207, 107, .16), transparent 60%),
    linear-gradient(135deg, var(--surface-2), var(--surface));
  overflow: hidden;
}

.give__glow {
  position: absolute;
  width: 360px;
  height: 360px;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(232, 154, 60, .3), transparent 70%);
  filter: blur(60px);
}

.give__info {
  position: relative;
  z-index: 1;
}

.give__title {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: var(--s-3) 0 var(--s-3);
}

.give__desc {
  color: var(--text-dim);
  max-width: 46ch;
}

.give__perks {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin: var(--s-5) 0;
}

.give__perk {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 600;
  font-size: .95rem;
}

.give__perk .icon {
  width: 20px;
  height: 20px;
  color: #58d18a;
}

.give__actions {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.give__timer {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--text-dim);
  font-size: .9rem;
}

.give__timer .icon {
  width: 18px;
  height: 18px;
  color: var(--gold-1);
}

.give__timer strong {
  color: var(--text);
}

.give__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.give__ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed rgba(247, 207, 107, .4);
  background: radial-gradient(circle, rgba(247, 207, 107, .14), transparent 65%);
  animation: spin 22s linear infinite;
}

.give__visual .weapon {
  color: var(--gold-1);
  position: relative;
  z-index: 1;
}

.give__ticket {
  position: absolute;
  bottom: 12px;
  padding: var(--s-2) var(--s-4);
  border-radius: var(--r-pill);
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-1);
}

/* ============================================================
   FAQ
   ============================================================ */

/* Two-column layout: image left, content right */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: start;
}

.faq-layout__visual {
  top: calc(var(--header-h, 72px) + 20px);
  align-self: start;
  border-radius: var(--r-xl);
  overflow: hidden;
  /* subtle glow behind image */
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(232, 154, 60, .12), transparent 70%);
}

.faq-layout__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-layout__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-8);
}

.faq-layout__content .section__head {
  margin-bottom: 0;
}

.faq-layout__foot {
  display: flex;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.faq__item {
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}

.faq__item[open] {
  border-color: var(--gold-2);
  background: var(--surface-2);
}

.faq__item:hover {
  border-color: var(--border-2);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  cursor: pointer;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--r-md);
}

.faq__mark {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}

.faq__mark::before,
.faq__mark::after {
  content: "";
  position: absolute;
  background: var(--gold-1);
  border-radius: 2px;
  transition: transform .2s var(--ease);
}

.faq__mark::before {
  inset: 10px 3px;
  height: 2px;
}

.faq__mark::after {
  inset: 3px 10px;
  width: 2px;
}

.faq__item[open] .faq__mark::after {
  transform: scaleY(0);
}

.faq__a {
  padding: 0 var(--s-6) var(--s-5);
  color: var(--text-dim);
}

/* ============================================================
   BLOG
   ============================================================ */
.post {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}

.post:hover {
  transform: translateY(-6px);
  border-color: var(--gold-2);
}

.post__media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.post__media--a {
  background: linear-gradient(135deg, #3a2a52, #1c1726);
}

.post__media--b {
  background: linear-gradient(135deg, #243a52, #161f29);
}

.post__media--c {
  background: linear-gradient(135deg, #523226, #29191a);
}

.post__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 80% 20%, rgba(247, 207, 107, .22), transparent 60%);
}

.post__tag {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  z-index: 1;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
  background: rgba(11, 11, 14, .7);
  border: 1px solid var(--border-2);
  font-size: .74rem;
  font-weight: 700;
  color: var(--gold-1);
}

.post__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: var(--s-6);
}

.post__date {
  font-size: .8rem;
  color: var(--text-mute);
  font-weight: 600;
}

.post__title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.post__excerpt {
  color: var(--text-dim);
  font-size: .92rem;
}

.post__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-2);
  font-weight: 700;
  font-size: .9rem;
  color: var(--gold-1);
  transition: gap .16s var(--ease);
}

.post__link .icon {
  width: 16px;
  height: 16px;
}

.post__link:hover {
  gap: var(--s-3);
}

.post__link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--r-sm);
}

/* ============================================================
   CTA — Get Exclusive Deals
   ============================================================ */
.cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  align-items: center;
  gap: var(--s-8);
  padding: var(--s-12);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-2);
  background:
    linear-gradient(90deg, rgba(11, 11, 14, .92) 30%, rgba(11, 11, 14, .45) 70%, rgba(11, 11, 14, .2)),
    url('../img/Getexclusivedeals-bg.png') center / cover no-repeat,
    linear-gradient(135deg, #1a1a22, #101015);
  overflow: hidden;
}

.cta__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -60px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(232, 154, 60, .35), transparent 70%);
  filter: blur(70px);
}

.cta__body {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: var(--s-3) 0;
}

.cta__desc {
  color: var(--text-dim);
  max-width: 46ch;
}

.cta__form {
  display: flex;
  gap: var(--s-3);
  margin: var(--s-5) 0 var(--s-3);
  flex-wrap: wrap;
}

.cta__field {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 240px;
}

.cta__field .icon {
  position: absolute;
  left: var(--s-4);
  width: 20px;
  height: 20px;
  color: var(--text-mute);
}

.cta__input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text);
  border-radius: var(--r-pill);
  padding: var(--s-4) var(--s-5) var(--s-4) var(--s-12);
  transition: border-color .16s var(--ease);
}

.cta__input::placeholder {
  color: var(--text-mute);
}

.cta__input:hover {
  border-color: var(--gold-3);
}

.cta__input:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: var(--ring);
}

.cta__note {
  color: var(--text-mute);
  font-size: .82rem;
}

.cta__visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.cta__visual img {
  animation: float 7s var(--ease) infinite;
  transform-origin: center bottom;
  filter: drop-shadow(0 24px 40px rgba(232, 154, 60, .35));
}

.cta__visual .weapon {
  color: var(--gold-1);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: var(--s-16) var(--s-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: var(--s-8);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid var(--border);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__col--brand {
  gap: var(--s-4);
}

.footer__about {
  color: var(--text-dim);
  font-size: .9rem;
}

.footer__title {
  font-size: .98rem;
  font-weight: 800;
  margin-bottom: var(--s-1);
}

.footer__link {
  color: var(--text-dim);
  font-size: .92rem;
  width: fit-content;
  transition: color .14s var(--ease);
}

.footer__link:hover {
  color: var(--gold-1);
}

.footer__link:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--r-sm);
}

.footer__link:visited {
  color: var(--text-dim);
}

.footer__link:visited:hover,
.footer__link:visited:focus-visible {
  color: var(--gold-1);
}

.footer__support {
  padding: var(--s-6);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(232, 154, 60, .16), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
}

.footer__support-badge {
  align-self: flex-start;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: #2a1705;
  font-size: .78rem;
  font-weight: 800;
}

.footer__pay {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  padding: var(--s-8) 0;
  border-bottom: 1px solid var(--border);
}

.footer__pay-item {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.footer__pay-icon {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--gold-1);
}

.footer__pay-title {
  display: block;
  font-size: .95rem;
}

.footer__pay-desc {
  color: var(--text-dim);
  font-size: .85rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-6);
  flex-wrap: wrap;
}

.footer__copy {
  color: var(--text-mute);
  font-size: .85rem;
}

.footer__legal {
  display: flex;
  gap: var(--s-5);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(40px, 30px);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.give__ring {
  transform-origin: center;
}

@keyframes shine {
  0% {
    left: -60%;
  }

  55%,
  100% {
    left: 130%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-16px) rotate(3deg);
  }
}

@keyframes marquee {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(88, 209, 138, .55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(88, 209, 138, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(88, 209, 138, 0);
  }
}

.weapon {
  width: 100%;
  height: auto;
  aspect-ratio: 120 / 52;
}

.weapon--float {
  animation: float 6s var(--ease) infinite;
}

.weapon--xl {
  width: 220px;
}

.featured__media .weapon.weapon--float {
  animation-duration: 7s;
}

/* ============================================================
   BACKGROUND AMBIANCE
   ============================================================ */

/* Slowly drifting grid — barely-visible geometric lines */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image:
    linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px);
  background-size: 56px 56px;
  animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 56px 56px;
  }
}

/* Moving radial glow wash */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 45% at 15% 20%, rgba(155, 108, 240, .06), transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(232, 154, 60, .05), transparent 65%);
  animation: bg-breathe 18s ease infinite alternate;
}

@keyframes bg-breathe {
  from {
    opacity: .5;
  }

  to {
    opacity: 1;
  }
}

/* Enhanced hero glow — add opacity pulse to existing drift */
.hero__glow--a {
  animation: drift 14s var(--ease) infinite alternate, glow-pulse 9s ease infinite;
}

.hero__glow--b {
  animation: drift 18s var(--ease) infinite alternate-reverse, glow-pulse 13s ease 3s infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: .5;
  }

  50% {
    opacity: 1;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children when grid/row becomes visible */
.will-stagger.is-visible> :nth-child(1) {
  animation: rise .42s var(--ease) .04s both;
}

.will-stagger.is-visible> :nth-child(2) {
  animation: rise .42s var(--ease) .10s both;
}

.will-stagger.is-visible> :nth-child(3) {
  animation: rise .42s var(--ease) .16s both;
}

.will-stagger.is-visible> :nth-child(4) {
  animation: rise .42s var(--ease) .22s both;
}

.will-stagger.is-visible> :nth-child(5) {
  animation: rise .42s var(--ease) .28s both;
}

.will-stagger.is-visible> :nth-child(6) {
  animation: rise .42s var(--ease) .34s both;
}

/* ============================================================
   SMOOTH FILTER
   ============================================================ */
.grid--skins {
  transition: opacity .18s var(--ease), transform .18s var(--ease);
}

.grid--skins.is-filtering {
  opacity: 0;
  transform: translateY(5px);
}

/* ============================================================
   WOW EFFECTS
   ============================================================ */

/* ---------- 3D card tilt via CSS vars (JS drives --rx/--ry/--ty/--mx/--my) ---------- */
.card {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0px));
  transition: transform .14s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}

/* Cursor-tracking inner glow */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(circle 130px at var(--mx, 50%) var(--my, 0%),
      color-mix(in srgb, var(--rar) 42%, transparent),
      transparent 70%);
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card__media,
.card__body {
  position: relative;
  z-index: 1;
  /* Let clicks pass through to .card__link underneath — interactive children
     (.card__cart, .card__fav, .card__price-old etc.) re-enable pointer-events. */
  pointer-events: none;
}

.card__media a,
.card__body a,
.card__cart,
.card__fav,
.card__media button,
.card__body button {
  pointer-events: auto;
}

/* Trust card tilt */
.trust {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .14s var(--ease), border-color .2s, box-shadow .2s;
}

/* Bonus card tilt */
.bonus {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

/* ---------- Button shine sweep ---------- */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .28), transparent);
  pointer-events: none;
  transition: left 0s;
}

.btn--primary:hover::after {
  left: 160%;
  transition: left .52s var(--ease);
}

/* ---------- Live purchase toasts ---------- */
.toast-area {
  position: fixed;
  bottom: var(--s-6);
  right: var(--s-6);
  z-index: 9000;
  display: flex;
  flex-direction: column-reverse;
  gap: var(--s-2);
  pointer-events: none;
  max-width: 300px;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  background: rgba(16, 16, 24, .94);
  border: 1px solid rgba(255, 255, 255, .11);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-size: .81rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .55), 0 0 0 1px rgba(247, 207, 107, .06);
  animation: toastIn .38s var(--ease) both;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.toast--out {
  opacity: 0;
  transform: translateX(60px) scale(.9);
}

.toast__dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: #58d18a;
  box-shadow: 0 0 8px rgba(88, 209, 138, .7);
  animation: pulse 2s var(--ease) infinite;
}

.toast__info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}

.toast__info strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: .85rem;
}

.toast__label {
  color: var(--text-mute);
  font-size: .72rem;
  font-weight: 500;
}

.toast__price {
  margin-left: var(--s-2);
  font-weight: 800;
  color: var(--gold-1);
  white-space: nowrap;
  font-size: .92rem;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(60px) scale(.9);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Particle burst ---------- */
.particle {
  position: fixed;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: particleBurst .65s var(--ease) forwards;
}

@keyframes particleBurst {
  0% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 1;
  }

  100% {
    transform: translate(calc(-50% + var(--tx, 0px)), calc(-50% + var(--ty, 0px))) scale(0);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .grid--skins {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__showcase {
    flex-wrap: wrap;
  }

  .hero__left {
    flex: 1 1 100%;
  }

  .hero__cards {
    flex: 1 1 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero__cards-row {
    flex: 1;
  }

  .search__input {
    width: 160px;
  }
}

@media (max-width: 980px) {

  .nav,
  .search {
    display: none;
  }

  .nav-burger {
    display: grid;
  }

  .nav-toggle:checked~.header .nav,
  .header:has(.nav-toggle:checked) .nav {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    gap: var(--s-1);
    padding: var(--s-4) var(--s-6);
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
  }

  body:has(.nav-toggle:checked) .nav {
    display: flex;
  }

  body:has(.nav-toggle:checked) .nav-burger__open {
    display: none;
  }

  body:has(.nav-toggle:checked) .nav-burger__close {
    display: block;
  }

  .nav__link {
    padding: var(--s-3) var(--s-4);
  }

  .grid--trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonuses {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--blog {
    grid-template-columns: 1fr 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout__visual {
    max-height: 360px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .give {
    grid-template-columns: 1fr;
  }

  .give__visual {
    order: -1;
  }

  .cta {
    grid-template-columns: 1fr;
  }

  .cta__visual {
    display: none;
  }

  .section {
    padding-block: var(--s-16);
  }
}

@media (max-width: 720px) {
  .container {
    padding-inline: var(--s-4);
  }

  .header__inner {
    gap: var(--s-3);
  }

  .header__actions {
    gap: var(--s-2);
  }

  .header__actions .btn--primary,
  .header__actions .icon-btn:first-of-type {
    display: none;
  }

  .header__profile-label {
    display: none;
  }

  .grid--skins {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__showcase {
    flex-direction: column;
    gap: 16px;
  }

  .hero__left {
    flex-direction: column;
  }

  .hero__cards {
    flex-direction: column;
    gap: 8px;
  }

  .hero__cards-row {
    gap: 8px;
  }

  .hero__cards-row .card {
    height: auto;
    min-height: 240px;

  }

  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .grid--blog {
    grid-template-columns: 1fr;
  }

  

  .footer__col--brand,
  .footer__support {
    grid-column: span 2;
  }

  .footer__pay {
    grid-template-columns: 1fr;
  }

  .live__row {
    grid-template-columns: 1.6fr 1fr;
  }

  .live__user {
    display: none;
  }
}

@media (max-width: 460px) {
  .grid--skins {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .bonuses {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__col--brand,
  .footer__support {
    grid-column: auto;
  }

  .cta__form {
    flex-direction: column;
  }
}


/* ============================================================
   WOODMART INJECTED ELEMENTS — HIDE
   ============================================================ */
.wd-toolbar,
.wd-skip-links {
  display: none !important;
}

/* ============================================================
   HEADER BADGES (cart + wishlist)
   ============================================================ */
.header__count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  font-size: .62rem;
  font-weight: 800;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: #2a1705;
  border: 2px solid var(--bg);
  pointer-events: none;
  line-height: 1;
  z-index: 10;
}

.header__count:empty {
  display: none;
}

/* ============================================================
   LUXURY FRONT — MOBILE FIXES & ENHANCEMENTS
   ============================================================ */

/* Remove CSS animation on live rows — JS handles cycling now */
.live__list .live__row {
  animation: none;
  opacity: 1;
  transform: none;
}

/* Burger button always visible on mobile (override icon-btn:first-of-type rule) */
@media (max-width: 980px) {
  .nav-burger {
    display: grid !important;
  }

  .nav {
    z-index: 49;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
  }
}

@media (max-width: 720px) {
  .nav-burger {
    display: grid !important;
  }
}

/* Fix live buying: hide Buyer header cell when buyer column is hidden */
@media (max-width: 720px) {
  .live__row--head .live__col:nth-child(2) {
    display: none;
  }
}

/* Hide live purchase toasts on mobile */
@media (max-width: 768px) {
  .toast-area {
    display: none !important;
  }

  .logo img {
    width: auto;
    height: 24px;
  }

  .card__fav .icon {
    width: 14px;
    height: 14px;
  }

  .trust {
    padding: 16px;
  }
}

/* Horizontal scroll for category filters on mobile */
@media (max-width: 720px) {
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--s-2);
    margin-inline: calc(-1 * var(--s-4));
    padding-inline: var(--s-4);
  }

  .filters::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex-shrink: 0;
  }
}

/* Mobile hero improvements */
@media (max-width: 720px) {
  .hero {
    padding-top: var(--s-10);
  }

  .hero__left {
    align-items: stretch;
  }

  .featured {
    flex: none;
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .featured__media {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero__promos {
    width: 100%;
  }

  .promo {
    flex: 0 0 auto !important;
    height: auto;
    min-height: 220px;
    width: 100%;
  }

  .promo__art {
    width: 200px !important;
    height: 200px !important;
    bottom: -20px;
    right: 0;
  }

  .hero__cards-row .card {
    height: auto !important;
  }
}

/* Mobile FAQ compact spacing */
@media (max-width: 720px) {
  .faq__q {
    padding: var(--s-4);
    font-size: .95rem;
  }

  .faq__a {
    padding: 0 var(--s-4) var(--s-4);
    font-size: .9rem;
  }
}

/* 8px gap between cards on mobile */
@media (max-width: 540px) {
  .grid--skins {
    gap: 8px;
  }
}

/* Compact card layout for 2-column grid on small screens */
@media (max-width: 540px) {
  .card__body {
    padding: var(--s-3);
    gap: 2px;
  }

  .card__name {
    font-size: .82rem;
  }

  .card__wear {
    font-size: .72rem;
  }

  .card__price {
    font-size: .95rem;
  }

  .card__cart {
    width: 40px;
    height: 40px;
  }

  .card__cart .icon {
    width: 16px;
    height: 16px;
  }

  .card__fav {
    width: 28px;
    height: 28px;
  }

  .card__img {
    max-height: 110px;
  }
}

/* Mobile bonuses less tall */
@media (max-width: 460px) {
  .bonus {
    min-height: 220px;
  }

  .grid--blog {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: var(--s-12);
  }
}

/* Live row smooth transition CSS (JS-driven) */
.live__row {
  will-change: opacity, transform;
}

/* ============================================================
   SHOP PAGE — archive-product.php
   Same design language as the homepage, different layout:
   slim banner + sticky sidebar + 4-col grid
   ============================================================ */

/* ---- Shop banner ---- */
.shop-banner {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 4% var(--s-6) 28px var(--s-6);
}

.shop-banner__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.shop-crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-dim);
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
}

.shop-crumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color .2s;
}

.shop-crumb a:hover { color: var(--gold-1); }

.shop-banner__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin: 0;
}

.shop-banner__kpi {
  display: flex;
  gap: var(--s-6);
}

.shop-banner__sub {
  font-size: .85rem;
  color: var(--text-dim);
  margin: 6px 0 0;
}

.text-gradient {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-banner__kpi {
  text-align: right;
}

.shop-banner__kpi-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.shop-banner__kpi-label {
  font-size: .72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ---- Shop layout: sidebar + main ---- */
.shop-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-6);
}

.shop-layout {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: var(--s-8);
  align-items: start;
}

/* ---- Sidebar ---- */
.shop-sidebar {
  position: sticky;
  top: var(--s-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.sidebar-search {
  position: relative;
}

.sidebar-search__input {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border-2);
  border-radius: var(--r-pill);
  padding: 10px 40px 10px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: .85rem;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}

.sidebar-search__input:focus {
  border-color: var(--gold-2);
}

.sidebar-search__input::placeholder {
  color: var(--text-mute);
}

.sidebar-search__ic {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-mute);
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  fill: var(--text-mute);
}

/* ---- Filter groups ---- */
.filter-group {
  border-bottom: 1px solid var(--border);
  padding-bottom: var(--s-4);
}

.filter-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.filter-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: var(--s-2) 0;
  user-select: none;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-dim);
  transition: color .2s;
}

.filter-group__head:hover { color: var(--gold-1); }

.filter-group__chevron {
  width: 14px;
  height: 14px;
  transition: transform .25s;
  color: var(--text-mute);
}

.filter-group.is-open .filter-group__chevron {
  transform: rotate(180deg);
}

.filter-group__body {
  display: none;
  padding-top: var(--s-3);
  flex-direction: column;
  gap: var(--s-2);
}

.filter-group.is-open .filter-group__body {
  display: flex;
}

/* ---- Sidebar category links ---- */
.side-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--r-md);
  color: var(--text-dim);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  transition: background .2s, color .2s;
}

.side-cat:hover {
  background: var(--surface-2);
  color: var(--text);
}

.side-cat--active {
  background: var(--grad-gold-soft);
  color: var(--gold-1);
  border: 1px solid rgba(247, 207, 107, .18);
}

.side-cat__ic {
  width: 28px;
  height: 28px;
  background: var(--surface-3);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.side-cat__ic .icon {
  width: 16px;
  height: 16px;
}

.side-cat__count {
  margin-left: auto;
  font-size: .72rem;
  color: var(--text-mute);
  background: var(--surface-3);
  padding: 1px 6px;
  border-radius: var(--r-pill);
}

/* ---- Price presets ---- */
.price-preset {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-decoration: none;
  font-size: .82rem;
  transition: border-color .2s, background .2s, color .2s;
  cursor: pointer;
}

.price-preset:hover {
  border-color: var(--gold-2);
  background: var(--grad-gold-soft);
  color: var(--text);
}

.price-preset.is-active {
  border-color: var(--gold-1);
  background: var(--grad-gold-soft);
  color: var(--gold-1);
}

.price-preset__badge {
  font-size: .68rem;
  background: var(--surface-3);
  padding: 2px 7px;
  border-radius: var(--r-pill);
  color: var(--text-mute);
}

/* ---- Reset filters link ---- */
.reset-filters {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--text-mute);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: color .2s, border-color .2s;
  margin-top: var(--s-2);
  align-self: flex-start;
}

.reset-filters:hover {
  color: var(--gold-1);
  border-color: var(--gold-2);
}

.reset-filters .icon {
  width: 12px;
  height: 12px;
}

/* ---- Sidebar toggle button (mobile only, hidden on desktop) ---- */
.sidebar-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--text);
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s;
}

.sidebar-toggle:hover { border-color: var(--gold-2); }

.sidebar-toggle .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  overflow: visible;
  display: block;
  flex-shrink: 0;
}

.filter-badge {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--grad-gold);
  color: #2a1705;
  border-radius: var(--r-pill);
  font-size: .65rem;
  font-weight: 800;
}

/* ---- Shop toolbar ---- */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}

.shop-count {
  font-size: .82rem;
  color: var(--text-dim);
}

.shop-count strong {
  color: var(--gold-1);
  font-weight: 700;
}

.shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.shop-sort-label {
  font-size: .78rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.shop-sort-wrap {
  position: relative;
}

.shop-sort {
  appearance: none;
  -webkit-appearance: none;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 8px 36px 8px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .82rem;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}

.shop-sort:focus,
.shop-sort:hover {
  border-color: var(--gold-2);
}

.shop-sort-ic {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text);
  width: 16px;
  height: 16px;
  fill: var(--text-dim);
  overflow: visible;
  display: block;
  flex-shrink: 0;
}

/* ---- Active filter tags ---- */
.active-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.active-tags__label {
  font-size: .72rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 4px;
}

.active-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 12px;
  background: var(--grad-gold-soft);
  border: 1px solid rgba(247, 207, 107, .2);
  border-radius: var(--r-pill);
  color: var(--gold-1);
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.active-tag:hover {
  background: rgba(247, 207, 107, .12);
  border-color: rgba(247, 207, 107, .4);
}

.active-tag__x {
  display: grid;
  place-items: center;
  width: 14px;
  height: 14px;
  background: rgba(247, 207, 107, .15);
  border-radius: 50%;
  font-size: .7rem;
  line-height: 1;
}

/* ---- Shop product grid ---- */
.grid--shop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--s-12) var(--s-6);
  color: var(--text-mute);
}

.shop-empty .icon {
  width: 48px;
  height: 48px;
  opacity: .3;
  margin-bottom: var(--s-4);
}

.shop-empty p {
  font-size: 1rem;
  margin: 0 0 var(--s-4);
}

/* ---- Pagination ---- */
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  margin-top: var(--s-8);
  flex-wrap: wrap;
}

.page-btn {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 6px;
  border-radius: var(--r-md);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  cursor: pointer;
  font-family: inherit;
}

.page-btn:hover {
  border-color: var(--gold-2);
  color: var(--gold-1);
}

.page-btn--active {
  background: var(--grad-gold);
  border-color: transparent;
  color: #1a0d00;
  pointer-events: none;
}

.page-btn--dots {
  border: none;
  background: none;
  pointer-events: none;
  color: var(--text-mute);
}

.page-btn--prev .icon,
.page-btn--next .icon {
  width: 14px;
  height: 14px;
}

/* ============================================================
   SHOP — Responsive breakpoints
   ============================================================ */

/* 1280px: 3-col product grid */
@media (max-width: 1280px) {
  .grid--shop {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sidebar close button — hidden on desktop, shown inside overlay on mobile */
.sidebar-close {
  display: none;
  position: absolute;
  top: var(--s-4);
  right: var(--s-4);
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--text-dim);
  cursor: pointer;
  transition: color .16s, background .16s;
  flex-shrink: 0;
}

.sidebar-close:hover { color: var(--text); background: var(--surface-2); }

.sidebar-close .icon { width: 16px; height: 16px; }

/* Backdrop — only shown on mobile when sidebar is open */
.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 299;
  background: rgba(0, 0, 0, .65);
}

.sidebar-backdrop.is-visible {
  display: block;
}

/* 1100px: collapse sidebar → full-screen overlay on mobile */
@media (max-width: 1100px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: fixed;
    inset: 0;
    z-index: 300;
    overflow-y: auto;
    border-radius: 0;
    border: none;
    display: none;
    padding-top: 56px;
  }

  .shop-sidebar.is-open {
    display: flex;
  }

  .sidebar-close {
    display: flex;
  }

  .sidebar-toggle {
    display: inline-flex;
  }
}

/* 780px: 2-col product grid + toolbar wrap */
@media (max-width: 780px) {
  .grid--shop {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .shop-wrap {
    padding-inline: var(--s-4);
  }

  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-3);
  }

  .shop-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .shop-banner__kpi {
    display: none;
  }
}

/* 480px: slim banner */
@media (max-width: 480px) {
  .shop-banner {
    padding: 20px var(--s-4);
  }

  .shop-banner__title {
    font-size: 1.3rem;
  }

  .shop-crumb {
    font-size: .7rem;
  }

  .active-tags {
    gap: 6px;
  }

  .active-tag {
    font-size: .7rem;
    padding: 3px 8px 3px 10px;
  }
}

/* ============================================================
   DISCOUNTS PAGE — page-discount.php
   Full-width hero + featured top-deals + horizontal filters + grid
   ============================================================ */

/* ---- Hero ---- */
.disc-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 64px var(--s-6) 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.disc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 0%,
    rgba(199, 57, 43, .07) 0%, transparent 65%);
  pointer-events: none;
}

.disc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #e74c3c;
  margin-bottom: var(--s-3);
}

.disc-hero__eyebrow .icon {
  width: 14px;
  height: 14px;
}

.disc-hero__title {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 var(--s-4);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.disc-hero__sub {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto var(--s-8);
  line-height: 1.6;
}

.disc-stats {
  display: flex;
  justify-content: center;
  gap: var(--s-10);
  flex-wrap: wrap;
}

.disc-stat__val {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.disc-stat__lbl {
  font-size: .7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---- Content wrap ---- */
.disc-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--s-8) var(--s-6);
}

/* ---- Section heading (reused for Featured + All Discounts) ---- */
.disc-sect-head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}

.disc-sect-icon {
  width: 32px;
  height: 32px;
  background: var(--grad-gold);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: #1a0d00;
  flex-shrink: 0;
}

.disc-sect-icon .icon {
  width: 18px;
  height: 18px;
}

.disc-sect-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.disc-sect-sub {
  font-size: .78rem;
  color: var(--text-dim);
  margin: 0 0 0 auto;
}

/* ---- Featured cards grid ---- */
.disc-feat {
  margin-bottom: var(--s-10);
}

.disc-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

/* ---- Featured deal card ---- */
.disc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  padding: var(--s-5);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.disc-card:hover {
  border-color: var(--gold-2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

/* Full-card link overlay — z-index 1 puts it ABOVE content blocks. Content
   blocks below get pointer-events:none so clicks fall through to the link.
   Interactive buttons (.card__fav, .disc-card__actions) sit at z-index 2,
   higher than the link, so they intercept their own clicks. */
.disc-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--r-xl);
}

.disc-card__media,
.disc-card__body {
  position: relative;
  z-index: 1;
  /* Click-through to the link below — interactive children re-enable below */
  pointer-events: none;
}

.disc-card__media a,
.disc-card__body a,
.disc-card__media button,
.disc-card__body button {
  pointer-events: auto;
}

.disc-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 136px;
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.disc-card__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform .3s var(--ease);
}

.disc-card:hover .disc-card__img {
  transform: scale(1.06);
}

.disc-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.disc-card__name {
  font-size: .95rem;
  font-weight: 700;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.disc-card__wear {
  font-size: .72rem;
  color: var(--text-mute);
  margin: 0;
}

.disc-card__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: var(--s-2);
}

.disc-card__new {
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.disc-card__old {
  font-size: .8rem;
  color: var(--text-mute);
  text-decoration: line-through;
}

.disc-card__save {
  display: none;
}

.disc-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  margin-top: var(--s-2);
}

.disc-card__actions .btn {
  width: 100%;
}

/* Sale pill — matches .badge--sale used on the homepage cards.
   Floats top-left so it doesn't conflict with the heart/fav at top-right. */
.disc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 11px;
  background: var(--grad-gold);
  color: #1a0d00;
  border-radius: var(--r-pill);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  z-index: 4;
  box-shadow: 0 6px 16px -4px rgba(247, 207, 107, .35);
  white-space: nowrap;
}

/* ---- Category quick-links strip ---- */
.disc-cats {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}

.disc-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}

.disc-cat-btn:hover {
  border-color: var(--gold-2);
  color: var(--text);
}

.disc-cat-btn.is-active {
  background: var(--grad-gold-soft);
  border-color: rgba(247, 207, 107, .3);
  color: var(--gold-1);
}

.disc-cat-btn__ic {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: .7;
}

.disc-cat-btn.is-active .disc-cat-btn__ic {
  opacity: 1;
}

/* ---- Toolbar: filters + sort + count ---- */
.disc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding-bottom: var(--s-5);
  margin-bottom: var(--s-6);
  border-bottom: 1px solid var(--border);
}

.disc-toolbar-left {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.disc-filters {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  /* Mobile: horizontal scroll instead of wrap. Keyboard + touch friendly. */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;          /* Firefox */
  -ms-overflow-style: none;       /* IE/Edge */
  /* Bleed past the toolbar on small screens so the last pill is reachable */
  margin-inline: calc(-1 * var(--s-2));
  padding-inline: var(--s-2);
  /* Prevents the buttons from being squashed by the parent flex */
  flex-wrap: nowrap;
  min-width: 0;
}
.disc-filters::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.disc-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  min-height: 38px;               /* Touch target ≥38px */
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
  flex-shrink: 0;                 /* Don't shrink in scroll container */
  scroll-snap-align: start;
}

.disc-filter-btn:hover {
  border-color: var(--gold-2);
  color: var(--text);
}

.disc-filter-btn:focus-visible {
  outline: none;
  border-color: var(--gold-1);
  box-shadow: 0 0 0 3px rgba(247, 207, 107, .25);
}

.disc-filter-btn.is-active,
.disc-filter-btn[aria-current="page"] {
  background: var(--grad-gold);
  border-color: transparent;
  color: #1a0d00;
}

/* Hint that there's more to scroll on mobile (fade gradient on the right) */
@media (max-width: 720px) {
  .disc-toolbar-left {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-3);
  }
  .disc-filters {
    position: relative;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    padding-bottom: 2px;
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 24px), transparent 100%);
  }
  .disc-toolbar {
    align-items: stretch;
  }
  .disc-count {
    order: 2;
  }
}

.disc-filter-btn .icon {
  width: 12px;
  height: 12px;
}

.disc-count {
  font-size: .82rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.disc-count strong {
  color: var(--gold-1);
  font-weight: 700;
}

/* ---- Main product grid: 6 columns (no sidebar on this page) ---- */
.grid--disc {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}

/* Save label hidden everywhere */
.card__save {
  display: none;
}

/* Small button */
.btn--sm {
  padding: 8px 14px;
  font-size: .8rem;
}

.disc-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--s-12) var(--s-6);
  color: var(--text-mute);
}

.disc-empty .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--s-4);
  opacity: .25;
}

/* ============================================================
   DISCOUNTS PAGE — Responsive
   ============================================================ */

@media (max-width: 1400px) {
  .grid--disc {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1200px) {
  .grid--disc {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .disc-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--disc {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .disc-hero {
    padding: 44px var(--s-4) 40px;
  }

  .disc-hero__title {
    font-size: 2.4rem;
  }

  .disc-stats {
    gap: var(--s-6);
  }

  .disc-stat__val {
    font-size: 1.6rem;
  }

  .disc-wrap {
    padding-inline: var(--s-4);
  }

  .disc-feat-grid {
    grid-template-columns: 1fr;
  }

  .grid--disc {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .disc-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .disc-filters {
    overflow-x: auto;
    padding-bottom: 4px;
    width: 100%;
  }

  .disc-cats {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .disc-sect-sub {
    display: none;
  }
}

@media (max-width: 480px) {
  .disc-hero__title {
    font-size: 2rem;
  }

  .disc-stats {
    gap: var(--s-4);
  }

  .disc-badge {
    padding: 4px 9px;
    font-size: .68rem;
    top: 10px;
    left: 10px;
  }

  .disc-card__new {
    font-size: 1.1rem;
  }
}

/* ============================================================
   SEARCH POPUP
   ============================================================ */
.srch-pop {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  padding-inline: var(--s-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}

.srch-pop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.srch-pop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, .84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.srch-pop__box {
  position: relative;
  width: 100%;
  max-width: 720px;
  z-index: 1;
}

.srch-pop__field {
  display: flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.srch-pop__field:focus-within {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(232, 154, 60, .18);
}

.srch-pop__ic {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-left: var(--s-5);
  color: var(--text-dim);
  fill: currentColor;
}

.srch-pop__input {
  flex: 1;
  height: 62px;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0 var(--s-5);
}

.srch-pop__input::placeholder {
  color: var(--text-mute);
  font-weight: 400;
}

.srch-pop__kbd {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-right: var(--s-3);
  padding: 3px var(--s-2);
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  font-size: .68rem;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: .04em;
  white-space: nowrap;
}

.srch-pop__results {
  margin-top: var(--s-3);
  max-height: calc(100vh - 240px);
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}

.srch-pop__results:empty {
  display: none;
}

.srch-pop__state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-12) var(--s-6);
  color: var(--text-mute);
  text-align: center;
}

.srch-pop__state svg {
  width: 44px;
  height: 44px;
  opacity: .22;
}

.srch-pop__state-label {
  font-size: .9rem;
  line-height: 1.55;
}

.srch-pop__state-label strong {
  color: var(--text-dim);
}

.srch-pop__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.srch-pop__card {
  background: var(--surface);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  transition: background .15s;
  text-decoration: none;
  color: var(--text);
}

.srch-pop__card:hover {
  background: var(--surface-2);
}

.srch-pop__card-img-wrap {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: var(--s-1);
}

.srch-pop__card-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.srch-pop__card-name {
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.srch-pop__card-price {
  font-size: .88rem;
  font-weight: 800;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: auto;
}

.srch-pop__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
  border-top: 1px solid var(--border);
}

.srch-pop__all {
  font-size: .83rem;
  font-weight: 700;
  color: var(--gold-1);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: color .15s;
}

.srch-pop__all:hover {
  color: var(--gold-2);
}

.srch-pop__all svg {
  width: 13px;
  height: 13px;
}

/* search popup — compact product card tweaks */
.srch-pop .product-card {
  border-radius: 0;
  border: none;
  background: var(--surface);
}

.srch-pop .product-card:hover {
  background: var(--surface-2);
  transform: none;
}

@media (max-width: 640px) {
  .srch-pop {
    padding-top: 80px;
    align-items: flex-start;
  }

  .srch-pop__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .srch-pop__input {
    font-size: .95rem;
    height: 54px;
  }
}


/* ============================================================
   WISHLIST PAGE
   ============================================================ */

.wl-hero {
  padding-top: calc(var(--header-h) + clamp(36px, 4.5vw, 60px));
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.wl-hero__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 12px;
}

.wl-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--text);
  margin-bottom: 10px;
}

.wl-hero__title em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wl-hero__count {
  font-size: .83rem;
  color: var(--text-mute);
}

/* toolbar */
.wl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(20px, 2.5vw, 32px);
  flex-wrap: wrap;
}

.wl-toolbar__clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--text-mute);
  background: none;
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: color .2s, border-color .2s;
}

.wl-toolbar__clear:hover {
  color: #ff5252;
  border-color: rgba(255, 82, 82, .35);
}

.wl-toolbar__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--text-mute);
}

.wl-toolbar__sort-btn {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .78rem;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.wl-toolbar__sort-btn.is-active,
.wl-toolbar__sort-btn:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
}

/* grid */
.wl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: var(--section-gap);
}

/* wishlist card extras */
.wl-card {
  position: relative;
}

.wl-card__remove {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  border: 1px solid var(--border-2);
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  backdrop-filter: blur(4px);
}

.wl-card__remove:hover {
  background: rgba(255, 82, 82, .18);
  border-color: rgba(255, 82, 82, .4);
  color: #ff5252;
}

.wl-card__remove svg { width: 13px; height: 13px; }

/* empty state */
.wl-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: var(--section-gap);
}

.wl-empty.is-visible { display: flex; }

.wl-empty__icon {
  color: rgba(255, 255, 255, .08);
  margin-bottom: 24px;
}

.wl-empty__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin-bottom: 12px;
}

.wl-empty__text {
  font-size: .9rem;
  color: var(--text-mute);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 360px;
}

@media (max-width: 1100px) {
  .wl-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .wl-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wl-toolbar { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .wl-grid { gap: 8px; }
}


/* ============================================================
   AUTH POPUP (Login / Register)
   ============================================================ */

.auth-pop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.auth-pop.is-open { display: flex; }

.auth-pop__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(6px);
}

.auth-pop__box {
  padding: 50px;
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .04);
  animation: authPopIn .3s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes authPopIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* gold top accent */
.auth-pop__box::before {
  content: '';
  display: block;
  height: 2px;
  background: var(--grad-gold);
}

.auth-pop__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  z-index: 2;
}

.auth-pop__close:hover { border-color: var(--gold-1); color: var(--text); }
.auth-pop__close svg { width: 14px; height: 14px; }

.auth-pop__inner { padding: 52p x 32px 32px; }

.auth-pop__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: .06em;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 20px;
}

/* tabs */
.auth-pop__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  padding: 4px;
}

.auth-pop__tab {
  flex: 1;
  text-align: center;
  padding: 8px 0;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-mute);
  cursor: pointer;
  border-radius: var(--r-pill);
  border: none;
  background: none;
  transition: color .2s, background .2s;
  user-select: none;
}

.auth-pop__tab.is-active {
  color: var(--bg);
  background: var(--grad-gold);
}

/* panels */
.auth-pop__panel { display: none; }
.auth-pop__panel.is-active { display: block; }

/* steam button */
.auth-pop__steam {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: #1b2838;
  border: 1px solid rgba(103, 193, 245, .2);
  border-radius: var(--r-sm);
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, box-shadow .2s;
  margin-bottom: 20px;
}

.auth-pop__steam:hover {
  background: #213447;
  border-color: rgba(103, 193, 245, .45);
  box-shadow: 0 0 20px rgba(103, 193, 245, .12);
}

.auth-pop__steam svg { flex-shrink: 0; }

/* divider */
.auth-pop__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-mute);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.auth-pop__divider::before,
.auth-pop__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* form fields */
.auth-pop__field {
  margin-bottom: 14px;
}

.auth-pop__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}

.auth-pop__input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .9rem;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  outline: none;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}

.auth-pop__input:focus {
  border-color: rgba(247, 207, 107, .4);
  background: var(--surface-3);
}

.auth-pop__input::placeholder { color: var(--text-mute); }

/* forgot link */
.auth-pop__forgot {
  display: block;
  text-align: right;
  font-size: .75rem;
  color: var(--text-mute);
  margin-top: -8px;
  margin-bottom: 18px;
  transition: color .2s;
}

.auth-pop__forgot:hover { color: var(--gold-1); }

/* submit */
.auth-pop__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  background: var(--grad-gold);
  color: #0c0c0c;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: filter .2s, transform .15s;
  margin-top: 4px;
}

.auth-pop__submit:hover {
  filter: brightness(1.08) drop-shadow(0 0 14px rgba(247, 207, 107, .3));
}

/* error */
.auth-pop__error {
  display: none;
  background: rgba(255, 82, 82, .1);
  border: 1px solid rgba(255, 82, 82, .25);
  color: #ff5252;
  font-size: .8rem;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  line-height: 1.45;
}

.auth-pop__error.is-visible { display: block; }

@media (max-width: 480px) {
  .auth-pop__inner { padding: 20px 20px 24px; }
  .auth-pop__box { border-radius: var(--r-md); }
}


/* ============================================================
   MY ACCOUNT PAGE
   ============================================================ */

.acc-hero {
  padding-top: calc(var(--header-h) + clamp(36px, 4.5vw, 60px));
  padding-bottom: clamp(28px, 3.5vw, 44px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(32px, 4vw, 56px);
}

.acc-hero__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 12px;
}

.acc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--text);
}

.acc-hero__title em {
  font-style: normal;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* WC account wrapper */
.acc-wc-wrap {
  margin: 0 auto clamp(60px, 8vw, 100px);
}

/* Nav menu */
.acc-wc-wrap .woocommerce-MyAccount-navigation {
  margin-bottom: 32px;
}

.acc-wc-wrap .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.acc-wc-wrap .woocommerce-MyAccount-navigation li a {
  display: inline-block;
  padding: 8px 18px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-dim);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: border-color .2s, color .2s, background .2s;
}

.acc-wc-wrap .woocommerce-MyAccount-navigation li.is-active a,
.acc-wc-wrap .woocommerce-MyAccount-navigation li a:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
  background: var(--surface-3);
}

/* Content area */
.acc-wc-wrap .woocommerce-MyAccount-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 40px);
}

/* WC form fields */
.acc-wc-wrap .woocommerce-form-row label,
.acc-wc-wrap .woocommerce-EditAccountForm .form-row label,
.acc-wc-wrap fieldset legend {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
  display: block;
}

.acc-wc-wrap .woocommerce-form-row input,
.acc-wc-wrap .woocommerce-form-row select,
.acc-wc-wrap .woocommerce-EditAccountForm input,
.acc-wc-wrap .woocommerce-EditAccountForm select,
.acc-wc-wrap .woocommerce-Input {
  width: 100%;
  background: var(--surface-2) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: var(--r-sm) !important;
  padding: 10px 14px !important;
  font-size: .9rem !important;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.acc-wc-wrap .woocommerce-form-row input:focus,
.acc-wc-wrap .woocommerce-EditAccountForm input:focus {
  border-color: rgba(247, 207, 107, .4) !important;
}

/* WC buttons */
.acc-wc-wrap .woocommerce-Button,
.acc-wc-wrap .button,
.acc-wc-wrap input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  background: var(--grad-gold) !important;
  color: #0c0c0c !important;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  border: none !important;
  border-radius: var(--r-pill) !important;
  cursor: pointer;
  transition: filter .2s, transform .15s;
  text-decoration: none;
}

.acc-wc-wrap .woocommerce-Button:hover,
.acc-wc-wrap .button:hover,
.acc-wc-wrap input[type="submit"]:hover {
  filter: brightness(1.08) drop-shadow(0 0 12px rgba(247, 207, 107, .3)) !important;
}

/* Orders table */
.acc-wc-wrap .woocommerce-orders-table,
.acc-wc-wrap table.shop_table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.acc-wc-wrap .woocommerce-orders-table th,
.acc-wc-wrap table.shop_table th {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-bottom: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
}

.acc-wc-wrap .woocommerce-orders-table td,
.acc-wc-wrap table.shop_table td {
  color: var(--text-dim);
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
}

.acc-wc-wrap .woocommerce-orders-table tr:last-child td,
.acc-wc-wrap table.shop_table tr:last-child td {
  border-bottom: none;
}

/* WC notices */
.acc-wc-wrap .woocommerce-message {
  background: rgba(247, 207, 107, .08);
  border-left: 3px solid var(--gold-1);
  color: var(--text-dim);
  padding: 12px 16px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .88rem;
  margin-bottom: 20px;
}

.acc-wc-wrap .woocommerce-error {
  background: rgba(255, 82, 82, .08);
  border-left: 3px solid #ff5252;
  color: var(--text-dim);
  padding: 12px 16px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .88rem;
  margin-bottom: 20px;
  list-style: none;
}

@media (max-width: 768px) {
  .acc-wc-wrap .woocommerce-MyAccount-navigation ul {
    gap: 6px;
  }
  .acc-wc-wrap table.shop_table,
  .acc-wc-wrap .woocommerce-orders-table {
    display: block;
    overflow-x: auto;
  }
}

/* ── Hero card ── */
.hero__card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-45%);
  z-index: 3;
  width: 252px;
  height: 178px;
  filter: drop-shadow(-8px 8px 17px rgba(0, 0, 0, 0.28));
}

.hero__card-bg {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(17.5px);
  clip-path: polygon(0 0, 100% 0, 100% 67.4%, 39.3% 67.4%, 39.3% 100%, 0 100%);
}

.hero__card-weapon {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-60%);
  width: 220px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(200, 80, 80, 0.5));
  animation: floatKnife 4s ease-in-out infinite;
}

@keyframes floatKnife {
  0%, 100% { transform: translateY(-60%) rotate(-8deg); }
  50%       { transform: translateY(-65%) rotate(-5deg); }
}

.hero__card-info {
  position: absolute;
  left: 24px;
  top: 24px;
}

.hero__card-name {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}

.hero__card-price {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #bef970;
}

.hero__card-cta {
  position: absolute;
  left: 107px;
  right: 0;
  bottom: 0;
  height: 50px;
  background: #99ee2d;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero__card {
    width: 200px;
    height: 148px;
    right: 16px;
    top: 16px;
    transform: none;
  }
  .hero__card-weapon {
    width: 160px;
    right: -40px;
  }
  .hero__card-cta {
    left: 76px;
    height: 40px;
    font-size: 13px;
  }
}

/* ── Wishlist / cart buttons ── */
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

.product-card__wish,
.flash-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.product-card__wish svg,
.flash-card__wish svg {
  width: 18px;
  height: 18px;
}

.product-card__wish:hover,
.flash-card__wish:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.05);
}

.product-card__wish:hover svg,
.flash-card__wish:hover svg {
  fill: #c0392b;
  stroke: #c0392b;
  transform: scale(1.1);
}

.product-card__wish.active,
.flash-card__wish.active {
  background: rgba(255, 255, 255, 0.95);
}

.product-card__wish.active svg,
.flash-card__wish.active svg {
  fill: #c0392b;
  stroke: #c0392b;
}

.product-card__basket,
.flash-card__cart {
  transition: transform .2s ease;
  cursor: pointer;
}

.product-card__basket:disabled,
.flash-card__cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-card__basket:hover,
.flash-card__cart:hover {
  transform: scale(1.05);
}

/* ── Header badges ── */
.header__count,
.header__cart-badge,
.header__wish-badge,
.header__wishlist-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--grad-gold, linear-gradient(135deg, #f7cf6b 0%, #e89a3c 55%, #d97a22 100%));
  color: #0c0c0c;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--bg, #0c0c10);
  pointer-events: none;
}

.header__cart-badge:empty,
.header__wish-badge:empty,
.header__wishlist-count:empty,
.header__count:empty {
  display: none !important;
}

.header__icon-btn,
.header__action {
  position: relative;
}

/* ── Cart notification ── */
.cart-notif {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99999;
  width: 340px;
  background: var(--surface-2, #1d1d25);
  border: 1px solid var(--border, rgba(255, 255, 255, .1));
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s cubic-bezier(.16, 1, .3, 1), opacity .28s;
}

.cart-notif.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cart-notif__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
}

.cart-notif__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--grad-gold, linear-gradient(135deg, #f7cf6b, #d97a22));
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-notif__body {
  flex: 1;
  min-width: 0;
}

.cart-notif__title {
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.3;
}

.cart-notif__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cart-notif__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  height: 40px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: filter .15s, transform .15s;
  line-height: 1;
  font-family: inherit;
  width: 100%;
}

.cart-notif__btn--ghost {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
  height: 40px;
  width: 100%;
}

.cart-notif__btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
}

.cart-notif__btn--gold {
  background: var(--grad-gold, linear-gradient(135deg, #f7cf6b, #e89a3c, #d97a22));
  color: #0c0c0c;
}

.cart-notif__btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.cart-notif__dismiss {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .3);
  cursor: pointer;
  padding: 2px;
  margin-top: 2px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s;
}

.cart-notif__dismiss:hover {
  color: rgba(255, 255, 255, .7);
}

.cart-notif__bar {
  height: 3px;
  background: var(--grad-gold, linear-gradient(90deg, #f7cf6b, #d97a22));
  transform-origin: left;
}

.cart-notif.is-visible .cart-notif__bar {
  animation: notif-bar 5s linear forwards;
}

@keyframes notif-bar {
  to { transform: scaleX(0); }
}

@media (max-width: 420px) {
  .cart-notif {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 16px;
  }
}

/* ── Hide WoodMart basket popup (replaced by cart-notif) ── */
.basket-popup,
.basket-popup__panel,
#basketPopup {
  display: none !important;
}

/* ── Contact form section decorative glows ── */
body .contact-form-section {
  position: relative;
  overflow: hidden;
}

body .contact-form-section::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  background: #bef970;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

body .contact-form-section::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  background: #bef970;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

body .contact-form-section .elementor-widget:first-child .elementor-widget-container {
  position: relative;
}

body .contact-form-section .elementor-widget:first-child .elementor-widget-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #111111, transparent);
  pointer-events: none;
  z-index: 0;
}

body .contact-form-section .elementor-widget:last-child .elementor-widget-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, #111111, transparent);
  pointer-events: none;
  z-index: 0;
}

fieldset{
  padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.woocommerce-MyAccount-navigation-link--wishlist {
    display: none !important;
}
@media (max-width: 860px) {
     .footer__grid{
    grid-template-columns: 1fr 1fr !important;
  }
  .footer__col--brand, .footer__support {
        grid-column: span 2;
    }
}