/* ============================
   PAWNED — styles.css
   Dark luxury streetwear
============================ */

/* --- RESET & ROOT VARS --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #050505;
  --black-2:   #0d0d0d;
  --black-3:   #141414;
  --black-4:   #1c1c1c;
  --gold:      #c9a84c;
  --gold-light:#e8c878;
  --gold-dim:  #7a6125;
  --red:       #6b1a1a;
  --red-bright:#9b2222;
  --white:     #f5f5f0;
  --grey:      #888880;
  --grey-dark: #333330;

  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;

  --transition:      0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; width: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- KEYFRAMES --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(5,5,5,0.15);
  backdrop-filter: blur(4px);
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(5,5,5,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--white);
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
}
.nav-logo span { pointer-events: none; }
.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--grey);
  transition: color var(--transition), font-weight var(--transition);
  position: relative;
  display: inline-block;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--gold); font-weight: 700; }
.nav-link:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.icon-btn {
  position: relative;
  color: var(--grey);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  cursor: pointer;
}
.icon-btn:hover { color: var(--gold); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.55rem;
  font-weight: 700;
  width: 14px; height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.cart-count.visible { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1200;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--white);
  transition: var(--transition);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%; height: 100%;
  background: var(--black);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.5rem;
  color: var(--grey);
  transition: color var(--transition);
  cursor: pointer;
  z-index: 1200;
}
.mobile-close:hover { color: var(--gold); }
.mobile-bottom { position: absolute; bottom: 3rem; }
.chess-quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-dim);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .nav { padding: 0 1.2rem; }
}

/* ── 912 × 1368 TABLET BREAKPOINT ── */
@media (min-width: 901px) and (max-width: 1024px) {
  .nav-links { gap: 1.75rem; }
  .hero-content { padding: 2rem 2rem 3rem; }
  .hero-title { font-size: clamp(3rem, 6vw, 5rem); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .product-detail { padding: 7rem 1.5rem 4rem; gap: 3rem; }
  .brand-strip-inner { padding: 4rem 1.5rem; gap: 2.5rem; }
  .footer-top { gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .cart-drawer { width: 380px; }
}

@media (min-width: 768px) and (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .product-detail { grid-template-columns: 1fr; gap: 2.5rem; padding: 6rem 1.5rem 4rem; }
  .brand-strip-inner { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 2rem 1.75rem 3rem; }
}

/* --- HERO --- */
.hero { min-height: 100vh; position: relative; overflow: hidden; }
.hero-split { display: flex; min-height: 100vh; }
.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  flex: 1;
  transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.hero-split:hover .hero-panel { flex: 0.25; }
.hero-split:hover .hero-panel:hover { flex: 0.75; }

.hero-img-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.hero-panel:hover .hero-img-wrap img { transform: scale(1.03); }

.hero-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.30) 100%);
  z-index: 1;
}
.hero-panel--left::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.35), transparent);
  z-index: 3;
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 2rem;
  transition: opacity 0.4s ease;
}
.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s 0.6s forwards;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.06em;
  color: var(--white);
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
  white-space: nowrap;
}
.hero-title--italic { font-style: italic; font-weight: 300; }
.hero-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--grey);
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}
.hero-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--black);
  background: var(--gold);
  padding: 0.75rem 1.75rem;
  transition: background var(--transition);
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}
.hero-cta:hover { background: var(--gold-light); }
.hero-split:hover .hero-panel:not(:hover) .hero-content { opacity: 0.3; }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--grey);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@media (max-width: 700px) {
  .hero-split { flex-direction: column; }
  .hero-panel { min-height: 50vh; flex: 1 !important; }
  .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); padding: 1.5rem; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); white-space: normal; }
  .scroll-hint { display: none; }
}

/* --- TICKER --- */
.ticker-wrap {
  overflow: hidden;
  background: var(--gold);
  padding: 0.75rem 0;
  white-space: nowrap;
}
.ticker {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--black);
}
.ticker-sep { opacity: 0.5; }

/* --- MANIFESTO --- */
.manifesto {
  position: relative;
  padding: 8rem 2rem;
  overflow: hidden;
  background: var(--black-2);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.manifesto-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 2rem;
}
.manifesto-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 2rem;
}
.manifesto-heading .line { display: block; }
.manifesto-heading .line--italic { font-style: italic; color: var(--gold); }
.manifesto-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(245,245,240,0.65);
  max-width: 580px;
  margin: 0 auto 2.5rem;
}
.manifesto-divider { font-size: 2rem; color: var(--gold); opacity: 0.6; }

@media (max-width: 600px) { .manifesto { padding: 5rem 1.5rem; } }

/* --- GALLERY --- */
.gallery-section { background: var(--black-3); padding: 5rem 2rem; }
.gallery-section .section-label {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 3rem;
}
.gallery-grid {
  display: grid;
  max-width: 1200px;
  margin: 0 auto;
  gap: 0.5rem;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 260px 200px 260px;
}
.gallery-item:nth-child(1)  { grid-column: 1 / 3; grid-row: 1; }
.gallery-item:nth-child(2)  { grid-column: 3 / 5; grid-row: 1; }
.gallery-item:nth-child(3)  { grid-column: 5 / 7; grid-row: 1; }
.gallery-item:nth-child(4)  { grid-column: 1 / 2; grid-row: 2; }
.gallery-item:nth-child(5)  { grid-column: 2 / 4; grid-row: 2; }
.gallery-item:nth-child(6)  { grid-column: 4 / 6; grid-row: 2; }
.gallery-item:nth-child(7)  { grid-column: 6 / 7; grid-row: 2; }
.gallery-item:nth-child(8)  { grid-column: 1 / 3; grid-row: 3; }
.gallery-item:nth-child(9)  { grid-column: 3 / 4; grid-row: 3; }
.gallery-item:nth-child(10) { grid-column: 4 / 5; grid-row: 3; }
.gallery-item:nth-child(11) { grid-column: 5 / 6; grid-row: 3; }
.gallery-item:nth-child(12) { grid-column: 6 / 7; grid-row: 3; }

.gallery-item {
  overflow: hidden;
  background: var(--black-4);
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: grayscale(20%);
}
.gallery-item:hover img { transform: scale(1.06); filter: grayscale(0%); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #141414, #0d0d0d);
  gap: 0.5rem;
}
.gallery-placeholder span:first-child { font-size: 2rem; color: rgba(201,168,76,0.2); }
.gallery-placeholder span:last-child { font-size: 0.55rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.12); }

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 180px);
  }
  .gallery-item:nth-child(1)  { grid-column: 1 / 3; grid-row: 1; }
  .gallery-item:nth-child(2)  { grid-column: 3 / 4; grid-row: 1; }
  .gallery-item:nth-child(3)  { grid-column: 1 / 2; grid-row: 2; }
  .gallery-item:nth-child(4)  { grid-column: 2 / 4; grid-row: 2; }
  .gallery-item:nth-child(5)  { grid-column: 1 / 3; grid-row: 3; }
  .gallery-item:nth-child(6)  { grid-column: 3 / 4; grid-row: 3; }
  .gallery-item:nth-child(7)  { grid-column: 1 / 2; grid-row: 4; }
  .gallery-item:nth-child(8)  { grid-column: 2 / 3; grid-row: 4; }
  .gallery-item:nth-child(9)  { grid-column: 3 / 4; grid-row: 4; }
  .gallery-item:nth-child(10) { grid-column: 1 / 2; grid-row: 5; }
  .gallery-item:nth-child(11) { grid-column: 2 / 3; grid-row: 5; }
  .gallery-item:nth-child(12) { grid-column: 3 / 4; grid-row: 5; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(6, 160px); }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
}

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.page-hero-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 1rem;
}
.page-hero-title--italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6.5rem);
}
.page-hero-sub { font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--grey); }

/* --- COLLECTION --- */
.collection { padding: 5rem 2rem; max-width: 1440px; margin: 0 auto; }
.collection--alt { background: var(--black-2); max-width: 100%; padding: 5rem 2rem; }
.collection--alt .product-grid { max-width: 1440px; margin: 0 auto; }

/* --- FILTERS --- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 3rem; }
.filter-btn {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--grey);
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--grey-dark);
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn--active { color: var(--black); background: var(--gold); border-color: var(--gold); }

/* --- PRODUCT GRID --- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; } }
@media (max-width: 450px)  { .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; } }

.product-card { position: relative; cursor: pointer; }
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--black-3);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(145deg, #141414 0%, #0d0d0d 100%);
  transition: transform var(--transition-slow);
}
.product-placeholder--alt   { background: linear-gradient(145deg, #0d0d14 0%, #0a0a10 100%); }
.product-placeholder--queen { background: linear-gradient(145deg, #120d0d 0%, #0d0a0a 100%); }
.ph-icon { font-size: 2.5rem; color: rgba(201,168,76,0.2); transition: color var(--transition); }
.ph-text { font-size: 0.58rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.15); text-align: center; line-height: 1.5; }
.product-card:hover .product-placeholder { transform: scale(1.04); }
.product-card:hover .ph-icon { color: rgba(201,168,76,0.45); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.quick-add {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--black);
  background: var(--gold);
  padding: 0.65rem 1.5rem;
  transition: background var(--transition);
  cursor: pointer;
}
.quick-add:hover { background: var(--gold-light); }

.product-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: var(--gold);
  color: var(--black);
  padding: 0.25rem 0.6rem;
}
.product-badge--sold { background: var(--red-bright); color: var(--white); }

.product-info { padding: 1rem 0 0; }
.product-name { font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; margin-bottom: 0.4rem; }
.product-meta { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: var(--font-serif); font-size: 1rem; color: var(--gold); }
.product-swatches { display: flex; gap: 0.4rem; }
.swatch { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); cursor: pointer; }
.swatch.active     { border-color: var(--gold); }
.swatch--black     { background: #111; }
.swatch--gold      { background: var(--gold); }
.swatch--red       { background: var(--red-bright); }
.swatch--white     { background: var(--white); }
.swatch--burgundy  { background: #5a1a2a; }

/* --- BRAND STRIP --- */
.brand-strip { background: var(--black-3); overflow: hidden; }
.brand-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 2rem;
  align-items: center;
}
.brand-strip-eyebrow { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 1rem; }
.brand-strip-title { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; line-height: 1.15; }
.brand-strip-title em { font-style: italic; color: var(--gold); }
.brand-strip-right p { font-size: 0.9rem; line-height: 1.9; color: rgba(245,245,240,0.6); margin-bottom: 1rem; }
@media (max-width: 700px) { .brand-strip-inner { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.5rem; } }

/* --- PRODUCT DETAIL --- */
.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.product-detail-img { aspect-ratio: 4/5; background: var(--black-3); overflow: hidden; position: relative; }
.product-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(145deg, #141414, #0d0d0d);
}
.product-detail-eyebrow { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 0.75rem; }
.product-detail-name { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.06em; line-height: 1; margin-bottom: 0.5rem; }
.product-detail-price { font-family: var(--font-serif); font-size: 2rem; color: var(--gold); margin-bottom: 2rem; }
.product-detail-desc { font-size: 0.9rem; line-height: 1.9; color: rgba(245,245,240,0.65); margin-bottom: 2rem; }
.product-detail-meta { border-top: 1px solid var(--grey-dark); padding-top: 1.5rem; margin-bottom: 2rem; }
.product-detail-meta p { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--grey); margin-bottom: 0.5rem; }
.product-detail-meta strong { color: var(--white); }
.add-to-cart-btn {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--black);
  background: var(--gold);
  padding: 1.1rem;
  transition: background var(--transition);
  margin-bottom: 1rem;
  cursor: pointer;
}
.add-to-cart-btn:hover { background: var(--gold-light); }

@media (max-width: 800px) { .product-detail { grid-template-columns: 1fr; gap: 2.5rem; padding: 6rem 1.5rem 4rem; } }

/* --- CART DRAWER --- */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px; height: 100%;
  background: var(--black-2);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  border-left: 1px solid rgba(201,168,76,0.08);
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.visible { opacity: 1; pointer-events: all; }

.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; border-bottom: 1px solid var(--grey-dark); }
.cart-header h3 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.15em; }
.cart-close { color: var(--grey); font-size: 1.2rem; transition: color var(--transition); cursor: pointer; }
.cart-close:hover { color: var(--gold); }

.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1rem;
  color: var(--grey);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  text-align: center;
}
.cart-empty span { font-size: 2.5rem; }

.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--grey-dark); }
.cart-item-img {
  width: 70px; height: 88px;
  background: var(--black-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: rgba(201,168,76,0.3);
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.cart-item-price { font-family: var(--font-serif); color: var(--gold); margin-bottom: 0.5rem; }
.cart-item-qty { display: flex; align-items: center; gap: 0.75rem; }
.qty-btn { font-size: 1rem; color: var(--grey); width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; transition: color var(--transition); cursor: pointer; }
.qty-btn:hover { color: var(--gold); }
.qty-num { font-size: 0.8rem; min-width: 16px; text-align: center; }
.cart-item-remove { color: var(--grey); font-size: 0.75rem; align-self: flex-start; transition: color var(--transition); cursor: pointer; }
.cart-item-remove:hover { color: var(--red-bright); }

.cart-footer { padding: 1.5rem 2rem; border-top: 1px solid var(--grey-dark); }
.cart-total { display: flex; justify-content: space-between; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; margin-bottom: 1rem; }
.cart-total span:last-child { font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold); }
.checkout-btn {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--black);
  background: var(--gold);
  padding: 1rem;
  transition: background var(--transition);
  margin-bottom: 0.75rem;
  cursor: pointer;
}
.checkout-btn:hover { background: var(--gold-light); }

@media (max-width: 480px) { .cart-drawer { width: 100%; } }

/* --- MODALS --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal {
  background: var(--black-2);
  border: 1px solid var(--grey-dark);
  padding: 3rem;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal h2 { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.1em; margin-bottom: 2rem; color: var(--gold); }
.modal-close { position: absolute; top: 1.5rem; right: 1.5rem; color: var(--grey); font-size: 1.1rem; transition: color var(--transition); cursor: pointer; }
.modal-close:hover { color: var(--gold); }

.checkout-step { display: none; }
.checkout-step.active { display: block; }
.checkout-step h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.5rem; }
.form-input {
  display: block;
  width: 100%;
  background: var(--black-3);
  border: 1px solid var(--grey-dark);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--grey); }

.payment-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.payment-option { display: flex; align-items: center; gap: 0.75rem; font-size: 0.8rem; color: var(--grey); cursor: pointer; }
.payment-option input { accent-color: var(--gold); }
.bank-details { background: var(--black-3); border: 1px solid var(--grey-dark); padding: 1.25rem; }
.bank-title { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.75rem; }
.bank-row { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--grey); margin-bottom: 0.4rem; }
.bank-row span:last-child { color: var(--white); }

.checkout-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.checkout-next, .checkout-prev {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.85rem 2rem;
  transition: all var(--transition);
  cursor: pointer;
}
.checkout-next { background: var(--gold); color: var(--black); border: none; }
.checkout-next:hover { background: var(--gold-light); }
.checkout-prev { background: transparent; color: var(--grey); border: 1px solid var(--grey-dark); }
.checkout-prev:hover { color: var(--white); border-color: var(--white); }

.success-modal { text-align: center; }
.success-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.success-msg { color: var(--grey); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.7; }
.order-ref { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.5rem; }
.success-bank { margin-top: 1.5rem; }

/* --- CONTACT PAGE --- */
.contact-section { max-width: 760px; margin: 0 auto; padding: 8rem 2rem 5rem; }
.contact-section h2 { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 0.08em; color: var(--gold); margin-bottom: 1rem; }
.contact-section p { font-size: 0.9rem; line-height: 1.9; color: rgba(245,245,240,0.65); margin-bottom: 2rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; }
.contact-link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--grey-dark);
  transition: border-color var(--transition), background var(--transition);
  color: var(--white);
  text-decoration: none;
}
.contact-link-item:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.contact-link-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); min-width: 36px; }
.contact-link-text { font-size: 0.8rem; color: var(--grey); }

/* --- FOOTER --- */
.footer { background: var(--black-2); border-top: 1px solid rgba(201,168,76,0.1); }
.footer-top {
  max-width: 1440px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.12em; margin-bottom: 1.25rem; }
.footer-logo .logo-icon { color: var(--gold); }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1rem; color: var(--grey); line-height: 1.7; margin-bottom: 2rem; }
.footer-social-links { display: flex; gap: 1rem; }
.footer-social-link {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--grey);
  border: 1px solid var(--grey-dark);
  padding: 0.5rem 1rem;
  transition: all var(--transition);
}
.footer-social-link:hover { color: var(--black); background: var(--gold); border-color: var(--gold); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col h4 { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.25em; color: var(--white); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 0.75rem; color: var(--grey); margin-bottom: 0.65rem; letter-spacing: 0.06em; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-divider { max-width: 1440px; margin: 0 auto; height: 1px; background: rgba(201,168,76,0.08); }
.footer-bottom { max-width: 1440px; margin: 0 auto; padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.62rem; color: var(--grey-dark); letter-spacing: 0.1em; }
.footer-chess { font-size: 1.2rem; color: rgba(201,168,76,0.3); letter-spacing: 0.5rem; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 600px) {
  .modal { padding: 2rem 1.5rem; }
  .checkout-nav { flex-direction: column; gap: 0.75rem; }
  .checkout-next, .checkout-prev { width: 100%; text-align: center; }
}

/* coded by Jesus NK Kanku */
