﻿body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Open Sans, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.page-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    min-height: 100vh;
    box-sizing: border-box;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-height: 50px;
    width: auto;
    height: 100%;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.header .emoji {
    font-size: 40px;
    margin-bottom: 15px;
}

.header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.progress-container {
    margin: 30px 0;
    text-align: center;
}

.progress-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.progress-step {
    width: 40px;
    height: 8px;
    background: #e0e0e0;
    margin: 0 3px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.progress-step.active {
    background: #e4469d;
}

.progress-step.completed {
    background: #4ba614;
}

.progress-text {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.quiz-question {
    display: none;
    text-align: center;
    margin: 40px 0;
}

.quiz-question.active {
    display: block;
}

.loading-screen {
    display: none;
    text-align: center;
    margin: 40px 0;
    padding: 60px 20px;
}

.loading-screen.active {
    display: block;
}

.loading-content {
    max-width: 400px;
    margin: 0 auto;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e4469d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-screen h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.loading-screen p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.quiz-question h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.answer-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.answer-btn {
    border-radius: 0.375rem;
    background-image: linear-gradient(180deg, #FF77B0, #D63384);
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: Open Sans, Helvetica, Arial, sans-serif;
    text-align: center;
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.answer-btn:hover {
    background-image: linear-gradient(180deg, #F75A9C, #B82D6B);
}

.answer-btn.no {
    background-image: linear-gradient(180deg, #6c757d, #495057);
}

.answer-btn.no:hover {
    background-image: linear-gradient(180deg, #5a6268, #343a40);
}

.emoji-icon {
    font-size: 20px;
}

.result-page {
    display: none;
    text-align: center;
    margin: 40px 0;
}

.result-page.active {
    display: block;
}

.result-page h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.result-page p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-section {
    background: #ffeab6;
    border-radius: 10px;
    padding: 30px 20px;
    margin: 30px 0;
}

.cta-section-link {
    text-decoration: none;
    color: #000;
}

.cta-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.cta-section-title:hover {
    text-decoration: underline;
}

.discount-timer {
    font-size: 18px;
    color: #D60000;
    font-weight: bold;
    margin-bottom: 20px;
}

.discount-timer:hover {
    text-decoration: underline;
}

.product-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 18px;
    width: 100%;
    object-fit: contain;
}

.quiz-question img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.price-section {
    margin: 20px 0;
}

.price-section:hover {
    text-decoration: underline;
}

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

.new-price {
    font-size: 36px;
    font-weight: bold;
    color: #e4469d;
}

.cta-button {
    border-radius: 0.375rem;
    background-image: linear-gradient(180deg, #e4469d, #992b68);
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: Open Sans, Helvetica, Arial, sans-serif;
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 700;
    transition: 0.2s;
    cursor: pointer;
    margin: 20px 0;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-image: linear-gradient(180deg, #7a2051, #5b143b);
    text-decoration: none;
    color: #fff;
}

.guarantee {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 15px;
}

.reviews-section {
    margin: 40px 0;
}

.reviews-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.reviews-rating {
    font-size: 38px;
    font-weight: bold;
    color: #e4469d;
    text-align: center;
    margin-bottom: 30px;
}

.review-item {
    border: 1px solid #e0e3eb;
    border-radius: 0.5rem;
    margin: 20px 0;
    padding: 20px;
    background: #fff;
}

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

.review-name {
    font-weight: bold;
    color: #333;
}

.review-date {
    font-size: 14px;
    color: #666;
}

.review-stars {
    margin: 10px 0;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.review-verified {
    font-size: 14px;
    color: #20d341;
    text-align: right;
    margin-top: 10px;
}

.footer-section {
    margin-top: 50px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    width: 100vw;
    max-width: 100vw;
    padding-bottom: 120px;
}

.footer-links {
    margin-top: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    text-align: center;
    max-width: 90vw;
    width: 90%;
    margin: 0 auto;
}

.footer-disclaimer strong {
    color: #333;
}

@media (max-width: 768px) {
    .page-container {
        padding: 15px;
    }

    .header h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .header p {
        font-size: 16px;
    }

    .quiz-question h2 {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .answer-btn {
        font-size: 16px;
        padding: 15px 18px;
    }

    .cta-button {
        max-width: 90%;
        font-size: 16px;
        padding: 16px 18px;
    }

    .cta-section {
        padding: 25px 15px;
        margin: 25px 0;
    }

    .cta-section-title {
        font-size: 22px;
    }

    .discount-timer {
        font-size: 16px;
    }

    .new-price {
        font-size: 32px;
    }

    .old-price {
        font-size: 16px;
    }

    .reviews-title {
        font-size: 24px;
    }

    .reviews-rating {
        font-size: 32px;
    }

    .review-item {
        padding: 15px;
        margin: 15px 0;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.5;
    }

    .footer-links a {
        display: block;
        font-size: 13px;
    }

    .footer-disclaimer {
        font-size: 11px;
        line-height: 1.4;
        margin: 0 auto;
    }

    .progress-step {
        width: 30px;
        height: 6px;
    }

    .progress-text {
        font-size: 14px;
    }

    .loading-screen {
        padding: 40px 15px;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
        margin-bottom: 25px;
    }

    .loading-screen h2 {
        font-size: 20px;
    }

    .loading-screen p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-container {
        padding: 10px;
    }

    .header h1 {
        font-size: 22px;
    }

    .quiz-question h2 {
        font-size: 18px;
    }

    .answer-btn {
        font-size: 15px;
        padding: 14px 16px;
    }

    .cta-button {
        font-size: 15px;
        padding: 14px 16px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-disclaimer {
        font-size: 10px;
    }

    .loading-screen {
        padding: 30px 10px;
    }

    .loading-spinner {
        width: 45px;
        height: 45px;
        margin-bottom: 20px;
    }

    .loading-screen h2 {
        font-size: 18px;
    }

    .loading-screen p {
        font-size: 14px;
    }
}

.cta-sticky {
    position: fixed;
    bottom: -150px;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
}

.cta-sticky-btn {
    background: #e4469d;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: 0 auto;
    width: calc(100% - 40px);
    font-size: 1.2rem;
    max-width: 80vw;
    transition: all 0.2s ease-in-out;
}

.cta-sticky-btn:hover {
    background: #7a2051;
    text-decoration: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-sticky.active {
    bottom: 0;
}

@media (max-width: 480px) {
    .cta-sticky-btn {
        font-size: 1rem;
        max-width: 90vw;
    }
}

.text-link {
    color: #e4469d;
    text-decoration: none;
}

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

/* Logo styles */
.logo img {
    margin-top: 20px;
}

/* Info section styles */
.info-section img {
    max-width: 100%;
    margin: 20px 0;
}

.info-section .answer-btn {
    margin-bottom: 20px;
}

.info-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.info-section p.quote {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
}

.info-section p.final {
    margin-bottom: 30px;
}

/* Ingredient matrix styles */
.ingredient-matrix {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.ingredient-matrix h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.ingredient-matrix p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.ingredient-matrix p:last-child {
    margin-bottom: 30px;
}

/* Review stars */
.review-stars img {
    height: 20px;
}

/* Hidden sections */
.hidden {
    display: none;
}

/* Header hidden state */
.header.hidden {
    display: none;
}
