/*
Theme Name: Astra Child
Template: astra
Version: 1.0
Description: Astra child theme with CBD affiliate page styles
*/

@import url("../astra/style.css");

/* CBD LANDING PAGE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Override Astra defaults for CBD pages */
.ast-container {
    max-width: 1200px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #355e3b 0%, #606c38 50%, #bc6c25 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

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

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Quick Navigation */
.quick-nav {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.nav-pill {
    padding: 10px 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pill:hover, .nav-pill.active {
    background: #355e3b;
    color: white;
    border-color: #355e3b;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Discount Alert */
.discount-alert {
    background: linear-gradient(45deg, #bc6c25, #dda15e);
    color: white;
    padding: 20px;
    margin: 30px 0;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.discount-code {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 10px;
    display: inline-block;
    border: 2px dashed rgba(255,255,255,0.5);
}

/* Comparison Table */
.comparison-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #355e3b, #606c38);
    border-radius: 2px;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.table-header {
    background: linear-gradient(135deg, #355e3b 0%, #606c38 50%, #bc6c25 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.product-row {
    display: grid;
    grid-template-columns: 60px 200px 1fr 150px 120px;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.product-row:hover {
    background: linear-gradient(135deg, #fefcf3 0%, #f9f6ec 100%);
    transform: translateX(5px);
}

.product-row.featured {
    background: linear-gradient(135deg, #fefcf3 0%, #f9f6ec 100%);
    border-left: 5px solid #dda15e;
}

.rank {
    font-size: 1.5rem;
    font-weight: bold;
    color: #355e3b;
}

.featured .rank {
    color: #bc6c25;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-details h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.product-brand {
    color: #7f8c8d;
    font-size: 0.9rem;
}

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

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: bold;
    color: #2c3e50;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #355e3b;
}

.cta-button {
    background: linear-gradient(45deg, #606c38, #355e3b);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(96, 108, 56, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 108, 56, 0.4);
    background: linear-gradient(45deg, #355e3b, #606c38);
    text-decoration: none;
    color: white;
}

.featured-badge {
    position: absolute;
    top: -5px;
    right: 20px;
    background: #bc6c25;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.discount-code-small {
    background: #f9f6ec;
    color: #355e3b;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    display: inline-block;
    border: 1px solid #dda15e;
    font-size: 0.8rem;
}

.cta-section {
    text-align: center;
}

/* Product Reviews */
.reviews-section {
    padding: 60px 0;
    background: #fefcf3;
}

.product-review {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.review-header {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.review-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.review-info h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.review-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background: #f9f6ec;
    border-radius: 10px;
    border: 1px solid #dda15e;
    flex: 1;
    min-width: 80px;
}

.meta-label {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.meta-value {
    font-weight: bold;
    color: #2c3e50;
}

.review-cta {
    text-align: center;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros, .cons {
    background: #f9f6ec;
    padding: 20px;
    border-radius: 15px;
}

.pros {
    border-left: 4px solid #606c38;
}

.cons {
    border-left: 4px solid #bc6c25;
}

.pros h4, .cons h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    padding: 5px 0;
    position: relative;
    padding-left: 25px;
}

.pros li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #606c38;
    font-weight: bold;
}

.cons li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #bc6c25;
    font-weight: bold;
}

/* FAQ Section - FIXED VERSION with higher specificity */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section .faq-item {
    background: #f9f6ec !important;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #dda15e;
}

.faq-section .faq-question {
    padding: 25px !important;
    cursor: pointer;
    font-weight: bold;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    color: #355e3b !important;
    transition: background-color 0.3s ease;
    margin: 0 !important;
}

.faq-section .faq-question:hover {
    background: #f5f2e5 !important;
}

/* CRITICAL: More specific selectors to override theme conflicts */
.faq-section .faq-answer {
    padding: 0 25px !important;
    color: #495057 !important;
    line-height: 1.6;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.5s ease, padding 0.5s ease !important;
    margin: 0 !important;
    display: block !important;
}

.faq-section .faq-toggle {
    font-size: 1.5rem !important;
    transition: transform 0.3s ease !important;
    color: #bc6c25 !important;
    font-weight: bold;
}

/* ACTIVE STATE - Higher specificity */
.faq-section .faq-item.active .faq-toggle {
    transform: rotate(45deg) !important;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 300px !important; /* Increased to accommodate longer content */
    padding: 0 25px 25px 25px !important;
}

.faq-section .faq-item.active {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Override any WordPress/Astra theme conflicts */
.faq-section p {
    margin: 0 0 15px 0 !important;
    line-height: 1.6 !important;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fefcf3 0%, #f9f6ec 100%);
    text-align: center;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #355e3b;
}

/* Plain Text Section */
.plain-text-section {
    padding: 60px 0;
    background: white;
}

.plain-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.plain-text-content h2 {
    color: #355e3b;
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

.plain-text-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.plain-text-content strong {
    color: #355e3b;
    font-weight: 600;
}

.plain-text-content em {
    color: #666;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .product-row {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;
    }

    .review-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }

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

    .nav-pills {
        gap: 10px;
    }

    .nav-pill {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .review-meta {
        flex-direction: column;
        gap: 10px;
    }

    .meta-item {
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

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

    .product-review {
        padding: 20px;
    }

    .meta-item {
        width: 100%;
    }
}

/* Override Astra theme conflicts */
.site-content .ast-container {
    max-width: 1200px;
}

.entry-content {
    margin: 0;
}

.entry-content > * {
    margin-left: auto;
    margin-right: auto;
}

/* Ensure buttons work properly */
.ast-button, .button {
    border-radius: 25px;
}

/* Hide page title on CBD pages if needed */
.page-template-page-cbd-landing .entry-header {
    display: none;
}

/* Fix any spacing issues with Astra */
.ast-separate-container .site-content .ast-container {
    padding: 0;
}

.ast-separate-container .ast-article-post {
    margin: 0;
    padding: 0;
}
/* FRONT PAGE ADDITIONAL STYLES - Add to your existing style.css */

/* Hero Section Enhancements */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 120px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #dda15e;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero-button {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-button.primary {
    background: linear-gradient(45deg, #dda15e, #bc6c25);
    color: white;
    box-shadow: 0 4px 15px rgba(221, 161, 94, 0.4);
}

.hero-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-button.primary:hover {
    box-shadow: 0 6px 20px rgba(221, 161, 94, 0.5);
    color: white;
}

.hero-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

/* Category Navigation */
.category-navigation {
    padding: 80px 0;
    background: white;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #355e3b;
    text-decoration: none;
    color: inherit;
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #355e3b;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.category-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.category-badge {
    background: linear-gradient(45deg, #355e3b, #606c38);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    top: -10px;
    right: 20px;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #fefcf3;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card.featured {
    border: 3px solid #355e3b;
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(45deg, #355e3b, #606c38);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-card.featured .product-badge {
    background: linear-gradient(45deg, #bc6c25, #dda15e);
}

.product-image {
    text-align: center;
    margin-bottom: 25px;
}

.product-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-content h3 {
    color: #355e3b;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.product-rating {
    text-align: center;
    margin-bottom: 20px;
}

.product-rating .stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-right: 10px;
}

.product-rating .rating-text {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.product-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.product-features li {
    padding: 5px 0;
    color: #495057;
    font-size: 0.9rem;
}

.product-price {
    text-align: center;
    margin: 25px 0;
}

.old-price {
    text-decoration: line-through;
    color: #7f8c8d;
    margin-right: 10px;
}

.current-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #355e3b;
    margin-right: 10px;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-cta {
    text-align: center;
}

.cta-button.primary {
    background: linear-gradient(45deg, #355e3b, #606c38);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(53, 94, 59, 0.3);
    transition: all 0.3s ease;
}

.cta-button.secondary {
    background: transparent;
    color: #355e3b;
    border: 2px solid #355e3b;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.cta-button.primary:hover {
    box-shadow: 0 6px 20px rgba(53, 94, 59, 0.4);
    color: white;
}

.cta-button.secondary:hover {
    background: #355e3b;
    color: white;
}

.discount-code {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bc6c25;
    font-weight: bold;
}

.view-all-cta {
    text-align: center;
    margin-top: 50px;
}

.view-all-button {
    background: transparent;
    color: #355e3b;
    border: 2px solid #355e3b;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    background: #355e3b;
    color: white;
    text-decoration: none;
}

/* Discount Codes Section */
.discount-codes {
    padding: 80px 0;
    background: white;
}

.discount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.discount-item {
    background: #f9f6ec;
    border-radius: 20px;
    padding: 25px;
    border: 2px solid #dda15e;
    transition: all 0.3s ease;
}

.discount-item.featured {
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f5e8 100%);
    border-color: #355e3b;
    transform: scale(1.05);
}

.discount-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.discount-item.featured:hover {
    transform: translateY(-5px) scale(1.07);
}

.discount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.brand-logo {
    height: 40px;
    border-radius: 5px;
}

.discount-percent {
    background: linear-gradient(45deg, #355e3b, #606c38);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.discount-item.featured .discount-percent {
    background: linear-gradient(45deg, #bc6c25, #dda15e);
}

.discount-content h3 {
    color: #355e3b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.discount-content p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.discount-code-display {
    background: white;
    border: 2px dashed #355e3b;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.code-text {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: bold;
    color: #355e3b;
}

.copy-code-btn {
    background: #355e3b;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-code-btn:hover {
    background: #606c38;
}

.discount-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.discount-details span {
    font-size: 0.85rem;
    color: #606c38;
}

.discount-cta {
    background: linear-gradient(45deg, #355e3b, #606c38);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
}

.discount-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(53, 94, 59, 0.3);
    color: white;
    text-decoration: none;
}

/* Trust & Credibility */
.trust-credibility {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefcf3 0%, #f9f6ec 100%);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: center;
}

.trust-stat {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trust-stat .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #355e3b;
    margin-bottom: 10px;
}

.trust-stat .stat-label {
    color: #7f8c8d;
    font-size: 1rem;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 80px 0;
    background: linear-gradient(135deg, #355e3b 0%, #606c38 100%);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-icon {
    font-size: 1.2rem;
}

.newsletter-form {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
}

.signup-button {
    background: linear-gradient(45deg, #bc6c25, #dda15e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(188, 108, 37, 0.3);
}

.privacy-note {
    text-align: center;
    opacity: 0.8;
}

.social-proof {
    margin-top: 20px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.subscriber-count {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.count-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #dda15e;
}

.count-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .discount-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-benefits {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .signup-button {
        width: 100%;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.page .entry-title,
.page .entry-header {
    display: none !important;
}
/* Additional CSS for No Discount Styling - Add to your style.css */

/* No discount available items */
.discount-item.no-discount {
    background: #f8f9fa;
    border-color: #dee2e6;
    opacity: 0.8;
}

.discount-item.no-discount:hover {
    transform: translateY(-2px) scale(1.01);
    opacity: 1;
}

.discount-percent.unavailable {
    background: #6c757d;
    color: white;
    font-size: 0.9rem;
}

.no-discount-display {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 15px;
}

.no-discount-text {
    display: block;
    font-weight: bold;
    color: #6c757d;
    margin-bottom: 5px;
}

.check-back {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
}

.discount-cta.secondary {
    background: #6c757d;
    color: white;
}

.discount-cta.secondary:hover {
    background: #5a6268;
    color: white;
}

/* Adjust brand logo styling */
.brand-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 5px;
}
.page .wp-post-image,
.page .post-thumbnail,
.page .ast-blog-featured-section,
.page .entry-image,
.page .attachment-post-thumbnail {
    display: none !important;
}

/* Also hide featured image containers */
.ast-single-post .single-post-wrap .featured-image-header,
.ast-page-builder-template .featured-image-header {
    display: none !important;
}
.simple-rating {
    margin-bottom: 20px;
}

.simple-rating p {
    color: #495057;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.overall-score {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.score-label {
    color: #355e3b;
    font-weight: bold;
}

.score-value {
    background: linear-gradient(45deg, #355e3b, #606c38);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Updated Review Header for Simplified Layout */
.review-header {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* Evaluation Criteria Section */
.evaluation-criteria {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid #355e3b;
}

.evaluation-criteria h2 {
    color: #355e3b;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.evaluation-criteria h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #355e3b, #606c38);
    border-radius: 2px;
}

.criteria-intro {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.criteria-item {
    background: #f9f6ec;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #355e3b;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.criteria-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.criteria-item h3 {
    color: #355e3b;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.criteria-item p {
    color: #495057;
    line-height: 1.6;
    text-align: justify;
}

/* Scoring Explanation */
.scoring-explanation {
    background: linear-gradient(135deg, #f9f6ec 0%, #f5f2e5 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.scoring-explanation h3 {
    color: #355e3b;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.scoring-grid {
    display: grid;
    gap: 15px;
}

.score-range {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.score-number {
    font-weight: bold;
    color: #355e3b;
    font-size: 1.1rem;
    min-width: 80px;
}

.score-description {
    color: #495057;
    flex: 1;
    text-align: right;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .review-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .evaluation-criteria {
        padding: 25px;
        margin-top: 40px;
    }
    
    .overall-score {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .score-range {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .score-description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .evaluation-criteria h2 {
        font-size: 1.8rem;
    }
    
    .criteria-intro {
        font-size: 1rem;
    }
    
    .simple-rating p {
        font-size: 0.9rem;
    }
}