:root {
  --yellow: #FFD400;
  --yellow-soft: rgba(255, 212, 0, 0.14);
  --bg: #050505;
  --bg-2: #0c0c0c;
  --card: #111111;
  --card-2: #161616;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.68);
  --muted-2: rgba(255,255,255,0.45);
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 40px rgba(0,0,0,0.35);
  --radius: 24px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body.shopBody {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255,212,0,0.12), transparent 35%),
    linear-gradient(180deg, #060606 0%, #030303 100%);
  color: var(--text);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(5,5,5,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbarInner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brandEyebrow {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 2px;
}

.brandTitle {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.topLink {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 42px 0 24px;
}

.heroInner {
  position: relative;
}

.heroContent {
  background:
    linear-gradient(135deg, rgba(255,212,0,0.12), rgba(255,255,255,0.02)),
    #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.heroContent::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,212,0,0.18), transparent 70%);
  pointer-events: none;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 700px;
}

.hero p {
  margin: 14px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* SECTION */
.shopMain {
  padding-bottom: 56px;
}

.sectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0 18px;
}

.sectionKicker {
  display: inline-block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.sectionHead h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* GRID */
.productGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* CARD */
.productCard {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.productCard:hover {
  transform: translateY(-4px);
  border-color: rgba(255,212,0,0.22);
  box-shadow: 0 18px 50px rgba(0,0,0,0.42);
}

.productMedia {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  background: #131313;
  overflow: hidden;
}

.productImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.productCard:hover .productImage {
  transform: scale(1.04);
}

.imageOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}

.productInfo {
  padding: 16px;
}

.productTop {
  min-height: 24px;
  margin-bottom: 8px;
}

.productBadge {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 7px 11px;
  border-radius: 999px;
}

.productInfo h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.productDesc {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  min-height: 42px;
}

.productBottom {
  display: grid;
  gap: 14px;
}

.priceBlock {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.productPrice {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.productSubprice {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.buyBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: 100%;
  border-radius: 14px;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  box-shadow: 0 10px 24px rgba(255,212,0,0.18);
}

.buyBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255,212,0,0.22);
}

/* EMPTY / LOADING */
.emptyState {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 20px;
  text-align: center;
}

.emptyState h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.emptyState p {
  margin: 0;
  color: var(--muted);
}

.loadingCards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.loadingCard {
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(90deg, #121212 0%, #1a1a1a 50%, #121212 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
  border: 1px solid var(--border);
}

.productLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

.productGallery {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
}

.mainImage {
  width: 100%;
  height: auto;
}

.productDetails {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.productDetails h1 {
  font-size: 28px;
}

.priceBlock {
  display: flex;
  flex-direction: column;
}

.price {
  font-size: 32px;
  font-weight: 900;
}

.memberPrice {
  font-size: 14px;
  color: #aaa;
}

.selectors select {
  padding: 12px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  border: 1px solid #333;
}

.buyBigBtn {
  background: #FFD400;
  color: #000;
  font-weight: 900;
  padding: 18px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
}

@media (min-width: 900px) {
  .productLayout {
    grid-template-columns: 1fr 1fr;
  }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* TABLET */
@media (min-width: 700px) {
  .hero {
    padding: 54px 0 26px;
  }

  .heroContent {
    padding: 38px 34px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
  }

  .productGrid,
  .loadingCards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .productBottom {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .buyBtn {
    width: auto;
    min-width: 144px;
    padding: 0 22px;
  }
}

/* DESKTOP */
@media (min-width: 1100px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbarInner {
    min-height: 78px;
  }

  .brandTitle {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 64px;
    max-width: 820px;
  }

  .hero p {
    max-width: 700px;
  }

  .sectionHead h2 {
    font-size: 32px;
  }

  .productGrid,
  .loadingCards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }
}