/*
Theme Name: Pomona Child
Theme URI: https://pickaticket.co.uk/
Description: A custom child theme for the Pomona theme.
Author: Rossouw Solutions
Author URI: https://pickaticket.co.uk/
Template: pomana
Version: 1.0.0
*/

/* --- Add all other custom CSS below this line --- */
/* Competition System Styles - Save as /css/competition.css in your child theme */

/* ===== COMPETITION GRID ===== */
.competitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.competition-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.competition-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.competition-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.competition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.competition-card:hover .competition-image img {
    transform: scale(1.05);
}

.competition-details {
    padding: 1.5rem;
}

.competition-details h3 {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-timer {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    color: white;
    text-align: center;
}

.countdown-display {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.countdown-display span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    margin: 0 0.2rem;
    display: inline-block;
    min-width: 30px;
}

.countdown-expired {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%) !important;
}

.countdown-expired .countdown-display {
    font-size: 1rem;
}

/* ===== PROGRESS BAR ===== */
.competition-progress {
    margin: 1.5rem 0;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
    border-radius: 6px;
    transition: width 0.8s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-weight: 500;
}

/* ===== COMPETITION PRICE ===== */
.competition-price {
    margin: 1rem 0;
    text-align: center;
}

.competition-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

/* ===== ENTER COMPETITION BUTTON ===== */
.enter-competition-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.enter-competition-btn:hover {
    background: linear-gradient(135deg, #ee5a52 0%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(238, 90, 82, 0.4);
    color: white;
    text-decoration: none;
}

.enter-competition-btn:active {
    transform: translateY(0);
}

/* ===== AGE VERIFICATION MODAL ===== */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.age-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-modal h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.age-modal p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.security-questions {
    text-align: left;
    margin: 1.5rem 0;
}

.question {
    margin-bottom: 1.5rem;
}

.question label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.question input[type="number"],
.question input[type="text"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.question input[type="number"]:focus,
.question input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.question input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.age-buttons button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-buttons button[type="submit"] {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
}

.age-buttons button[type="submit"]:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.age-buttons button[type="button"] {
    background: #f44336;
    color: white;
}

.age-buttons button[type="button"]:hover {
    background: #d32f2f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.4);
}

/* ===== SINGLE PRODUCT PAGE ENHANCEMENTS ===== */
.single-product .countdown-timer {
    margin: 2rem 0;
    padding: 1.5rem;
    font-size: 1.1rem;
}

.single-product .competition-progress {
    margin: 2rem 0;
}

.single-product .progress-bar {
    height: 16px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .competitions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1rem 0;
    }
    
    .competition-card {
        margin: 0 1rem;
    }
    
    .competition-details {
        padding: 1rem;
    }
    
    .competition-details h3 {
        font-size: 1.2rem;
    }
    
    .countdown-display {
        font-size: 1rem;
    }
    
    .countdown-display span {
        padding: 0.2rem 0.3rem;
        margin: 0 0.1rem;
        min-width: 25px;
    }
    
    .age-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .age-buttons button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .competition-image {
        height: 150px;
    }
    
    .countdown-display {
        font-size: 0.9rem;
    }
    
    .countdown-display span {
        padding: 0.1rem 0.2rem;
        font-size: 0.8rem;
    }
    
    .enter-competition-btn {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* ===== COMPETITION PRODUCT ADMIN STYLES ===== */
.competition_fields {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
}

.competition_fields .form-field {
    margin-bottom: 1rem;
}

/* ===== LOADING STATES ===== */
.competition-loading {
    opacity: 0.6;
    pointer-events: none;
}

.competition-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ===== EXPIRED COMPETITION STYLES ===== */
.competition-expired {
    opacity: 0.7;
    position: relative;
}

.competition-expired::before {
    content: 'EXPIRED';
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f44336;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.competition-expired .enter-competition-btn {
    background: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}

.competition-expired .enter-competition-btn:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}
/*------------------------------------------------------------------
 * Competition Elements Styling
 * -----------------------------------------------------------------*/

/* Main container for all competition elements */
.competition-countdown-container,
.competition-progress-container {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.competition-countdown-container h3,
.competition-progress-container h4 {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
    color: #333;
    font-size: 1.2em;
}

/* Countdown Timer Styling */
#competition-timer {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between segments */
    text-align: center;
}

.timer-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-number {
    font-size: 2.5em; /* Large number for the time */
    font-weight: bold;
    color: #2c3e50;
    line-height: 1;
}

.timer-label {
    font-size: 0.8em;
    text-transform: uppercase;
    color: #7f8c8d;
}

.timer-ended {
    font-size: 1.5em;
    font-weight: bold;
    color: #c0392b;
    width: 100%;
    text-align: center;
}


/* Progress Bar Styling */
.progress-bar-wrapper {
    width: 100%;
    height: 25px;
    background-color: #ecf0f1;
    border-radius: 15px;
    overflow: hidden; /* Ensures the inner bar stays rounded */
    border: 1px solid #bdc3c7;
}

.progress-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, #1abc9c, #16a085);
    border-radius: 15px;
    transition: width 0.5s ease-in-out; /* Smooth animation when width changes */
    text-align: center;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-bar-text {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.9em;
    color: #555;
    font-weight: 500;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .timer-number {
        font-size: 2em;
    }

    .timer-label {
        font-size: 0.7em;
    }

    .competition-countdown-container,
    .competition-progress-container {
        padding: 15px;
    }
}
/*
===================================================================
Competition Grid & Card Styling
===================================================================
*/

/* The main grid container */
.competitions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns on desktop */
    gap: 25px;
    padding: 20px 0;
}

/* The individual card item */
.competition-card-grid-item {
    background: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.competition-card-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Image container - this is key for responsiveness */
.competition-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.competition-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    transition: transform 0.4s ease;
}

.competition-card-grid-item:hover .competition-image-wrapper img {
    transform: scale(1.05);
}

/* Main content area of the card */
.competition-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows footer to stick to the bottom */
}

.competition-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.competition-card-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.competition-card-title a:hover {
    color: #c0392b; /* Example hover color */
}

/* Section titles for Timer and Progress */
.card-section-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px 0;
}

/* Countdown Timer Styling inside the card */
.competition-card-timer {
    display: flex;
    justify-content: space-between;
    text-align: center;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.competition-card-timer .timer-segment {
    flex-basis: 25%;
}

.competition-card-timer .timer-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1;
}

.competition-card-timer .timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #7f8c8d;
}

.competition-card-timer .timer-ended {
    width: 100%;
    font-weight: bold;
    color: #c0392b;
}

/* Progress Bar Styling inside the card */
.competition-card-progress-section .progress-bar-wrapper {
    height: 15px;
    margin-bottom: 5px;
}

.competition-card-progress-section .progress-bar-text {
    font-size: 0.85rem;
    color: #555;
    text-align: center;
}

/* Card Footer - Price and Button */
.competition-card-footer {
    margin-top: auto; /* Pushes footer to the bottom */
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.competition-card-price .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
}

.competition-card-button {
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.competition-card-button:hover {
    background: #2980b9;
    color: #fff;
}

/* ===== RESPONSIVE DESIGN ===== */

/* For tablets */
@media (max-width: 992px) {
    .competitions-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

/* For mobile phones */
@media (max-width: 768px) {
    .competitions-grid {
        grid-template-columns: 1fr; /* 1 column */
        gap: 20px;
    }
    .competition-card-title {
        font-size: 1.1rem;
    }
    .competition-card-timer .timer-number {
        font-size: 1.2rem;
    }
}
/*
===================================================================
Brand Color Scheme Integration
===================================================================
*/

/* --- Key Brand Colors --- */
:root {
    --brand-purple: #4a0e6c; /* Rich royal purple */
    --brand-gold: #c7a143;   /* Luxurious gold for accents */
    --brand-gold-dark: #b38f3b; /* Darker gold for hover effects */
    --dark-text: #333333;
    --light-text: #666666;
    --border-color: #e9e9e9;
    --background-light: #f9f9f9;
}

/* --- General Elements & Headings --- */

/* Main headings on the competitions page */
.competition-group-title {
    color: var(--brand-purple);
    border-bottom: 2px solid var(--brand-purple);
    padding-bottom: 10px;
    margin-bottom: 25px;
}

/* Section titles inside the cards */
.card-section-title {
    color: var(--brand-purple);
    font-weight: 700;
}

/* --- Competition Card Styling --- */

.competition-card-grid-item {
    border-color: var(--border-color);
}

.competition-card-title a {
    color: var(--dark-text);
}

.competition-card-title a:hover {
    color: var(--brand-purple);
}

/* --- Countdown Timers --- */

.competition-card-timer {
    background-color: transparent;
    border: 1px solid var(--border-color);
}

.competition-card-timer .timer-number,
.competition-countdown-container .timer-number {
    color: var(--brand-purple);
}

.competition-countdown-container {
    background-color: var(--background-light);
    border-color: var(--border-color);
}

/* --- Progress Bars --- */

.progress-bar-inner {
    /* Gold gradient for the progress bar */
    background: linear-gradient(90deg, #e0b85a, var(--brand-gold));
}

/* --- Buttons & Price --- */

.competition-card-price .price,
.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: var(--dark-text); /* Make price a standard dark color */
}

/* Main "Enter Competition" button */
.competition-card-button {
    background: var(--brand-gold);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.competition-card-button:hover {
    background: var(--brand-gold-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* "Learn More" button for upcoming competitions */
.competition-card-button.is-upcoming {
    background: #7f8c8d; /* A neutral grey for upcoming events */
    color: #ffffff;
}
.competition-card-button.is-upcoming:hover {
    background: #6c7a7d;
}

/* Single product page "Enter Now" button */
.single-product .single_add_to_cart_button {
    background: var(--brand-purple) !important;
    color: #ffffff !important;
    border: none !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.single-product .single_add_to_cart_button:hover {
    background: var(--brand-gold-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Disabled "Coming Soon" button */
.single-product .single_add_to_cart_button.disabled,
.single-product .single_add_to_cart_button:disabled {
    background: #bdc3c7 !important;
    cursor: not-allowed !important;
}

/* --- My Account Page --- */

/* Winner notification */
.my-account-content .competition-name strong {
    color: var(--brand-gold-dark) !important;
}

.my-account-content .competition-ticket-numbers {
    border-left-color: var(--brand-gold) !important;
}
/*
===================================================================
Brand Color Scheme Integration (V4 - Purple Buttons & Bars)
===================================================================
*/

/* --- Key Brand Colors --- */
:root {
    --brand-purple: #4a0e6c;      /* Rich royal purple */
    --brand-purple-dark: #3a0b54; /* Darker purple for hover */
    --brand-gold: #c7a143;        /* Gold for secondary accents */
    --dark-text: #333333;
    --border-color: #e9e9e9;
    --background-light: #f9f9f9;
}

/* --- Global Site Styles --- */
body { color: var(--dark-text); }
a { color: var(--brand-purple); transition: color 0.3s ease; }
a:hover { color: var(--brand-gold); }

/* --- Header Styling --- */
#overlay { background-color: var(--brand-purple) !important; }
.home #overlay {
    background-image: url('https://pickaticket.co.uk/wp-content/uploads/2025/08/Hero-Image_PickaTicket.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
#overlay, #overlay .site-title a, #overlay .main-navigation a { color: #ffffff !important; }
#overlay .main-navigation a:hover { color: var(--brand-gold) !important; }

/* --- Footer Styling --- */
footer .footer-fallback { background-color: var(--brand-purple) !important; color: #ffffff !important; }
footer .footer-fallback a, footer .footer-fallback .widget-title { color: #ffffff !important; }
footer .footer-fallback a:hover { color: var(--brand-gold) !important; }

/* --- General Elements & Headings --- */
body .competition-group-title {
    color: var(--brand-purple) !important;
    border-bottom: 2px solid var(--brand-purple) !important;
    padding-bottom: 10px;
    margin-bottom: 25px;
}
body .card-section-title { color: var(--brand-purple) !important; font-weight: 700; }

/* --- Competition Card Styling --- */
body .competitions-grid .competition-card-grid-item { border: 2px solid var(--brand-purple) !important; }
body .competitions-grid .competition-card-grid-item:hover { border-color: var(--brand-gold) !important; }
body .competition-card-title a { color: var(--dark-text); }
body .competition-card-title a:hover { color: var(--brand-purple); }

/* --- Countdown Timers --- */
body .competition-card-timer { background-color: transparent; border: 1px solid var(--border-color); }
body .competition-card-timer .timer-number, body .competition-countdown-container .timer-number { color: var(--brand-purple); }
body .competition-countdown-container { background-color: var(--background-light); border-color: var(--border-color); }

/* --- Progress Bars --- */
body .progress-bar-inner {
    /* Changed to purple gradient */
    background: linear-gradient(90deg, #6a1b9a, var(--brand-purple)) !important;
}

/* --- Buttons & Price --- */
body .competition-card-price .price, body .woocommerce div.product p.price, body .woocommerce div.product span.price { color: var(--dark-text); }

/* Main "Enter Competition" button */
body .competition-card-button {
    background: var(--brand-purple);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
body .competition-card-button:hover {
    background: var(--brand-purple-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* "Learn More" button for upcoming competitions */
body .competition-card-button.is-upcoming { background: #7f8c8d; color: #ffffff; }
body .competition-card-button.is-upcoming:hover { background: #6c7a7d; }

/* Single product page "Enter Now" button */
body .single-product .single_add_to_cart_button {
    background: var(--brand-purple) !important;
    color: #ffffff !important;
    border: none !important;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
body .single-product .single_add_to_cart_button:hover {
    background: var(--brand-purple-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Disabled "Coming Soon" button */
body .single-product .single_add_to_cart_button.disabled,
body .single-product .single_add_to_cart_button:disabled {
    background: #bdc3c7 !important;
    cursor: not-allowed !important;
}

/* --- My Account Page --- */
body .my-account-content .competition-name strong { color: var(--brand-gold) !important; }
body .my-account-content .competition-ticket-numbers { border-left-color: var(--brand-gold) !important; }

===================================================================
Competition Q&A Modal Styling
===================================================================
*/

.qa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.qa-modal-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.qa-modal-content h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--brand-purple);
}

.qa-answers {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.qa-answer-label {
    display: block;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.qa-answer-label:hover {
    background-color: #f5f5f5;
}

.qa-answer-label input[type="radio"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.qa-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qa-modal-error {
    color: #c0392b;
    font-weight: bold;
    margin-bottom: 10px;
}

.qa-submit-button,
.qa-close-button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qa-submit-button {
    background-color: var(--brand-gold);
    color: #ffffff;
}

.qa-submit-button:hover {
    background-color: var(--brand-gold-dark);
}

.qa-close-button {
    background-color: #bdc3c7;
    color: #ffffff;
}

.qa-close-button:hover {
    background-color: #95a5a6;
}
