/*
Theme Name: Jade Theme
Theme URI: https://jade.yt
Author: Jade
Author URI: https://jade.yt
Description: Custom premium dark theme for Jade — content creator landing page with viral videos, recommended products, collaborations and more. Minimalist dark design with orange gradient accents and subtle film grain.
Version: 1.2.6
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jade-theme
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --orange-1: #FF6B00;
  --orange-2: #FF9500;
  --text-primary: #FFFFFF;
  --text-muted: #888888;
  --border-subtle: rgba(255,107,0,0.15);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Film grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 62px 0; position: relative; }

.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--orange-2);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 40px;
}

.gradient-text {
  background: linear-gradient(135deg, #FF6B00, #FF9500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================================
   SECTION DIVIDERS (orange line + gradient + grain)
============================================================ */
.section-divider {
  position: relative;
  height: 3px;
  width: min(1100px, 88%);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.15), var(--orange-1), var(--orange-2), var(--orange-1), rgba(255,107,0,0.15), transparent);
  border-radius: 3px;
  opacity: 0.85;
}
.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
  box-shadow: 0 0 14px 3px rgba(255,107,0,0.6);
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-1), var(--orange-2), transparent);
  opacity: 0.5;
}

.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-logo { grid-column: 2; display: flex; justify-content: center; }
.header-logo img { height: 34px; width: auto; }

.header-social { grid-column: 3; display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.header-social a { display: inline-flex; opacity: 0.85; transition: opacity 0.25s ease, transform 0.25s ease; }
.header-social a:hover { opacity: 1; transform: translateY(-2px); }
.header-social svg { width: 20px; height: 20px; }

/* ============================================================
   HERO / CANALES
============================================================ */
.canales {
  padding: 88px 0 44px;
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.canales-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(30px, 9vw, 130px);
  margin-top: 30px;
  flex-wrap: nowrap; /* never stack, even on mobile */
}

.canal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
}

.canal-circle {
  width: clamp(100px, 30vw, 150px);
  height: clamp(100px, 30vw, 150px);
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.4s ease;
}

/* Each channel's own avatar, blurred 2-3x bigger, as a colored glow behind.
   A radial mask fades the halo to transparent so no hard square edges appear
   (fixes the visible box borders on mobile first paint). */
.canal-glow {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  width: 240%;
  height: 240%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  filter: blur(44px) saturate(1.5);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(circle at center, #000 26%, rgba(0,0,0,0.4) 50%, transparent 70%);
  mask-image: radial-gradient(circle at center, #000 26%, rgba(0,0,0,0.4) 50%, transparent 70%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Colored ring around each circle (per channel, same size/thickness) */
.canal-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2), transparent 75%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
/* Jade: naranja → naranja oscuro */
.canales-grid .canal:nth-child(1) .canal-circle::before {
  background: linear-gradient(135deg, #FF9500, #FF6B00 45%, #7a2f00);
}
/* Jade REC: azul → negro */
.canales-grid .canal:nth-child(2) .canal-circle::before {
  background: linear-gradient(135deg, #2f9bff, #0f4c94 50%, #05070d);
}

.canal-avatar {
  position: relative;
  z-index: 2;
  width: 94%;
  height: 94%;
  object-fit: cover;
  border-radius: 50%;
}

.canal:hover .canal-circle { transform: scale(1.05); }
.canal-name {
  position: relative;
  z-index: 4;
  font-size: clamp(1rem, 3.5vw, 1.2rem);
  font-weight: 600;
}
.canal-sub {
  position: relative;
  z-index: 4;
  font-size: clamp(0.72rem, 2.6vw, 0.82rem);
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: -6px;
}
.canal-circle { z-index: 1; }

/* ============================================================
   STATS DIVIDER
============================================================ */
.stats {
  background: linear-gradient(90deg, rgba(255,107,0,0.10), rgba(255,149,0,0.16), rgba(255,107,0,0.10));
  border-top: 1px solid rgba(255,107,0,0.35);
  border-bottom: 1px solid rgba(255,107,0,0.35);
  padding: 18px 0;
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 5vw, 60px);
  flex-wrap: nowrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-2);
  flex: 0 0 auto;
}
.stat-icon svg { width: clamp(16px, 4.4vw, 22px); height: clamp(16px, 4.4vw, 22px); }
.stat-text { display: flex; flex-direction: column; }
.stat-number { font-size: clamp(1.05rem, 3.4vw, 1.7rem); font-weight: 800; line-height: 1.05; }
.stat-label {
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.58rem, 1.9vw, 0.78rem);
}
.stat-sep {
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, transparent, rgba(255,107,0,0.6), transparent);
  flex: 0 0 auto;
}

/* ============================================================
   VIRAL VIDEOS
============================================================ */
.videos-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.videos-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 18px;
  flex: 1 1 auto;
  scrollbar-width: none;
}
.videos-track::-webkit-scrollbar { display: none; }

.video-card {
  flex: 0 0 calc((100% - 66px) / 4);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #191919, #0f0f0f);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-thumb .play-icon {
  position: relative;
  z-index: 2;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.video-thumb .play-icon svg { width: 24px; height: 24px; color: var(--orange-2); margin-left: 2px; }

.video-info {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.video-title {
  display: block;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.35;
  transition: color 0.25s ease;
}
.video-card:hover .video-title { color: var(--orange-2); }
.video-views { display: block; font-size: 1.15rem; font-weight: 800; margin-top: auto; }

.video-card:hover {
  border-color: var(--border-subtle);
  box-shadow: 0 20px 50px -20px rgba(255,107,0,0.35);
}
.video-card:hover .play-icon { background: rgba(255,107,0,0.85); transform: scale(1.08); }
.video-card:hover .play-icon svg { color: #0a0a0a; }

.vc-nav {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: rgba(17,17,17,0.9);
  color: var(--orange-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  z-index: 3;
}
.vc-nav svg { width: 20px; height: 20px; }
.vc-nav:hover { background: linear-gradient(135deg, var(--orange-1), var(--orange-2)); color: #0a0a0a; transform: scale(1.08); }
.vc-nav:disabled { opacity: 0.3; cursor: default; }

/* ============================================================
   CYLINDER ROTATING TEXT (below viral videos)
============================================================ */
.cylinder-band {
  padding: 6px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
/* Soft, very blurred white glow over the whole phrase — just a touch of shine */
.cylinder-band::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  height: 78%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.18), rgba(255,255,255,0) 70%);
  filter: blur(26px);
  pointer-events: none;
  z-index: 3;
}
.cylinder-wrap {
  perspective: 1100px;
  width: 100%;
  max-width: 940px;
  height: 150px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.cylinder {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: cyl-spin 11s linear infinite;
}
/* Always spins — no pause/slowdown on hover or click. */
/* One <div class="cyl-char"> per letter, distributed around a vertical-axis
   cylinder (rotateY) by js/main.js so the single phrase closes on itself.
   The static rotateZ tilts the whole ring diagonally; rotateX looks into it. */
.cylinder .cyl-char {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-style: preserve-3d;
}
.cylinder .cyl-char span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  white-space: pre;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.15rem, 3.4vw, 2rem);
  line-height: 1;
}
/* Front (outer) surface: bright white */
.cylinder .cyl-char .cyl-front {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255,255,255,0.15);
}
/* Back (inner) surface: darkened, mirrored — the 3D interior of the cylinder */
.cylinder .cyl-char .cyl-back {
  color: rgba(255,255,255,0.20);
  transform: translate(-50%, -50%) rotateY(180deg);
}
/* Spin right -> left (negative rotateY) */
@keyframes cyl-spin {
  0%   { transform: rotateZ(-22deg) rotateX(14deg) rotateY(0deg); }
  100% { transform: rotateZ(-22deg) rotateX(14deg) rotateY(-360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cylinder { animation-duration: 40s; }
}

/* ============================================================
   INSTAGRAM
============================================================ */
.ig-profile {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin: 0 auto 40px;
  padding: 12px 26px 12px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: var(--bg-secondary);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.instagram .ig-profile { display: flex; width: max-content; }
.ig-profile:hover { border-color: var(--orange-1); transform: translateY(-2px); }
.ig-avatar {
  width: 62px; height: 62px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
  padding: 2px;
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ig-avatar svg { width: 30px; height: 30px; color: #fff; }
.ig-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.ig-handle { font-weight: 700; font-size: 1.05rem; }
.ig-followers { font-size: 0.85rem; color: var(--text-muted); }
.ig-followers strong { font-weight: 800; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}
.ig-post {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.ig-post-img {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #191919, #0f0f0f);
}
.ig-post-img img { width: 100%; height: 100%; object-fit: cover; }
.ig-post-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: rgba(10,10,10,0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-weight: 700;
}
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-stat { display: inline-flex; align-items: center; gap: 7px; }
.ig-stat svg { width: 20px; height: 20px; }

/* ============================================================
   CAROUSELS (products & brands)
============================================================ */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.carousel-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: slideLeft 40s linear infinite;
}
.carousel:hover .carousel-track { animation-play-state: paused; }

@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* product cards — horizontal track (1 row), whole card clickable */
.products-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 16px;
  scrollbar-width: none;
}
.products-track::-webkit-scrollbar { display: none; }
.product-card {
  flex: 0 0 calc((100% - 80px) / 5);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.product-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.product-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; min-width: 0; min-height: 0; object-fit: contain; }
.product-info { padding: 14px 16px 18px; text-align: center; display: flex; flex-direction: column; gap: 10px; flex: 1 1 auto; }
.product-name { font-size: 0.88rem; font-weight: 600; line-height: 1.35; min-height: 2.4em; }
.product-rating { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px; margin-top: auto; }
.rating-score { font-size: 0.86rem; font-weight: 800; color: var(--orange-2); }
.rating-count { font-size: 0.75rem; color: var(--text-muted); }

.stars { display: inline-flex; gap: 1px; font-size: 0.95rem; line-height: 1; }
.stars .star { color: rgba(255,255,255,0.18); }
.stars .star.full { color: var(--orange-2); }
.stars .star.half {
  background: linear-gradient(90deg, var(--orange-2) 50%, rgba(255,255,255,0.18) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-amazon {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--orange-1);
  color: var(--orange-2);
  transition: background 0.3s ease, color 0.3s ease;
}
.product-card:hover .btn-amazon { background: linear-gradient(135deg, var(--orange-1), var(--orange-2)); color: #0a0a0a; }
.product-card:hover { border-color: var(--orange-1); transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(255,107,0,0.5); }

/* trusted section — thinner */
.trusted { padding: 54px 0; }
.trusted .section-title { margin-bottom: 34px; }

/* brand logos */
.brand-box {
  width: 160px; height: 60px;
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(100%) brightness(1.6);
  opacity: 0.7;
  transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}
.brand-box img { max-width: 130px; max-height: 40px; width: auto; height: auto; object-fit: contain; }
.brand-box:hover { filter: grayscale(0%) brightness(1); opacity: 1; transform: scale(1.05); }

/* ============================================================
   CONTACT FORM
============================================================ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-sub { text-align: center; color: var(--text-muted); margin-bottom: 40px; margin-top: -40px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--orange-1); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.btn-submit {
  align-self: center;
  padding: 14px 42px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-1), var(--orange-2));
  color: #0a0a0a;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -10px rgba(255,107,0,0.6); }

.form-message {
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.95rem;
}
.form-message.success { background: rgba(46,160,67,0.12); color: #4ade80; border: 1px solid rgba(46,160,67,0.3); }
.form-message.error { background: rgba(220,38,38,0.12); color: #f87171; border: 1px solid rgba(220,38,38,0.3); }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.footer-left { font-size: 0.85rem; color: var(--text-muted); }
.footer-center img { width: 70px; margin: 0 auto; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; font-size: 0.85rem; }
.footer-links a { color: var(--text-muted); transition: color 0.25s ease; }
.footer-links a:hover { color: var(--orange-2); }
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================================
   PAGE CONTENT (default pages)
============================================================ */
.page-content { padding: 140px 0 100px; }
.page-content .container { max-width: 800px; }
.page-content h1 { font-size: 2.2rem; margin-bottom: 30px; }
.page-content h2 { font-size: 1.4rem; margin: 30px 0 14px; }
.page-content p { color: #cccccc; margin-bottom: 16px; }
.page-content ul.content-list { list-style: disc; padding-left: 22px; color: #cccccc; margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .video-card { flex: 0 0 calc((100% - 44px) / 3); }
  .product-card { flex: 0 0 calc((100% - 60px) / 4); }
  .ig-grid { max-width: 560px; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-left { text-align: center; }
  .section { padding: 46px 0; }
  /* At least 3 videos visible */
  .videos-track { gap: 12px; }
  .video-card { flex: 0 0 calc((100% - 24px) / 3); }
  .video-title { font-size: 0.82rem; }
  .video-views { font-size: 0.92rem; }
  .video-info { padding: 12px 12px 14px; }
  .product-card { flex: 0 0 calc((100% - 40px) / 3); }
  /* On mobile: no likes/comments overlay and no darkening — just the clean
     photo. Tapping still opens the post (the whole card is a link). */
  .ig-post-overlay { display: none; }
}

@media (max-width: 560px) {
  /* Keep at least 3 videos visible on phones */
  .videos-track { gap: 8px; }
  .video-card { flex: 0 0 calc((100% - 16px) / 3); }
  .video-title { font-size: 0.76rem; }
  .video-views { font-size: 0.86rem; }
  .videos-carousel { gap: 6px; }
  /* Products: keep 1 row, slide left-right (min ~2.2 visible) */
  .product-card { flex: 0 0 44%; }
  .product-name { font-size: 0.82rem; }
  /* Hide arrows on phones so 3 videos fit; the track is swipeable */
  .vc-nav { display: none; }
  /* Force at least 3 brand logos visible */
  .brand-box { width: 29vw; height: 52px; }
  .brand-box img { max-width: 78%; max-height: 34px; }
  /* Instagram: keep 3 posts in one row */
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ig-post { border-radius: 10px; }
  .ig-stat { font-size: 0.8rem; }
  .ig-stat svg { width: 15px; height: 15px; }
  .ig-post-overlay { gap: 10px; flex-direction: column; }
  /* Stats: keep separators visible between figures */
  .stats-grid { gap: 10px; }
  .stat { gap: 6px; }
  .stat-sep { height: 34px; }
}
