/* ==================== PREMIUM ARTICLE/GUIDE STYLESHEET ==================== */
/* Modern SaaS blog-style layout for OurDream AI article pages */
/* Designed for: ai-girlfriend-creation-guide.html, ourdream-video-guide.html, 
   best-ai-girlfriend-apps.html, ourdream-phone-call-review.html */

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Article-specific tokens - inherits from main style.css */
    --article-max-width: 900px;
    --article-wide-width: 1100px;
    --article-spacing: 80px;
    --article-spacing-mobile: 50px;
    --article-card-radius: 20px;
    --article-card-radius-sm: 14px;
    --article-content-line-height: 1.85;
    --article-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== ARTICLE LAYOUT WRAPPER ==================== */
.article-wrapper {
    max-width: var(--article-wide-width);
    margin: 0 auto;
    padding: 0 32px;
}

.article-body {
    max-width: var(--article-max-width);
    margin: 0 auto;
}

/* ==================== HERO SECTION - UNIFIED ==================== */
.article-hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #080808 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -30%;
    width: 60%;
    height: 220%;
    background: radial-gradient(ellipse, rgba(255, 45, 45, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.article-hero::after {
    content: '';
    position: absolute;
    top: -60%;
    right: -30%;
    width: 60%;
    height: 220%;
    background: radial-gradient(ellipse, rgba(255, 204, 0, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* Hero Two-Column Layout (Desktop) */
.article-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.article-hero-content {
    position: relative;
    z-index: 2;
}

.article-hero-visual {
    position: relative;
    z-index: 2;
}

.article-hero-visual img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--article-card-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: var(--article-transition);
}

.article-hero-visual img:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 45, 45, 0.3);
    box-shadow: 0 30px 80px rgba(255, 45, 45, 0.15);
}

/* Badge Styles */
.article-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.18) 0%, rgba(255, 204, 0, 0.15) 100%);
    border: 1px solid rgba(255, 45, 45, 0.35);
    color: var(--yellow);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.article-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Title Styles */
.article-title {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 28px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.article-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle/Intro */
.article-intro {
    font-size: 1.18rem;
    color: var(--text-secondary);
    line-height: var(--article-content-line-height);
    margin-bottom: 32px;
    max-width: 700px;
}

.article-intro strong {
    color: var(--text-primary);
}

.article-intro em {
    color: var(--primary);
    font-style: normal;
    font-weight: 500;
}

/* Article Meta Information */
.article-meta {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.article-meta-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* ==================== STICKY TABLE OF CONTENTS ==================== */
.article-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    padding: var(--article-spacing) 0;
}

.article-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.article-toc-inner {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--article-card-radius);
    padding: 24px;
}

.article-toc-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-toc-title i {
    color: var(--primary);
}

.article-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-toc-list li {
    margin-bottom: 6px;
}

.article-toc-list a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-radius: 10px;
    transition: var(--article-transition);
    border-left: 3px solid transparent;
}

.article-toc-list a:hover {
    background: rgba(255, 45, 45, 0.08);
    color: var(--text-primary);
    border-left-color: var(--primary);
}

.article-toc-list a.active {
    background: rgba(255, 45, 45, 0.12);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

/* ==================== ARTICLE SECTIONS ==================== */
.article-section {
    margin-bottom: var(--article-spacing);
}

.article-section:last-child {
    margin-bottom: 0;
}

/* Section Headers */
.article-section-header {
    margin-bottom: 32px;
}

.article-section-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.15) 0%, rgba(255, 204, 0, 0.1) 100%);
    border: 1px solid rgba(255, 45, 45, 0.25);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 22px;
}

.article-section-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    line-height: 1.3;
}

.article-section-title i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Article Content Typography */
.article-content {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: var(--article-content-line-height);
}

.article-content p {
    margin-bottom: 22px;
}

.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.article-content em {
    font-style: italic;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 18px;
    line-height: 1.35;
}

.article-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 14px;
}

/* Article Lists */
.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.article-content ul li,
.article-content ol li {
    position: relative;
    padding: 12px 0 12px 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.article-content ul li:last-child,
.article-content ol li:last-child {
    border-bottom: none;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
}

.article-content ol {
    counter-reset: article-counter;
}

.article-content ol li {
    counter-increment: article-counter;
}

.article-content ol li::before {
    content: counter(article-counter);
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

/* ==================== CARD-STYLE SECTIONS ==================== */
.article-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--article-card-radius);
    padding: 36px;
    margin: 32px 0;
    transition: var(--article-transition);
}

.article-card:hover {
    border-color: rgba(255, 45, 45, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.article-card.highlight {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 204, 0, 0.06) 100%);
    border-color: rgba(255, 45, 45, 0.3);
}

.article-card.highlight:hover {
    border-color: rgba(255, 45, 45, 0.5);
}

/* ==================== STEP CARDS ==================== */
.steps-grid {
    display: grid;
    gap: 36px;
    margin: 40px 0;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--article-card-radius);
    padding: 40px;
    position: relative;
    transition: var(--article-transition);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--article-transition);
}

.step-card:hover {
    border-color: rgba(255, 45, 45, 0.25);
    transform: translateX(6px);
}

.step-card:hover::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 45, 45, 0.35);
}

.step-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 14px 0 16px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0;
}

/* ==================== IMAGE SECTIONS ==================== */
.article-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 36px 0;
}

.article-image-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.article-image-grid.single {
    grid-template-columns: 1fr;
}

.article-image-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--article-transition);
}

.article-image-item:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.article-image-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: var(--article-transition);
}

.article-image-grid.single .article-image-item img {
    height: 380px;
}

.article-image-item:hover img {
    transform: scale(1.05);
}

.article-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 18px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0;
    transition: var(--article-transition);
}

.article-image-item:hover .article-image-caption {
    opacity: 1;
}

/* ==================== VIDEO SHOWCASE ==================== */
.article-video {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--article-card-radius);
    overflow: hidden;
    margin: 36px 0;
}

.article-video video {
    width: 100%;
    display: block;
}

.article-video-caption {
    padding: 18px 22px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-muted);
    font-size: 0.92rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.article-video-caption i {
    color: var(--primary);
}

/* ==================== COMPARISON TABLE ==================== */
.article-table-wrapper {
    margin: 36px 0;
    overflow-x: auto;
}

.article-table {
    width: 100%;
    background: var(--bg-card);
    border-radius: var(--article-card-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-collapse: collapse;
}

.article-table th {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.12) 0%, rgba(255, 204, 0, 0.08) 100%);
    padding: 20px 22px;
    text-align: left;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article-table td {
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.95rem;
    vertical-align: top;
}

.article-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015);
}

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

.article-table tr:hover td {
    background: rgba(255, 45, 45, 0.04);
}

.article-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 160px;
}

/* Table Score Badges */
.table-score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.table-score.high {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.table-score.medium {
    color: var(--yellow);
    background: rgba(255, 204, 0, 0.1);
}

.table-score.low {
    color: #f44336;
    background: rgba(244, 67, 54, 0.1);
}

/* ==================== HIGHLIGHT BOXES ==================== */
.article-highlight {
    border-radius: var(--article-card-radius-sm);
    padding: 28px 30px;
    margin: 28px 0;
    border-left: 4px solid;
}

.article-highlight-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.article-highlight-title i {
    font-size: 1.1rem;
}

.article-highlight p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Tip Box */
.article-highlight.tip {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0.04) 100%);
    border-color: var(--yellow);
}

.article-highlight.tip .article-highlight-title {
    color: var(--yellow);
}

/* Warning Box */
.article-highlight.warning {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 45, 45, 0.04) 100%);
    border-color: var(--primary);
}

.article-highlight.warning .article-highlight-title {
    color: var(--primary);
}

/* Success Box */
.article-highlight.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.04) 100%);
    border-color: #10b981;
}

.article-highlight.success .article-highlight-title {
    color: #10b981;
}

/* Info Box */
.article-highlight.info {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.04) 100%);
    border-color: #3b82f6;
}

.article-highlight.info .article-highlight-title {
    color: #3b82f6;
}

/* ==================== CODE BLOCKS ==================== */
.article-code {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--article-card-radius-sm);
    padding: 24px 28px;
    margin: 24px 0;
    font-family: 'Fira Code', 'SF Mono', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.article-code-label {
    display: inline-block;
    background: rgba(255, 45, 45, 0.15);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-code-label.good {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.article-code code {
    color: var(--text-secondary);
    line-height: 1.7;
    display: block;
}

/* ==================== FEATURE LIST ==================== */
.article-feature-list {
    list-style: none;
    padding: 0;
    margin: 28px 0;
}

.article-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.article-feature-list li:last-child {
    border-bottom: none;
}

.article-feature-list li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 1rem;
}

.article-feature-list li strong {
    color: var(--text-primary);
}

/* ==================== CTA BOXES ==================== */
.article-cta {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.12) 0%, rgba(255, 204, 0, 0.08) 100%);
    border: 2px solid rgba(255, 45, 45, 0.3);
    border-radius: var(--article-card-radius);
    padding: 44px;
    text-align: center;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.08) 0%, transparent 50%);
    animation: pulse-bg 5s ease-in-out infinite;
}

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

.article-cta-content {
    position: relative;
    z-index: 2;
}

.article-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.article-cta p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.article-cta .coupon-display {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-dark);
    border: 2px dashed var(--yellow);
    padding: 14px 28px;
    border-radius: 12px;
    margin-bottom: 26px;
}

.article-cta .coupon-code {
    font-family: 'Fira Code', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 3px;
}

.article-cta .coupon-copy {
    background: var(--yellow);
    color: var(--bg-dark);
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--article-transition);
    font-size: 0.9rem;
}

.article-cta .coupon-copy:hover {
    transform: scale(1.05);
    background: #fff;
}

/* ==================== VERDICT SECTION ==================== */
.article-verdict {
    background: linear-gradient(135deg, rgba(255, 45, 45, 0.1) 0%, rgba(255, 204, 0, 0.06) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--article-card-radius);
    padding: 50px;
    text-align: center;
    margin: 50px 0;
    position: relative;
}

.article-verdict::before {
    content: '🏆';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    background: var(--bg-dark);
    padding: 0 22px;
}

.article-verdict h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.article-verdict p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 24px;
}

/* Ratings Grid */
.article-ratings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.article-rating-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.article-rating-card h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.article-rating-card .score {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-rating-card .stars {
    color: var(--yellow);
    font-size: 1rem;
    margin-top: 10px;
}

/* ==================== RANKING CARDS (LISTICLE) ==================== */
.ranking-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--article-card-radius);
    padding: 44px;
    margin-bottom: 44px;
    position: relative;
    overflow: hidden;
    transition: var(--article-transition);
}

.ranking-card:hover {
    border-color: rgba(255, 45, 45, 0.25);
    box-shadow: 0 20px 60px rgba(255, 45, 45, 0.1);
}

.ranking-card.top-pick {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255, 45, 45, 0.06) 100%);
}

.ranking-card.top-pick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--yellow) 100%);
}

.ranking-number {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 45, 45, 0.35);
}

.ranking-card.top-pick .ranking-number {
    width: 64px;
    height: 64px;
    font-size: 1.7rem;
}

.ranking-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ranking-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 26px;
}

.ranking-logo {
    width: 85px;
    height: 85px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ranking-card.top-pick .ranking-logo {
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(255, 45, 45, 0.3);
}

.ranking-info h2 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.ranking-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ranking-stars {
    color: var(--yellow);
    font-size: 1.05rem;
}

.ranking-score {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.ranking-description {
    color: var(--text-secondary);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 26px;
}

/* ==================== CHECKLIST ==================== */
.article-checklist {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--article-card-radius);
    padding: 36px;
    margin: 36px 0;
}

.article-checklist h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-checklist h4 i {
    color: var(--primary);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-check i {
    color: white;
    font-size: 0.75rem;
}

.checklist-item p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

.checklist-item strong {
    color: var(--text-primary);
}

/* ==================== RELATED CONTENT ==================== */
.article-related {
    padding: 60px 0;
    background: var(--bg-dark);
}

.article-related-header {
    text-align: center;
    margin-bottom: 40px;
}

.article-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1200px) {
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-toc {
        display: none;
    }
}

@media (max-width: 1024px) {
    .article-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-hero-visual {
        order: -1;
        text-align: center;
    }
    
    .article-hero-visual img {
        max-width: 320px;
    }
    
    .article-ratings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --article-spacing: 50px;
    }
    
    .article-wrapper {
        padding: 0 20px;
    }
    
    .article-hero {
        padding: 50px 0 70px;
    }
    
    .article-title {
        font-size: 1.9rem;
    }
    
    .article-intro {
        font-size: 1.05rem;
    }
    
    .article-section-title {
        font-size: 1.5rem;
    }
    
    .article-image-grid {
        grid-template-columns: 1fr;
    }
    
    .article-image-item img {
        height: 220px;
    }
    
    .article-image-grid.single .article-image-item img {
        height: 260px;
    }
    
    .article-card,
    .step-card,
    .ranking-card {
        padding: 28px 22px;
    }
    
    .article-cta {
        padding: 36px 24px;
    }
    
    .article-cta .coupon-display {
        flex-direction: column;
        gap: 12px;
    }
    
    .article-verdict {
        padding: 40px 24px;
    }
    
    .article-ratings-grid {
        grid-template-columns: 1fr;
    }
    
    .article-related-grid {
        grid-template-columns: 1fr;
    }
    
    .ranking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    
    .ranking-logo {
        width: 72px;
        height: 72px;
    }
    
    .ranking-number {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
        top: 18px;
        right: 18px;
    }
    
    .article-meta {
        gap: 18px;
    }
    
    .article-table th,
    .article-table td {
        padding: 14px 14px;
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .article-wrapper {
        padding: 0 16px;
    }
    
    .article-hero {
        padding: 40px 0 55px;
    }
    
    .article-title {
        font-size: 1.65rem;
    }
    
    .article-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .step-number {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }
    
    .article-highlight {
        padding: 22px;
    }
    
    .article-checklist {
        padding: 24px 20px;
    }
}

/* ==================== MOBILE TOC TOGGLE ==================== */
.article-toc-mobile-toggle {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--yellow) 100%);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 6px 20px rgba(255, 45, 45, 0.4);
    transition: var(--article-transition);
}

.article-toc-mobile-toggle i {
    color: white;
    font-size: 1.2rem;
}

.article-toc-mobile-toggle:hover {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .article-toc-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobile TOC Drawer */
.article-toc-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 24px;
    z-index: 100;
    max-height: 60vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-toc-mobile.active {
    display: block;
    transform: translateY(0);
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .article-hero::before,
    .article-hero::after,
    .article-toc,
    .article-cta,
    .mobile-bottom-cta,
    .floating-gift-btn {
        display: none !important;
    }
    
    .article-hero {
        background: white !important;
        padding: 20px 0 !important;
    }
    
    .article-title,
    .article-section-title {
        color: black !important;
    }
}
