/* ============================================
   DRIP DYNASTY — SHOP STYLES
   Brand: black / gold / red — Bebas Neue / Space Grotesk
   ============================================ */

/* ── NAV ───────────────────────────────────── */
.shop-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  backdrop-filter: blur(8px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--fg);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link-active {
  color: var(--gold);
}

/* ── SHOP HEADER ────────────────────────────── */
.shop-header {
  position: relative;
  padding: 6rem 2rem 5rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0d08 60%, #0a0a0a 100%);
  border-bottom: 1px solid rgba(212, 168, 67, 0.08);
}

.shop-header-inner {
  position: relative;
  z-index: 2;
}

.shop-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  margin: 0.5rem 0 1rem;
}

.shop-subtitle {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── PRODUCTS GRID ──────────────────────────── */
.shop-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  margin-bottom: 6rem;
  border: 1px solid rgba(212, 168, 67, 0.08);
}

/* ── PRODUCT CARD ───────────────────────────── */
.product-card {
  background: var(--bg-card);
  transition: background 0.25s ease;
}

.product-card:hover {
  background: #1a1a1a;
}

.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Image zone */
.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

/* Placeholder when no image yet */
.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(145deg, #111 0%, #0f0d08 100%);
}

.placeholder-diamond {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(212,168,67,0.15), rgba(196,58,58,0.1));
  transform: rotate(45deg);
  border: 1px solid rgba(212, 168, 67, 0.25);
  box-shadow: 0 0 60px rgba(212, 168, 67, 0.08), inset 0 0 30px rgba(212, 168, 67, 0.05);
}

.placeholder-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: rgba(212, 168, 67, 0.3);
}

/* Badge */
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.3rem 0.75rem;
  background: var(--gold);
  color: #0a0a0a;
}

/* Hover CTA overlay */
.product-card-hover-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(10,10,10,0.9) 0%, transparent 100%);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-card-hover-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Product info strip */
.product-info {
  padding: 1.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}

.product-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 0.4rem;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}

.product-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  transition: color 0.2s ease;
}

.product-card:hover .product-cta {
  color: var(--gold);
}

/* ── ABOUT STRIP ────────────────────────────── */
.about-strip {
  border-top: 1px solid rgba(212, 168, 67, 0.08);
  padding: 5rem 0;
}

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-strip-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}

.about-strip-line-right {
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

.about-strip-content { text-align: center; }

.about-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.about-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  margin: 0 auto 1.5rem;
}

.about-signoff {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

/* ── PRODUCT DETAIL PAGE ────────────────────── */
.breadcrumb {
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(212, 168, 67, 0.06);
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
}

.breadcrumb-link {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb-link:hover { color: var(--gold); }

.breadcrumb-sep { color: rgba(212,168,67,0.3); }

.breadcrumb-current { color: var(--fg); }

.product-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Media / image side */
.product-detail-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.1);
  overflow: hidden;
}

.product-detail-image {
  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: 2rem;
  background: linear-gradient(145deg, #111 0%, #0f0d08 100%);
  padding: 3rem;
}

.detail-diamond-wrap {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(212, 168, 67, 0.3));
}

.detail-placeholder-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-align: center;
}

.product-badge-detail {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}

/* Info side */
.product-detail-info { padding-top: 0.5rem; }

.detail-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}

.detail-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.detail-tagline {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail-price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold-bright);
  letter-spacing: 0.03em;
  line-height: 1;
}

.detail-stock {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #4ade80;
}

.detail-divider {
  height: 1px;
  background: rgba(212, 168, 67, 0.1);
  margin: 1.5rem 0;
}

.detail-description {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.9;
}

/* CTA section */
.detail-cta-section {
  margin: 1rem 0;
}

.detail-cta-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.btn-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gold);
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.btn-cta:hover {
  background: var(--gold-bright);
  box-shadow: 0 4px 24px rgba(212, 168, 67, 0.3);
}

.detail-cta-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}

/* Brand strip at bottom of product info */
.detail-brand-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 67, 0.08);
  margin-top: 1.5rem;
}

.detail-strip-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.detail-strip-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.detail-strip-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

/* ── MORE CTA ────────────────────────────────── */
.more-cta {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(212, 168, 67, 0.06);
  border-bottom: 1px solid rgba(212, 168, 67, 0.06);
}

.more-cta-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.more-cta-link:hover { color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .shop-nav {
    padding: 0.75rem 1rem;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  .nav-links {
    gap: 1.25rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .about-strip-inner {
    grid-template-columns: 1fr;
  }

  .about-strip-line {
    display: none;
  }

  .product-detail-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-detail-media {
    aspect-ratio: 1 / 1;
  }

  .shop-header {
    padding: 4rem 1rem 3rem;
  }
}
