/*
Theme Name: Obsidian Flow
Theme URI: https://louddigital.com
Author: Loud Digital Music Records LTD
Author URI: https://louddigital.com
Description: Premium minimalist theme for record labels and music artists. 1:1 parity with the Obsidian Flow React application.
Version: 3.8.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: obsidian-flow
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: music, portfolio, custom-logo, custom-menu, featured-images, theme-options
*/

/* ─── IMPORTS ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── CSS VARIABLES (matches React index.css) ─────────────── */
:root {
  --bg: #ffffff;
  --fg: #0d0d0d;
  --muted: #737373;
  --panel: #fafafa;
  --border: #ebebeb;
  --accent-red: hsl(4,85%,50%);
  --accent-yellow: hsl(43,95%,55%);
  --radius: 0;
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 80rem; /* 1280px */
  --px: 1.5rem;
}

/* ─── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
  font-weight: 400;
}

/* ─── CONTAINER ────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ─── SITE HEADER / NAV (matches React Navigation.tsx) ─────── */
.site-header {
  position: relative;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .site-header__inner { height: 4.5rem; } }
@media (min-width: 1024px) { .site-header__inner { height: 5rem; } }

.site-logo img {
  height: 2.5rem;
  width: auto;
  min-width: 120px;
  max-width: 160px;
  object-fit: contain;
  min-height: 40px;
}
@media (min-width: 768px) { .site-logo img { height: 3rem; min-width: 120px; max-width: 200px; } }
@media (min-width: 1024px) { .site-logo img { height: 3.5rem; max-width: 240px; } }

.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
  }
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active { color: var(--fg); }

.nav-actions { display: none; }
@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.nav-actions a,
.nav-actions button {
  padding: 0.5rem;
  color: var(--fg);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.nav-actions a:hover,
.nav-actions button:hover { opacity: 1; }
.nav-actions .cart-count {
  position: absolute;
  top: -4px; right: -4px;
  width: 1.25rem; height: 1.25rem;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem;
}
.mobile-menu__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: var(--muted);
  transition: color 0.3s;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a.active { color: var(--fg); }
.mobile-menu__footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* ─── BUTTONS (matches React Button component) ────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn--primary:hover {
  background: transparent;
  color: var(--fg);
}
.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--outline:hover {
  background: var(--fg);
  color: var(--bg);
}
.btn--hero {
  background: var(--fg);
  color: var(--bg);
  padding: 1rem 2.5rem;
  font-size: 1rem;
}
.btn--hero:hover { opacity: 0.8; }
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ─── HERO (matches React Hero.tsx) ────────────────────────── */
.hero {
  min-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  border: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.7);
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
}
.hero__title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  margin-bottom: 1.5rem;
  line-height: 0.95;
}
.hero__subtitle {
  color: var(--muted);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 36rem;
  margin: 0 auto 3rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
}
.hero__scroll-line {
  width: 1px;
  height: 4rem;
  background: currentColor;
  opacity: 0.3;
}

/* ─── SECTION SHARED ──────────────────────────────────────── */
.section {
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) { .section { padding: 6rem 2rem; } }
.section--panel { background: var(--panel); }
.section--border { border-top: 1px solid var(--border); }

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.section__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}
.section__subtitle {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 36rem;
}
.section__link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.section__link:hover { opacity: 1; }
@media (min-width: 768px) { .section__link { display: flex; } }
.section__link-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3rem;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.section__link-mobile:hover { opacity: 1; }
@media (min-width: 768px) { .section__link-mobile { display: none; } }

/* ─── FEATURED RELEASE (matches React FeaturedRelease.tsx) ── */
.featured {
  padding: 6rem 1.5rem;
}
.featured__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .featured__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}
.featured__artwork {
  aspect-ratio: 1;
  background: var(--panel);
  overflow: hidden;
  transition: transform 0.3s;
}
.featured__artwork:hover { transform: scale(1.02); }
.featured__artwork img { width: 100%; height: 100%; object-fit: cover; }
.featured__info { display: flex; flex-direction: column; gap: 2rem; }
.featured__status {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.featured__status--live { color: var(--accent-red); }
.featured__status--new { color: var(--accent-red); }
.featured__status--incoming { color: var(--accent-yellow); }
.featured__artist {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}
.featured__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--muted);
}
.featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}

/* ─── DROPS (matches React UpcomingDrops.tsx) ─────────────── */
.drops { padding: 6rem 1.5rem; background: var(--panel); }
.drops__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
}
.drops__list { list-style: none; }
.drops__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  cursor: default;
}
.drops__item:hover { background: rgba(255,255,255,0.5); }
.drops__date {
  font-size: 0.875rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  width: 6rem;
  flex-shrink: 0;
}
.drops__info {
  flex: 1;
  padding: 0 2rem;
}
.drops__artist {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
}
.drops__release-title {
  color: var(--muted);
  margin-left: 1rem;
}
.drops__status {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.drops__status--live { color: var(--accent-red); }
.drops__status--new { color: var(--accent-red); }
.drops__status--incoming { color: var(--accent-yellow); }

/* ─── MOMENTS (matches React Moments.tsx) ─────────────────── */
.moments { padding: 6rem 1.5rem; }
.moments__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
}
.moments__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .moments__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .moments__grid { grid-template-columns: repeat(4, 1fr); } }
.moment-card {
  padding: 2rem;
  background: var(--panel);
  border: 1px solid transparent;
  transition: border-color 0.3s;
  display: block;
}
.moment-card:hover {
  border-color: hsla(43,95%,55%,0.3);
}
.moment-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--muted);
  transition: color 0.3s;
}
.moment-card:hover .moment-card__header { color: var(--fg); }
.moment-card__label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.moment-card__title {
  font-size: 1.5rem;
}
.moment-card:hover .moment-card__title { opacity: 0.7; }

/* ─── ARTISTS (matches React HomeArtists.tsx) ─────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .artists-grid { grid-template-columns: repeat(4, 1fr); }
}
.artist-card {
  display: block;
  cursor: pointer;
}
.artist-card__image {
  aspect-ratio: 3/4;
  background: var(--panel);
  overflow: hidden;
  margin-bottom: 1rem;
  position: relative;
}
.artist-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.artist-card:hover .artist-card__image img { transform: scale(1.05); }
.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.artist-card:hover .artist-card__overlay {
  background: rgba(0,0,0,0.1);
}
.artist-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.artist-card__name {
  font-size: 1.25rem;
  transition: opacity 0.3s;
}
.artist-card:hover .artist-card__name { opacity: 0.7; }
.artist-card__genre {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── VIDEOS (matches React HomeVideos.tsx) ────────────────── */
.video-player {
  margin-bottom: 2rem;
}
.video-player__main {
  position: relative;
  background: var(--fg);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.video-player__main iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-player__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.video-player__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--fg), transparent, transparent);
  opacity: 0.8;
}
.video-player__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-player__play-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.video-player__play-btn:hover {
  background: var(--accent-red);
  transform: scale(1.1);
}
.video-player__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  pointer-events: none;
  color: #fff;
}
.video-player__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent-red);
  color: #fff;
  margin-bottom: 0.75rem;
}
.video-player__artist {
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #fff;
}
.video-player__title-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
}

.video-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .video-thumbs { grid-template-columns: repeat(3, 1fr); }
}
.video-thumb {
  cursor: pointer;
  text-align: left;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.video-thumb:hover,
.video-thumb.active { opacity: 1; }
.video-thumb__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 16/9;
  background: var(--fg);
}
.video-thumb__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-thumb:hover .video-thumb__image img { transform: scale(1.05); }
.video-thumb__meta {
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.video-thumb.active .video-thumb__meta { border-color: var(--fg); }
.video-thumb__artist { font-size: 1.25rem; }
.video-thumb__title { font-size: 0.875rem; color: var(--muted); }

/* ─── SHOP / PRODUCTS (matches React HomeShop.tsx + Shop.tsx) ─ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .products-grid--full { grid-template-columns: repeat(3, 1fr); }
}
.product-card { display: block; }
.product-card__image {
  aspect-ratio: 1;
  background: var(--panel);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__name {
  font-size: 1.5rem;
  transition: opacity 0.3s;
}
.product-card:hover .product-card__name { opacity: 0.7; }
.product-card__price { font-size: 1.125rem; }
.product-card__category {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Shop filters */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.shop-filters__btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: all 0.3s;
}
.shop-filters__btn:hover,
.shop-filters__btn.active {
  color: var(--bg);
  background: var(--fg);
  border-color: var(--fg);
}

/* Single product */
.product-single {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .product-single { grid-template-columns: 1fr 1fr; gap: 6rem; }
}
.product-single__gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-single__category {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.5rem;
  display: block;
}
.product-single__title { font-size: 3rem; margin-bottom: 1rem; }
.product-single__price { font-size: 1.5rem; margin-bottom: 1.5rem; }
.product-single__description { color: var(--muted); margin-bottom: 2rem; line-height: 1.8; }
.product-single__sizes { margin-bottom: 2rem; }
.product-single__sizes-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.size-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  text-transform: uppercase;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s;
}
.size-btn:hover,
.size-btn.active {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.product-single__notice {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ─── NEWSLETTER (matches React HomeNewsletter.tsx) ────────── */
.newsletter {
  padding: 8rem 1.5rem;
  background: var(--panel);
  border-top: 1px solid var(--border);
  text-align: center;
}
.newsletter__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}
.newsletter__text {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .newsletter__form { flex-direction: row; }
}
.newsletter__input {
  flex: 1;
  height: 3.5rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
  text-align: center;
  width: 100%;
  min-height: 56px;
}
@media (min-width: 640px) { .newsletter__input { text-align: left; } }
.newsletter__input:focus {
  outline: none;
  border-color: var(--fg);
}
.newsletter__note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 2rem;
}

/* ─── PAGE HEADER (spacing from header to content) ────────── */
.page-header {
  padding: 4rem 0 3rem;
}
.page-header__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 0.5rem;
}
.page-header__subtitle {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 36rem;
}

/* ─── RELEASES GRID ───────────────────────────────────────── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .releases-grid { grid-template-columns: repeat(3, 1fr); } }
.release-card { display: block; }
.release-card__artwork {
  aspect-ratio: 1;
  background: var(--panel);
  overflow: hidden;
  margin-bottom: 1rem;
}
.release-card__artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.release-card:hover .release-card__artwork img { transform: scale(1.05); }
.release-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
.release-card__artist {
  font-size: 0.875rem;
  color: var(--muted);
}
.release-card__type {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Single release */
.release-single {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .release-single { grid-template-columns: 1fr 1fr; gap: 6rem; }
}
.release-single__artwork img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.release-single__info { display: flex; flex-direction: column; gap: 2rem; }
.release-single__status {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.release-single__status--live { color: var(--accent-red); }
.release-single__status--upcoming { color: var(--accent-yellow); }
.release-single__type {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.release-single__title { font-size: clamp(3rem, 7vw, 5rem); margin-bottom: 0.5rem; line-height: 1; }
.release-single__artist { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--muted); margin-bottom: 0.5rem; }
.release-single__artist a { text-decoration: underline; }
.release-single__date { color: var(--muted); }
.release-single__description { color: var(--muted); line-height: 1.8; max-width: 36rem; }
.release-single__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
}
.release-single__section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
  display: block;
}
.release-single__streaming {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.release-single__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.release-single__links a {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.release-single__links a:hover { color: var(--accent-red); }
.release-single__tracklist {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.release-single__tracklist ol {
  list-style: none;
  padding: 0;
}
.release-single__tracklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.release-single__tracklist .track-num {
  color: var(--muted);
  opacity: 0.6;
  width: 1.5rem;
  text-align: right;
  font-family: monospace;
}
.release-single__more {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 1px solid var(--border);
}
.release-single__more h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
}

/* ─── SINGLE ARTIST ───────────────────────────────────────── */
.artist-hero {
  position: relative;
  overflow: hidden;
}
.artist-hero img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}
@media (min-width: 768px) { .artist-hero img { height: 32rem; } }

.artist-layout {
  display: grid;
  gap: 3rem;
  padding: 3rem 0 6rem;
}
@media (min-width: 1024px) {
  .artist-layout { grid-template-columns: 1fr 2fr; }
}
.artist-sidebar__name { font-size: 3rem; margin-bottom: 0.5rem; }
.artist-sidebar__genre {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.artist-sidebar__location { color: var(--muted); margin-bottom: 1.5rem; }
.artist-sidebar__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.social-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.artist-bio { color: var(--muted); line-height: 1.8; margin-bottom: 3rem; }
.artist-releases h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

/* ─── SINGLE VIDEO ────────────────────────────────────────── */
.video-single__player {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--fg);
  margin-bottom: 2rem;
}
.video-single__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-single__info h1 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.video-single__artist { color: var(--muted); margin-bottom: 1rem; }
.video-single__artist a { text-decoration: underline; }
.video-single__date { color: var(--muted); }

/* ─── VIDEOS GRID (archive) ──────────────────────────────── */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .videos-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card { display: block; }
.video-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--panel);
  position: relative;
}
.video-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-card:hover .video-card__image img { transform: scale(1.05); }
.video-card__play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.video-card:hover .video-card__play-icon { opacity: 1; }
.video-card__play-icon span {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__title { font-size: 1.25rem; margin-bottom: 0.25rem; }
.video-card__artist { font-size: 0.875rem; color: var(--muted); }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 2fr 1fr; }
}
.contact-form__group { margin-bottom: 1.5rem; }
.contact-form__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color 0.3s;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--fg);
}
.contact-form__textarea { resize: vertical; min-height: 8rem; }
.contact-info__item { margin-bottom: 2rem; }
.contact-info__item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.contact-info__item p { color: var(--muted); }

/* ─── ABOUT ───────────────────────────────────────────────── */
.about-content { color: var(--muted); line-height: 1.8; max-width: 48rem; margin-bottom: 4rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.about-stats__number { font-family: var(--font-display); font-size: 3rem; display: block; }
.about-stats__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ─── LEGAL PAGES ─────────────────────────────────────────── */
.legal-content { color: var(--muted); line-height: 1.8; max-width: 48rem; padding-bottom: 6rem; }
.legal-content h2 { color: var(--fg); margin: 2rem 0 1rem; }
.legal-content p { margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }

/* ─── FOOTER (matches React Footer.tsx) ───────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0;
}
.site-footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .site-footer__main {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer__logo img {
  height: 2.5rem;
  width: auto;
  min-width: 120px;
  max-width: 160px;
  object-fit: contain;
  min-height: 40px;
}
@media (min-width: 768px) { .site-footer__logo img { height: 3rem; max-width: 200px; } }
@media (min-width: 1024px) { .site-footer__logo img { height: 3.5rem; max-width: 240px; } }
.site-footer__nav,
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.site-footer__nav a,
.site-footer__social a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.site-footer__nav a:hover,
.site-footer__social a:hover { opacity: 1; }

.site-footer__legal {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .site-footer__legal {
    flex-direction: row;
    justify-content: space-between;
  }
}
.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.site-footer__legal-links a:hover,
.site-footer__legal-links button:hover { opacity: 1; }

/* ─── 404 ─────────────────────────────────────────────────── */
.page-404 {
  text-align: center;
  padding: 8rem 0;
}

/* ─── DROPS ARCHIVE ───────────────────────────────────────── */
.drops-archive { list-style: none; }

/* ─── EMPTY STATE ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 4rem 0;
}

/* ─── PAGINATION ──────────────────────────────────────────── */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
}
.nav-links a,
.nav-links span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-links a:hover,
.nav-links .current {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-animate] {
  animation: fadeUp 0.6s ease-out forwards;
}

/* ─── ADMIN DEBUG BAR ─────────────────────────────────────── */
.loud-debug {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #0f0;
  font-family: monospace;
  font-size: 0.7rem;
  padding: 0.5rem 1rem;
  z-index: 9999;
  display: flex;
  gap: 2rem;
}
.loud-debug span { opacity: 0.7; }
.loud-debug .yes { color: #0f0; }
.loud-debug .no { color: #f00; }

/* ─── WORDPRESS SPECIFIC ──────────────────────────────────── */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }

/* ─── DARK MODE ───────────────────────────────────────────── */
.dark {
  --bg: #0a0a0a;
  --fg: #f2f2f2;
  --muted: #8c8c8c;
  --panel: #141414;
  --border: #262626;
  --accent-red: hsl(0,80%,55%);
  --accent-yellow: hsl(45,85%,50%);
}
/* Dark mode: ensure SVG icons use correct color */
.dark .nav-actions a,
.dark .nav-actions button,
.dark .mobile-toggle,
.dark .mobile-menu__close,
.dark .mobile-menu__footer a,
.dark .mobile-menu__footer button,
.dark .mobile-header-icons a,
.dark .mobile-header-icons button {
  color: var(--fg);
}
/* Dark mode logo: swap via JS data attrs; fallback to invert */
.dark .site-logo img:not([data-logo-dark]),
.dark .site-footer__logo img:not([data-logo-dark]) {
  filter: invert(1);
}

/* ─── MOBILE HEADER ICONS ────────────────────────────────── */
.mobile-header-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.mobile-header-icons a,
.mobile-header-icons button {
  padding: 0.5rem;
  color: var(--fg);
  transition: opacity 0.3s;
}
.mobile-header-icons a:hover,
.mobile-header-icons button:hover { opacity: 0.7; }
@media (min-width: 1024px) { .mobile-header-icons { display: none; } }

/* ─── BUTTON HOVER LUMINATE ──────────────────────────────── */
.btn--primary:hover {
  background: var(--btn-hover-accent, #e6a817);
  color: #0d0d0d;
  border-color: var(--btn-hover-accent, #e6a817);
  box-shadow: 0 0 20px color-mix(in srgb, var(--btn-hover-accent, #e6a817) 30%, transparent);
}
.btn--outline:hover {
  background: var(--btn-hover-accent, #e6a817);
  color: #0d0d0d;
  border-color: var(--btn-hover-accent, #e6a817);
  box-shadow: 0 0 20px color-mix(in srgb, var(--btn-hover-accent, #e6a817) 30%, transparent);
}

/* ─── BACK LINK (shared) ─────────────────────────────────── */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--fg); }

/* ─── VIDEO FILTERS (Videos page tabs) ────────────────────── */
.video-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}
.video-filters__btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--muted);
  transition: all 0.3s;
  border: none;
}
.video-filters__btn:hover { color: var(--fg); }
.video-filters__btn.active {
  background: var(--fg);
  color: var(--bg);
}

/* ─── VIDEO SINGLE (detail page) ──────────────────────────── */
.video-single__type {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}
.video-single__artist-name {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
}
.video-single__title-text {
  color: var(--muted);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.video-single__related {
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  margin-top: 4rem;
}
.video-single__related h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

/* ─── ARTIST DETAIL (matches React ArtistDetail.tsx) ──────── */
.artist-detail { padding: 4rem 0 6rem; }
.artist-detail__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .artist-detail__grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.artist-detail__image {
  aspect-ratio: 3/4;
  background: var(--panel);
  overflow: hidden;
}
.artist-detail__image img { width: 100%; height: 100%; object-fit: cover; }
.artist-detail__info { display: flex; flex-direction: column; justify-content: center; }
.artist-detail__genre {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}
.artist-detail__name { font-size: clamp(3rem, 7vw, 5rem); margin-bottom: 0.5rem; }
.artist-detail__tagline { color: var(--muted); font-size: 1.125rem; margin-bottom: 2rem; }
.artist-detail__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.artist-detail__products { margin-top: 4rem; }
.artist-detail__products h2 { font-size: 1.75rem; margin-bottom: 2rem; }
.artist-detail__products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .artist-detail__products-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card-sm { display: block; }
.product-card-sm__image {
  aspect-ratio: 1;
  background: var(--panel);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.product-card-sm__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card-sm:hover .product-card-sm__image img { transform: scale(1.05); }
.product-card-sm__name { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.product-card-sm__price { font-size: 0.75rem; color: var(--muted); }

/* ─── CONTACT (matches React Contact.tsx) ─────────────────── */
.contact-layout {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}
.contact-form__heading { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-details__item { margin-bottom: 3rem; }
.contact-details__item h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-details__item p { color: var(--muted); margin-bottom: 1rem; }
.contact-details__email { font-size: 1.125rem; transition: opacity 0.3s; }
.contact-details__email:hover { opacity: 0.7; }
.contact-details__address { font-style: normal; color: var(--muted); }

/* ─── HELP PAGE ───────────────────────────────────────────── */
.help-content { max-width: 48rem; }
.help-category { margin-bottom: 3rem; }
.help-category h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.help-faq__item {
  border: 1px solid var(--border);
  padding: 0 1.5rem;
  margin-bottom: 0.5rem;
}
.help-faq__item summary {
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}
.help-faq__item summary::-webkit-details-marker { display: none; }
.help-faq__item p { padding-bottom: 1rem; color: var(--muted); line-height: 1.7; }
.help-cta {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.help-cta h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.help-cta p { color: var(--muted); margin-bottom: 1.5rem; }

/* ─── CART PAGE ────────────────────────────────────────────── */
.cart-empty { text-align: center; padding: 4rem 0; }

/* ─── COOKIE MODAL ────────────────────────────────────────── */
#cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#cookie-modal.visible { display: flex; }
#cookie-modal .cookie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(2px);
}
#cookie-modal .cookie-panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08);
}
.cookie-accent { height: 2px; background: linear-gradient(to right, var(--accent-red), var(--accent-yellow), transparent); }
.cookie-body { padding: 1.5rem; }
.cookie-body h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.cookie-body p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }
.cookie-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.cookie-link { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 1rem; }
.cookie-link a { text-decoration: underline; }

/* ─── PRODUCT SINGLE DETAILS ──────────────────────────────── */
.product-single__details { display: flex; flex-direction: column; gap: 2rem; }
.product-single__sizes-list { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ─── SECTION SPACING (matches React py-24) ───────────────── */
.section { padding: 6rem 1.5rem; }
@media (min-width: 1024px) { .section { padding: 6rem 2rem; } }

/* ─── MOMENT CARD ICON ────────────────────────────────────── */
.moment-card__icon { display: flex; align-items: center; }
