/* AI Review Generator - Frontend Review Styles */

:root {
    --airg-cta-color: #e8930c;
    --airg-cta-hover: #d17e06;
    --airg-cta-gradient: linear-gradient(135deg, #e8930c 0%, #d17e06 100%);
    --airg-accent: #1a73e8;
    --airg-text: #333;
    --airg-text-light: #666;
    --airg-bg-light: #f8f9fa;
    --airg-border: #e0e0e0;
    --airg-success: #2e7d32;
    --airg-error: #c62828;
    --airg-radius: 8px;
    --airg-radius-lg: 12px;
}

/* Reading time */
.airg-reading-time {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    font-style: italic;
}

/* Hero image */
.airg-hero-figure {
    margin: 0 0 24px;
    text-align: center;
}

.airg-hero-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Content images */
.airg-figure {
    margin: 24px 0;
    text-align: center;
}

.airg-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Verdict rating */
.airg-verdict-rating {
    font-size: 18px;
    color: #0073aa;
}

/* CTA buttons */
.airg-cta-button-link {
    display: inline-block;
    background: var(--airg-cta-gradient);
    color: #fff !important;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 12px;
    box-shadow: 0 4px 14px rgba(232, 147, 12, 0.35);
}

.airg-cta-button-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 147, 12, 0.5);
    color: #fff !important;
    background: linear-gradient(135deg, var(--airg-cta-hover), var(--airg-cta-color));
}

.airg-cta-button-link::after {
    content: ' \2192';
}

.airg-cta-bottom {
    text-align: center;
    margin: 32px 0;
}

/* Mid-article CTA banner */
.airg-cta-mid {
    background: linear-gradient(135deg, #fff8ee, #fff3e0);
    border: 2px solid var(--airg-cta-color);
    border-radius: 10px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}

.airg-cta-mid-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #b36b00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.airg-cta-mid-title {
    font-size: 18px;
    font-weight: 700;
    color: #1d2327;
    margin: 0 0 4px;
}

.airg-cta-mid-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--airg-cta-color);
    margin: 0 0 14px;
}

.airg-cta-mid .airg-cta-button-link {
    margin-top: 0;
    padding: 14px 48px;
    font-size: 18px;
}

/* Bottom CTA card */
.airg-cta-bottom-card {
    background: #f8f9fa;
    border: 2px solid var(--airg-cta-color);
    border-radius: 10px;
    padding: 28px;
    margin: 36px 0;
    text-align: center;
}

.airg-cta-bottom-card .airg-cta-bottom-heading {
    font-size: 20px;
    font-weight: 700;
    color: #1d2327;
    margin: 0 0 6px;
}

.airg-cta-bottom-card .airg-cta-bottom-sub {
    font-size: 14px;
    color: #666;
    margin: 0 0 16px;
}

.airg-cta-bottom-card .airg-cta-button-link {
    padding: 16px 56px;
    font-size: 19px;
}

/* Sticky CTA bar - vises på BÅDE desktop og mobil */
.airg-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 2px solid var(--airg-cta-color);
    padding: 12px 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.airg-sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 1;
    min-width: 0;
}

.airg-sticky-cta-name {
    font-size: 15px;
    font-weight: 700;
    color: #1d2327;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

.airg-sticky-cta-price {
    font-size: 17px;
    font-weight: 800;
    color: var(--airg-cta-color);
    white-space: nowrap;
}

.airg-sticky-cta .airg-cta-button-link {
    margin: 0;
    padding: 12px 24px;
    font-size: 15px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile-specifikke overrides */
@media (max-width: 768px) {
    .airg-sticky-cta {
        padding: 10px 16px;
        padding-left: 70px; /* Plads til cookie-ikon i venstre side */
        justify-content: flex-end;
        gap: 12px;
    }

    .airg-sticky-cta-info {
        flex: 1;
        text-align: right;
        flex-direction: column;
        align-items: flex-end;
        gap: 2px;
    }

    .airg-sticky-cta-name {
        font-size: 13px;
        max-width: 100%;
        direction: rtl; /* Vis slutningen af navnet hvis det er for langt */
    }

    .airg-sticky-cta-price {
        font-size: 15px;
    }

    .airg-sticky-cta .airg-cta-button-link {
        padding: 12px 20px;
        font-size: 14px;
    }

    .airg-cta-mid .airg-cta-button-link,
    .airg-cta-bottom-card .airg-cta-button-link {
        display: block;
        padding: 14px 20px;
    }
}

/* "Anbefalet" badge på produktbox (rating >= 4.0) */
.airg-recommended-badge {
    display: inline-block;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(22, 163, 74, 0.25);
}
.airg-recommended-badge::before {
    content: "✓ ";
    font-weight: 900;
}

/* "Editor's Pick" badge til premium (rating >= 4.5) */
.airg-editor-pick-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 14px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}
.airg-editor-pick-badge::before {
    content: "★ ";
}

/* "Bottom line" konverterings-paragraf i konklusion */
.airg-bottom-line {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid var(--airg-cta-color);
    padding: 14px 18px;
    margin: 18px 0;
    border-radius: 6px;
    font-size: 17px;
    line-height: 1.55;
}
.airg-bottom-line strong:first-child {
    color: #92400e;
    font-weight: 800;
    margin-right: 6px;
}

/* ===============================================
   YouTube Video Embed
   =============================================== */
.airg-video-section {
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 10px;
    padding: 24px;
    margin: 28px 0;
}

.airg-video-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.airg-video-header h2 {
    margin: 0;
    font-size: 20px;
    color: #1d2327;
}

.airg-video-channel {
    font-size: 14px;
    color: #888;
    font-style: italic;
}

.airg-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.airg-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .airg-video-section {
        padding: 16px;
        margin: 20px 0;
    }

    .airg-video-header {
        flex-direction: column;
        gap: 4px;
    }

    .airg-video-header h2 {
        font-size: 18px;
    }
}

/* Disclosure */
.airg-disclosure {
    background: #f0f6fb;
    border: 1px solid #c3ddf1;
    border-left: 4px solid #0073aa;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    border-radius: 0 6px 6px 0;
}

.airg-disclosure strong {
    font-weight: 600;
}

/* Product Info Box */
.airg-product-box {
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 24px;
    margin: 24px 0;
}

.airg-product-header {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.airg-product-image {
    flex-shrink: 0;
}

.airg-product-image img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e2e4e7;
    padding: 8px;
}

.airg-product-details {
    flex: 1;
}

.airg-product-title {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.3;
}

.airg-product-brand {
    color: #666;
    font-size: 14px;
    margin: 0 0 12px;
}

.airg-product-price {
    font-size: 18px;
    margin: 0 0 16px;
}

.airg-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.airg-price-current {
    color: #c0392b;
    font-weight: 700;
}

/* Rating Badge */
.airg-rating-badge {
    display: inline-flex;
    align-items: baseline;
    background: linear-gradient(135deg, #0073aa, #005a87);
    color: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    gap: 4px;
}

.airg-rating-number {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.airg-rating-scale {
    font-size: 14px;
    opacity: 0.8;
}

/* Quick Verdict */
.airg-quick-verdict {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e4e7;
}

.airg-quick-pros strong,
.airg-quick-cons strong {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.airg-quick-pros strong {
    color: #27ae60;
}

.airg-quick-cons strong {
    color: #c0392b;
}

.airg-quick-pros ul,
.airg-quick-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.airg-quick-pros li,
.airg-quick-cons li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 14px;
}

.airg-quick-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 16px;
}

.airg-quick-cons li::before {
    content: '-';
    position: absolute;
    left: 2px;
    color: #c0392b;
    font-weight: 700;
    font-size: 16px;
}

/* Pros/Cons full section */
.airg-pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 24px 0;
}

.airg-pros {
    background: #f0faf4;
    border: 1px solid #27ae60;
    border-radius: 8px;
    padding: 20px;
}

.airg-cons {
    background: #fdf0f0;
    border: 1px solid #c0392b;
    border-radius: 8px;
    padding: 20px;
}

.airg-pros h3 {
    color: #27ae60;
    margin-top: 0;
}

.airg-cons h3 {
    color: #c0392b;
    margin-top: 0;
}

.airg-pros ul,
.airg-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.airg-pros li,
.airg-cons li {
    padding: 6px 0 6px 24px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.airg-pros li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.airg-cons li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #c0392b;
    font-weight: 700;
}

/* CTA Button */
.airg-cta-button .wp-block-button__link {
    background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
    color: #fff !important;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.airg-cta-button .wp-block-button__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

/* Rating bars */
.airg-rating-bars {
    margin: 24px 0;
}

.airg-rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 12px;
}

.airg-rating-bar-label {
    width: 140px;
    font-size: 14px;
    font-weight: 500;
}

.airg-rating-bar-track {
    flex: 1;
    height: 10px;
    background: #e2e4e7;
    border-radius: 5px;
    overflow: hidden;
}

.airg-rating-bar-fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
    transition: width 0.5s ease;
}

.airg-rating-bar-value {
    width: 40px;
    text-align: right;
    font-weight: 700;
    font-size: 14px;
}

/* Variant Comparison Table */
.airg-variant-table {
    margin: 24px 0;
    overflow-x: auto;
}

.airg-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.airg-comparison-table th {
    background: #f1f3f5;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.airg-comparison-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e9ecef;
}

.airg-comparison-table tr:hover td {
    background: #f8f9fa;
}

.airg-variant-cta {
    display: inline-block;
    padding: 6px 16px;
    background: #2271b1;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
}

.airg-variant-cta:hover {
    background: #135e96;
}

@media (max-width: 768px) {
    .airg-comparison-table {
        font-size: 12px;
    }
    .airg-comparison-table th,
    .airg-comparison-table td {
        padding: 8px 10px;
    }
}

/* Table of Contents */
.airg-toc {
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0 32px;
    position: sticky;
    top: 16px;
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    z-index: 5;
    scroll-behavior: smooth;
}

.airg-toc-header {
    font-size: 16px;
    font-weight: 700;
    color: #1d2327;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
}

.airg-toc-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.airg-toc-nav li {
    padding: 4px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
    margin-left: -12px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.airg-toc-nav li a {
    color: #0073aa;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    display: block;
    line-height: 1.4;
}

.airg-toc-nav li a:hover {
    color: #005a87;
    text-decoration: underline;
}

.airg-toc-nav li.airg-toc-sub {
    padding-left: 28px;
}

.airg-toc-nav li.airg-toc-sub a {
    font-size: 14px;
    font-weight: 400;
    color: #555;
}

.airg-toc-nav li.airg-toc-sub a:hover {
    color: #0073aa;
}

/* Active state from scroll-spy */
.airg-toc-nav li.is-active {
    border-left-color: #0073aa;
    background-color: #eef6fb;
}

.airg-toc-nav li.is-active > a {
    color: #005a87;
    font-weight: 700;
}

.airg-toc-nav li.airg-toc-sub.is-active {
    border-left-color: #4a9fc9;
}

.airg-toc-nav li.airg-toc-sub.is-active > a {
    color: #005a87;
    font-weight: 600;
}

/* Scroll-margin so anchor jumps don't hide content under any sticky header */
.airg-review-content h2[id],
.airg-review-content h3[id],
.entry-content h2[id],
.entry-content h3[id] {
    scroll-margin-top: 80px;
}

/* Mobile: not sticky (would block too much viewport) */
@media (max-width: 900px) {
    .airg-toc {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

/* Methodology */
.airg-methodology {
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 20px;
    margin: 32px 0;
    font-size: 13px;
    color: #666;
}

.airg-methodology h3 {
    margin-top: 0;
    font-size: 16px;
    color: #333;
}

/* Specifications table */
.airg-product-box table,
.entry-content .airg-product-box table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.airg-product-box th,
.airg-product-box td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #e2e4e7;
    font-size: 14px;
}

.airg-product-box th {
    background: #f0f0f1;
    font-weight: 600;
    width: 40%;
}

/* Archive Teaser Card */
.airg-teaser-card {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.airg-teaser-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #0073aa, #005a87);
    color: #fff;
    border-radius: 6px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.airg-teaser-rating-number {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.airg-teaser-rating-scale {
    font-size: 12px;
    opacity: 0.8;
}

.airg-teaser-brand {
    display: inline-block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.airg-teaser-excerpt {
    font-size: 14px;
    color: #444;
    margin: 0 0 12px;
    line-height: 1.5;
}

.airg-teaser-pros {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.airg-teaser-pros li {
    padding: 3px 0 3px 18px;
    position: relative;
    font-size: 13px;
    color: #333;
}

.airg-teaser-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.airg-teaser-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.airg-teaser-price {
    font-size: 15px;
    font-weight: 600;
    margin-right: auto;
}

.airg-teaser-read-more {
    display: inline-block;
    padding: 8px 18px;
    background: #0073aa;
    color: #fff !important;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.airg-teaser-read-more:hover {
    background: #005a87;
    color: #fff !important;
}

.airg-teaser-buy {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff !important;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.airg-teaser-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(39, 174, 96, 0.3);
    color: #fff !important;
}

/* Responsive */
@media (max-width: 768px) {
    .airg-product-header {
        flex-direction: column;
    }

    .airg-product-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .airg-quick-verdict,
    .airg-pros-cons {
        grid-template-columns: 1fr;
    }

    .airg-teaser-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .airg-teaser-read-more,
    .airg-teaser-buy {
        text-align: center;
    }
}

/* ===============================================
   Archive Filter Bar
   =============================================== */
.airg-filter-bar {
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.airg-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
}

.airg-filter-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.airg-filter-group label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.airg-filter-group select,
.airg-filter-group input[type="number"] {
    padding: 7px 10px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    min-width: 130px;
    height: 36px;
}

.airg-filter-group select:focus,
.airg-filter-group input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 1px #0073aa;
}

.airg-price-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.airg-price-inputs input {
    width: 80px;
}

.airg-price-inputs span {
    color: #999;
}

.airg-filter-actions {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
}

.airg-filter-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 7px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    height: 36px;
    transition: background 0.2s;
}

.airg-filter-btn:hover {
    background: #005a87;
}

.airg-filter-reset {
    color: #a00;
    text-decoration: none;
    font-size: 13px;
    line-height: 36px;
}

.airg-filter-reset:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .airg-filter-form {
        flex-direction: column;
    }

    .airg-filter-group select,
    .airg-filter-group input[type="number"] {
        width: 100%;
        min-width: auto;
    }

    .airg-price-inputs input {
        width: 100%;
        flex: 1;
    }

    .airg-filter-actions {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* ===============================================
   Top 10 Articles
   =============================================== */
.airg-top10-table-wrap {
    overflow-x: auto;
    margin-bottom: 30px;
}

.airg-top10-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.airg-top10-table th {
    background: #f0f0f1;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e2e4e7;
}

.airg-top10-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e2e4e7;
    vertical-align: middle;
}

.airg-top10-table tbody tr:hover {
    background: #f8f9fa;
}

.airg-top10-rank {
    font-size: 20px;
    font-weight: 700;
    color: #0073aa;
    width: 40px;
    text-align: center;
}

.airg-top10-rating {
    background: linear-gradient(135deg, #0073aa, #005a87);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.airg-top10-link {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.airg-top10-link:hover {
    text-decoration: underline;
}

/* Individual product cards in Top 10 */
.airg-top10-product {
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
}

.airg-top10-product h3 {
    margin-top: 0;
    font-size: 20px;
    color: #1d2327;
}

.airg-top10-product h3 em {
    color: #0073aa;
    font-size: 16px;
}

.airg-top10-product-rating {
    margin-bottom: 14px;
    font-size: 15px;
    color: #555;
}

.airg-top10-score {
    background: linear-gradient(135deg, #0073aa, #005a87);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 700;
}

.airg-top10-price {
    font-weight: 600;
}

.airg-top10-verdict {
    display: flex;
    gap: 20px;
    margin: 14px 0;
    font-size: 14px;
}

.airg-top10-pros {
    color: #27ae60;
}

.airg-top10-cons {
    color: #c0392b;
}

.airg-top10-ctas {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.airg-top10-read {
    display: inline-block;
    padding: 8px 18px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.airg-top10-read:hover {
    background: #005a87;
    color: #fff;
}

@media (max-width: 768px) {
    .airg-top10-table {
        font-size: 13px;
    }

    .airg-top10-table th,
    .airg-top10-table td {
        padding: 8px 6px;
    }

    .airg-top10-verdict {
        flex-direction: column;
        gap: 6px;
    }

    .airg-top10-product {
        padding: 16px;
    }
}

/* ===============================================
   Category Archive - Smaller Teaser Thumbnails
   =============================================== */
.category .post-thumbnail img,
.category .wp-post-image,
.archive .post-thumbnail img,
.archive .wp-post-image,
.category article .entry-image img,
.category article img.attachment-post-thumbnail {
    max-height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.category article .post-thumbnail,
.archive article .post-thumbnail,
.category article .entry-image {
    max-height: 200px;
    overflow: hidden;
    border-radius: 6px;
}

/* ===============================================
   Price History (#3)
   =============================================== */
.airg-price-history {
    background: #f0f7ff;
    border: 1px solid #d0e3f5;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0 24px;
}

.airg-price-history h3 {
    margin: 0 0 14px;
    font-size: 16px;
    color: #1d2327;
}

.airg-price-history-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.airg-ph-stat {
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.airg-ph-label {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.airg-ph-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #1d2327;
}

.airg-ph-low { color: #27ae60; }
.airg-ph-high { color: #c0392b; }
.airg-ph-current { color: #0073aa; }

.airg-price-chart {
    text-align: center;
    margin: 10px 0;
}

.airg-price-sparkline {
    max-width: 100%;
}

.airg-price-trend {
    text-align: center;
    margin: 8px 0;
}

.airg-price-change {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.airg-price-down {
    background: #e8f5e9;
    color: #27ae60;
}

.airg-price-up {
    background: #fce4ec;
    color: #c0392b;
}

.airg-ph-meta {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin: 8px 0 0;
}

@media (max-width: 768px) {
    .airg-price-history-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===============================================
   Related Products / Internal Linking (#4)
   =============================================== */
.airg-related-products {
    margin: 32px 0;
    padding: 24px;
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
}

.airg-related-products h3 {
    margin: 0 0 16px;
    font-size: 18px;
    color: #1d2327;
}

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

.airg-related-card {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.airg-related-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-color: #0073aa;
}

.airg-related-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 4px;
}

.airg-related-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.airg-related-info {
    flex: 1;
    min-width: 0;
}

.airg-related-title {
    margin: 0 0 4px;
    font-size: 14px;
    color: #1d2327;
    line-height: 1.3;
}

.airg-related-brand {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.airg-related-meta {
    font-size: 13px;
    color: #555;
    margin-top: 6px;
}

.airg-related-rating {
    color: #0073aa;
    font-weight: 600;
}

.airg-related-more {
    text-align: center;
    margin: 14px 0 0;
}

.airg-related-more a {
    color: #0073aa;
    font-weight: 500;
}

.airg-auto-link {
    color: #0073aa;
    text-decoration: none;
    border-bottom: 1px dotted #0073aa;
}

.airg-auto-link:hover {
    text-decoration: none;
    border-bottom-style: solid;
}

@media (max-width: 768px) {
    .airg-related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   Comparison Pages (#1)
   =============================================== */
.airg-comparison-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
}

.airg-comparison-table-wrap .airg-comparison-table {
    table-layout: fixed;
    min-width: 600px;
}

.airg-comparison-table-wrap .airg-comparison-table th:first-child,
.airg-comparison-table-wrap .airg-comparison-table td:first-child {
    width: 120px;
    white-space: normal;
    word-wrap: break-word;
}

.airg-comparison-table-wrap .airg-comparison-table th:not(:first-child),
.airg-comparison-table-wrap .airg-comparison-table td:not(:first-child) {
    width: calc((100% - 120px) / 2);
}

.airg-comparison-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.airg-comparison-product {
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    padding: 20px;
}

.airg-comparison-product h3 {
    margin-top: 0;
    font-size: 16px;
}

.airg-winner {
    font-weight: 700;
    color: #27ae60;
}

.airg-comparison-bar {
    margin-bottom: 16px;
}

.airg-cb-label {
    font-weight: 600;
    margin-bottom: 6px;
    color: #1d2327;
}

.airg-cb-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.airg-cb-name {
    flex: 0 0 200px;
    font-size: 13px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.airg-cb-val {
    flex: 0 0 30px;
    font-weight: 600;
    font-size: 14px;
    text-align: right;
}

.airg-comparison-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.airg-comparison-cta {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
}

.airg-comparison-cta h4 {
    margin: 0 0 12px;
}

@media (max-width: 768px) {
    .airg-comparison-proscons,
    .airg-comparison-ctas {
        grid-template-columns: 1fr;
    }

    .airg-comparison-table-wrap .airg-comparison-table {
        min-width: 500px;
    }

    .airg-comparison-table-wrap .airg-comparison-table th:first-child,
    .airg-comparison-table-wrap .airg-comparison-table td:first-child {
        width: 90px;
    }

    .airg-cb-name {
        flex: 0 0 120px;
        font-size: 12px;
    }
}

/* ===============================================
   Long-tail Landing Pages (#10)
   =============================================== */
.airg-longtail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.airg-longtail-title {
    font-size: 28px;
    color: #1d2327;
    margin: 0 0 8px;
}

.airg-longtail-desc {
    font-size: 16px;
    color: #555;
    margin: 0 0 8px;
}

.airg-longtail-count {
    font-size: 14px;
    color: #888;
    margin: 0 0 24px;
}

.airg-longtail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.airg-longtail-card {
    background: #fff;
    border: 1px solid #e2e4e7;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.airg-longtail-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.airg-lt-image {
    display: block;
    height: 180px;
    overflow: hidden;
}

.airg-lt-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.airg-lt-info {
    padding: 16px;
}

.airg-lt-product-title {
    font-size: 16px;
    margin: 0 0 6px;
    line-height: 1.3;
}

.airg-lt-product-title a {
    color: #1d2327;
    text-decoration: none;
}

.airg-lt-product-title a:hover {
    color: #0073aa;
}

.airg-lt-brand {
    display: inline-block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.airg-lt-rating {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    background: linear-gradient(135deg, #0073aa, #005a87);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.airg-lt-rating-num {
    font-size: 16px;
    font-weight: 700;
}

.airg-lt-rating-scale {
    font-size: 12px;
    opacity: 0.8;
}

.airg-lt-price {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.airg-lt-pros {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.airg-lt-pros li {
    padding: 2px 0 2px 16px;
    position: relative;
    font-size: 13px;
    color: #333;
}

.airg-lt-pros li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.airg-lt-ctas {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .airg-longtail-grid {
        grid-template-columns: 1fr;
    }

    .airg-longtail-title {
        font-size: 22px;
    }
}

/* User Rating Widget */
.airg-user-rating-widget {
    background: var(--airg-bg-light);
    border: 1px solid var(--airg-border);
    border-radius: var(--airg-radius-lg);
    padding: 24px;
    margin: 30px 0;
    text-align: center;
}

.airg-user-rating-widget h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #333;
}

.airg-user-rating-summary {
    margin-bottom: 16px;
}

.airg-aggregate-score {
    font-size: 32px;
    font-weight: 700;
    color: var(--airg-cta-color);
}

.airg-aggregate-scale {
    font-size: 18px;
    color: #999;
}

.airg-aggregate-count {
    display: block;
    font-size: 13px;
    color: #777;
    margin-top: 2px;
}

.airg-user-stars {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 12px;
}

.airg-user-star {
    font-size: 32px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
    line-height: 1;
}

.airg-user-star:hover,
.airg-user-star.hover {
    color: #f0c040;
    transform: scale(1.15);
}

.airg-user-star.active {
    color: var(--airg-cta-color);
}

.airg-user-rating-msg {
    font-size: 14px;
    min-height: 20px;
    margin-top: 8px;
    font-weight: 500;
}

/* ============================
   GEO - Generative Engine Optimization
   ============================ */

/* Freshness dato */
.airg-geo-freshness {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.airg-geo-freshness time {
    color: #555;
}

.airg-geo-freshness strong {
    color: #2e7d32;
}

/* Quick Answer Box - citérbar opsummering */
.airg-geo-quick-answer {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border: 1px solid #b8d4e8;
    border-left: 4px solid #1976d2;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.airg-geo-qa-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.airg-geo-qa-rating {
    background: #1976d2;
    color: #fff;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
}

.airg-geo-qa-price {
    color: #666;
    font-size: 14px;
}

.airg-geo-quick-answer p {
    margin: 0;
    color: #333;
}
