.proluma-season-wrap {
    border-radius: 0.5rem;
    /* rounded-lg */
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* shadow-md */
}

.proluma-season-header {
    background-color: #2b2b2b;
    color: #f4c542;
    font-weight: 600;
    /* font-semibold */
    padding: 0.75rem 1rem;
    /* py-3 px-4 */
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.proluma-season-card-table {
    width: 100%;
}

.proluma-season-card-table thead th {
    text-align: left;
    color: #dddddd;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proluma-season-card-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.proluma-season-card-table td {
    padding: 0.75rem 1rem;
    color: #dddddd;
}

.proluma-season-price {
    color: #f4c542;
    font-weight: 800;
    /* font-extrabold */
}

/* Booking-specific styles (no Tailwind dependency) */
.proluma-season-price,
.proluma-season-price .woocommerce-Price-amount,
.proluma-season-price .woocommerce-Price-currencySymbol {
    color: #f4c542 !important;
    font-weight: 800;
}

.booking-price-notice {
    background-color: rgba(255, 215, 0, 0.1);
    border-left: 3px solid #f4c542;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #f4c542;
}

.booking-price-accordion {
    margin-top: 1rem;
}

.accordion-item {
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 600;
    color: #f4c542;
    background-color: #2b2b2b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.accordion-header:hover {
    background-color: #333333;
    color: #ffe066;
}

.accordion-body {
    padding: 1rem;
    background-color: #0d0d0d;
    color: #dddddd;
}

/* Optional: subtle expand animation */
.accordion-item[open] .accordion-body {
    animation: fadeIn 0.25s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional caret indicator */
.accordion-header::after {
    content: "▸";
    transition: transform 0.25s ease;
}

.accordion-item[open] .accordion-header::after {
    transform: rotate(90deg);
}
