/* PTA Events front-end defaults. Override these in Appearance > Customise > Additional CSS. */
.pta-events-frontend-booking {
    max-width: 900px;
    margin: 1rem 0;
}
.pta-events-frontend-notices {
    margin-bottom: 1rem;
}
.pta-events-frontend-title {
    margin-top: 0;
    margin-bottom: 1.5rem;
}
.pta-events-frontend-form {
    margin: 0;
}
.pta-events-frontend-options {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.pta-events-frontend-section-title {
    margin: 1.5rem 0 0.35rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #e5e5e5;
}
.pta-events-frontend-section-title:first-child {
    margin-top: 0;
}
.pta-events-frontend-option {
    padding: 0.9rem 1rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}
.pta-events-frontend-option-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pta-events-frontend-option-info {
    flex: 1 1 auto;
    min-width: 0;
}
.pta-events-frontend-option-name {
    display: block;
    font-weight: 700;
    line-height: 1.25;
}
.pta-events-frontend-option-description {
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.35;
}
.pta-events-frontend-option-description p {
    margin: 0;
}
.pta-events-frontend-option-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex: 0 0 auto;
}
.pta-events-frontend-option-price-wrap {
    min-width: 80px;
    text-align: right;
}
.pta-events-frontend-option-price {
    font-weight: 600;
    white-space: nowrap;
}

.pta-events-frontend-option-price-sale-active {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
}
.pta-events-frontend-option-price-regular {
    color: #777;
    font-weight: 500;
    white-space: nowrap;
}
.pta-events-frontend-option-price-regular del {
    text-decoration-thickness: 2px;
}
.pta-events-frontend-option-price-current {
    font-weight: 700;
    white-space: nowrap;
}
.pta-events-frontend-option-price-sale {
    font-weight: 800;
}
.pta-events-frontend-option-control {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}
.pta-events-frontend-qty-button {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    line-height: 1;
}
.pta-events-frontend-qty {
    width: 58px;
    height: 34px;
    text-align: center;
}
.pta-events-frontend-submit-row {
    margin-top: 1rem;
}
.pta-events-frontend-submit-button {
    cursor: pointer;
}
.pta-events-frontend-notice,
.pta-events-frontend-empty {
    padding: 1rem;
    background: #fff8e5;
    border: 1px solid #f0d98c;
    border-radius: 6px;
}
@media (max-width: 700px) {
    .pta-events-frontend-option-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .pta-events-frontend-option-actions {
        width: 100%;
        justify-content: space-between;
    }
    .pta-events-frontend-option-price-wrap {
        text-align: left;
    }
}
