/* ============================================
   BLEND BAR — Merchandise Page Styles
   ============================================ */

/* ---------- Merchandise Hero ---------- */
.merch-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: var(--nav-height) var(--space-lg) var(--space-3xl);
}

.merch-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(8, 8, 8, 0.82);
  overflow: hidden;
}

.merch-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 55%, rgba(61,43,31,0.2) 0%, transparent 65%),
              radial-gradient(ellipse at 40% 60%, rgba(201,169,110,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 40%, rgba(168,136,79,0.04) 0%, transparent 50%);
  z-index: 1;
}

.merch-hero-smoke {
  position: absolute;
  inset: -20%;
  z-index: 2;
}

.merch-hero-smoke .smoke-layer:nth-child(1) {
  position: absolute;
  width: 550px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.05), transparent 70%);
  left: 15%;
  top: 25%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: smokeFloat 24s ease-in-out infinite;
}

.merch-hero-smoke .smoke-layer:nth-child(2) {
  position: absolute;
  width: 500px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.04), transparent 70%);
  right: 10%;
  top: 30%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: smokeFloat 28s ease-in-out infinite;
  animation-delay: -8s;
}

.merch-hero-smoke .smoke-layer:nth-child(3) {
  position: absolute;
  width: 600px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(245,240,232,0.02), transparent 70%);
  left: 30%;
  bottom: 10%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: smokeFloat 30s ease-in-out infinite;
  animation-delay: -15s;
}

.merch-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: radial-gradient(ellipse at center, transparent 25%, var(--color-black) 100%);
}

.merch-hero-content {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  text-align: center;
  max-width: 780px;
}

.merch-hero-content h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-regular);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--ls-tight);
}

.merch-hero-content .subtext {
  margin: 0 auto var(--space-md);
  font-size: var(--fs-base);
  max-width: 640px;
}

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.product-card.glass-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.product-card.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.25);
}

.product-image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(61,43,31,0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  position: relative;
  overflow: hidden;
}

.product-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(201,169,110,0.06), transparent 70%);
}

.merch-blend-branded {
  background: linear-gradient(135deg, rgba(61,43,31,0.2) 0%, rgba(26,26,26,0.9) 100%);
}

.product-placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.3;
  position: relative;
  z-index: 1;
}

.product-info {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-sm);
}

.product-info p {
  font-size: var(--fs-sm);
  color: var(--color-gray-light);
  line-height: var(--lh-relaxed);
  flex: 1;
}

.product-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  color: var(--color-gold);
  margin-top: var(--space-md);
}

/* ---------- Gift Cards ---------- */
.merch-gift-section {
  overflow: hidden;
}

.gift-card-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.gift-card-visual.glass-card {
  padding: var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-visual-inner {
  width: 100%;
  max-width: 380px;
}

.gift-card-mock {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--color-leather) 0%, var(--color-charcoal) 60%, rgba(201,169,110,0.15) 100%);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.gift-card-mock::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,169,110,0.08) 0%, transparent 50%);
}

.gift-card-logo {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-medium);
  color: var(--color-gold);
  position: relative;
  z-index: 1;
}

.gift-card-label {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-cream);
  margin-top: var(--space-xs);
  position: relative;
  z-index: 1;
}

.gift-card-subtext {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  color: var(--color-gray);
  letter-spacing: var(--ls-wider);
  margin-top: var(--space-xs);
  position: relative;
  z-index: 1;
}

.gift-card-content h2 {
  margin-bottom: var(--space-md);
}

.gift-card-content p {
  font-size: var(--fs-md);
  color: var(--color-gray-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.gift-ctas {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* ---------- Bottom CTA ---------- */
.merch-bottom-cta {
  text-align: center;
}

.merch-cta-content {
  max-width: 650px;
  margin: 0 auto;
}

.merch-cta-content h2 {
  margin-bottom: var(--space-md);
}

.merch-cta-content > p {
  font-size: var(--fs-md);
  color: var(--color-gray-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
}

.merch-cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .merch-hero {
    min-height: 90vh;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gift-card-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .gift-card-visual.glass-card {
    padding: var(--space-2xl);
  }

  .gift-ctas {
    flex-direction: column;
  }

  .merch-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
