@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0f1a2e;
    --navy-mid: #1a2744;
    --slate: #2d3a52;
    --blue: #2563eb;
    --blue-soft: #3b82f6;
    --blue-glow: rgba(37, 99, 235, 0.12);
    --amber: #e8a020;
    --amber-soft: #fbbf24;
    --amber-glow: rgba(232, 160, 32, 0.1);
    --green: #059669;
    --green-soft: #10b981;
    --red-yt: #ff0033;
    --cream: #faf8f5;
    --warm-white: #fefdfb;
    --sand: #f0ece4;
    --sand-mid: #e6e0d4;
    --text-dark: #1a1a1a;
    --text-body: #3d3d3d;
    --text-muted: #7a7a7a;
    --text-light: #a3a3a3;
    --card-bg: #ffffff;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 1px 2px rgba(15, 26, 46, 0.04);
    --shadow: 0 2px 8px rgba(15, 26, 46, 0.06), 0 1px 2px rgba(15, 26, 46, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 26, 46, 0.08), 0 2px 4px rgba(15, 26, 46, 0.04);
    --shadow-lg: 0 8px 32px rgba(15, 26, 46, 0.1), 0 2px 8px rgba(15, 26, 46, 0.06);
    --shadow-card-hover: 0 12px 40px rgba(15, 26, 46, 0.12), 0 4px 12px rgba(15, 26, 46, 0.06);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text-body);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════
   NAV — floating, glassmorphic
   ═══════════════════════════════════════ */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    padding: 0;
}

.nav-bar {
    background: rgba(15, 26, 46, 0.92);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    letter-spacing: -0.3px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--amber) 0%, var(--amber-soft) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'DM Serif Display', serif;
    box-shadow: 0 2px 8px rgba(232, 160, 32, 0.3);
}

.nav-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* ═══════════════════════════════════════
   HERO — editorial, dramatic
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--navy);
    overflow: hidden;
    padding: 80px 0 72px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(232, 160, 32, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 160, 32, 0.3) 50%, transparent 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    position: relative;
    z-index: 1;
}

.hero-right {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(232, 160, 32, 0.12);
    border: 1px solid rgba(232, 160, 32, 0.2);
    border-radius: 100px;
    color: var(--amber-soft);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--amber-soft);
}

.hero-desc {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 540px;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 0;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 140px;
}

.hero-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Hero right — últimas comparativas */
.hero-recent-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}

.hero-recent-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-recent-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
}

.hero-recent-item:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(232, 160, 32, 0.25);
}

.hero-recent-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 44px;
    border-radius: 7px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
}

.hero-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-recent-thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.25);
}

.hero-recent-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.hero-recent-title {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
}

.hero-recent-date {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.32);
    font-weight: 400;
}

/* ═══════════════════════════════════════
   FORM SECTION
   ═══════════════════════════════════════ */
.request-section {
    padding: 56px 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand);
    position: relative;
}

.section-header {
    margin-bottom: 28px;
}

.section-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 400;
}

.request-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.request-form {
    flex: 1;
    max-width: 680px;
    background: var(--card-bg);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

/* Pending sidebar — junto al formulario */
.pending-sidebar {
    flex: 1;
    background: var(--card-bg);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 20px 22px;
    box-shadow: var(--shadow);
}

.pending-sidebar-header {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* Auto-scrolling ticker wrapper */
.pending-sidebar-scroll {
    position: relative;
    overflow: hidden;
    max-height: 310px;
}

.pending-sidebar-scroll::before,
.pending-sidebar-scroll::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 28px;
    z-index: 2;
    pointer-events: none;
}

.pending-sidebar-scroll::before {
    top: 0;
    background: linear-gradient(to bottom, var(--card-bg), transparent);
}

.pending-sidebar-scroll::after {
    bottom: 0;
    background: linear-gradient(to top, var(--card-bg), transparent);
}

.pending-sidebar-ticker {
    animation: ticker-scroll 40s linear infinite;
}

.pending-sidebar-ticker:hover {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.pending-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pending-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pending-sidebar-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sand-mid);
}

.pending-sidebar-info {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.pending-sidebar-query {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.pending-sidebar-meta {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.pending-sidebar-price {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
    white-space: nowrap;
}

.pending-sidebar-by {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 400;
    white-space: nowrap;
}

.pending-sidebar-by::before {
    content: '— ';
}

.form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 140px;
}

.form-group-main {
    flex: 1 1 100%;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--sand);
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: var(--transition);
}

.form-group input::placeholder {
    color: var(--text-light);
    font-weight: 300;
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px var(--blue-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--navy);
    color: #fff;
}

.btn-primary:hover {
    background: var(--slate);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 0.78rem;
    border-radius: 8px;
}

.btn-buy {
    background: var(--amber);
    color: var(--navy);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.btn-buy:hover {
    background: var(--amber-soft);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(232, 160, 32, 0.25);
}

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid;
}

.alert-ok {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.alert-info {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

/* ═══════════════════════════════════════
   EPISODES — editorial grid
   ═══════════════════════════════════════ */
.episodes-section {
    padding: 64px 0 72px;
}

.episodes-section .section-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 36px;
}

.episodes-section .section-header h2 {
    font-size: 1.8rem;
}

.episode-count {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 400;
    padding: 3px 10px;
    background: var(--sand);
    border-radius: 100px;
}

.episodes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 860px) {
    .episodes-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (min-width: 1300px) {
    .episodes-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}

.episode-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--sand);
    transition: var(--transition);
}

.episode-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.episode-card-body {
    padding: 28px;
}

.episode-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.episode-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.price-range {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-bottom: 0;
    font-weight: 400;
}

.price-range::before {
    content: '';
    width: 14px;
    height: 1.5px;
    background: var(--sand-mid);
    display: inline-block;
}

.episode-date {
    color: var(--text-light);
    font-size: 0.78rem;
    margin-top: 20px;
    text-align: right;
    font-weight: 400;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.badge-done {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.badge-done::before {
    content: '';
    width: 5px;
    height: 5px;
    background: #10b981;
    border-radius: 50%;
}

.badge-pending {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Video container */
.video-container {
    border-radius: var(--radius);
    overflow: hidden;
    background: #0a0a0a;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.video-container video {
    display: block;
    width: 100%;
    max-height: 320px;
    object-fit: contain;
}

.yt-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--red-yt);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    padding: 5px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.yt-link::before {
    content: '▶';
    font-size: 0.55rem;
}

.yt-link:hover {
    background: rgba(255, 0, 51, 0.06);
}

/* ─── Products toggle ─── */
.products-details {
    margin-top: 16px;
}

.products-summary {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    padding: 6px 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.products-summary::-webkit-details-marker { display: none; }

.products-summary::before {
    content: '▸';
    font-size: 0.7rem;
    transition: transform 0.2s;
}

details[open] .products-summary::before {
    transform: rotate(90deg);
}

.products-summary:hover { color: var(--text-dark); }

/* ─── Product cards ─── */
.products-list {
    display: grid;
    gap: 1px;
    margin-top: 8px;
    background: var(--sand);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--sand);
}

.product-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 14px;
    align-items: start;
    padding: 16px;
    background: var(--warm-white);
    transition: var(--transition);
    border-radius: 8px;
}

.product-item:hover {
    background: #fff;
}

.product-img {
    grid-row: 1;
    grid-column: 1;
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
    border: 1px solid var(--sand);
}

.product-info {
    grid-row: 1;
    grid-column: 2;
    min-width: 0;
}

.product-title {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: var(--transition);
}

.product-title:hover {
    color: var(--blue);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
    font-size: 0.82rem;
}

.product-price {
    font-weight: 700;
    color: var(--green);
}

.product-rating {
    color: var(--text-muted);
    font-weight: 400;
}

.product-rating::before {
    content: '★ ';
    color: var(--amber);
}

.product-actions {
    grid-row: 2;
    grid-column: 1 / -1;
}

.product-actions .btn-buy {
    width: 100%;
    text-align: center;
    display: block;
}

/* ═══════════════════════════════════════
   PENDING SECTION
   ═══════════════════════════════════════ */
.pending-section {
    padding: 56px 0;
    background: var(--warm-white);
    border-top: 1px solid var(--sand);
}

.pending-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 680px;
}

.pending-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--sand);
    border-radius: var(--radius);
    flex-wrap: wrap;
    transition: var(--transition);
}

.pending-item:hover {
    border-color: var(--sand-mid);
    box-shadow: var(--shadow-sm);
}

.pending-query {
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
    font-size: 0.92rem;
}

.pending-price {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 400;
}

.pending-by {
    color: var(--text-light);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 400;
}

/* ═══════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════ */
.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 56px 24px;
    font-size: 0.95rem;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--sand-mid);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.5);
    padding: 40px 0 36px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(232, 160, 32, 0.2) 50%, transparent 100%);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 480px;
    line-height: 1.6;
    text-align: right;
}

.legal-footer-links {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-wrap: wrap;
}

.legal-footer-links a {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s;
}

.legal-footer-links a:hover {
    color: rgba(255, 255, 255, 0.55);
}

/* Legal content pages */
.legal-content {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.75;
}

.legal-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 32px 0 10px;
}

.legal-content p, .legal-content ul, .legal-content table {
    margin-bottom: 14px;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--blue);
    text-decoration: underline;
}

.legal-updated {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.cookie-table th, .cookie-table td {
    padding: 10px 14px;
    border: 1px solid var(--sand);
    text-align: left;
}

.cookie-table th {
    background: var(--warm-white);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp 0.6s ease-out; }
.hero-stats { animation: fadeUp 0.6s ease-out 0.15s both; }
.request-form { animation: fadeUp 0.5s ease-out 0.1s both; }

.episode-card {
    animation: fadeUp 0.5s ease-out both;
}

.episode-card:nth-child(1) { animation-delay: 0.05s; }
.episode-card:nth-child(2) { animation-delay: 0.1s; }
.episode-card:nth-child(3) { animation-delay: 0.15s; }

/* ═══════════════════════════════════════
   RESPONSIVE — TV / Large screens (≥1400px)
   ═══════════════════════════════════════ */
@media (min-width: 1400px) {
    .container { max-width: 1320px; }
    body { font-size: 1.05rem; }
    .hero { padding: 100px 0 88px; }
    .hero h1 { font-size: 3.6rem; }
    .hero-desc { font-size: 1.2rem; max-width: 620px; }
    .hero-stats { gap: 0; margin-top: 52px; }
    .hero-stat-num { font-size: 3.4rem; }
    .hero-stat-label { font-size: 0.92rem; }
    .hero-badge { font-size: 0.82rem; padding: 8px 18px; }
    .nav-inner { height: 68px; }
    .logo { font-size: 1.5rem; }
    .logo-icon { width: 38px; height: 38px; font-size: 1rem; }
    .nav-tagline { font-size: 0.88rem; }
    .nav-cta { padding: 10px 22px; font-size: 0.88rem; }
    section { padding: 64px 0; }
    .section-header h2 { font-size: 1.9rem; }
    .episodes-section .section-header h2 { font-size: 2.1rem; }
    .episodes-grid { gap: 40px; }
    .episode-card-body { padding: 36px; }
    .episode-card h3 { font-size: 1.55rem; }
    .video-container video { max-height: 560px; }
    .product-item { padding: 18px 22px; gap: 14px 18px; }
    .product-img { width: 88px; height: 88px; }
    .product-title { font-size: 0.95rem; }
    .product-meta { font-size: 0.88rem; }
    .btn { padding: 14px 32px; font-size: 0.95rem; }
    .btn-sm { padding: 9px 20px; font-size: 0.84rem; }
    .form-group input { padding: 14px 18px; font-size: 1rem; }
    .request-form { padding: 36px; max-width: 760px; }
    .pending-list { max-width: 760px; }
    .pending-item { padding: 18px 24px; }
    .pending-query { font-size: 1rem; }
    footer { padding: 52px 0 44px; }
    .footer-brand { font-size: 1.25rem; }
}

/* Extra-large TV screens (≥1920px) — 10-foot UI */
@media (min-width: 1920px) {
    .container { max-width: 1560px; }
    body { font-size: 1.15rem; }
    .hero { padding: 120px 0 100px; }
    .hero h1 { font-size: 4.2rem; }
    .hero-desc { font-size: 1.35rem; max-width: 700px; }
    .hero-stat-num { font-size: 3.8rem; }
    .nav-inner { height: 76px; }
    .logo { font-size: 1.7rem; }
    .logo-icon { width: 44px; height: 44px; font-size: 1.1rem; border-radius: 10px; }
    .episodes-section .section-header h2 { font-size: 2.4rem; }
    .episode-card h3 { font-size: 1.75rem; }
    .episode-card-body { padding: 44px; }
    .video-container video { max-height: 680px; }
    .product-img { width: 100px; height: 100px; border-radius: 10px; }
    .product-title { font-size: 1.05rem; }
    .btn { padding: 16px 36px; font-size: 1.02rem; border-radius: 12px; }
    .btn-sm { padding: 10px 24px; font-size: 0.9rem; }
    .badge { font-size: 0.78rem; padding: 6px 16px; }
    .form-group input { padding: 16px 20px; font-size: 1.08rem; border-radius: 12px; }
    .request-form { padding: 44px; border-radius: 24px; }
    .section-header h2 { font-size: 2.1rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Tablet (≤768px)
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .hero { padding: 56px 0 48px; }
    .hero h1 { font-size: 1.9rem; }
    .hero-container { grid-template-columns: 1fr; gap: 32px; }
    .hero-right { display: none; }
    .hero-stats { gap: 0; flex-wrap: wrap; }
    .hero-stat-num { font-size: 2.2rem; }
    .nav-tagline { display: none; }
    .nav-cta { display: none; }
    .form-row { flex-direction: column; }
    .form-group { min-width: 100%; }
    .request-layout { flex-direction: column; }
    .pending-sidebar { flex: none; width: 100%; max-height: 280px; }
    .request-form { padding: 20px; }
    .episode-card-body { padding: 20px; }
    .episode-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .product-item { padding: 12px; gap: 8px 10px; }
    .product-img { width: 60px; height: 60px; }
    .footer-inner { flex-direction: column; }
    .disclaimer { text-align: left; }
    .episodes-section .section-header { flex-direction: column; gap: 4px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — Mobile (≤480px)
   ═══════════════════════════════════════ */
@media (max-width: 480px) {
    .hero { padding: 40px 0 36px; }
    .hero h1 { font-size: 1.6rem; }
    .hero-desc { font-size: 0.95rem; }
    .container { padding: 0 16px; }
    .episode-card h3 { font-size: 1.15rem; }
    .pending-item { padding: 12px 14px; }
    .hero-stats { gap: 0; }
    .hero-stat-num { font-size: 1.8rem; }
    .hero-stat-label { font-size: 0.75rem; }
    .product-item { padding: 12px; }
    .btn { padding: 12px 22px; width: 100%; }
    .btn-sm { width: auto; }
}

/* ═══════════════════════════════════════
   NAV CATEGORIES
   ═══════════════════════════════════════ */
.nav-cats {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: auto;
    margin-left: 24px;
}

.nav-cat-link {
    padding: 4px 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-cat-link:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
    .nav-cats { display: none; }
}

/* ═══════════════════════════════════════
   EPISODE TITLE LINK (home cards)
   ═══════════════════════════════════════ */
.episode-title-link {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}
.episode-title-link:hover {
    color: var(--blue);
}

.episode-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--sand);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}
.btn-secondary:hover {
    background: var(--blue);
    color: #fff;
}

/* ═══════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════ */
.breadcrumbs-bar {
    background: var(--warm-white);
    border-bottom: 1px solid var(--sand);
    padding: 12px 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}
.breadcrumbs a:hover {
    color: var(--navy);
}

.breadcrumb-sep {
    margin: 0 8px;
    color: var(--text-light);
}

.breadcrumb-current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ═══════════════════════════════════════
   EPISODE DETAIL PAGE
   ═══════════════════════════════════════ */
.ep-detail {
    padding: 48px 0 64px;
}

.ep-detail-header {
    margin-bottom: 32px;
}

.ep-detail-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.badge-cat {
    display: inline-block;
    padding: 4px 14px;
    background: var(--blue-glow);
    color: var(--blue);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.ep-detail-header h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.ep-detail-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ep-detail-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 800px;
}

/* Video section */
.ep-video-section {
    margin-bottom: 48px;
}

.ep-video-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.ep-yt-link {
    margin-top: 10px;
    font-size: 0.88rem;
    color: var(--text-muted);
}
.ep-yt-link a {
    color: var(--red-yt);
    font-weight: 600;
    text-decoration: none;
}
.ep-yt-link a:hover {
    text-decoration: underline;
}

/* Comparison table */
.ep-table-section {
    margin-bottom: 48px;
}

.ep-table-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    font-size: 0.92rem;
}

.comparison-table thead {
    background: var(--navy);
    color: #fff;
}

.comparison-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.comparison-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--sand);
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background: var(--blue-glow);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.table-product {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.table-product-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--cream);
    flex-shrink: 0;
}

.table-product-name {
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

.col-rank {
    width: 40px;
    text-align: center;
    font-weight: 700;
    color: var(--blue);
    font-size: 1rem;
}

.col-price strong {
    color: var(--green);
    font-size: 1rem;
}

.col-rating {
    color: var(--amber);
    font-weight: 500;
}

/* Product detail cards */
.ep-products-section {
    margin-bottom: 48px;
}

.ep-products-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.ep-product-card {
    display: flex;
    gap: 20px;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px;
    margin-bottom: 20px;
    transition: box-shadow var(--transition);
}

.ep-product-card:hover {
    box-shadow: var(--shadow-md);
}

.ep-product-rank {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ep-product-content {
    display: flex;
    gap: 24px;
    flex: 1;
    min-width: 0;
}

.ep-product-img-wrap {
    flex-shrink: 0;
}

.ep-product-img-wrap img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: var(--radius);
    background: var(--cream);
}

.ep-product-info {
    flex: 1;
    min-width: 0;
}

.ep-product-info h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.ep-product-specs {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.ep-product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
}

.ep-product-rating {
    font-size: 0.9rem;
    color: var(--amber);
    font-weight: 500;
}

.ep-product-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.btn-buy-lg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* FAQ section */
.ep-faq-section {
    margin-bottom: 48px;
}

.ep-faq-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    transition: background var(--transition);
}

.faq-item summary:hover {
    background: var(--blue-glow);
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--blue);
    font-weight: 300;
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text-body);
}

/* Related section */
.ep-related-section {
    margin-bottom: 48px;
}

.ep-related-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.related-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.related-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.related-info {
    padding: 14px 16px;
}

.related-title {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 4px;
}

.related-date {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* CTA section */
.ep-cta-section {
    margin-bottom: 48px;
}

.ep-cta-box {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.ep-cta-box h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
}

.ep-cta-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   CATEGORY PAGE
   ═══════════════════════════════════════ */
.cat-hero {
    background: var(--navy);
    padding: 60px 0 48px;
    text-align: center;
}

.cat-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.cat-hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 650px;
    margin: 0 auto 16px;
    line-height: 1.7;
}

.cat-hero-count {
    font-size: 0.85rem;
    color: var(--amber-soft);
    font-weight: 600;
}

.cat-episodes {
    padding: 48px 0;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.cat-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.cat-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
}

.cat-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--sand);
    overflow: hidden;
}

.cat-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-card-thumb-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: var(--text-light);
    background: var(--sand);
}

.cat-card-body {
    padding: 20px;
}

.cat-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 8px;
}

.cat-card-price {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 600;
    margin-right: 12px;
}

.cat-card-count {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-right: 12px;
}

.cat-card-date {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* Other categories */
.cat-other {
    padding: 0 0 48px;
}

.cat-other h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cat-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-link-pill {
    display: inline-flex;
    padding: 8px 20px;
    background: var(--card-bg);
    border: 1px solid var(--sand-mid);
    border-radius: 100px;
    color: var(--text-body);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.cat-link-pill:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Episode detail
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
    .ep-product-card {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }
    .ep-product-content {
        flex-direction: column;
        gap: 16px;
    }
    .ep-product-img-wrap img {
        width: 100%;
        height: auto;
        max-height: 200px;
    }
    .ep-cta-box {
        padding: 32px 20px;
    }
    .ep-cta-box h2 {
        font-size: 1.4rem;
    }
    .comparison-table {
        font-size: 0.82rem;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }
    .table-product-img {
        width: 36px;
        height: 36px;
    }
    .cat-grid {
        grid-template-columns: 1fr;
    }
}
