/* ================================
   PEAK MEN'S VITALITY - STYLESHEET
   ================================ */

/* CSS Variables - Just add the green variable */
:root {
    --primary-orange: #FF6B35;
    --primary-green: #34C759;
    --white-bg: #ffffff;
    --light-bg: #f8f8f8;
    --lighter-gray: #f5f5f5;
    --dark-bg: #0d0d0d;
    --dark-section: #1a1a1a;
    --text-dark: #2a2a2a;
    --text-gray: #333333;
    --text-light-gray: #888888;
    --border-light: #e5e5e5;
    --accent-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C61 100%);
    --green-gradient: linear-gradient(135deg, #34C759 0%, #30D158 100%);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--white-bg);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #ffffff;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-weight: 400;
    text-decoration: none;
}

.logo a,
a.logo {
    color: #ffffff !important;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--primary-orange);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

/* Buttons - Only change the button colors */
.btn-primary {
    background: var(--green-gradient);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(52, 199, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(52, 199, 89, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Badge */
.badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    padding: 6rem 0 8rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-section) 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #b0b0b0;
}

.trust-icon {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 1);
}

.mute-btn:active {
    transform: scale(0.95);
}

.mute-icon {
    display: block;
    line-height: 1;
}

/* Image Placeholders */
.image-placeholder {
    background: var(--lighter-gray);
    border: 2px dashed rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    color: var(--text-gray);
    font-weight: 600;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder.large {
    min-height: 400px;
}

/* Problem Section */
.problem-section {
    padding: 6rem 0;
    background: var(--white-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
    color: var(--text-gray);
}

.problem-image-centered {
    max-width: 700px;
    margin: 0 auto 6rem;
    padding-bottom: 2rem;
}

.crisis-image {
    width: 100%;
    max-width: 700px;        /* CHANGE 850px to 450px */
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
    margin: 0 auto 3rem;     /* ADD "auto" to center it: 0 auto 3rem */
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.problem-card:hover {
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.problem-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-box {
    background: var(--light-bg);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

/* Science Section */
.science-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.science-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
/* Science Visual/Image */
.science-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.science-image {
    width: 100%;
    max-width: 750px;         /* Remove the limit entirely */
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: block;
}
.pillar {
    margin-bottom: 2.5rem;
}

.pillar h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.number {
    background: var(--accent-gradient);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #ffffff;
}

.ingredients-highlight {
    background: var(--white-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.ingredients-highlight h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.ingredient {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.ingredient-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.ingredient strong {
    display: block;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.ingredient p {
    font-size: 0.9rem;
    margin: 0;
}

/* Solution Section */
.solution-section {
    padding: 6rem 0;
    background: var(--white-bg);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.soldier-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.solution-text .intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
}

.benefits-list {
    margin-bottom: 3rem;
}

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

.check {
    color: var(--primary-orange);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.benefit p {
    margin: 0;
    font-size: 0.95rem;
}

.solution-cta {
    text-align: center;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--light-bg);
    overflow: hidden;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 20px;
}

.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    animation: scroll-testimonials 40s linear infinite;
    width: max-content;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 380px;
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-orange);
}

.testimonial-card .stars {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.testimonial-card .author {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--white-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--primary-orange);
}

.faq-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: var(--light-bg);
    text-align: center;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.final-intro {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: var(--white-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    box-shadow: var(--shadow-md);
}

.guarantee-seal {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.3;
    flex-shrink: 0;
    color: #ffffff;
}

.guarantee-text {
    text-align: left;
    max-width: 500px;
}

.guarantee-text strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.guarantee-text p {
    margin: 0;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--dark-section);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-brand p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #888888;
}

.disclaimer-note {
    font-size: 0.75rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .science-content,
    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-image {
        order: -1;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .guarantee-text {
        text-align: center;
    }
    
    .testimonial-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 640px) {
    .nav {
        display: none;
    }

    .hero {
        padding: 4rem 0 5rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    .problem-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
    }
    
    .testimonials-carousel {
        animation-duration: 30s;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background: var(--primary-orange);
    color: #ffffff;
}

/* ================================
   LEGAL / COMPLIANCE PAGES
   ================================ */

.legal-page {
    padding: 6rem 0 4rem;
    background: var(--white-bg);
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.legal-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.legal-content h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-gray);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--primary-orange);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.warning-box {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box p {
    color: var(--text-dark);
    margin-bottom: 0;
}

/* Contact Page Specific Styles */
.contact-page {
    padding: 6rem 0 4rem;
    background: var(--white-bg);
    min-height: 80vh;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-content h1 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-align: center;
    color: var(--text-dark);
}

.contact-content h3 {
    color: var(--text-dark);
}

.contact-intro {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-box {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-value a:hover {
    color: var(--primary-orange);
}

.contact-note {
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--primary-orange);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 4px;
}

.contact-note p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-link {
    text-align: center;
    margin-top: 3rem;
}

.faq-link p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-section);
    border-top: 3px solid var(--primary-orange);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-banner-text {
    flex: 1;
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-text p {
    margin: 0 0 0.5rem 0;
    color: #b0b0b0;
}

.cookie-banner-text a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--accent-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cookie-btn-decline {
    background: transparent;
    color: #b0b0b0;
    border: 2px solid #b0b0b0;
}

.cookie-btn-decline:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}
/* ================================
   BLOG POST STYLES - Add to style.css
   ================================ */
/* BLOG MAIN PAGE STYLES */
/* ================================
   BLOG INDEX PAGE STYLES
   Add to style.css
   ================================ */

/* Blog Header */
.blog-header {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-section) 100%);
    color: #ffffff;
    text-align: center;
}

.blog-header h1 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.blog-header-subtitle {
    font-size: 1.15rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Listing */
.blog-listing {
    padding: 5rem 0;
    background: var(--white-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Blog Cards */
.blog-card {
    background: var(--light-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* HOVER EFFECT - The magic! */
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-orange);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light-gray);
}

.blog-meta i {
    margin-right: 0.4rem;
    color: var(--primary-orange);
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.blog-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.blog-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-card .btn {
    display: inline-block;
}

/* Coming Soon Card */
.blog-card-coming-soon {
    opacity: 0.6;
}

.blog-card-coming-soon:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border-light);
}

.coming-soon-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--lighter-gray);
    border-radius: 8px;
    color: var(--text-gray);
    font-weight: 600;
}

/* Blog CTA */
.blog-cta {
    text-align: center;
    margin-top: 4rem;
}

.blog-cta p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
/* Blog Article Container */
.blog-article {
    padding: 4rem 0;
    background: var(--white-bg);
}

.blog-article .container {
    max-width: 800px;
}

/* Article Header */
.article-header {
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light-gray);
    flex-wrap: wrap;
}

.article-meta i {
    margin-right: 0.5rem;
    color: var(--primary-orange);
}

.article-header h1 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-header > p {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Featured Image */
.featured-image {
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Content */
.article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.article-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 2;
}

.article-content ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 2;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content a {
    color: var(--primary-orange);
    text-decoration: underline;
    transition: var(--transition);
}

.article-content a:hover {
    color: var(--text-dark);
}

.article-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Content Images */
.content-image {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Boxes */
.cta-box {
    background: var(--light-bg);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
}

.cta-box p {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.cta-box h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-box.cta-enhanced {
    padding: 2.5rem;
    background: rgba(255, 107, 53, 0.1);
}

.cta-box.cta-enhanced h3 {
    font-size: 1.5rem;
}

.cta-box.cta-enhanced p {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.cta-box.cta-enhanced .cta-note {
    font-size: 0.9rem;
    color: var(--text-light-gray);
    margin-top: 1rem;
}

.cta-box .cta-image {
    margin-bottom: 2rem;
    border-radius: 8px;
}

.cta-box .cta-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.cta-box .cta-note {
    font-size: 0.9rem;
    color: var(--text-light-gray);
    margin-top: 1rem;
}

/* Dark CTA Box */
.cta-box-dark {
    background: var(--dark-section);
    color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
    border: none;
    text-align: center;
}

.cta-box-dark h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.cta-box-dark p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-box-dark .cta-image {
    margin-bottom: 2rem;
    border-radius: 8px;
}

.cta-box-dark .cta-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.cta-box-dark .cta-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1rem;
}

/* Article CTA */
.article-cta {
    background: var(--light-bg);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.article-cta h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.article-cta p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Article Disclaimer */
.article-disclaimer {
    background: var(--lighter-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-orange);
    margin: 3rem 0;
}

.article-disclaimer p {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-light);
}

.article-footer-nav {
    text-align: center;
    margin-bottom: 2rem;
}

.article-footer-cta {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
}

.article-footer-cta h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.article-footer-cta p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }

    .article-content h2 {
        font-size: 1.75rem;
    }

    .article-content h3 {
        font-size: 1.35rem;
    }

    .article-meta {
        font-size: 0.85rem;
        gap: 1rem;
    }

    .cta-box,
    .cta-box-dark,
    .article-cta {
        padding: 2rem 1.5rem;
    }
}