/* ============================================================
   RS SHOP PROJECT — style.css
   Theme: Luxury Gold / Black / White — Premium FiveM Assets
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=Frank+Ruhl+Libre:wght@300;400;500;700;900&family=Rubik:wght@300;400;500;600;700;800&family=Heebo:wght@300;400;500;700;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black:        #080808;
  --black-soft:   #0f0f0f;
  --black-card:   #111111;
  --black-hover:  #161616;
  --border:       #1c1c1c;
  --border-mid:   #282828;
  --border-light: #333333;
  --white:        #f8f6f1;
  --white-dim:    #c8c4bc;
  --white-muted:  #7a756e;
  --white-faint:  #3a3733;

  --gold:         #d4af5a;
  --gold-bright:  #f0c760;
  --gold-dim:     #9e7e37;
  --gold-bg:      rgba(212,175,90,0.08);
  --gold-border:  rgba(212,175,90,0.25);
  --gold-glow:    rgba(212,175,90,0.15);

  --sale-red:     #e8534a;
  --sale-red-bg:  rgba(232,83,74,0.12);

  --discord:      #5865F2;
  --discord-h:    #4752c4;

  --font-display: 'Outfit', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Rubik', 'Heebo', sans-serif;
  --font-heb-heading: 'Frank Ruhl Libre', 'Playfair Display', serif;
  --font-heb-body:    'Rubik', 'Heebo', sans-serif;

  --header-h: 72px;
  --filter-h: 54px;
  --radius:   3px;
  --radius-lg: 8px;
  --radius-xl: 16px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-heb-body);
  font-size: 15px;
  line-height: 1.7;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Hebrew text rendering improvements ──────────────────── */
:lang(he), [dir="rtl"] {
  font-family: var(--font-heb-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1:lang(he), h2:lang(he), h3:lang(he),
[lang="he"] h1, [lang="he"] h2, [lang="he"] h3,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3 {
  font-family: var(--font-heb-heading);
  font-weight: 500;
  letter-spacing: 0;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }
::selection { background: var(--gold); color: var(--black); }
img { display: block; }

/* ─────────────────────────────────────────────────────────────
   GOLD DECORATIVE LINES
───────────────────────────────────────────────────────────── */
.gold-line {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin-bottom: 20px;
}
.gold-line::before, .gold-line::after {
  content: ''; flex: 1; max-width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-line::after { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-line span {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
#site-header::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 30%, var(--gold-border) 70%, transparent 100%);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); max-width: 1320px; margin: 0 auto;
  padding: 0 36px; gap: 16px;
}

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  letter-spacing: 0.14em; color: var(--white); text-transform: uppercase;
}
.logo-main .amp { color: var(--gold); }
.logo-sub {
  font-family: var(--font-display); font-size: 8.5px; letter-spacing: 0.42em;
  color: var(--white-muted); text-transform: uppercase; margin-top: 3px;
}

.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--white-dim);
  text-decoration: none; padding: 7px 15px; border: 1px solid transparent;
  border-radius: var(--radius); transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover { color: var(--gold); border-color: var(--gold-border); }

.header-auth { display: flex; align-items: center; flex-shrink: 0; }

/* User pill */
.user-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 13px 5px 5px;
  background: var(--border); border: 1px solid var(--border-mid);
  border-radius: 999px; transition: border-color 0.2s;
}
.user-pill:hover { border-color: var(--gold-border); }
.user-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-border); }
.user-name {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  color: var(--white); letter-spacing: 0.05em; max-width: 120px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.logout-btn {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; color: var(--white-muted); text-decoration: none;
  border-radius: 50%; transition: color 0.2s, background 0.2s;
}
.logout-btn:hover { color: var(--white); background: var(--border-mid); }

.discord-login-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: #fff;
  background: var(--discord); text-decoration: none;
  padding: 8px 16px; border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.discord-login-btn:hover { background: var(--discord-h); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; height: 1.5px; background: var(--white); transition: all 0.3s var(--ease); transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Filter bar */
.filter-bar {
  display: flex; align-items: center; height: var(--filter-h);
  max-width: 1320px; margin: 0 auto; padding: 0 36px;
  border-top: 1px solid var(--border); overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-group { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.filter-divider { width: 1px; height: 18px; background: var(--border-mid); margin: 0 18px; flex-shrink: 0; }
.filter-label { font-size: 9.5px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white-muted); margin-left: 8px; white-space: nowrap; font-family: var(--font-display); }
.fbtn {
  font-family: var(--font-display); font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-muted);
  background: none; border: 1px solid transparent; border-radius: var(--radius);
  padding: 4px 11px; cursor: pointer; white-space: nowrap; transition: all 0.2s;
}
.fbtn:hover { color: var(--gold); border-color: var(--gold-border); }
.fbtn.active { color: var(--black); background: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV
   ═══════════════════════════════════════════════════════════ */
.mobile-nav {
  position: fixed; top: calc(var(--header-h) + var(--filter-h));
  left: 0; right: 0;
  background: var(--black-soft);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  z-index: 850; transform: translateY(-110%);
  transition: transform 0.35s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mnav-link {
  display: block; padding: 15px 24px;
  font-family: var(--font-display); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--white-dim); text-decoration: none;
  border-bottom: 1px solid var(--border); transition: color 0.2s, background 0.2s;
}
.mnav-link:hover { color: var(--gold); background: var(--gold-bg); }
.mnav-auth { padding: 14px 16px; border-top: 1px solid var(--border); }
.mnav-user { display: flex; align-items: center; gap: 10px; }
.mnav-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-border); }
.mnav-user span { font-size: 13px; color: var(--white); flex: 1; }
.mnav-logout {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white-muted); text-decoration: none;
  padding: 4px 10px; border: 1px solid var(--border-mid); border-radius: var(--radius);
  transition: all 0.2s;
}
.mnav-logout:hover { color: var(--gold); border-color: var(--gold-border); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--header-h) + var(--filter-h));
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(212,175,90,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 85% 85%, rgba(212,175,90,0.04) 0%, transparent 60%),
    var(--black);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,90,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}

/* Animated corner ornaments */
.hero::before {
  content: '';
  position: absolute; top: calc(var(--header-h) + var(--filter-h) + 40px); right: 40px;
  width: 80px; height: 80px;
  border-top: 1px solid var(--gold-border);
  border-right: 1px solid var(--gold-border);
  opacity: 0.6;
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 24px;
  animation: heroIn 1.3s var(--ease) both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 16px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: inline-block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(90deg, var(--gold), transparent); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(58px, 11vw, 140px);
  font-weight: 400; line-height: 0.9;
  letter-spacing: -0.02em; color: var(--white);
  margin-bottom: 28px;
}
.hero-title .gold-word { color: var(--gold); font-style: italic; }
.hero-title em { font-style: italic; color: var(--white-dim); }

.hero-sub {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--white-muted); margin-bottom: 52px;
}

.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  text-decoration: none; padding: 16px 38px; border-radius: var(--radius);
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px var(--gold-glow);
}
.hero-cta:hover {
  background: var(--gold-bright); transform: translateY(-3px);
  box-shadow: 0 8px 36px var(--gold-glow);
}
.hero-cta::after { content: '↓'; font-size: 14px; }

.hero-user-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-mid); border-radius: 999px;
}
.hero-user-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.hero-user-badge span { font-size: 13px; color: var(--white-dim); }
.hero-user-badge strong { color: var(--white); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: pulse 2.5s ease-in-out infinite;
}
.hero-scroll span {
  font-family: var(--font-display); font-size: 8px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--white-muted);
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--white-muted), transparent);
}
@keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:1} }

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-section {
  padding: 130px 0; border-bottom: 1px solid var(--border);
  position: relative;
}
.about-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 70px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.about-inner { max-width: 960px; margin: 0 auto; padding: 0 36px; }
.section-label {
  font-family: var(--font-display); font-size: 9.5px; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.about-heading {
  font-family: var(--font-heb-heading);
  font-size: clamp(32px, 5vw, 56px); font-weight: 500;
  color: var(--white); margin-bottom: 28px;
  line-height: 1.2; letter-spacing: -0.01em;
}
.about-text {
  font-family: var(--font-heb-body);
  font-size: 16px; line-height: 2; color: var(--white-dim);
  max-width: 700px; margin-bottom: 64px;
  font-weight: 300;
}
.about-text strong { color: var(--gold); font-weight: 600; }

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--border);
  gap: 1px;
}
.stat {
  background: var(--black-card);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 36px 20px;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.stat::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.stat:hover { background: var(--black-hover); }
.stat:hover::before { transform: scaleX(1); }
.stat-num {
  font-family: var(--font-heb-heading); font-size: 48px; font-weight: 700;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-heb-body); font-size: 12px; letter-spacing: 0.08em;
  font-weight: 500; color: var(--white-muted);
}

/* ═══════════════════════════════════════════════════════════
   USP
   ═══════════════════════════════════════════════════════════ */
.usp-section {
  padding: 110px 0; border-bottom: 1px solid var(--border);
  background: var(--black-soft);
}
.usp-inner { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
.usp-heading {
  font-family: var(--font-heb-heading); font-size: clamp(28px, 4vw, 48px);
  font-weight: 500; color: var(--white); text-align: center; margin-bottom: 70px;
  letter-spacing: -0.01em;
}
.usp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; gap: 1px; background: var(--border);
}
.usp-card {
  background: var(--black-card); padding: 52px 40px;
  position: relative; transition: background 0.3s;
  overflow: hidden;
}
.usp-card:hover { background: var(--black-hover); }
.usp-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0;
  height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.usp-card:hover::before { transform: scaleX(1); }

.usp-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 22px;
}
.usp-card h3 {
  font-family: var(--font-heb-heading); font-size: 23px; font-weight: 500;
  color: var(--white); margin-bottom: 14px; line-height: 1.3;
}
.usp-card p { font-family: var(--font-heb-body); font-size: 14.5px; line-height: 1.85; color: var(--white-muted); font-weight: 300; }
.price-badge {
  display: inline-block; margin-top: 20px;
  font-family: var(--font-display); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid var(--gold-border); padding: 5px 12px;
  border-radius: var(--radius);
  background: var(--gold-bg);
}

/* ═══════════════════════════════════════════════════════════
   FILTER INDICATOR
   ═══════════════════════════════════════════════════════════ */
.filter-indicator {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  max-width: 1320px; margin: 0 auto; padding: 13px 36px;
  font-family: var(--font-display); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold);
  background: var(--gold-bg); border-bottom: 1px solid var(--gold-border);
}
.clear-btn {
  font-family: var(--font-display); font-size: 9.5px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--white-muted); background: none;
  border: 1px solid var(--border-mid); border-radius: var(--radius);
  padding: 4px 11px; cursor: pointer; transition: all 0.2s;
}
.clear-btn:hover { color: var(--gold); border-color: var(--gold-border); }

/* ═══════════════════════════════════════════════════════════
   SECTION TITLE ROW (above products)
   ═══════════════════════════════════════════════════════════ */
.products-header {
  max-width: 1320px; margin: 0 auto;
  padding: 56px 36px 28px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.products-title {
  font-family: var(--font-heb-heading); font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; color: var(--white); letter-spacing: -0.01em;
}
.products-title span { color: var(--gold); font-style: italic; }
.products-count {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--white-muted);
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS GRID
   ═══════════════════════════════════════════════════════════ */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border);
}
.no-products {
  grid-column: 1/-1; text-align: center; padding: 100px 24px;
  font-family: var(--font-serif); font-size: 20px; color: var(--white-muted);
  background: var(--black);
}

/* Product Card */
.product-card {
  position: relative; background: var(--black-card);
  cursor: pointer; overflow: hidden;
  transition: background 0.3s; outline: none;
  display: flex; flex-direction: column;
}
.product-card:hover { background: var(--black-hover); }
.product-card:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

/* Gold shimmer on hover */
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.45s var(--ease);
}
.product-card:hover::after { transform: scaleX(1); }

/* Badges */
.sale-type-badge {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  font-family: var(--font-display); font-size: 8.5px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius);
}
.sale-type-badge.for-sale {
  background: var(--gold); color: var(--black);
  box-shadow: 0 2px 12px var(--gold-glow);
}
.sale-type-badge.display-only {
  background: rgba(0,0,0,0.7); color: var(--white-muted);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(4px);
}

/* SALE / DISCOUNT badge */
.card-sale-badge {
  position: absolute; top: 14px; left: 14px; z-index: 10;
  background: var(--sale-red); color: #fff;
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(232,83,74,0.3);
  animation: saleFlash 3s ease-in-out infinite;
}
@keyframes saleFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.82; }
}

.card-image-wrap {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: var(--black-soft);
}
.card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s;
  filter: brightness(0.88) saturate(0.9);
}
.product-card:hover .card-img { transform: scale(1.05); filter: brightness(1) saturate(1.05); }

.card-gallery-badge {
  position: absolute; bottom: 10px; left: 10px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.75); color: var(--white-dim);
  font-family: var(--font-display); font-size: 9.5px;
  padding: 4px 9px; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.card-body { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.card-category {
  font-family: var(--font-display); font-size: 9px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 9px;
}
.card-title {
  font-family: var(--font-heb-heading); font-size: 20px; font-weight: 500;
  color: var(--white); margin-bottom: 9px; line-height: 1.35;
}
.card-desc {
  font-family: var(--font-heb-body); font-weight: 300;
  font-size: 13.5px; color: var(--white-muted); line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  flex: 1;
}

.card-price-row { margin-top: 18px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.card-price {
  font-family: var(--font-serif); font-size: 24px; font-weight: 600;
  color: var(--gold); letter-spacing: -0.02em;
}
.card-price-original {
  font-family: var(--font-serif); font-size: 15px;
  color: var(--white-faint); text-decoration: line-through;
}
.card-discount-tag {
  font-family: var(--font-display); font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--sale-red-bg); color: var(--sale-red);
  border: 1px solid rgba(232,83,74,0.25);
  padding: 3px 8px; border-radius: var(--radius);
}

/* ═══════════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  z-index: 1000; align-items: center; justify-content: center;
  padding: 16px; overflow-y: auto;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.modal-box {
  position: relative; background: var(--black-card);
  border: 1px solid var(--border-mid); border-radius: var(--radius-lg);
  width: 100%; max-width: 960px; max-height: 92vh; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  animation: slideUp 0.35s var(--ease);
}
.modal-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
@keyframes slideUp { from{transform:translateY(24px);opacity:0} to{transform:translateY(0);opacity:1} }

.modal-close {
  position: absolute; top: 16px; left: 16px; z-index: 20;
  width: 36px; height: 36px;
  background: var(--border); border: 1px solid var(--border-mid);
  color: var(--white-dim); font-size: 13px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.modal-gallery {
  position: relative; background: var(--black);
  border-left: 1px solid var(--border); min-height: 340px;
  display: flex; flex-direction: column;
}
.modal-main-img { width: 100%; flex: 1; object-fit: cover; max-height: 420px; min-height: 280px; }
.modal-thumbs { display: flex; gap: 7px; padding: 10px 12px; border-top: 1px solid var(--border); overflow-x: auto; background: var(--black-soft); }
.modal-thumbs.hidden { display: none; }
.thumb {
  width: 64px; height: 44px; object-fit: cover; border-radius: var(--radius);
  border: 1px solid var(--border); cursor: pointer; opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s; flex-shrink: 0;
}
.thumb.active { opacity: 1; border-color: var(--gold); }
.thumb:hover { opacity: 0.82; }

.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.65); border: 1px solid var(--border-mid);
  color: var(--white); width: 38px; height: 38px; font-size: 21px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all 0.2s; z-index: 5;
}
.gallery-nav:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
.gallery-nav.hidden { display: none; }

.modal-body { padding: 36px 32px; overflow-y: auto; }
.modal-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.modal-category {
  font-family: var(--font-display); font-size: 9.5px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold);
}
.modal-sale-badge {
  font-family: var(--font-display); font-size: 8.5px; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 3px 9px; border-radius: var(--radius);
}
.modal-sale-badge.for-sale { background: var(--gold); color: var(--black); }
.modal-sale-badge.display-only { background: var(--border-mid); color: var(--white-dim); }

.modal-title {
  font-family: var(--font-serif); font-size: 30px; font-weight: 400;
  color: var(--white); margin-bottom: 22px; line-height: 1.2;
}

/* Price block in modal */
.modal-buy-row {
  margin-bottom: 26px; padding: 20px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
}
.modal-price-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.modal-price {
  font-family: var(--font-serif); font-size: 32px; font-weight: 600;
  color: var(--gold); letter-spacing: -0.02em;
}
.modal-price-original {
  font-family: var(--font-serif); font-size: 18px;
  color: var(--white-faint); text-decoration: line-through;
}
.modal-discount-badge {
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--sale-red); color: #fff;
  padding: 4px 10px; border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(232,83,74,0.3);
}
.modal-sale-label {
  font-family: var(--font-display); font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sale-red); margin-bottom: 12px;
}
.modal-purchase-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  text-decoration: none; padding: 13px 26px; border-radius: var(--radius);
  transition: all 0.25s; width: 100%; justify-content: center;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.modal-purchase-btn:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 8px 30px var(--gold-glow); }

/* Display-only notice */
.modal-display-notice {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg); padding: 22px 20px;
  margin-bottom: 26px; text-align: center;
}
.notice-icon { font-size: 26px; display: block; margin-bottom: 10px; }
.modal-display-notice h3 {
  font-family: var(--font-serif); font-size: 18px;
  color: var(--white); margin-bottom: 7px;
}
.modal-display-notice p { font-size: 13px; color: var(--white-muted); margin-bottom: 16px; }

.buyer-info-card {
  background: var(--border); border-radius: var(--radius); padding: 14px; margin-top: 14px;
  border: 1px solid var(--border-mid);
}
.buyer-info-label {
  font-family: var(--font-display); font-size: 8.5px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--white-muted); margin-bottom: 11px;
}
.buyer-info-row { display: flex; align-items: center; gap: 12px; }
.buyer-avatar { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gold-border); object-fit: cover; }
.buyer-avatar-placeholder {
  width: 42px; height: 42px; border-radius: 50%; background: var(--border-mid);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600;
}
.buyer-details { display: flex; flex-direction: column; gap: 3px; }
.buyer-name { font-size: 14px; color: var(--white); font-weight: 500; }
.buyer-discord-tag { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--white-muted); }

.modal-description { font-size: 14px; line-height: 1.75; color: var(--white-dim); margin-bottom: 26px; }

.modal-qr {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
}
.modal-qr img { width: 76px; height: 76px; border-radius: var(--radius); filter: invert(1); flex-shrink: 0; }
.modal-qr p { font-size: 12px; color: var(--white-muted); line-height: 1.55; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testi-section {
  padding: 130px 0; border-top: 1px solid var(--border);
  background: var(--black-soft); position: relative;
}
.testi-inner { max-width: 1280px; margin: 0 auto; padding: 0 36px; }
.testi-heading {
  font-family: var(--font-heb-heading); font-size: clamp(32px, 5vw, 56px);
  font-weight: 500; color: var(--white); margin-bottom: 10px; letter-spacing: -0.01em;
}
.testi-sub { font-size: 14px; color: var(--white-muted); margin-bottom: 60px; }

.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.testi-card {
  background: var(--black-card); padding: 32px 26px;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.testi-card:hover { background: var(--black-hover); }
.testi-card::before {
  content: '\201C'; position: absolute; top: 10px; right: 18px;
  font-family: var(--font-serif); font-size: 80px; line-height: 1;
  color: var(--gold-border); pointer-events: none;
}
.testi-header { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-border); flex-shrink: 0; }
.testi-avatar-placeholder {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600; flex-shrink: 0;
}
.testi-user { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.testi-name { font-family: var(--font-heb-body); font-weight: 600; font-size: 14px; color: var(--white); }
.testi-discord { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--white-muted); }
.testi-stars { font-size: 13px; color: var(--gold); letter-spacing: 2px; }
.testi-text {
  font-family: var(--font-heb-body); font-size: 14.5px; font-weight: 300; line-height: 1.85;
  color: var(--white-dim); margin-bottom: 14px;
}
.testi-product {
  font-family: var(--font-display); font-size: 9px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dim);
  border-top: 1px solid var(--border); padding-top: 13px; margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 130px 0; border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 70px; background: linear-gradient(to bottom, var(--gold), transparent);
}
/* Decorative corner */
.contact-section::after {
  content: ''; position: absolute; bottom: 40px; right: 60px;
  width: 60px; height: 60px;
  border-bottom: 1px solid var(--gold-border); border-right: 1px solid var(--gold-border);
  opacity: 0.4;
}
.contact-inner { max-width: 640px; margin: 0 auto; padding: 0 36px; text-align: center; }
.contact-heading {
  font-family: var(--font-heb-heading); font-size: clamp(32px, 5vw, 56px);
  font-weight: 500; color: var(--white); margin-bottom: 18px; letter-spacing: -0.01em;
}
.contact-text { font-family: var(--font-heb-body); font-weight: 300; font-size: 15.5px; color: var(--white-muted); line-height: 1.9; margin-bottom: 44px; }
.discord-btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  text-decoration: none; padding: 18px 42px; border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  box-shadow: 0 4px 24px var(--gold-glow);
}
.discord-btn:hover {
  background: var(--gold-bright); transform: translateY(-3px);
  box-shadow: 0 8px 36px var(--gold-glow);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border); padding: 28px 0;
  background: var(--black-soft);
}
footer::before {
  content: ''; display: block; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 30%, var(--gold-border) 70%, transparent 100%);
  margin-bottom: 28px;
}
.footer-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 36px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.17em; text-transform: uppercase; color: var(--white-muted);
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.15em;
  color: var(--white-faint);
}

/* ── Fade-up ──────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   MORE PRODUCTS PAGE (more-products.html)
   ═══════════════════════════════════════════════════════════ */
.more-products-hero {
  padding-top: calc(var(--header-h) + var(--filter-h) + 80px);
  padding-bottom: 60px; text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.more-products-hero::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px; background: var(--gold); opacity: 0.6;
}
.more-products-title {
  font-family: var(--font-serif); font-size: clamp(36px, 6vw, 72px);
  font-weight: 400; color: var(--white); margin-bottom: 14px;
}
.more-products-title span { color: var(--gold); font-style: italic; }
.more-products-sub {
  font-family: var(--font-display); font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--white-muted);
}

.back-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid var(--gold-border); padding: 9px 20px;
  border-radius: var(--radius); transition: all 0.2s;
  margin: 32px auto 0; display: table;
}
.back-link:hover { background: var(--gold-bg); transform: translateX(4px); }
.back-link::before { content: '→'; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .modal-box { grid-template-columns: 1fr; }
  .modal-gallery { border-left: none; border-bottom: 1px solid var(--border); }
  .usp-grid { grid-template-columns: 1fr; }
  .usp-card { border-top: 1px solid var(--border); }
  .usp-card:first-child { border-top: none; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 640px) {
  :root { --header-h: 62px; --filter-h: 50px; }
  .header-inner { padding: 0 18px; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .header-auth .user-name { display: none; }
  .filter-bar { padding: 0 14px; }
  .grid-container { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .usp-inner, .testi-inner, .contact-inner { padding: 0 18px; }
  .products-header { padding: 40px 18px 22px; }
  .footer-inner { flex-direction: column; gap: 10px; text-align: center; }
  .modal-box { border-radius: 0; max-height: 100svh; }
  .modal-body { padding: 22px 18px; }
  .hero-actions { flex-direction: column; }
  .hero::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   GLOBAL DISCOUNT BANNER
   ═══════════════════════════════════════════════════════════ */

.discount-banner {
  position: fixed;
  top: calc(var(--header-h) + var(--filter-h));
  left: 0; right: 0;
  z-index: 898;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1200 35%, #0a0a0a 70%, #0d0800 100%);
  border-bottom: 1px solid rgba(212,175,90,0.4);
  overflow: hidden;
  max-height: 52px;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
body.has-discount-banner {
  --banner-h: 52px;
}
body.has-discount-banner .hero {
  padding-top: calc(var(--header-h) + var(--filter-h) + var(--banner-h));
}
body.has-discount-banner .mobile-nav {
  top: calc(var(--header-h) + var(--filter-h) + var(--banner-h));
}

/* shimmer sweep */
.discount-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212,175,90,0.06) 30%,
    rgba(212,175,90,0.18) 50%,
    rgba(212,175,90,0.06) 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: bannerShimmer 3.5s linear infinite;
}
@keyframes bannerShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* floating particles */
.banner-particles { position: absolute; inset: 0; pointer-events: none; }
.bp {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatParticle 4s ease-in-out infinite;
}
.bp1  { left: 5%;  top: 20%; animation-delay: 0s;    animation-duration: 3.8s; }
.bp2  { left: 12%; top: 70%; animation-delay: 0.4s;  animation-duration: 4.2s; }
.bp3  { left: 20%; top: 40%; animation-delay: 0.8s;  animation-duration: 3.5s; }
.bp4  { left: 30%; top: 80%; animation-delay: 1.2s;  animation-duration: 4.5s; }
.bp5  { left: 42%; top: 25%; animation-delay: 0.2s;  animation-duration: 3.9s; }
.bp6  { left: 55%; top: 60%; animation-delay: 1.5s;  animation-duration: 4.1s; }
.bp7  { left: 65%; top: 30%; animation-delay: 0.6s;  animation-duration: 3.7s; }
.bp8  { left: 75%; top: 75%; animation-delay: 1.8s;  animation-duration: 4.3s; }
.bp9  { left: 82%; top: 45%; animation-delay: 0.9s;  animation-duration: 3.6s; }
.bp10 { left: 88%; top: 20%; animation-delay: 1.1s;  animation-duration: 4.0s; }
.bp11 { left: 93%; top: 65%; animation-delay: 0.3s;  animation-duration: 3.8s; }
.bp12 { left: 97%; top: 35%; animation-delay: 1.4s;  animation-duration: 4.4s; }
@keyframes floatParticle {
  0%   { transform: translateY(0)  scale(0); opacity: 0; }
  20%  { opacity: 0.7; }
  80%  { opacity: 0.5; }
  100% { transform: translateY(-28px) scale(1.5); opacity: 0; }
}

.banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 60px 11px 20px;
  max-width: 1320px;
  margin: 0 auto;
  gap: 16px;
  position: relative;
}

.banner-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
}

.banner-pill {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  flex-shrink: 0;
  animation: pillPulse 2.5s ease-in-out infinite;
}
@keyframes pillPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,90,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(212,175,90,0); }
}

.banner-headline {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.banner-sub {
  font-size: 11px;
  color: var(--white-dim);
  border-right: 1px solid var(--border-light);
  padding-right: 14px;
}
.banner-sub strong {
  color: var(--gold);
  font-weight: 700;
}

/* Countdown */
.banner-countdown {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  border-right: 1px solid var(--border-light);
  padding-right: 16px;
}
.cd-label {
  font-size: 10px;
  color: var(--white-muted);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.cd-unit {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--gold);
  min-width: 22px;
  text-align: center;
  background: rgba(212,175,90,0.1);
  border: 1px solid var(--gold-border);
  border-radius: 3px;
  padding: 2px 5px;
  line-height: 1.2;
}
.cd-sep {
  font-size: 9px;
  color: var(--white-muted);
  letter-spacing: 0.1em;
  margin-left: 3px;
}

/* Close button */
.banner-close {
  position: absolute;
  top: 50%; right: 18px;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  width: 26px; height: 26px;
  color: var(--white-muted);
  cursor: pointer;
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.banner-close:hover {
  color: var(--white);
  border-color: var(--gold-border);
  background: var(--gold-bg);
}

@media (max-width: 900px) {
  .banner-countdown { display: none; }
  .banner-sub { display: none; }
}
@media (max-width: 640px) {
  .discount-banner { max-height: 200px; }
  body.has-discount-banner { --banner-h: 72px; }
  .banner-inner { padding: 10px 44px 10px 12px; }
  .banner-headline { font-size: 12px; }
  .banner-content { gap: 6px; }
}

/* ── Copy discount message button ───────────────────────── */
.copy-msg-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 9px 16px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.copy-msg-btn:hover {
  background: rgba(212,175,90,0.16);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-1px);
}
.copy-msg-btn.copied {
  color: #4caf79;
  border-color: rgba(76,175,121,0.4);
  background: rgba(76,175,121,0.1);
}