/* ==============================================================
   HOME.CSS — Homepage styling only.
   Hero, trust bar, process, auctions, categories, advantage,
   stats, winners, testimonials, FAQ, CTA, footer, effects.
   ============================================================== */

/* ---------- Minimal Bootstrap-carousel-equivalent mechanics ----------
   Structural only (position/visibility/transition) — provided so the
   hero carousel renders and animates correctly even on a page where
   bootstrap.css isn't linked. Harmless/redundant if it is: identical
   selectors, same computed behaviour. */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
}

.carousel-item.active {
  display: block;
}

.carousel-fade .carousel-item {
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  float: none;
  margin-right: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10%;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0 15% var(--space-4);
  list-style: none;
}

.carousel-indicators [data-bs-target] {
  box-sizing: border-box;
  cursor: pointer;
  padding: 0;
}

/* ==============================================================
   HERO — Premium Bootstrap Carousel
   Only the carousel cross-fade transitions. No blobs, no floating
   card, no infinite keyframes, no typing effect — everything inside
   a slide is fully static to avoid layout shift and heavy rendering.
   Uses standard Bootstrap 5 carousel classes (.carousel, .carousel-item,
   .carousel-fade, .carousel-indicators, .carousel-control-prev/next)
   driven by data-bs-* attributes; this file only supplies the premium
   visual layer on top of that structural behaviour.
   ============================================================== */
.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-carousel .carousel-item {
  min-height: 0;
}

.hero-slide {
  /* padding-block: clamp(var(--space-9), 8vw, var(--space-11)); */
}

/* ---------- Slide background themes ---------- */
.hero-slide--gold-white {
  background: linear-gradient(135deg, #FFFFFF 0%, #FCF6E9 45%, #F0DBAA 100%);
}

.hero-slide--gold-black {
  background: linear-gradient(135deg, #1B1706 0%, #111111 55%, #050504 100%);
}

.hero-slide--green-white {
  background: linear-gradient(135deg, #FFFFFF 0%, #EAF8F0 45%, #CFEFDC 100%);
}

.hero-slide--dark {
  background: linear-gradient(135deg, #17170F 0%, #0D0D0B 55%, #050504 100%);
}

.hero-slide--beige {
  background: linear-gradient(135deg, #FDFCFA 0%, #F5EEDD 50%, #EBDFC1 100%);
}

/* Light text on the two dark-themed slides */
.hero-slide--gold-black .hero-slide-copy,
.hero-slide--dark .hero-slide-copy {
  color: var(--color-text-on-dark-soft);
}

.hero-slide--gold-black h1,
.hero-slide--dark h1 {
  color: var(--color-text-on-dark);
}

.hero-slide--gold-black .lede,
.hero-slide--dark .lede {
  color: var(--color-text-on-dark-soft);
}

.hero-slide--gold-black .hero-stat-card,
.hero-slide--dark .hero-stat-card {
  background: rgba(246, 244, 238, 0.06);
  border-color: rgba(246, 244, 238, 0.12);
}

.hero-slide--gold-black .hero-stat-card span,
.hero-slide--dark .hero-stat-card span {
  color: var(--color-text-on-dark-soft);
}

.hero-slide--gold-black .hero-chip,
.hero-slide--dark .hero-chip {
  background: rgba(246, 244, 238, 0.08);
  border-color: rgba(246, 244, 238, 0.16);
  color: var(--color-text-on-dark);
}

.hero-slide-row {
  min-height: 480px;
}

/* Grid fallback — mirrors Bootstrap's .row/.col-lg-6/.col-md-6/.col-12
   behaviour so the two-column layout holds even if bootstrap.css isn't
   linked on this page; harmless/redundant if it is. */
.hero-carousel .row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.hero-carousel .col-lg-6,
.hero-carousel .col-md-6,
.hero-carousel .col-12 {
  width: 100%;
  padding-inline: 12px;
}

@media (min-width: 768px) {
  .hero-carousel .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .hero-carousel .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ---------- Left column: copy ---------- */
.hero-slide-copy h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-5);
}

.hero-slide-copy .lede {
  font-size: var(--fs-lead);
  max-width: 480px;
  margin-bottom: var(--space-6);
}

.hero-badge {
  margin-bottom: var(--space-4);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

/* ---------- Statistics cards ---------- */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  max-width: 520px;
  margin-bottom: var(--space-6);
}

.hero-stat-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-2);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.hero-stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-gold-700);
}

.hero-slide--gold-white .hero-stat-card strong,
.hero-slide--green-white .hero-stat-card strong,
.hero-slide--beige .hero-stat-card strong {
  color: var(--color-gold-700);
}

.hero-stat-card span {
  font-size: 0.68rem;
  color: var(--color-text-muted);
  line-height: 1.25;
}

/* ---------- Category chips ---------- */
.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-text-soft);
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.85rem;
}

/* ---------- Right column: product showcase ---------- */
.hero-slide-media {
  position: relative;
}

.hero-product-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #101010;
}

.hero-product-card img {
  width: 100%;
  /* aspect-ratio: 4/4.2; */
  object-fit: cover;
  display: block;
}

.hero-product-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 3;
}

.hero-product-timer {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  z-index: 3;
  background: rgba(13, 13, 11, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 8px 12px;
  text-align: center;
}

.hero-timer-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.hero-timer-digits {
  display: flex;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
}

.hero-timer-digits div span {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.hero-product-info {
  position: absolute;
  left: var(--space-4);
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: 3;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.hero-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.hero-price-row .lbl {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.hero-slide--dark .hero-price-row .lbl {
  color: var(--color-text-on-dark-soft);
}

.hero-price-row .price {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
}

.hero-price-row .buy {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.hero-slide--dark .hero-price-row .buy {
  color: var(--color-text-on-dark-soft);
}

.hero-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border-soft);
}

.hero-slide--dark .hero-product-meta {
  border-top-color: rgba(246, 244, 238, 0.12);
}

.hero-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-green-700);
}

.hero-slide--dark .hero-verified {
  color: var(--color-green-300);
}

.hero-instant-buy {
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-blue-700);
}

.hero-slide--dark .hero-instant-buy {
  color: var(--color-blue-300);
}

/* ---------- Carousel controls (Bootstrap structural, gold styling) ---------- */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 1;
}

.hero-carousel .carousel-control-prev {
  left: var(--space-6);
}

.hero-carousel .carousel-control-next {
  right: var(--space-6);
}

.hero-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  color: var(--color-gold-700);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.hero-carousel .carousel-control-prev:hover .hero-arrow,
.hero-carousel .carousel-control-next:hover .hero-arrow {
  transform: scale(1.08);
  box-shadow: var(--shadow-md);
}

.hero-carousel .carousel-indicators {
  bottom: var(--space-5);
  gap: 6px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold-300);
  opacity: 0.5;
  border: 0;
  transition: width var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}

.hero-carousel .carousel-indicators .active {
  width: 22px;
  border-radius: var(--radius-pill);
  background: var(--gradient-gold);
  opacity: 1;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  padding-block: var(--space-8);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

/* .trust-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.trust-card .ic {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold-50);
  color: var(--color-gold-700);
}

.trust-card h3 {
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.trust-card p {
  font-size: var(--fs-sm);
  margin: 0;
}

.trust-card:hover {
  background: linear-gradient(180deg, #E7A61A 0%, #B97809 100%);
  border-color: linear-gradient(180deg, #E7A61A 0%, #B97809 100%);
  color: #fff !important;
}

.trust-card.is-dark:hover {
  background: linear-gradient(180deg, #E7A61A 0%, #B97809 100%);
  border-color: #B97809;
  color: #fff;
}

.trust-card,
.trust-card h3,
.trust-card p,
.trust-card .ic {
  transition: .35s ease;
}

.trust-card.is-dark .ic {
  background: rgba(199, 154, 69, 0.15);

  color: var(--color-gold-300);
}

.trust-card.is-dark h3,
.trust-card.is-dark p {
  color: #000000;
}

.trust-card:hover h3,
.trust-card:hover p {
  color: #fff;
}

.trust-card.is-dark p {
  color: var(--color-text-on-dark-soft);
} */

.trust-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  align-items: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all .35s ease;
  color: #000000;
  /* background: linear-gradient(180deg, #E7A61A 0%, #B97809 100%); */
  background: #f1f8f2;
}

.trust-card .ic {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #000;
  color: #ffffff;
  /* background: #FDF4E3;
  color: #B97809; */
  transition: .35s;
}

.trust-card h3,
.trust-card p {
  transition: .35s;
  color: #000;
  /* color: #fff; */
  /* color: #d09213; */
  align-items: center;
  text-align: center;
}

.trust-card:hover {
  background: linear-gradient(180deg, #E7A61A 0%, #B97809 100%);
  /* border-color: #B97809; */
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.trust-card:hover h3,
.trust-card:hover p {
  color: #fff;
}

.trust-card:hover .ic {
  background: #fff;
  color: #B97809;
}

/* ---------- HOW IT WORKS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: var(--space-6) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: left;
  background: whitesmoke;
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  /* color: var(--color-gold-100); */
  color: #ca8e13;
  -webkit-text-stroke: 1.5px var(--color-gold);
  display: block;
  margin-bottom: var(--space-3);
}

.step-card h3 {
  font-size: 1.05rem;
}

.step-card p {
  font-size: var(--fs-sm);
  margin: 0;
}

.step-arrow {
  display: none;
}

/* ---------- Swiper fallback ----------
   Baseline layout for .swiper-wrapper / .swiper-slide that applies even
   before Swiper's JS runs (or if the CDN fails). Without this, an
   un-initialized Swiper falls back to plain block <div>s, which stack
   full-width, one per row. Swiper's own JS overrides these with inline
   styles (translate3d, computed widths) once it initializes — this is
   purely a safety net so the raw markup is never fully unstyled. */
.swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.swiper .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper .swiper-slide {
  flex: 0 0 auto;
  width: min(320px, 84vw);
  height: auto;
}

@media (min-width: 992px) {
  .auction-swiper .swiper-slide {
    width: calc((100% - 3 * 22px) / 4);
  }

  .winners-swiper .swiper-slide {
    width: calc((100% - 3 * 18px) / 4);
    background-color: whitesmoke;
  }

  .testimonial-swiper .swiper-slide {
    width: calc((100% - 2 * 24px) / 3);
  }
}

/* ---------- AUCTION CARDS (trending Swiper carousel) ---------- */
.auction-swiper {
  overflow: visible;
  padding-bottom: var(--space-9);
}

.auction-swiper .swiper-wrapper {
  align-items: stretch;
}

.auction-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.auction-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--gradient-gold);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
  z-index: 5;
}

.auction-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-lg), var(--shadow-gold-glow);
}

.auction-card:hover::before {
  opacity: 1;
}

.auction-ribbon {
  position: absolute;
  top: 14px;
  left: -34px;
  z-index: 6;
  width: 140px;
  text-align: center;
  transform: rotate(-45deg);
  background: var(--gradient-gold);
  color: #221802;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0;
  box-shadow: 0 4px 10px rgba(199, 154, 69, 0.35);
}

.auction-media {
  position: relative;
  aspect-ratio: 1/0.92;
  overflow: hidden;
}

.auction-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.auction-card:hover .auction-media img {
  transform: scale(1.08);
}

.auction-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  z-index: 3;
}

.wishlist-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-soft);
  transition: all var(--dur-fast) var(--ease-out);
}

.wishlist-btn.is-active {
  color: #C7213A;
}

.wishlist-btn.is-active svg {
  fill: #C7213A;
}

.wishlist-btn:hover {
  transform: scale(1.15) rotate(-6deg);
}

.auction-timer {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(13, 13, 11, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
}

.auction-timer .cd-h,
.auction-timer .cd-m,
.auction-timer .cd-s {
  color: var(--color-gold-300);
}

.auction-watching {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-text-soft);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: var(--radius-pill);
}

.auction-watching .watch-count {
  color: var(--color-text);
  font-weight: 800;
}

.auction-body {
  padding: var(--space-4);
  position: relative;
  z-index: 2;
}

.auction-body h3 {
  font-size: 0.98rem;
  margin-bottom: var(--space-3);
}

.auction-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.auction-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-3);
}

.auction-price-row .lbl {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  display: block;
}

.auction-price-row .price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-green-700);
}

.auction-price-row .buy {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-text-soft);
  text-decoration: line-through;
  text-decoration-color: var(--color-text-muted);
}

.bid-progress {
  height: 7px;
  border-radius: var(--radius-pill);
  background: var(--color-border-soft);
  overflow: hidden;
  margin-bottom: var(--space-4);
  position: relative;
}

.bid-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: var(--radius-pill);
  background: var(--gradient-green);
  transition: width 1.1s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.bid-progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: progressShine 2.2s ease-in-out infinite;
}

@keyframes progressShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.auction-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.auction-btn-row .btn {
  padding-inline: 0.6rem;
}

.rail-nav {
  display: flex;
  gap: 10px;
}

/* ---------- UPCOMING AUCTIONS ---------- */
.upcoming-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.upcoming-thumb {
  position: relative;
  aspect-ratio: 16/9;
}

.upcoming-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upcoming-thumb .badge-pill {
  position: absolute;
  top: 8px;
  left: 8px;
}

.upcoming-info {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.upcoming-info h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.upcoming-info .bid-start {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}

.upcoming-info .bid-start strong {
  color: var(--color-text);
}

.upcoming-countdown {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--color-blue-700);
  background: var(--color-blue-50);
  border: 1px solid rgba(36, 84, 184, 0.16);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.upcoming-info .js-remind {
  margin-top: auto;
}

/* ---------- APP BANNER ---------- */
.app-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #0D0D0B 0%, #1C1607 120%);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: var(--space-9) var(--space-9);
  box-shadow: var(--shadow-lg);
}

.app-banner::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 154, 69, 0.28), transparent 70%);
  top: -140px;
  right: -80px;
}

.app-banner-copy h2,
.app-banner-copy p {
  color: var(--color-text-on-dark);
}

.app-banner-copy p {
  color: var(--color-text-on-dark-soft);
  max-width: 420px;
}

.app-store-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.qr-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-on-dark-soft);
  font-size: var(--fs-xs);
}

.qr-chip .qr-box {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}

.app-banner-visual {
  position: relative;
}

.app-banner-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-4deg);
}

/* ---------- CATEGORY GRID ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/0.85;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 13, 11, 0.82), rgba(13, 13, 11, 0.05) 55%);
}

.category-copy {
  position: relative;
  z-index: 2;
  padding: var(--space-4);
  color: #fff;
}

.category-copy strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  display: block;
}

.category-copy span {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.75);
}

/* ---------- PREMIUM ADVANTAGE ---------- */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.advantage-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-4);
}

.advantage-card .ic {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-green-50);
  color: #de9d17;
  /* color: var(--color-green-700); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.advantage-card p {
  font-size: var(--fs-sm);
  margin: 0;
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--color-ink);
  padding-block: var(--space-8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item+.stat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(246, 244, 238, 0.12);
}

.stat-item .ic {
  color: var(--color-gold-300);
  margin-bottom: var(--space-3);
}

.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.3rem + 1vw, 2.3rem);
  color: var(--color-text-on-dark);
}

.stat-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-on-dark-soft);
}

/* ---------- WINNERS (Swiper) ---------- */
.winners-swiper {
  padding-bottom: var(--space-8);
}

.winner-card {
  position: relative;
  padding: var(--space-6) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  background: var(--color-surface);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  height: auto;
}

.winner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold-100);
}

.winner-badge {
  position: absolute;
  top: 14px;
  right: 14px;
}

.winner-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--space-3);
  border: 3px solid var(--color-gold-100);
}

.winner-card h3 {
  font-size: 0.98rem;
  margin-bottom: 2px;
  margin-top: 30px;
}

.winner-card .loc {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.winner-card .won {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}

.winner-card .price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-green-700);
  font-size: 1.05rem;
}

/* ---------- TESTIMONIALS (Swiper) ---------- */
.testimonial-swiper {
  padding-bottom: var(--space-8);
}

.testimonial-card {
  position: relative;
  padding: var(--space-7) var(--space-6) var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  height: auto;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.quote-icon {
  position: absolute;
  top: var(--space-4);
  right: var(--space-5);
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--color-gold-100);
  font-weight: 800;
  z-index: 0;
}

.stars {
  color: var(--color-gold);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.94rem;
  position: relative;
  z-index: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--space-4);
  position: relative;
  z-index: 1;
}

.reviewer img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer strong {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  display: block;
}

.reviewer span {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

/* ---------- Swiper theming (auctions / winners / testimonials) ---------- */
.auction-swiper .swiper-pagination,
.winners-swiper .swiper-pagination,
.testimonial-swiper .swiper-pagination {
  bottom: 0;
}

.swiper-pagination-bullet {
  background: var(--color-border);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all var(--dur-fast) var(--ease-out);
}

.swiper-pagination-bullet-active {
  background: var(--gradient-gold);
  width: 22px;
  border-radius: var(--radius-pill);
}

/* ---------- FAQ (accordion) ---------- */
.faq-list {
  max-width: var(--container-narrow);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--color-text);
}

.faq-q .plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  position: relative;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease-out);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--color-text);
  top: 50%;
  left: 50%;
}

.faq-q .plus::before {
  width: 9px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-q .plus::after {
  width: 1.5px;
  height: 9px;
  transform: translate(-50%, -50%);
  transition: opacity var(--dur-fast);
}

.faq-item.is-open .plus {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.faq-item.is-open .plus::before,
.faq-item.is-open .plus::after {
  background: #221802;
}

.faq-item.is-open .plus::after {
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-out);
}

.faq-a-inner {
  padding: 0 var(--space-5) var(--space-5);
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}

/* ---------- Newsletter / final CTA within footer ---------- */
.footer-cta {
  display: flex;
  gap: var(--space-3);
}

.footer-cta input {
  flex: 1;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(246, 244, 238, 0.18);
  background: rgba(246, 244, 238, 0.06);
  color: var(--color-text-on-dark);
  outline: none;
  font-size: var(--fs-sm);
}

.footer-cta input::placeholder {
  color: var(--color-text-on-dark-soft);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--color-ink);
  color: var(--color-text-on-dark-soft);
  padding-top: var(--space-9);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
}

.footer-brand p {
  color: var(--color-text-on-dark-soft);
  font-size: var(--fs-sm);
  max-width: 280px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-3);
}

.footer-badges span {
  font-size: 0.7rem;
  border: 1px solid rgba(246, 244, 238, 0.16);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.footer-col h4 {
  color: var(--color-text-on-dark);
  font-size: 0.9rem;
  margin-bottom: var(--space-4);
  font-family: var(--font-heading);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: var(--fs-sm);
  color: var(--color-text-on-dark-soft);
  transition: color var(--dur-fast);
}

.footer-col a:hover {
  color: var(--color-gold-300);
}

.footer-contact li {
  font-size: var(--fs-sm);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: var(--space-4);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(246, 244, 238, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
}

.footer-social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: #221802;
}

.footer-bottom {
  border-top: 1px solid rgba(246, 244, 238, 0.1);
  padding-block: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-5);
}

/*==========================================
            FOOTER BRAND
==========================================*/

.footer-brand-logo {

  display: flex;

  align-items: center;

  gap: 14px;

  text-decoration: none;

  margin-bottom: 22px;

}

.footer-logo {

  width: 54px;

  height: 54px;

  object-fit: contain;

  flex-shrink: 0;

  transition: .35s ease;

}

.footer-brand-logo:hover .footer-logo {

  transform: scale(1.08);

}

.footer-brand-content {

  display: flex;

  flex-direction: column;

}

.footer-brand-title {

  font-family: var(--font-heading);

  font-size: 28px;

  font-weight: 800;

  color: #ffffff;

  line-height: 1;

}

.footer-brand-tag {

  margin-top: 4px;

  font-size: 10px;

  letter-spacing: 2px;

  text-transform: uppercase;

  color: rgba(255, 255, 255, .55);

}

/* ---------- Theme switch (light / dark toggle) ---------- */
.theme-switch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

body.dark-mode {
  background: var(--dark-bg);
  color: var(--dark-text);
}

body.dark-mode .site-header {
  background: rgba(13, 13, 11, 0.85);
  border-color: var(--dark-border);
}

body.dark-mode .card,
body.dark-mode .trust-card,
body.dark-mode .step-card,
body.dark-mode .advantage-card,
body.dark-mode .winner-card,
body.dark-mode .testimonial-card,
body.dark-mode .faq-item,
body.dark-mode .auction-card,
body.dark-mode .upcoming-card {
  background: var(--dark-surface);
  border-color: var(--dark-border);
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode .brand,
body.dark-mode .auction-price-row .buy,
body.dark-mode .faq-q {
  color: var(--dark-text);
}

body.dark-mode p,
body.dark-mode .nav-links>li>a {
  color: var(--dark-text-soft);
}

body.dark-mode .hero-carousel,
body.dark-mode .stats-strip {
  background: var(--dark-surface);
}

@media (max-width:991px) {

  .footer-logo {

    width: 46px;
    height: 46px;

  }

  .footer-brand-title {

    font-size: 24px;

  }

  .footer-brand-tag {

    font-size: 9px;

  }

}

@media (max-width:768px) {

  .footer-brand-logo {

    justify-content: center;

  }

  .footer-brand-content {

    align-items: center;

  }

  .footer-logo {

    width: 42px;
    height: 42px;

  }

  .footer-brand-title {

    font-size: 22px;

  }

  .footer-brand-tag {

    font-size: 8px;

    letter-spacing: 1px;

    text-align: center;

  }

}