/* ============================================
   LiquorStoreOS Theme - Main Stylesheet
   Brand Colors:
   - Gold: #F5BF5A / #FDFA98
   - Deep Burgundy: #672B2F / #7F3432
   - Near-Black: #21211F / #33363D
   Fonts: Playfair Display (headings), Inter (body)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    background-color: #21211F;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* === NAVIGATION === */
.site-header {
    background-color: #21211F;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
}

.nav-left a {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-left a:hover {
    color: #F5BF5A;
}

.site-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    margin-top: 5px;
    margin-bottom: -60px;
}

.site-logo img,
.site-logo .custom-logo {
    height: 160px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.site-logo .custom-logo-link {
    display: flex;
    line-height: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

/* Legacy .nav-links support */
.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F5BF5A;
}

.btn-demo {
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid #F5BF5A;
    color: #F5BF5A;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.btn-demo:hover {
    background-color: #F5BF5A;
    color: #21211F;
}

/* Mobile menu toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: #F5BF5A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(33, 33, 31, 0.85) 0%, rgba(33, 33, 31, 0.6) 50%, rgba(33, 33, 31, 0.2) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-underline {
    width: 60px;
    height: 3px;
    background-color: #F5BF5A;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #F5BF5A;
    color: #21211F;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 2px solid #F5BF5A;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background-color: #e0a840;
    border-color: #e0a840;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #21211F;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* === FEATURES SECTION === */
.features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-card {
    padding: 30px 20px;
}

.feature-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 96px;
    height: 96px;
    stroke: #F5BF5A;
    fill: none;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #21211F;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* === STATS BAR === */
.stats-section {
    background-color: #672B2F;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #F5BF5A;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-item .stat-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* === REVIEWS SECTION === */
.reviews-section {
    background-color: #21211F;
    padding: 80px 0;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #F5BF5A;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background-color: #33363D;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars svg {
    width: 20px;
    height: 20px;
    fill: #F5BF5A;
    margin: 0 2px;
}

.review-card blockquote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-divider {
    width: 40px;
    height: 2px;
    background-color: #F5BF5A;
    margin: 0 auto 20px;
}

.review-author {
    color: #F5BF5A;
    font-weight: 600;
    font-size: 0.95rem;
}

.review-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* === CTA SECTION === */
.cta-section {
    background-color: #21211F;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #33363D;
}

.cta-section h2 {
    font-size: 2.4rem;
    color: #F5BF5A;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    font-size: 1.05rem;
    padding: 16px 40px;
}

/* === FOOTER === */
.site-footer {
    background-color: #21211F;
    border-top: 1px solid #F5BF5A;
    padding: 50px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 40px;
    align-items: start;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 40px;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-brand img {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    color: #F5BF5A;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #F5BF5A;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-top: 5px;
}

.footer-social a {
    color: #F5BF5A;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-social svg {
    width: 22px;
    height: 22px;
    fill: #F5BF5A;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #33363D;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* === DEMO MODAL === */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #21211F;
    border: 1px solid #F5BF5A;
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    margin: auto;
}

/* Widen modal when Calendly step is showing */
.modal-content.calendly-active {
    max-width: 650px;
    padding: 30px 24px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #F5BF5A;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-content h2 {
    font-size: 1.8rem;
    color: #F5BF5A;
    margin-bottom: 10px;
    text-align: center;
}

.modal-content .modal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.modal-form .form-group {
    margin-bottom: 20px;
}

.modal-form label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #33363D;
    border: 1px solid #555;
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: #F5BF5A;
}

.modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.modal-form .btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #F5BF5A;
    color: #21211F;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease;
}

.modal-form .btn-submit:hover {
    background-color: #722F37;
    color: #ffffff;
}

/* === PAGE TEMPLATES === */
.page-header {

    background-color: #21211F;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    color: #F5BF5A;
    font-size: 2.8rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 10px;
}

.page-content {
    padding: 60px 0;
    background-color: #21211F;
}

.page-content h2 {
    color: #F5BF5A;
    margin-bottom: 20px;
}

.page-content p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.page-content li {
    color: rgba(255, 255, 255, 0.7);
}

.page-content a {
    color: #F5BF5A;
}

.page-content h3 {
    color: rgba(255, 255, 255, 0.9);
}

/* === BLOG === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    background-color: #33363D;
    overflow: hidden;
}

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

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #21211F;
    margin-bottom: 10px;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.blog-card-content .read-more {
    color: #F5BF5A;
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-card-content .read-more:hover {
    color: #672B2F;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-left {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #21211F;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-top: 1px solid #33363D;
        z-index: 999;
    }

    .nav-left.active {
        display: flex;
    }

    .nav-right {
        display: none;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: #21211F;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        border-top: 1px solid #33363D;
    }

    .nav-links.active {
        display: flex;
    }

    .site-logo img,
    .site-logo .custom-logo {
        height: 80px;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item .stat-number {
        font-size: 2.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        padding: 30px 25px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #21211F;
}

.faq-section h2 {
    text-align: center;
    color: #F5BF5A;
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.faq-section .faq-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(245, 191, 90, 0.15);
}

.faq-item:first-child {
    border-top: 1px solid rgba(245, 191, 90, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: #F5BF5A;
}

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: 20px;
    color: #F5BF5A;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 22px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

.faq-more a {
    color: #F5BF5A;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(245, 191, 90, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.faq-more a:hover {
    border-color: #F5BF5A;
}

/* Quiz Modal */
.quiz-modal {
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px;
}

.quiz-progress {
    height: 5px;
    background: #33363D;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: #F5BF5A;
    border-radius: 3px;
    transition: width 0.4s ease;
}

.quiz-progress-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
}

.quiz-step {
    display: none;
    animation: quizFadeIn 0.3s ease;
}

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

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F5BF5A;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
    text-align: left;
}

.quiz-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    line-height: 1.5;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option {
    background: #33363D;
    border: 2px solid #33363D;
    border-radius: 10px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.quiz-option:hover {
    border-color: #F5BF5A;
    background: #3a3d44;
}

.quiz-option.selected {
    border-color: #F5BF5A;
    background: #2a2d33;
}

.quiz-option-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.quiz-option-text {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

.quiz-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: #F5BF5A;
    color: #21211F;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.quiz-btn:hover {
    background: #e0ac4a;
}

.quiz-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.quiz-input-group {
    margin-bottom: 16px;
}

.quiz-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
    font-weight: 500;
}

.quiz-input {
    width: 100%;
    padding: 12px 16px;
    background: #33363D;
    border: 2px solid #33363D;
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.quiz-input:focus {
    border-color: #F5BF5A;
}

.quiz-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

select.quiz-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

select.quiz-input option {
    background: #33363D;
    color: #ffffff;
}

.quiz-fine {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 14px;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .quiz-modal {
        padding: 30px 20px;
        max-height: 85vh;
    }
    
    .quiz-question {
        font-size: 1.3rem;
    }
}

/* Quiz Back Button */
.quiz-back {
    display: block;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    cursor: pointer;
    margin-top: 20px;
    transition: color 0.2s ease;
}

.quiz-back:hover {
    color: #F5BF5A;
}

/* Quiz side-by-side fields */
.quiz-row {
    display: flex;
    gap: 12px;
}

.quiz-row .quiz-input-group {
    flex: 1;
}

@media (max-width: 480px) {
    .quiz-row {
        flex-direction: column;
        gap: 0;
    }
}
