/**
 * SmartPhone Review - Global Stylesheet
 * Version: 2.0 - Pastel Theme
 * ============================================
 */

/* ============================================
   CSS VARIABLES - PASTEL PALETTE
   ============================================ */
:root {
    /* Primary Colors - Pastel */
    --primary: #7C9CB5;           /* Bleu pastel doux */
    --primary-light: #A8C5DA;     /* Bleu pastel clair */
    --primary-dark: #5A7A8F;      /* Bleu pastel foncé */

    /* Secondary Colors */
    --secondary: #2D3E50;         /* Bleu-gris foncé pour textes */
    --secondary-light: #4A5D6E;   /* Bleu-gris moyen */

    /* Accent Colors - Pastel */
    --accent: #E8A598;            /* Corail/pêche pastel */
    --accent-light: #F5CDC4;      /* Corail très clair */
    --accent-dark: #D4887A;       /* Corail plus soutenu */

    /* Semantic Colors - Pastel */
    --success: #8FBC8F;           /* Vert sauge pastel */
    --success-light: #B5D5B5;     /* Vert clair */
    --warning: #E8C87C;           /* Jaune miel pastel */
    --warning-light: #F5E4B3;     /* Jaune clair */
    --danger: #D4A5A5;            /* Rose poudré */
    --danger-light: #E8C5C5;      /* Rose très clair */
    --info: #9BB8D3;              /* Bleu ciel pastel */

    /* Neutrals */
    --text-primary: #3D4852;      /* Gris foncé doux */
    --text-secondary: #6B7C8A;    /* Gris moyen */
    --text-light: #95A5A6;        /* Gris clair */
    --text-muted: #B8C5CC;        /* Gris très clair */

    /* Backgrounds */
    --bg-body: #F7F9FB;           /* Fond page - gris très léger bleuté */
    --bg-white: #FFFFFF;          /* Blanc pur */
    --bg-light: #F0F4F7;          /* Fond sections alternées */
    --bg-card: #FFFFFF;           /* Fond cartes */
    --bg-soft: #E8EEF2;           /* Fond doux */
    --bg-dark: #2D3E50;           /* Fond foncé (header/footer) */
    --bg-dark-light: #3D5166;     /* Fond foncé plus clair */

    /* Borders */
    --border-color: #DDE4E9;      /* Bordures légères */
    --border-light: #E8EEF2;      /* Bordures très légères */
    --border-dark: #C5D0D8;       /* Bordures plus marquées */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    --gradient-hero: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    --gradient-soft: linear-gradient(135deg, #F7F9FB 0%, #E8EEF2 100%);

    /* Shadows - Soft */
    --shadow-xs: 0 1px 3px rgba(45, 62, 80, 0.04);
    --shadow-sm: 0 2px 8px rgba(45, 62, 80, 0.06);
    --shadow-md: 0 4px 16px rgba(45, 62, 80, 0.08);
    --shadow-lg: 0 8px 32px rgba(45, 62, 80, 0.10);
    --shadow-xl: 0 16px 48px rgba(45, 62, 80, 0.12);

    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 4rem;
    --section-padding-sm: 2.5rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-body);
    margin: 0;
    padding: 0;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    margin-top: 0;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    margin-bottom: 1rem;
    position: relative;
}

h2.section-title {
    display: inline-block;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent);
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 0.75rem;
    color: var(--secondary-light);
}

h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

h5, h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

small, .text-small {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

/* ============================================
   LINKS
   ============================================ */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

.link-accent {
    color: var(--accent);
}

.link-accent:hover {
    color: var(--accent-dark);
}

/* ============================================
   IMAGES - RESPONSIVE & OPTIMIZED
   ============================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Product Images Container */
.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.img-container img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

/* Image Sizes */
.img-xs { width: 40px; height: 40px; }
.img-sm { width: 60px; height: 60px; }
.img-md { width: 100px; height: 100px; }
.img-lg { width: 150px; height: 150px; }
.img-xl { width: 200px; height: 200px; }

/* Product Image in Cards */
.product-image {
    aspect-ratio: 1 / 1;
    padding: 1rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

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

/* Product Image - Main (Articles) */
.product-image-main {
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--bg-light);
    padding: 1rem;
}

/* Cover Images (Blog) */
.cover-image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-soft);
}

.cover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* Avatar Images */
.avatar {
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.avatar-xs { width: 32px; height: 32px; }
.avatar-sm { width: 40px; height: 40px; }
.avatar-md { width: 64px; height: 64px; }
.avatar-lg { width: 96px; height: 96px; }
.avatar-xl { width: 128px; height: 128px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--bg-white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 165, 152, 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.btn-outline-accent {
    background: transparent;
    color: var(--accent-dark);
    border-color: var(--accent);
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: var(--bg-white);
}

.btn-soft {
    background: var(--bg-soft);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-soft:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* CTA Button - Emphasized */
.btn-cta {
    background: var(--gradient-accent);
    color: var(--bg-white);
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232, 165, 152, 0.35);
    color: var(--bg-white);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.card-body {
    padding: 1.25rem;
}

.card-header {
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    font-weight: 600;
    color: var(--secondary);
}

.card-footer {
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar,
.site-header {
    background: var(--bg-dark);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.navbar-brand,
.site-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--bg-white) !important;
    text-decoration: none;
}

.navbar-brand span,
.site-logo span {
    color: var(--accent-light);
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--accent-light) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: var(--gradient-hero);
    color: var(--bg-white);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero h1 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.25rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--bg-white);
}

.section-dark .section-title {
    color: var(--bg-white);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.section-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
}

.section-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ============================================
   TOP 3 SECTION
   ============================================ */
.top3-section {
    background: var(--bg-light);
    padding: var(--section-padding) 0;
}

.top3-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.top3-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.top3-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.top3-badge.gold {
    background: linear-gradient(135deg, #E8C87C 0%, #F5E4B3 100%);
    color: var(--secondary);
}

.top3-badge.silver {
    background: linear-gradient(135deg, #B8C5CC 0%, #DDE4E9 100%);
    color: var(--secondary);
}

.top3-badge.bronze {
    background: linear-gradient(135deg, #D4A574 0%, #E8C5A0 100%);
    color: var(--secondary);
}

.top3-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 1rem;
}

.top3-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.top3-brand {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.top3-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0.25rem 0 0.5rem;
}

.top3-name a {
    color: inherit;
    text-decoration: none;
}

.top3-name a:hover {
    color: var(--primary);
}

.top3-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.top3-rating-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--warning);
}

.top3-rating-stars {
    color: var(--warning);
}

.top3-pros {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.top3-pros li {
    padding: 0.375rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.top3-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.top3-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin: 1rem 0;
}

.top3-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ============================================
   REVIEW CARDS
   ============================================ */
.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

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

.review-card-image {
    height: 160px;
    background: var(--gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.review-card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.review-card-body {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.review-card-brand {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.review-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.25rem 0;
    flex: 1;
    color: var(--secondary);
}

.review-card-title a {
    color: inherit;
    text-decoration: none;
}

.review-card-title a:hover {
    color: var(--primary);
}

.review-card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.review-card-rating .stars {
    color: var(--warning);
    font-size: 0.8rem;
}

.review-card-rating .value {
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.9rem;
}

/* ============================================
   VERSUS SECTION
   ============================================ */
.versus-section {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: var(--section-padding) 0;
}

.versus-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    transition: background var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.versus-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.versus-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.versus-product {
    flex: 1;
    max-width: 120px;
}

.versus-product img {
    height: 80px;
    object-fit: contain;
}

.versus-product-name {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.versus-vs {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-light);
}

.versus-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.versus-title a {
    color: var(--bg-white);
    text-decoration: none;
}

.versus-title a:hover {
    color: var(--accent-light);
}

/* ============================================
   BEST LISTS CARDS
   ============================================ */
.bestlist-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

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

.bestlist-card-header {
    background: var(--gradient-primary);
    color: var(--bg-white);
    padding: 1.5rem;
}

.bestlist-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.bestlist-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.bestlist-card-title a {
    color: var(--bg-white);
    text-decoration: none;
}

.bestlist-card-body {
    padding: 1.25rem;
}

.bestlist-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.bestlist-card-updated {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

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

.blog-card-image {
    height: 160px;
    background: var(--bg-soft);
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-card-category {
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--secondary);
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-meta img {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--gradient-hero);
    color: var(--bg-white);
    padding: var(--section-padding) 0;
}

.about-section h2 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.about-values {
    margin-top: 2rem;
}

.about-value {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-value-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 165, 152, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-value-title {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--bg-white);
}

.about-value-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
    padding: var(--section-padding) 0;
}

.team-member {
    text-align: center;
    padding: 1rem;
}

.team-member-avatar {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--bg-light);
    box-shadow: var(--shadow-md);
}

.team-member-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.team-member-name a {
    color: inherit;
    text-decoration: none;
}

.team-member-name a:hover {
    color: var(--primary);
}

.team-member-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   BRANDS SECTION
   ============================================ */
.brands-section {
    background: var(--bg-light);
    padding: 3rem 0;
}

.brand-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-light);
}

.brand-link:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

/* ============================================
   ARTICLE CONTENT
   ============================================ */
.article-header {
    background: var(--gradient-hero);
    color: var(--bg-white);
    padding: 2rem 0;
}

.article-header h1 {
    color: var(--bg-white);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    font-size: 0.85rem;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.85);
}

.article-meta-item i {
    color: var(--accent-light);
}

.main-content {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   PROS & CONS
   ============================================ */
.pros-list,
.cons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li,
.cons-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.cons-list li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

/* ============================================
   RATING
   ============================================ */
.rating-box {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.rating-stars {
    color: var(--warning);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

/* ============================================
   AUTHOR BOX
   ============================================ */
.author-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    border: 1px solid var(--border-light);
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--accent-light);
    flex-shrink: 0;
}

.author-info h4 {
    margin: 0 0 0.25rem;
    color: var(--secondary);
}

.author-title {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.author-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

/* ============================================
   SIDEBAR
   ============================================ */
.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.sidebar-card h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    color: var(--secondary);
}

.sticky-sidebar {
    position: sticky;
    top: 80px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer,
.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.footer h2,
.footer-title {
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer a:hover {
    color: var(--accent-light);
}

.footer-brand,
.footer-brand.site-logo {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--bg-white);
}

.footer-brand span {
    color: var(--accent-light);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    color: var(--accent-light);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--bg-white);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-wrapper {
    background: var(--bg-white);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--text-secondary);
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 500;
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    background-color: var(--bg-white);
    color: var(--text-primary);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124, 156, 181, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ============================================
   BADGES & TAGS
   ============================================ */
.badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
}

.badge-primary {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.badge-accent {
    background: var(--accent-light);
    color: var(--accent-dark);
}

.badge-success {
    background: var(--success-light);
    color: #2D5A2D;
}

.badge-warning {
    background: var(--warning-light);
    color: #7A5D1A;
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-light { background-color: var(--bg-light) !important; }
.bg-white { background-color: var(--bg-white) !important; }
.bg-soft { background-color: var(--bg-soft) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-accent { background-color: var(--accent) !important; }

.text-primary { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }

.border-light { border-color: var(--border-light) !important; }
.border-primary { border-color: var(--primary) !important; }

.shadow-sm { box-shadow: var(--shadow-sm) !important; }
.shadow-md { box-shadow: var(--shadow-md) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

.rounded-sm { border-radius: var(--radius-sm) !important; }
.rounded-md { border-radius: var(--radius-md) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-value {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 2.5rem;
    }

    body {
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-stat {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .section-title {
        font-size: 1.5rem;
    }

    .main-content {
        padding: 1.25rem;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .top3-image {
        height: 150px;
    }

    .review-card-image {
        height: 140px;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 2.5rem 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .top3-card {
        padding: 1.25rem;
    }

    .card-body {
        padding: 1rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .navbar,
    .site-header,
    .breadcrumb-wrapper,
    .sidebar-card,
    .footer,
    .site-footer,
    .btn-cta {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .main-content {
        box-shadow: none;
        padding: 0;
    }
}
