/* ===================================
   Global Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #f8f9fa;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.2rem;
}

strong {
    font-weight: 600;
}

/* ===================================
   Navbar Styles
   =================================== */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.navbar-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-img {
    height: 35px;
    width: auto;
}

.nav-link {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #007bff;
}

/* ===================================
   Main Content Container
   =================================== */
.main-content {
    background-color: #fff;
    min-height: calc(100vh - 200px);
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0px;
}

/* ===================================
   Article Styles
   =================================== */
.article-content {
    background: #fff;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.article-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

/* ===================================
   Author Info
   =================================== */
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 90% center;
}

.author-details {
    flex: 1;
}

.author-text {
    margin-bottom: 0.25rem;
    font-size: 14px;
    color: #666;
}

.author-role {
    margin-bottom: 0;
    font-size: 13px;
    color: #999;
}

/* ===================================
   Featured Image
   =================================== */
.featured-image {
    margin-bottom: 2.5rem;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===================================
   Article Body
   =================================== */
.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.article-body p {
    margin-bottom: 1.5rem;
}

/* ===================================
   Info Box
   =================================== */
.info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 1.75rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.info-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* ===================================
   Highlight Text
   =================================== */
.highlight-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 2rem 0;
}

/* ===================================
   Product Feature Box
   =================================== */
.product-feature-box {
    background: #ececec;
    padding: 1.5rem 0.5rem;
    border: 1px solid #dadada;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border-radius: 10px;
}

.product-feature-box .award-badge {
    text-align: center;
    margin-bottom: 1.5rem;
}

.award-img {
    width: 80px;
    height: auto;
}

.product-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0rem;
    font-size: 14px;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 18px;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ===================================
   Buttons
   =================================== */
.btn-cta {
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 40px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-cta:hover {
    background: #ee5a52;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
    background: transparent;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: #007bff;
    color: #fff;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin: 3rem 0 2rem;
}

.section-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 3px solid #003f82;
    padding-bottom: 0.5rem;
}

/* ===================================
   Ranking Intro
   =================================== */
.ranking-intro {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.ranking-intro p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

/* ===================================
   Criteria Section
   =================================== */
.criteria-section {
    margin: 2rem 0;
}

.criteria-item {
    margin-bottom: 1.5rem;
}
.criteria-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #003f82;
    margin-bottom: 0.75rem;
}

.criteria-item p {
    margin-bottom: 0;
    color: #555;
}

/* ===================================
   Product Review Section
   =================================== */
.product-review {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.product-header {
    margin-bottom: 2rem;
}

.product-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* ===================================
   Grade Box
   =================================== */
.grade-box {
    background: #f7f7f7;
    padding: 0.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.grade-box.grade-b {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.grade-box.grade-c {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.award-badge-small {
    margin-bottom: 1rem;
}

.award-img-small {
    width: 60px;
    height: auto;
}

.grade-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.grade {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ===================================
   Product Review Image
   =================================== */
.product-review-image {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* ===================================
   Breakdown Section
   =================================== */
.breakdown-section {
    margin: 2rem 0;
}

.breakdown-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #003f82;
}

/* ===================================
   Why Number One Section
   =================================== */
.why-number-one {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.why-number-one h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

/* ===================================
   Discount Alert
   =================================== */
.discount-alert {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
}

.discount-alert p {
    margin-bottom: 0;
    font-weight: 600;
    color: #856404;
}

/* ===================================
   Rating Bars
   =================================== */

/* базово – ползунок скрыт */
.rating-bars .progress-bar {
    width: 0;
}

/* когда JS добавил .animate – вырастает до значения из --target */
.rating-bars .progress-bar.animate {
    width: var(--target);
}

.rating-bars {
    margin: 2.5rem 0;
}

.rating-bar-item {
    margin-bottom: 0.5rem;
}

.rating-bar-item .rating-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.progress {
    height: 24px;
    border-radius: 6px;
    background-color: #e9ecef;
    position: relative;
    overflow: visible;
}

.progress-bar {
    background: linear-gradient(90deg, #235a09 0%, #5be10f 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-weight: 700;
    color: #fff;
    font-size: 14px;
    transition: width 0.6s ease;
}

/* ===================================
   Pros and Cons
   =================================== */
.pros-cons {
    margin: 2rem 0;
}

.pros-box, .cons-box {
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.pros-box {
    background: #d4edda;
    border: 2px solid #28a745;
}

.cons-box {
    background: #f8d7da;
    border: 2px solid #dc3545;
}

.pros-box h5 {
    color: #155724;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cons-box h5 {
    color: #721c24;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pros-box ul, .cons-box ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.pros-box li, .cons-box li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 15px;
}

/* ===================================
   Experience & Verdict Sections
   =================================== */
.experience-section, .verdict-section {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.experience-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.verdict-section p {
    margin-bottom: 0;
    font-size: 17px;
}

/* ===================================
   Winner Section
   =================================== */
.winner-section {
    background: linear-gradient(135deg, #ffffff 0%, #d9d9d9 100%);
    color: #000;
    padding: 1rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.winner-section h2 {
    color: #000;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.winner-section p {
    font-size: 16px;
}

.winner-reasons {
    margin-top: 2rem;
}

.reason-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.reason-item h4 {
    color: #000;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.reason-item p {
    margin-bottom: 0;
}

/* ===================================
   Buying Guide
   =================================== */


.guide-item {
    background: #fff;
    border-left: 4px solid #003f82;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.guide-item h4 {
    color: #003f82;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.guide-item p {
    margin-bottom: 0;
}

/* ===================================
   Red Flags Section
   =================================== */
.red-flags-section {
    /*background: #fff5f5;*/
    /*border: 2px solid #dc3545;*/
    border-radius: 12px;
    padding: 1rem;
    margin: 3rem 0;
}

.red-flags-section {
    background: #fff;
    border-left: 4px solid #dc3444;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.red-flags-section h4 {
    color: #dc3444;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.red-flags-section p {
    margin-bottom: 0;
}

/* ===================================
   Special Offer Section
   =================================== */
.special-offer-section {
    background: linear-gradient(135deg, #f3f3f3 0%, #fff4f4 100%);
    color: #000;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.special-offer-section h2 {
    color: #000;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.special-offer-section h3 {
    color: #000;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.special-offer-section p {
    font-size: 15px;
    line-height: 1.8;
}

.offer-list {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.offer-list li {
    font-size: 18px;
    margin-bottom: 1rem;
}

/* ===================================
   Final CTA Box
   =================================== */
.final-cta {
    margin: 3rem 0 2rem;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: #F5F5F5;
    color: #000;
    padding: 3rem 0 2rem;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-copyright {
    font-size: 14px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 900px;
    margin: 0 auto;
}
.btn-primary {
    background-color: #003f82;
    border-color: #003f82;
}
/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .article-title {
        font-size: 1.75rem;
    }

    .article-subtitle {
        font-size: 1.1rem;
    }

    .article-body {
        font-size: 16px;
    }

    .product-feature-box {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-review {
        padding: 1.5rem;
    }

    .grade-box {
        margin-bottom: 2rem;
    }

    .grade {
        font-size: 2.5rem;
    }

    .winner-section,
    .special-offer-section {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .content-container {
        padding: 20px 15px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .btn-cta {
        font-size: 16px;
        padding: 12px 30px;
    }

    .product-feature-box,
    .product-review,
    .winner-section,
    .special-offer-section {
        padding: 1.25rem;
    }
}


.product-topline{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
    margin-bottom: 10px;
}

.rank-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #111;
    color:#fff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.rating-pill{
    display:inline-flex;
    align-items:baseline;
    gap:8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid #e7e7e7;
    color:#111;
    font-size: 13px;
    font-weight: 700;
}

.rating-pill small{
    font-weight: 600;
    color:#6b7280;
}


/* ===================================
   Accessibility – contrast fixes
   =================================== */

/* Автор – делаем текст темнее */
.author-role {
    color: #495057; /* вместо #999 */
}

/* Основной текст статьи – гарантируем хороший контраст */
.article-content {
    color: #212529;
}

/* Ссылки в футере типа <a class="text-decoration-none"> */
.footer a.text-decoration-none {
    color: #0a58ca; /* более тёмный синий на светлом фоне */
}

.footer a.text-decoration-none:hover,
.footer a.text-decoration-none:focus {
    color: #084298;
    text-decoration: underline;
}

/* Логотип/бренд в футере с классом .text-primary */
.footer .text-primary {
    color: #0a58ca !important;
}

/* ===================================
   Performance – font-display for icons
   =================================== */
@font-face {
    font-family: "bootstrap-icons";
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/fonts/bootstrap-icons.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* ключевая строка */
}

.intro-hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 667;
    object-fit: cover;
    border-radius: 8px;
}

















