/* ReviewsPlus Theme - Clean, Card-Based Design matching reviewsplus.co */

/* Override CSS Variables for ReviewsPlus Theme */
/* Note: Primary, secondary, and accent colors come from database via main.hbs */
body.theme-reviewsplus-clean {
    --text-color: #2C3E50;
    --text-muted: #7F8C8D;
    --bg-light: #FFFFFF;
    --border-color: #ECF0F1;
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Main Header with Primary Color Background */
body.theme-reviewsplus-clean header {
    background: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body.theme-reviewsplus-clean .logo-link {
    color: #FFFFFF;
}

body.theme-reviewsplus-clean .brand-name {
    background: #FFFFFF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.theme-reviewsplus-clean nav a {
    color: #FFFFFF;
}

body.theme-reviewsplus-clean nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Blue Navigation Bar */
body.theme-reviewsplus-clean .reviewsplus-nav {
    background: var(--primary-color);
    padding: 0;
}

body.theme-reviewsplus-clean .reviewsplus-nav-items {
    display: flex;
    gap: 0;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

body.theme-reviewsplus-clean .reviewsplus-nav-link {
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: background 0.2s;
    display: block;
}

body.theme-reviewsplus-clean .reviewsplus-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section with Background Image Overlay */
body.theme-reviewsplus-clean .hero-reviewsplus-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #95a5a6;
    padding: 80px 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

body.theme-reviewsplus-clean .hero-reviewsplus-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

body.theme-reviewsplus-clean .hero-reviewsplus-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #FFFFFF;
}

body.theme-reviewsplus-clean .hero-reviewsplus-content h1 {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.theme-reviewsplus-clean .hero-reviewsplus-subtitle {
    color: #FFFFFF;
    font-size: 1.125rem;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Force white backgrounds for content areas */
body.theme-reviewsplus-clean {
    background: #FFFFFF !important;
}

body.theme-reviewsplus-clean .content-section,
body.theme-reviewsplus-clean .brands-section {
    background: #FFFFFF !important;
}

/* Top Picks Section with Circular Badges */
body.theme-reviewsplus-clean .top-picks-section-reviewsplus {
    background: #F8F9FA;
    padding: 60px 20px;
}

body.theme-reviewsplus-clean .section-title-reviewsplus {
    color: var(--text-color);
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

body.theme-reviewsplus-clean .section-subtitle-reviewsplus {
    color: var(--text-muted);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

body.theme-reviewsplus-clean .top-picks-badges {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

body.theme-reviewsplus-clean .top-pick-category-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    max-width: 140px;
    transition: transform 0.2s;
}

body.theme-reviewsplus-clean .top-pick-category-badge:hover {
    transform: translateY(-4px);
}

body.theme-reviewsplus-clean .badge-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

body.theme-reviewsplus-clean .badge-icon {
    width: 80%;
    height: 80%;
    object-fit: cover;
}

body.theme-reviewsplus-clean .badge-icon-placeholder {
    width: 60px;
    height: 60px;
    color: var(--accent-color);
}

body.theme-reviewsplus-clean .badge-icon-emoji {
    font-size: 3rem;
    line-height: 1;
}

body.theme-reviewsplus-clean .badge-label {
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Guide Cards - Clean Card Design */
body.theme-reviewsplus-clean .guide-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--card-shadow);
}

body.theme-reviewsplus-clean .guide-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-4px);
    border-color: #DDE4E6;
}

body.theme-reviewsplus-clean .guide-card-image {
    aspect-ratio: 16/9;
    object-fit: cover;
    background: #F8F9FA;
}

body.theme-reviewsplus-clean .guide-card-content {
    padding: 24px;
}

body.theme-reviewsplus-clean .guide-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

body.theme-reviewsplus-clean .guide-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

body.theme-reviewsplus-clean .guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

body.theme-reviewsplus-clean .read-more {
    color: var(--accent-color);
    font-weight: 600;
}

/* Category Badges */
body.theme-reviewsplus-clean .category-badge {
    background: #ECF0F1;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ReviewsPlus Hero Section - Minimal Clean Design */
body.theme-reviewsplus-clean .hero-reviewsplus {
    background: #FFFFFF;
    padding: 60px 20px 40px;
    border-bottom: 1px solid var(--border-color);
}

body.theme-reviewsplus-clean .hero-reviewsplus-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

body.theme-reviewsplus-clean .hero-reviewsplus h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

body.theme-reviewsplus-clean .hero-reviewsplus-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 400;
}

/* Simple Category Links */
body.theme-reviewsplus-clean .categories-simple {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    background: #F8F9FA;
}

body.theme-reviewsplus-clean .categories-simple .container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

body.theme-reviewsplus-clean .category-link-simple {
    background: #FFFFFF;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid var(--border-color);
}

body.theme-reviewsplus-clean .category-link-simple:hover {
    background: var(--accent-color);
    color: #FFFFFF;
    border-color: var(--accent-color);
}

/* ReviewsPlus Guide Grid - Clean 3-Column Layout */
body.theme-reviewsplus-clean .guides-grid-reviewsplus {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

body.theme-reviewsplus-clean .guide-card-reviewsplus {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body.theme-reviewsplus-clean .guide-card-reviewsplus:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #DDE4E6;
}

body.theme-reviewsplus-clean .guide-card-reviewsplus-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #F8F9FA;
}

body.theme-reviewsplus-clean .guide-card-reviewsplus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.theme-reviewsplus-clean .guide-card-reviewsplus-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.theme-reviewsplus-clean .guide-card-reviewsplus-title {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

body.theme-reviewsplus-clean .guide-card-reviewsplus-excerpt {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 0;
    flex: 1;
}

@media (max-width: 768px) {
    body.theme-reviewsplus-clean .guides-grid-reviewsplus {
        grid-template-columns: 1fr;
    }
    
    body.theme-reviewsplus-clean .hero-reviewsplus h1 {
        font-size: 1.75rem;
    }
}

/* Guide Detail Page - Clean Layout */
body.theme-reviewsplus-clean .guide-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-color);
}

body.theme-reviewsplus-clean .guide-header h1 {
    color: var(--primary-color);
    font-weight: 600;
}

body.theme-reviewsplus-clean .category-badge {
    background: #ECF0F1;
    color: var(--primary-color);
}

body.theme-reviewsplus-clean .guide-featured-image {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

body.theme-reviewsplus-clean .featured-badge {
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Offers Section - Clean, Professional Design */
body.theme-reviewsplus-clean .offers-section {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    margin: 40px 0;
}

body.theme-reviewsplus-clean .offers-section h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

body.theme-reviewsplus-clean .offers-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body.theme-reviewsplus-clean .offer-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

body.theme-reviewsplus-clean .offer-card:hover {
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-color);
}

body.theme-reviewsplus-clean .offer-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

body.theme-reviewsplus-clean .offer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px;
    background: #FFFFFF;
}

body.theme-reviewsplus-clean .offer-title-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

body.theme-reviewsplus-clean .offer-badge {
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.theme-reviewsplus-clean .offer-description {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

body.theme-reviewsplus-clean .offer-features {
    margin: 16px 0;
}

body.theme-reviewsplus-clean .offer-features li {
    color: var(--text-color);
    font-size: 0.9375rem;
    padding: 6px 0;
    position: relative;
    padding-left: 24px;
}

body.theme-reviewsplus-clean .offer-features li:before {
    content: "✓";
    color: #27AE60;
    font-weight: 700;
    position: absolute;
    left: 0;
}

body.theme-reviewsplus-clean .offer-cta {
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    font-size: 1rem;
}

body.theme-reviewsplus-clean .offer-cta:hover {
    background: #C0392B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

body.theme-reviewsplus-clean .offer-disclosure {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 8px;
}

/* Content Sections */
body.theme-reviewsplus-clean .content-section {
    background: #FFFFFF;
    padding: 60px 20px;
}

body.theme-reviewsplus-clean .section-header {
    text-align: center;
    margin-bottom: 48px;
}

body.theme-reviewsplus-clean .section-badge {
    background: #ECF0F1;
    color: var(--accent-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.theme-reviewsplus-clean .section-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

body.theme-reviewsplus-clean .section-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Guides Grid */
body.theme-reviewsplus-clean .guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Guide Content */
body.theme-reviewsplus-clean .guide-content-wrapper {
    background: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

body.theme-reviewsplus-clean .guide-content {
    color: var(--text-color);
    font-size: 1.0625rem;
    line-height: 1.8;
}

body.theme-reviewsplus-clean .guide-content h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
}

body.theme-reviewsplus-clean .guide-content h3 {
    color: var(--primary-color);
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
}

body.theme-reviewsplus-clean .guide-content p {
    margin-bottom: 20px;
}

body.theme-reviewsplus-clean .guide-content ul,
body.theme-reviewsplus-clean .guide-content ol {
    margin: 20px 0;
    padding-left: 28px;
}

body.theme-reviewsplus-clean .guide-content li {
    margin-bottom: 8px;
}

/* Footer */
body.theme-reviewsplus-clean footer {
    background: #F8F9FA;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Top Picks Section - Text Links Only */
body.theme-reviewsplus-clean .top-picks-section {
    background: #FFFFFF;
    padding: 40px 20px;
    border-bottom: 1px solid var(--border-color);
}

body.theme-reviewsplus-clean .top-picks-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

body.theme-reviewsplus-clean .top-picks-subtitle {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

body.theme-reviewsplus-clean .top-picks-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

body.theme-reviewsplus-clean .top-pick-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

body.theme-reviewsplus-clean .top-pick-link:hover {
    color: var(--accent-color);
}

/* Featured Reviews Section */
body.theme-reviewsplus-clean .featured-reviews-section {
    background: #FFFFFF;
    padding: 60px 20px;
}

body.theme-reviewsplus-clean .section-title-reviewsplus {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 32px;
}

/* Offer Wall ReviewsPlus - Clean Cards with Logos */
body.theme-reviewsplus-clean .offers-wall-reviewsplus {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 60px 0;
    background: #F5F5F5;
    padding: 48px 32px;
    border-radius: 0;
}

body.theme-reviewsplus-clean .offer-card-reviewsplus {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 0;
    padding: 32px;
    position: relative;
    transition: all 0.3s;
}

body.theme-reviewsplus-clean .offer-card-reviewsplus:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-color: #C0C0C0;
}

body.theme-reviewsplus-clean .offer-card-reviewsplus.top-pick {
    border-color: #E0E0E0;
    border-width: 2px;
}

body.theme-reviewsplus-clean .top-pick-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

body.theme-reviewsplus-clean .offer-layout-grid {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 32px;
    align-items: start;
}

body.theme-reviewsplus-clean .offer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

body.theme-reviewsplus-clean .offer-content-section {
    flex: 1;
}

body.theme-reviewsplus-clean .offer-cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

@media (max-width: 968px) {
    body.theme-reviewsplus-clean .offer-layout-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    body.theme-reviewsplus-clean .offer-cta-section {
        align-items: stretch;
    }
}

body.theme-reviewsplus-clean .offer-logo-reviewsplus {
    width: 160px;
    height: 80px;
    object-fit: contain;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

body.theme-reviewsplus-clean .offer-logo-placeholder {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #F8F9FA;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-muted);
}

body.theme-reviewsplus-clean .offer-rating-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

body.theme-reviewsplus-clean .offer-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}

body.theme-reviewsplus-clean .rating-icon {
    width: 20px;
    height: 20px;
}

body.theme-reviewsplus-clean .rating-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
}

body.theme-reviewsplus-clean .discount-badge-reviewsplus {
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 700;
}

body.theme-reviewsplus-clean .offer-rating-badge-reviewsplus {
    background: #F0F0F0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    width: 100%;
}

body.theme-reviewsplus-clean .rating-value-large {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

body.theme-reviewsplus-clean .rating-stars-reviewsplus {
    color: #FFA500;
    font-size: 0.875rem;
    letter-spacing: 2px;
}

body.theme-reviewsplus-clean .offer-name-reviewsplus {
    color: #000000;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 16px;
}

body.theme-reviewsplus-clean .offer-features-reviewsplus {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

body.theme-reviewsplus-clean .offer-features-reviewsplus li,
body.theme-reviewsplus-clean .offer-features-reviewsplus ul li {
    color: var(--text-color);
    font-size: 0.9375rem;
    padding: 6px 0;
    position: relative;
    padding-left: 24px;
    list-style: none;
}

body.theme-reviewsplus-clean .offer-features-reviewsplus li:before,
body.theme-reviewsplus-clean .offer-features-reviewsplus ul li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

body.theme-reviewsplus-clean .offer-features-reviewsplus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body.theme-reviewsplus-clean .offer-cta-reviewsplus {
    background: var(--accent-color);
    color: #FFFFFF;
    padding: 14px 40px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
    font-size: 1rem;
    text-align: center;
    text-transform: none;
}

body.theme-reviewsplus-clean .offer-cta-reviewsplus:hover {
    background: #0E87DB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 160, 251, 0.3);
}

body.theme-reviewsplus-clean .offer-promo-text {
    color: var(--accent-color);
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ReviewsPlus Guide Header - Black Background */
body.theme-reviewsplus-clean .reviewsplus-guide-hero {
    background: #000000;
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: left;
}

body.theme-reviewsplus-clean .reviewsplus-guide-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

body.theme-reviewsplus-clean .reviewsplus-guide-category {
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0.8;
}

body.theme-reviewsplus-clean .reviewsplus-guide-hero h1 {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

body.theme-reviewsplus-clean .reviewsplus-guide-date {
    color: #FFFFFF;
    font-size: 0.9375rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    body.theme-reviewsplus-clean .reviewsplus-guide-hero h1 {
        font-size: 1.75rem;
    }
}

/* Guide Header Image */
body.theme-reviewsplus-clean .guide-header-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
}

body.theme-reviewsplus-clean .guide-header-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body.theme-reviewsplus-clean .hero-title {
        font-size: 2rem;
    }
    
    body.theme-reviewsplus-clean .guides-grid {
        grid-template-columns: 1fr;
    }
    
    body.theme-reviewsplus-clean .offer-card {
        padding: 20px;
    }
    
    body.theme-reviewsplus-clean .offer-header-row {
        flex-direction: column;
        gap: 16px;
    }
    
    body.theme-reviewsplus-clean .offer-rating-section {
        align-items: flex-start;
    }
    
    body.theme-reviewsplus-clean .top-picks-links {
        flex-direction: column;
    }
}
