/* ============================================
   CARIBBEAN CARTEL — Main Stylesheet
   ============================================ */

:root {
  --bg:          #070707;
  --bg-alt:      #0d0d0d;
  --card:        #111111;
  --card-hover:  #161616;
  --border:      #1e1e1e;
  --gold:        #c9a84c;
  --gold-light:  #e8c060;
  --gold-dark:   #8a6a1e;
  --gold-glow:   rgba(201, 168, 76, 0.12);
  --text:        #f0f0f0;
  --text-muted:  #666666;
  --nav-h:       80px;
  --radius:      2px;
  --ease:        0.3s ease;
  --font-display:'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.7; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button, input, textarea, select { font-family: var(--font-body); }

/* === Typography === */
h1,h2,h3,h4 { font-family: var(--font-display); letter-spacing: 0.04em; line-height: 1; }

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.8;
}
.gold-line {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

/* === Layout === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section    { padding: 6rem 0; }

/* === Navigation === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), box-shadow var(--ease);
}
.navbar.scrolled {
  background: rgba(7,7,7,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.navbar-logo { display: flex; align-items: center; }
.logo-img {
  height: 80px;
  width: auto;
  display: block;
  transition: opacity var(--ease);
}
.navbar-logo:hover .logo-img { opacity: 0.85; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem;
  transition: background var(--ease), color var(--ease);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--gold); color: #000; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.875rem 2rem;
  cursor: pointer; transition: all var(--ease); border: none;
}
.btn-primary   { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline   { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: #000; }

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Hero con slider */
.hero--slider {
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding-bottom: 5rem;
}

/* ── Slider ── */
.hero-slider {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
}
.slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slider-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.slide-link { display: flex; align-items: center; justify-content: center; }
.slide-img {
  max-height: 55vh;
  max-width: min(700px, 90vw);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 60px rgba(201,168,76,0.1));
  transition: transform 0.4s ease, filter 0.4s ease;
}
.slider-slide.active .slide-img {
  filter: drop-shadow(0 0 80px rgba(201,168,76,0.18));
}

/* Navigation arrows */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(7,7,7,0.7);
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; font-size: 0.85rem;
  transition: all var(--ease); backdrop-filter: blur(4px);
}
.slider-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

/* Dots */
.slider-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.slider-dot.active { background: var(--gold); transform: scale(1.4); }

/* CTA bajo el slider */
.hero-cta {
  position: relative; z-index: 1;
  padding: 0 0 1rem;
  text-align: left;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(201,168,76,0.04) 0%, transparent 40%);
}
.hero-bg-text {
  position: absolute;
  right: -2%; bottom: -5%;
  font-family: var(--font-display);
  font-size: clamp(10rem, 28vw, 32rem);
  color: rgba(255,255,255,0.018);
  line-height: 1;
  user-select: none; pointer-events: none; z-index: 0;
  white-space: nowrap;
}
.hero-deco-line {
  position: absolute; top: 0; bottom: 0;
  width: 1px; z-index: 0;
}
.hero-deco-line:nth-child(1) {
  right: 20%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.25), transparent);
}
.hero-deco-line:nth-child(2) {
  right: 30%;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.08), transparent);
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 16vw, 15rem);
  line-height: 0.88;
  margin-bottom: 1.5rem;
}
.hero-title .t1 { display: block; color: var(--text); }
.hero-title .t2 { display: block; color: var(--gold); }
.hero-tagline {
  font-size: 0.9rem; color: var(--text-muted);
  letter-spacing: 0.35em; text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-social { display: flex; align-items: center; gap: 1.5rem; }
.hero-social-label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted);
}
.hero-social a {
  color: var(--text-muted); font-size: 1rem;
  transition: color var(--ease), transform var(--ease);
}
.hero-social a:hover { color: var(--gold); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
}
.scroll-bar {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* === About === */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text p { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.25rem; line-height: 1.8; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 2rem 1.5rem; text-align: center;
  position: relative; overflow: hidden;
  transition: border-color var(--ease);
}
.stat-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px; background: var(--gold);
}
.stat-card:hover { border-color: var(--gold-dark); }
.stat-num {
  font-family: var(--font-display);
  font-size: 4rem; color: var(--gold); line-height: 1; margin-bottom: 0.4rem;
}
.stat-lbl {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted);
}

/* === Artists Section === */
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap;
}
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.artist-card {
  background: var(--card); border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease);
}
.artist-card:hover { transform: translateY(-5px); border-color: var(--gold-dark); }
.artist-img-wrap {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  position: relative; background: var(--card-hover);
}
.artist-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
  transition: filter var(--ease), transform var(--ease);
}
.artist-card:hover .artist-img-wrap img { filter: grayscale(0%); transform: scale(1.04); }
.artist-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: var(--card-hover);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: var(--text-muted);
}
.artist-placeholder i { font-size: 3.5rem; color: var(--border); }
.artist-placeholder span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.artist-info { padding: 1.25rem; }
.artist-genre {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.4rem;
}
.artist-name { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 0.6rem; }
.artist-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.artist-links { display: flex; gap: 0.75rem; }
.artist-links a {
  width: 32px; height: 32px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--text-muted);
  transition: border-color var(--ease), color var(--ease);
}
.artist-links a:hover { border-color: var(--gold); color: var(--gold); }

/* === Music Section === */
.music { background: var(--bg-alt); }
.music-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.embed-card {
  background: var(--card); border: 1px solid var(--border); overflow: hidden;
}
.embed-card-header {
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.75rem;
}
.embed-card-header i { color: var(--gold); font-size: 1rem; }
.embed-card-header span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
.embed-card iframe { width: 100%; display: block; border: none; }
.embed-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 3rem; color: var(--text-muted); text-align: center;
  min-height: 160px;
}
.embed-placeholder i { font-size: 2rem; color: var(--border); }
.embed-placeholder span { font-size: 0.8rem; line-height: 1.6; }

/* === Videos Section === */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.video-card {
  background: var(--card); border: 1px solid var(--border); overflow: hidden;
  transition: transform var(--ease), border-color var(--ease);
}
.video-card:hover { transform: translateY(-4px); border-color: var(--gold-dark); }
.video-embed-wrap {
  position: relative; width: 100%; aspect-ratio: 16/9; background: #000;
}
.video-embed-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--card-hover);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--text-muted);
}
.video-placeholder i { font-size: 2.5rem; color: var(--gold); opacity: 0.4; }
.video-placeholder span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; }
.video-info { padding: 1rem 1.25rem; }
.video-artist {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem;
}
.video-title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.25rem; }
.video-date  { font-size: 0.78rem; color: var(--text-muted); }

/* === CTA Banner === */
.cta-banner {
  background: var(--gold);
  padding: 5rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: #000;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  font-size: 1rem; color: rgba(0,0,0,0.65);
  margin-bottom: 2rem; letter-spacing: 0.05em;
}
.cta-banner .btn {
  background: #000; color: var(--gold);
  transition: background var(--ease), color var(--ease);
}
.cta-banner .btn:hover { background: #1a1a1a; }

/* === Banner System === */
.banner-slot {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.banner-slot a    { display: block; width: 100%; height: 100%; }
.banner-slot img  { width: 100%; height: 100%; object-fit: cover; display: block; }

.banner-slot--sidebar {
  width: 100%;
  aspect-ratio: 6/5;   /* 300×250 ratio */
}
.banner-slot--footer {
  max-width: 728px;
  height: 90px;
  margin: 0 auto;
}

.banner-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.3rem; width: 100%; height: 100%; min-height: 80px;
  padding: 1rem; text-align: center;
  border: 1px dashed rgba(201,168,76,0.2);
  background: var(--bg-alt);
}
.bp-tag  { font-size:.65rem; font-weight:700; letter-spacing:.3em; text-transform:uppercase; color:var(--gold); opacity:.5; }
.bp-size { font-size:.75rem; color:var(--text-muted); }
.bp-hint { font-size:.68rem; color:var(--text-muted); opacity:.55; }
.bp-hint code { font-family: monospace; }

/* Banner strip before footer */
.banner-strip-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}

/* === Sidebar Layout (inner pages) === */
.sidebar-wrapper { background: var(--bg); }
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.sidebar-main    { padding: 4rem 0; }
.page-sidebar    {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  padding-top: 4rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.sidebar-widget {
  background: var(--card); border: 1px solid var(--border);
  padding: 1.25rem 1.25rem 1.5rem;
}
.sidebar-widget-title {
  font-size:.7rem; font-weight:700; letter-spacing:.28em;
  text-transform:uppercase; color:var(--gold); margin-bottom:1rem;
}
.sidebar-follow-link {
  display:flex; align-items:center; gap:.75rem;
  padding:.55rem .75rem; border: 1px solid var(--border);
  color:var(--text-muted); font-size:.82rem; font-weight:500;
  transition: all var(--ease);
  margin-bottom:.5rem;
}
.sidebar-follow-link:last-child { margin-bottom:0; }
.sidebar-follow-link:hover { border-color:var(--gold); color:var(--gold); }
.sidebar-follow-link i { font-size:1rem; width:16px; text-align:center; flex-shrink:0; }

@media (max-width: 960px) {
  .sidebar-layout { grid-template-columns: 1fr; }
  .page-sidebar   { position:static; padding-top:0; padding-bottom:2rem; flex-direction:row; flex-wrap:wrap; }
  .banner-slot--sidebar { aspect-ratio:unset; height:100px; }
  .sidebar-widget { flex:1; min-width:240px; }
}
@media (max-width:600px) {
  .page-sidebar   { flex-direction:column; }
  .banner-slot--footer { height:60px; }
}

/* === Contact Page === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 6rem; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 2rem; margin-top: 2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-item i { color: var(--gold); font-size: 1rem; width: 18px; margin-top: 3px; flex-shrink: 0; }
.contact-info-item h4 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem;
}
.contact-info-item p, .contact-info-item a { font-size: 0.95rem; color: var(--text); }
.contact-info-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 0.75rem; margin-top: 2.5rem; }
.contact-social a {
  width: 42px; height: 42px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-muted);
  transition: all var(--ease);
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold); }

/* === Form === */
.form-wrap { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); font-size: 0.95rem;
  padding: 0.875rem 1rem; width: 100%;
  transition: border-color var(--ease); outline: none;
  -webkit-appearance: none; border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold-dark); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group select option { background: var(--card); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hp { display: none !important; }
.form-note { font-size: 0.8rem; color: var(--text-muted); }
.msg-box { padding: 0.875rem 1rem; font-size: 0.9rem; border-left: 2px solid; }
.msg-box.ok    { background: rgba(30,160,60,0.08);  border-color: #28a745; color: #5cb87a; }
.msg-box.error { background: rgba(220,53,69,0.08);  border-color: #dc3545; color: #e97c7c; }

/* === Page Hero (inner pages) === */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem;
}
.breadcrumb a { transition: color var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--border); }
.page-hero-title { font-size: clamp(3rem, 8vw, 7rem); }

/* === Footer === */
.footer { background: #000; border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); max-width: 280px; line-height: 1.8; margin-top: 1rem; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--ease); }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { font-size: 0.9rem; color: var(--text-muted); transition: color var(--ease); }
.footer-social a:hover { color: var(--gold); }

/* === Fade-in on scroll === */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ============================================
   MERCH STORE
   ============================================ */

/* Cart icon in navbar */
.nav-cart {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: var(--text-muted); font-size: 1.1rem;
  transition: color var(--ease); flex-shrink: 0; margin-left: .5rem;
}
.nav-cart:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--gold); color: #000;
  font-size: .6rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--ease);
}
.cart-badge--hidden { opacity: 0; transform: scale(0); }
.cart-badge-inline {
  background: var(--gold); color: #000;
  font-size:.65rem; font-weight:700; border-radius:50%;
  width:18px; height:18px; display:inline-flex; align-items:center; justify-content:center;
  margin-left:.4rem;
}
.cart-link-btn { display:flex; align-items:center; gap:.5rem; }

/* ── Merch Hero Slider ── */
.merch-hero { background: var(--bg); }
.merch-slider { position: relative; overflow: hidden; }
.mslider-track {
  display: flex; transition: transform 0.6s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.mslider-slide {
  flex: 0 0 100%;
  min-height: 420px;
  display: flex; align-items: center;
  background-color: var(--bg-alt);
  background-size: cover; background-position: center;
  position: relative;
}
.mslider-overlay {
  position: absolute; inset: 0;
}
.mslider-overlay--dark { background: rgba(7,7,7,0.65); }
.mslider-overlay--gold { background: linear-gradient(135deg, rgba(201,168,76,0.55) 0%, rgba(7,7,7,0.8) 100%); }
.mslider-overlay--none { background: none; }
.mslider-content {
  position: relative; z-index: 1;
  padding: 4rem 2rem;
}
.mslider-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1; color: var(--text);
  margin: .5rem 0 1.5rem;
}
.mslider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(7,7,7,.7); border: 1px solid var(--border);
  color: var(--text-muted); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; font-size: .85rem;
  transition: all var(--ease);
}
.mslider-btn:hover { border-color: var(--gold); color: var(--gold); }
.mslider-prev { left: 1rem; }
.mslider-next { right: 1rem; }
.mslider-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 10;
}
.mslider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.25); border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
}
.mslider-dot.active { background: var(--gold); transform: scale(1.4); }

/* ── Category filters ── */
.cats-filter {
  display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.cat-pill {
  padding: .45rem 1.1rem;
  border: 1px solid var(--border);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-muted);
  transition: all var(--ease);
}
.cat-pill:hover, .cat-pill.active {
  border-color: var(--gold); color: var(--gold);
  background: var(--gold-glow);
}

/* ── Products grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--card); border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.product-img-wrap {
  position: relative; width: 100%; aspect-ratio: 1/1;
  overflow: hidden; background: var(--card-hover);
}
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: opacity var(--ease), transform .5s ease;
}
.product-img--hover {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .4s ease;
}
.product-card:hover .product-img:not(.product-img--hover) { opacity: 0; }
.product-card:hover .product-img--hover { opacity: 1; }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; color: var(--text-muted);
}
.product-img-placeholder i { font-size: 3.5rem; color: var(--border); }
.product-img-placeholder span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.product-badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: .25rem .65rem;
}
.badge-nuevo  { background: var(--gold); color: #000; }
.badge-oferta { background: #dc3545; color: #fff; }

.product-info { padding: 1.1rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.product-cat-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
}
.product-name { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.1; }
.product-pricing { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.product-price { font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.product-price-orig { font-size: .85rem; color: var(--text-muted); text-decoration: line-through; }
.product-discount { font-size: .7rem; font-weight: 700; color: #dc3545; }

/* Size + color selectors */
.size-selector, .color-selector { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; }
.size-label { font-size: .68rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.size-options, .color-options { display: flex; gap: .35rem; flex-wrap: wrap; }
.size-btn {
  min-width: 32px; height: 32px; padding: 0 .4rem;
  border: 1px solid var(--border); background: none;
  color: var(--text-muted); font-size: .75rem; font-weight: 600;
  cursor: pointer; transition: all var(--ease);
}
.size-btn:hover, .size-btn.active {
  border-color: var(--gold); color: var(--gold); background: var(--gold-glow);
}
.color-btn {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color var(--ease), transform var(--ease);
}
.color-btn:hover, .color-btn.active {
  border-color: var(--gold); transform: scale(1.2);
}
.add-to-cart-btn {
  margin-top: auto; width: 100%;
  justify-content: center; font-size: .72rem; padding: .8rem 1rem;
}

/* ── Toast notification ── */
.cart-toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
  background: var(--card); border: 1px solid var(--gold);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  font-size: .88rem; min-width: 280px;
  transform: translateY(120%); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}
.cart-toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cart-toast i { color: var(--gold); font-size: 1.1rem; }
.toast-link { margin-left: auto; color: var(--gold); font-size: .78rem; font-weight: 600; white-space: nowrap; }
.toast-link:hover { text-decoration: underline; }

/* ── Cart Page ── */
.cart-empty {
  text-align: center; padding: 6rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.cart-empty i { font-size: 4rem; color: var(--border); }
.cart-empty h3 { font-family: var(--font-display); font-size: 2.5rem; }
.cart-empty p { color: var(--text-muted); }

.cart-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 3rem; align-items: start;
}
.cart-items-col { overflow-x: auto; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-size: .68rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-muted);
  padding: .75rem 1rem; border-bottom: 1px solid var(--border);
  text-align: left; white-space: nowrap;
}
.cart-item-row td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 64px; height: 64px; object-fit: cover; display: block; }
.cart-item-img-ph {
  width: 64px; height: 64px; background: var(--card-hover);
  display: flex; align-items: center; justify-content: center;
  color: var(--border); font-size: 1.5rem;
}
.cart-item-name-td strong { font-size: .95rem; }
.cart-item-price-td, .cart-item-sub-td { font-size: .95rem; font-weight: 600; white-space: nowrap; }
.cart-item-sub-td { color: var(--gold); }
.cart-remove-btn {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1rem; padding: .25rem .5rem;
  transition: color var(--ease);
}
.cart-remove-btn:hover { color: #dc3545; }
.qty-control { display: flex; align-items: center; gap: 0; }
.qty-btn {
  width: 30px; height: 30px; background: var(--card-hover);
  border: 1px solid var(--border); color: var(--text);
  cursor: pointer; font-size: 1rem; line-height: 1;
  transition: all var(--ease);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-input {
  width: 44px; height: 30px; text-align: center;
  background: var(--card); border: 1px solid var(--border);
  border-left: none; border-right: none;
  color: var(--text); font-size: .9rem;
  outline: none; -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.cart-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }

/* ── Order summary ── */
.order-summary-box {
  background: var(--card); border: 1px solid var(--border);
  padding: 1.75rem; position: sticky; top: calc(var(--nav-h) + 1.5rem);
}
.summary-title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1.25rem; }
.summary-rows { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1rem; }
.summary-row {
  display: flex; justify-content: space-between;
  font-size: .9rem; color: var(--text-muted);
}
.summary-envio-hint { font-size: .75rem; color: var(--gold); margin-top: -.25rem; }
.summary-total-row {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 1rem; margin-bottom: .25rem;
  font-weight: 700;
}
.summary-total-amount { font-size: 1.4rem; color: var(--gold); }
.checkout-customer-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 0; }

/* MercadoPago button */
.btn-mercadopago {
  width: 100%; padding: .9rem 1rem;
  background: #009EE3; color: #fff;
  border: none; cursor: pointer; font-weight: 700; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; gap: .75rem;
  transition: background var(--ease), transform var(--ease);
  letter-spacing: .05em;
}
.btn-mercadopago:hover { background: #007ab8; transform: translateY(-2px); }
.mp-logo-text { font-size: .9rem; }
.mp-logo-text strong { font-weight: 900; }
.mp-note { font-size: .72rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }
.btn-link-muted {
  background: none; border: none; color: var(--text-muted);
  font-size: .78rem; cursor: pointer; transition: color var(--ease);
}
.btn-link-muted:hover { color: #dc3545; }
.payment-methods { margin-top: 1.25rem; }

/* ── Responsive store ── */
@media (max-width: 960px) {
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary-box { position: static; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .cart-table th:nth-child(3),
  .cart-table td:nth-child(3) { display: none; }
}
@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* === Responsive === */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .music-grid   { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  section { padding: 4rem 0; }

  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: rgba(7,7,7,0.98);
    flex-direction: column; justify-content: center; align-items: center; gap: 2rem;
    transform: translateX(100%); transition: transform var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a     { font-size: 1.1rem; }
  .menu-toggle     { display: flex; }

  .hero-title { font-size: clamp(4.5rem, 22vw, 9rem); }
  .hero-bg-text { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .artists-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid  { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .form-row     { grid-template-columns: 1fr; }
  .section-header-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 500px) {
  .container     { padding: 0 1.25rem; }
  .artists-grid  { grid-template-columns: 1fr; }
  .about-stats   { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   CARIBBEAN SESSION — Sección exclusiva index.php
   ============================================================ */

.cs-section {
  background: #050505;
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}

/* Textura de fondo sutil */
.cs-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201,168,76,.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(201,168,76,.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Marca de agua "CC" en el fondo */
.cs-section::after {
  content: 'CC';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(14rem, 30vw, 28rem);
  letter-spacing: -.05em;
  color: rgba(201,168,76,.03);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

/* ── Barras decorativas ── */
.cs-topbar {
  background: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .5rem 2rem;
  overflow: hidden;
}
.cs-topbar-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cs-topbar-label--right { margin-left: auto; opacity: .7; }
.cs-topbar-line {
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.2);
}
.cs-bottombar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-top: 4rem;
}

/* ── Inner ── */
.cs-inner {
  padding-top: 3.5rem;
  position: relative;
  z-index: 1;
}

/* ── Hero grid: título + video featured ── */
.cs-hero-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* Título */
.cs-eyebrow {
  font-size: .65rem;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .75rem;
}
.cs-main-title {
  display: flex;
  flex-direction: column;
  line-height: .9;
  margin-bottom: 1.25rem;
}
.cs-title-line1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: .06em;
  color: var(--text);
}
.cs-title-line2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: .06em;
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold);
}
.cs-gold-bar {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.25rem;
}
.cs-desc {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.cs-btn-all {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: #000;
  padding: .7rem 1.4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s;
}
.cs-btn-all:hover { background: var(--gold-light); }
.cs-yt-sub {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 1rem;
  transition: color .2s;
}
.cs-yt-sub i { color: #ff0000; font-size: 1.1rem; }
.cs-yt-sub:hover { color: var(--text); }

/* Video featured */
.cs-featured-video {}
.cs-video-frame {
  position: relative;
  border: 1px solid rgba(201,168,76,.25);
  box-shadow: 0 0 40px rgba(201,168,76,.08), 0 0 80px rgba(0,0,0,.6);
}
.cs-video-badge {
  position: absolute;
  top: -1px; left: -1px;
  background: var(--gold);
  color: #000;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .3em;
  padding: .3rem .75rem;
  z-index: 2;
}
.cs-embed { border: none !important; }
.cs-embed iframe { display: block; }
.cs-featured-info {
  padding: .875rem 1rem;
  background: rgba(201,168,76,.05);
  border: 1px solid rgba(201,168,76,.12);
  border-top: none;
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.cs-featured-tag {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  padding: .2rem .5rem;
}
.cs-featured-title {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
}
.cs-featured-artist {
  font-size: .75rem;
  color: var(--text-muted);
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .35rem;
}
.cs-featured-artist i { color: var(--gold); }

/* ── Grid de sessions ── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.cs-grid-item {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  transition: border-color .2s;
  overflow: hidden;
}
.cs-grid-item:hover { border-color: rgba(201,168,76,.2); }
.cs-grid-thumb { position: relative; overflow: hidden; }
.cs-thumb-link { display: block; }
.cs-thumb-link img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, filter .3s;
  filter: brightness(.85) saturate(.9);
}
.cs-grid-item:hover .cs-thumb-link img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.1);
}
.cs-thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.35);
  opacity: 0;
  transition: opacity .2s;
}
.cs-thumb-play i { font-size: 2rem; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.cs-grid-item:hover .cs-thumb-play { opacity: 1; }
.cs-grid-info {
  padding: .875rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.cs-grid-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(201,168,76,.3);
  line-height: 1;
  flex-shrink: 0;
  margin-top: .1rem;
}
.cs-grid-title {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .25rem;
  line-height: 1.3;
}
.cs-grid-artist {
  font-size: .72rem;
  color: var(--text-muted);
}

/* ── Divisor ── */
.cs-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.cs-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
}
.cs-divider-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .85rem;
  flex-shrink: 0;
}

/* ── Más vistos ── */
.cs-topvideos-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.cs-topvideos-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: .06em;
  color: var(--text);
}
.cs-topvideos-sub {
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.cs-topvideos-list {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.cs-tv-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: .875rem 1.25rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.04);
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.cs-tv-row:hover {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.2);
  transform: translateX(4px);
}
.cs-tv-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(201,168,76,.2);
  line-height: 1;
  width: 36px;
  flex-shrink: 0;
  transition: color .2s;
}
.cs-tv-row:hover .cs-tv-num { color: var(--gold); }
.cs-tv-thumb {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.cs-tv-thumb img {
  width: 90px;
  height: 51px;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.cs-tv-row:hover .cs-tv-thumb img { transform: scale(1.06); }
.cs-tv-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .2s;
}
.cs-tv-play i { font-size: 1rem; color: #fff; }
.cs-tv-row:hover .cs-tv-play { opacity: 1; }
.cs-tv-info { flex: 1; min-width: 0; }
.cs-tv-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: .2rem;
}
.cs-tv-meta {
  font-size: .72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.cs-tv-dot { color: rgba(255,255,255,.2); }
.cs-tv-views { display: flex; align-items: center; gap: .3rem; color: var(--gold); }
.cs-tv-views i { font-size: .65rem; }
.cs-tv-arrow {
  color: rgba(255,255,255,.2);
  font-size: .75rem;
  transition: all .2s;
  flex-shrink: 0;
}
.cs-tv-row:hover .cs-tv-arrow { color: var(--gold); transform: translateX(3px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cs-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cs-title-col { order: 1; }
  .cs-featured-video { order: 0; }
  .cs-desc { max-width: 100%; }
  .cs-grid { grid-template-columns: 1fr 1fr; }
  .cs-section::after { display: none; }
}
@media (max-width: 600px) {
  .cs-grid { grid-template-columns: 1fr; }
  .cs-tv-row { gap: .875rem; padding: .7rem .875rem; }
  .cs-tv-num { font-size: 1.5rem; width: 28px; }
  .cs-tv-thumb img { width: 72px; height: 40px; }
  .cs-topbar-label--right { display: none; }
}
