:root {
    --panini-yellow: #fff200;
    --panini-red: #9e0e23;
    /* Darker red matching screenshot */
    --text-black: #000000;
    --text-gray: #666666;
    --bg-white: #ffffff;
    --badge-gold: #ffc107;
    /* Updated name to reflect usage */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-black);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    padding-top: 140px;
    /* Approximate height of top bar */
}

.container {
    width: 90%;
    max-width: 480px;
    /* Restricting max-width to simulate mobile-first view as central element */
    margin: 0 auto;
    text-align: center;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-white);
    padding: 10px 0;
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle shadow for separation */
}

.top-bar-content {
    display: flex;
    flex-direction: column;
    /* Stacked by default for mobile look */
    align-items: center;
    gap: 15px;
}

.brand {
    background-color: var(--panini-yellow);
    padding: 8px 30px;
    /* Wider padding for the visual box */
    border: 1px solid #000;
    box-shadow: 3px 3px 0px #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.panini-logo {
    height: 22px;
    display: block;
}

.offers {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
}

.offer-box {
    background-color: var(--panini-red);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    /* Softer rounded corners */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    flex: 1;
    /* Equal width */
    max-width: 160px;
    /* Cap width */
}

.offer-label {
    font-size: 0.6rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 2px;
}

.offer-value {
    font-size: 1.1rem;
    font-weight: 800;
}

/* Hero Section */
.hero {
    padding: 10px 0;
}

.cpf-badge {
    display: inline-block;
    background-color: var(--badge-gold);
    color: var(--text-black);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hero-logo img {
    height: 110px;
    margin-bottom: 10px;
}

.subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 5px;
    font-weight: 600;
}

.locations {
    color: #555;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
    color: #0d1e29;
}

.description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 25px;
    max-width: 100%;
    font-weight: 500;
}

.scarcity {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-black);
    margin-bottom: 30px;
}

.product-image {
    width: 100vw;
    /* Full width viewport for image container */
    margin-left: -50vw;
    /* Negative margin hack to break container width */
    left: 50%;
    position: relative;
    margin-right: -50vw;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Adjustments for larger screens if opened on desktop */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
    }

    .product-image {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        left: 0;
    }

    .product-image img {
        border-radius: 10px;
    }
}

/* Kit Selection Section */
.kit-selection {
    padding: 20px 0 40px;
    background-color: var(--bg-white);
    scroll-margin-top: 150px;
    /* Offset for fixed header */
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-black);
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.kit-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.kit-card {
    position: relative;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    display: block;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #fff;
    text-align: left;
    /* Reset text align */
}

/* Radio input hidden but functional */
.kit-card input[type="radio"] {
    display: none;
}

/* Selected state styling */
.kit-card:has(input:checked) {
    border: 2px solid #00c853;
    /* Green border for selected */
    background-color: #f0fdf4;
    /* Very light green bg */
}

/* Fallback for older browsers if :has isn't supported, 
   CSS class 'selected-kit' can be toggled via JS if needed, 
   but newer browsers support :has */
.kit-card.selected-kit {
    border: 2px solid #00c853;
    background-color: #f0fdf4;
}

.kit-card:active {
    transform: scale(0.98);
}

.popular-badge,
.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 4px 15px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.popular-badge {
    background-color: #00c853;
    /* Green */
}

.best-value-badge {
    background-color: #ff6d00;
    /* Orange */
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background-color: #ff3d00;
    /* Red */
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.kit-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    text-align: left;
}

/* Custom Radio Circle */
.kit-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-right: 5px;
}

.kit-card input:checked~.kit-content .kit-radio {
    border-color: #00c853;
}

.kit-card input:checked~.kit-content .kit-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #00c853;
    border-radius: 50%;
}

.kit-image {
    width: 60px;
    flex-shrink: 0;
}

.kit-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.kit-details {
    flex: 1;
}

.kit-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.kit-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.2;
}

.kit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag-green,
.tag-blue {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.tag-green {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.tag-blue {
    background-color: #e3f2fd;
    color: #1565c0;
}

.kit-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.old-price {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.new-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-black);
    line-height: 1;
}

.payment-method {
    font-size: 0.7rem;
    color: #4caf50;
    font-weight: 600;
    margin-top: 2px;
}

.savings {
    font-size: 0.85rem;
    color: #2e7d32;
    /* Green text */
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}

/* CTA Button */
.cta-button {
    background-color: #00c853;
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
    transition: transform 0.1s;
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-sub {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
    margin-top: 2px;
}

/* About Section */
.about-section {
    padding: 20px 0 40px;
    background-color: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.icon-red {
    background-color: #e53935;
}

.icon-orange {
    background-color: #fb8c00;
}

.icon-yellow {
    background-color: #fdd835;
}

.icon-green {
    background-color: #00c853;
}

.feature-text h3 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.2;
}

.historical-box {
    background-color: #fff9c4;
    border: 1px solid #fff59d;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
}

.historical-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #ffb300;
}

.historical-list {
    list-style: none;
    padding: 0;
}

.historical-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 10px;
    font-weight: 500;
}

.historical-list li:last-child {
    margin-bottom: 0;
}

.list-star {
    width: 16px;
    height: 16px;
    color: #ffb300;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Why Now Section */
.why-now-section {
    padding: 20px 0 40px;
    background-color: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

@media (min-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #00c853;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-black);
}

.benefit-text p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.2;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.trust-badge {
    font-size: 0.75rem;
    color: #666;
    padding: 5px 12px;
    border-radius: 20px;
    background-color: white;
    border: 1px solid #e0e0e0;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: 20px 0 40px;
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-black);
}

.testimonial-location {
    font-size: 0.75rem;
    color: #888;
}

.testimonial-stars {
    font-size: 0.85rem;
    color: #ffc107;
}

.testimonial-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-black);
}

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #00c853;
    font-weight: 600;
}

.testimonial-verified svg {
    width: 16px;
    height: 16px;
}

.testimonial-verified span {
    color: #999;
    font-weight: 400;
}

/* FAQ Section */
.faq-section {
    padding: 20px 0 40px;
    background-color: #f8f9fa;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background-color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-black);
    transition: background-color 0.2s;
}




/* Footer */
.site-footer {
    background-color: var(--bg-white);
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    margin-bottom: 80px;
    /* Space for floating button */
}

.footer-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2e7d32;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.security-icon {
    width: 20px;
    height: 20px;
}

.footer-logo img {
    height: 30px;
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.8rem;
    color: #888;
}



.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question span {
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #666;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Floating Bottom CTA */
.floating-cta {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 15px));
    width: 90%;
    max-width: 480px;
    background-color: #00c853;
    color: white;
    padding: 18px;
    border: none;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.floating-cta.visible {
    transform: translateX(-50%) translateY(0);
}

.floating-cta:active {
    transform: translateX(-50%) translateY(0) scale(0.98);
}