/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #152639;
  --navy-light:  #1e3a55;
  --gold:        #c9a84c;
  --gold-light:  #e4c97a;
  --gold-pale:   #f5e8c0;
  --white:       #ffffff;
  --off-white:   #f4f6f9;
  --gray:        #8a9ab0;
  --gray-light:  #d1dae6;
  --body-text:   #e8edf4;
  --dark-text:   #1a2535;
  --footer-dark: #080f18;
  --green:       #4ade80;
  --radius:      10px;
  --transition:  .22s ease;
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--navy);
  color: var(--body-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

/* ── Typography ─────────────────────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* ── Layout helpers ─────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--light { background: var(--off-white); color: var(--dark-text); }
.section--mid   { background: var(--navy-mid); }
.section--dark  { background: var(--navy); }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn--gold    { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.btn--sm { padding: 8px 18px; font-size: .85rem; }

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.12);
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .01em;
}
.nav__logo-icon { flex-shrink: 0; }
.nav__logo span { color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 8px; }
/* Shop on eBay button — always clearly visible in the nav */
.nav__links .btn--gold {
  background: var(--gold-light);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(201,168,76,.5), 0 4px 14px rgba(201,168,76,.25);
}
.nav__links .btn--gold:hover {
  background: #f2dc88;
  box-shadow: 0 0 0 1px rgba(201,168,76,.7), 0 6px 20px rgba(201,168,76,.35);
  transform: translateY(-2px);
}
.nav__links a {
  color: var(--gray);
  font-size: .9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); background: rgba(255,255,255,.07); }
.nav__links .btn { margin-left: 8px; padding: 9px 20px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav__hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  background: linear-gradient(135deg, #091520 0%, #0d1b2a 45%, #122030 100%);
  position: relative;
  overflow: hidden;
}
/* Dot grid pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,168,76,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
/* Gold spotlight */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 72% 50%, rgba(201,168,76,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero__content { max-width: 580px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.hero__badge .dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__sub { font-size: 1.05rem; color: var(--gray); margin-bottom: 40px; line-height: 1.8; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Hero visual (decorative coin) ──────────────────────────────────────────── */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__coin {
  position: relative;
  width: 360px;
  height: 360px;
  flex-shrink: 0;
}
/* Soft glow behind the coin */
.hero__coin-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.18) 0%, transparent 68%);
  filter: blur(18px);
}
/* Outer dashed orbit ring */
.hero__coin-orbit {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,.18);
  animation: orbit 28s linear infinite;
}
.hero__coin-orbit::before {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  top: -6px; left: calc(50% - 6px);
  box-shadow: 0 0 10px rgba(201,168,76,.8);
  opacity: .7;
}
/* Inner orbit ring */
.hero__coin-orbit--2 {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px dashed rgba(201,168,76,.1);
  animation: orbit 18s linear infinite reverse;
}
.hero__coin-orbit--2::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  background: rgba(201,168,76,.5);
  border-radius: 50%;
  bottom: -4px; right: calc(50% - 4px);
}
/* Main coin face */
.hero__coin-face {
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(201,168,76,.12) 0%, rgba(201,168,76,.04) 60%, rgba(30,58,85,.4) 100%);
  border: 2px solid rgba(201,168,76,.38);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  box-shadow:
    0 0 50px rgba(201,168,76,.14),
    inset 0 0 40px rgba(201,168,76,.06),
    inset 0 1px 0 rgba(201,168,76,.3);
}
/* Small floating coin dots */
.hero__coin-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,168,76,.25);
  box-shadow: 0 0 8px rgba(201,168,76,.3);
}
.hero__coin-dot--a { width: 14px; height: 14px; top: 12%; left: 8%;  animation: float 5s ease-in-out infinite; }
.hero__coin-dot--b { width: 10px; height: 10px; bottom: 14%; left: 5%; animation: float 7s ease-in-out infinite .8s; }
.hero__coin-dot--c { width: 8px;  height: 8px;  top: 20%; right: 2%; animation: float 6s ease-in-out infinite 1.4s; }
@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* ── Stats strip ─────────────────────────────────────────────────────────────── */
.stats {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.1);
  padding: 32px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__item strong { display: block; font-size: 1.6rem; color: var(--gold); font-family: 'Playfair Display', serif; }
.stats__item span   { font-size: .85rem; color: var(--gray); }

/* ── About ───────────────────────────────────────────────────────────────────── */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about__text h2 { font-size: 2.2rem; color: var(--dark-text); margin-bottom: 20px; }
.about__text p  { color: #4a5568; line-height: 1.8; margin-bottom: 16px; }
.about__features { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
}
.about__feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.about__feature h4 { font-size: .95rem; color: var(--dark-text); margin-bottom: 2px; }
.about__feature p  { font-size: .85rem; color: #4a5568; margin: 0; }
.trust-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.trust-card__icon { font-size: 3rem; margin-bottom: 16px; }
.trust-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.trust-card p  { color: var(--gray); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.trust-badges  { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.trust-badge {
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 600;
}

/* ── Categories ──────────────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 2rem; color: var(--dark-text); margin-bottom: 10px; }
.section-header p  { color: #4a5568; font-size: 1rem; }
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: var(--gray); }
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); border-color: var(--gold); }
.cat-card__icon { font-size: 2rem; margin-bottom: 12px; }
.cat-card h3 { font-size: 1rem; color: var(--dark-text); margin-bottom: 6px; }
.cat-card p  { font-size: .85rem; color: #4a5568; line-height: 1.6; }

/* ── Store profile bar ───────────────────────────────────────────────────────── */
.store-profile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.store-profile__left  { display: flex; align-items: center; gap: 16px; }
.store-profile__logo  { flex-shrink: 0; }
.store-profile__name  {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.store-profile__name:hover { color: var(--gold); }
.store-profile__meta  { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.store-profile__rating {
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
}
.store-profile__score {
  font-size: .82rem;
  color: var(--gray);
}
.store-profile__score::before { content: '·'; margin-right: 8px; }

/* ── Search + sort controls ──────────────────────────────────────────────────── */
.listings-controls {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  margin-bottom: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.listings-search {
  flex: 1;
  min-width: 180px;
  position: relative;
  display: flex;
  align-items: center;
}
.listings-search svg {
  position: absolute;
  left: 12px;
  color: var(--gray);
  pointer-events: none;
}
.listings-search input {
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 10px 14px 10px 38px;
  color: var(--white);
  font-size: .88rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  height: 42px;
}
.listings-search input:focus { border-color: var(--gold); }
.listings-search input::placeholder { color: var(--gray); }
.listings-sort {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  font-size: .88rem;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  height: 42px;
  min-width: 160px;
  appearance: auto;
}
.listings-sort:focus { border-color: var(--gold); }
.listings-sort option { background: var(--navy-mid); }
@media (max-width: 660px) {
  .listings-controls { flex-direction: column; }
  .listings-search, .listings-sort { width: 100%; min-width: unset; }
}

/* ── eBay listings ───────────────────────────────────────────────────────────── */
.listings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.listings-header__left h2 { font-size: 1.8rem; color: var(--white); }
.listings-header__left p  { color: var(--gray); font-size: .9rem; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.3);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: .78rem;
  color: var(--green);
  font-weight: 600;
}
.live-badge .dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.ebay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ebay-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.ebay-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); border-color: rgba(201,168,76,.5); }
.ebay-card__img {
  background: #0d1b2a;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ebay-card__img img { max-height: 180px; max-width: 100%; object-fit: contain; padding: 10px; }
.ebay-card__no-img { font-size: 2.5rem; opacity: .3; }
.ebay-card__body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.ebay-card__title { color: var(--body-text); font-size: .83rem; font-weight: 600; line-height: 1.4; margin: 0; }
.ebay-card__cond  { color: var(--gray); font-size: .73rem; margin: 0; }
.ebay-card__type  { color: var(--gray); font-size: .7rem; margin: 0; text-transform: uppercase; letter-spacing: .04em; }
.ebay-card__price { color: var(--gold); font-size: 1.05rem; font-weight: 700; margin: 4px 0 0; }
.ebay-card__cta   { color: var(--gold); font-size: .78rem; font-weight: 600; margin-top: auto; padding-top: 10px; }
.listings-count   { color: var(--gray); font-size: .85rem; margin-bottom: 20px; }
.listings-count a { color: var(--gold); }
.listings-load-more { text-align: center; margin-top: 36px; }

/* ── Why BDGCoins ────────────────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: rgba(201,168,76,.4); transform: translateY(-3px); }
.why-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.why-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.why-card p  { color: var(--gray); font-size: .87rem; line-height: 1.7; }

/* ── Contact ─────────────────────────────────────────────────────────────────── */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info h2 { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.contact__info > p { color: var(--gray); font-size: .95rem; line-height: 1.7; margin-bottom: 28px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: rgba(201,168,76,.4); }
.contact-card__icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-card__label { display: block; font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.contact-card__value { color: var(--white); font-size: .9rem; font-weight: 500; }
.contact__form-box {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: var(--radius);
  padding: 32px;
}
.contact__form-box h3 { font-size: 1.3rem; color: var(--white); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .82rem; color: var(--gray); margin-bottom: 6px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--navy-light);
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 7px;
  padding: 11px 14px;
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-notice { font-size: .8rem; color: var(--gray); margin-top: 12px; }

/* ── News ────────────────────────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.news-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.4); }
.news-card__img { height: 200px; background: var(--navy-light); overflow: hidden; }
.news-card__img img { width: 100%; height: 100%; object-fit: cover; }
.news-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; opacity: .2; }
.news-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card__date { font-size: .75rem; color: var(--gray); margin-bottom: 8px; }
.news-card__title { font-size: 1.05rem; color: var(--white); font-family: 'Playfair Display', serif; margin-bottom: 10px; line-height: 1.4; }
.news-card__title a { color: inherit; }
.news-card__title a:hover { color: var(--gold); }
.news-card__excerpt { color: var(--gray); font-size: .87rem; line-height: 1.6; flex: 1; }
.news-card__read-more { display: inline-block; margin-top: 14px; font-size: .83rem; font-weight: 600; color: var(--gold); }
.news-hero { padding-top: calc(70px + 60px); padding-bottom: 60px; background: var(--navy); }
.news-hero h1 { font-size: 2.2rem; color: var(--white); margin-bottom: 8px; }
.news-hero p   { color: var(--gray); font-size: 1rem; }
.post-body { max-width: 760px; margin: 0 auto; }
.post-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--dark-text); margin-bottom: 12px; }
.post-meta { color: #4a5568; font-size: .85rem; margin-bottom: 32px; }
.post-content { color: var(--dark-text); line-height: 1.8; font-size: 1rem; }
.post-content h2 { font-size: 1.5rem; color: var(--dark-text); margin: 36px 0 14px; }
.post-content h3 { font-size: 1.2rem; color: var(--dark-text); margin: 28px 0 10px; }
.post-content p  { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px 24px; }
.post-content li { margin-bottom: 6px; }
.post-content img { border-radius: var(--radius); margin: 24px 0; max-width: 100%; }
.post-content blockquote { border-left: 4px solid var(--gold); padding-left: 20px; color: #4a5568; font-style: italic; margin: 24px 0; }
.breadcrumb { font-size: .83rem; color: var(--gray); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-dark);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 60px 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__brand-name span { color: var(--gold); }
.footer__tagline { font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.footer__desc { font-size: .85rem; color: var(--gray); line-height: 1.7; }
.footer__col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); margin-bottom: 16px; font-weight: 600; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a { font-size: .87rem; color: #6b7f96; transition: color var(--transition); }
.footer__col ul li a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy { font-size: .8rem; color: #3d5166; }
.footer__admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 6px;
  font-size: .8rem;
  color: var(--gold);
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition);
}
.footer__admin-btn:hover { background: rgba(201,168,76,.1); border-color: var(--gold); color: var(--gold); }

/* ── Scroll to top ───────────────────────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  transition: background var(--transition), transform var(--transition);
}
#scroll-top:hover { background: var(--gold-light); transform: translateY(-2px); }
#scroll-top.visible { display: flex; }

/* ── Alerts ──────────────────────────────────────────────────────────────────── */
.alert { padding: 14px 18px; border-radius: 7px; font-size: .9rem; margin-bottom: 20px; }
.alert--success { background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.3); color: #4ade80; }
.alert--error   { background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.3); color: #f87171; }

/* ── Page-top padding (fixed nav) ────────────────────────────────────────────── */
.page-top { padding-top: calc(70px + 60px); }

/* ── Pagination ──────────────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border-radius: 7px; font-size: .87rem; font-family: inherit;
  border: 1px solid rgba(201,168,76,.2); background: transparent;
  color: var(--gray); cursor: pointer; transition: var(--transition);
}
.page-btn:hover:not([disabled]) { border-color: var(--gold); color: var(--gold); }
.page-btn--active { background: var(--gold) !important; color: var(--navy) !important; border-color: var(--gold) !important; font-weight: 700; }
.page-btn[disabled] { opacity: .35; cursor: default; }
.page-ellipsis { display: inline-flex; align-items: center; justify-content: center; min-width: 38px; height: 38px; color: var(--gray); font-size: .87rem; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ebay-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about__grid   { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .cats-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .ebay-grid     { grid-template-columns: repeat(2, 1fr); }
  .news-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats__grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero__inner   { grid-template-columns: 1fr; }
  .hero__visual  { display: none; }
}
@media (max-width: 660px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    border-bottom: 1px solid rgba(201,168,76,.1);
    padding: 16px;
    gap: 4px;
  }
  .nav__hamburger { display: flex; }
  .ebay-grid     { grid-template-columns: 1fr; }
  .cats-grid     { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .news-grid     { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .footer__grid  { grid-template-columns: 1fr; }
  .hero__ctas    { flex-direction: column; }
  .listings-header { flex-direction: column; align-items: flex-start; }
}
