body {
    font-family: "Montserrat", sans-serif;
    background: #00183515;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
}

#logo {
    width: 120px;
    margin: 0 auto;
    display: block;
}

.quiz-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 1.2em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    width: 100%;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .quiz-box {
        font-size: 18px;
        padding: 30px 20px;
    }
}

.buttons button,
#startBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    padding: 15px;
    border: none;
    margin: 30px 0 0 0;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

#startBtn svg {
    animation: moveLeftRight 1s infinite alternate;
}

#startBtn {
    background-color: #abcd00;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    #startBtn {
        font-size: 16px;
    }
}

#startBtn:hover {
    background-color: #a1bd16;
    transition: background-color 0.3s ease;
}

#quizInfo {
    margin-top: 6px;
    font-size: 12px;
    color: #555;
    text-align: center;
}

.question {
    margin-bottom: 25px;
}

.options {
    margin-top: 10px;
}

a {
    text-decoration: none;
    color: inherit;
}

.options button {
    width: 100%;
    padding: 15px;
    margin: 5px 0;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.options button:hover {
    opacity: 0.95;
}

#qTitle {
    display: grid;
    gap: 10px;
    line-height: 1.2em;
}

.answer-green {
    background: #c0cc37;
}

.answer-orange {
    background: #ee874d;
}

.answer-darkorange {
    background: #ed644e;
}

.answer-red {
    background: #eb494d;
}

.hidden {
    display: none !important;
}

.result {
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
}

.recommendation-message {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    font-size: 20px;
    margin: 0;
}

.suggestion {
    margin-top: 20px;
    padding: 0 10px;
    font-size: 15px;
}

h2 {
    margin: 0;
}

.product {
    padding: 15px;
    background-color: #f9f9f9;
    margin-top: 20px;
    border-radius: 10px;
}

.product img {
    display: block;
    max-width: 200px;
    border-radius: 5px;
    background: #e0e0e0;
    min-height: 150px;
}

.product img.loading {
    filter: blur(5px);
}

.cta-btn {
    background-color: #042f63;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.3);
    margin: 20px 0;
}

.cta-btn:hover {
    background-color: #0e4485;
    transition: background-color 0.3s ease;
}

#end {
    text-align: center;
}

#restart {
    margin-top: 25px;
    background: #333;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
}

#restart:hover {
    background: #555;
}

#footer {
    position: fixed;
    width: 100%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #a8a8a8;
    text-align: center;
    padding: 0 10px;
}

@keyframes moveLeftRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(3px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes zoomPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

#loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    margin-top: 20px;
}

.spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #042f63;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

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

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