/* VSS site-wide custom styles */

/* Match images: landscape crop */
.match-image {
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

/* Ticket Shop Page Styles */
/* Uses standard products-grid classes for layout */

/* Filter buttons - layout only, styling from site .btn */
.ticket-shop .ticket-filters {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Month headers */
.ticket-shop .month-header {
    font-size: 1.4em;
    font-weight: bold;
    padding: 20px 0 10px;
    margin-top: 20px;
    border-bottom: 2px solid;
    opacity: 0.85;
}

.ticket-shop .month-header:first-of-type {
    margin-top: 0;
}

/* Match info styling */
.ticket-shop .ticket-teams {
    margin-bottom: 5px;
    font-size: 1.1em;
}

.ticket-shop .ticket-date {
    font-size: 0.9em;
    opacity: 0.8;
}

.ticket-shop .ticket-time {
    margin-left: 8px;
}

.ticket-shop .ticket-venue {
    opacity: 0.7;
    font-size: 0.85em;
}

.ticket-shop .ticket-league {
    font-size: 0.8em;
    color: #888;
    margin-top: 2px;
}

/* Home/Away badges */
.ticket-shop .badge-home {
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
}

body.color-blue .ticket-shop .badge-home {
    background: #002d5b;
}

body.color-tomato .ticket-shop .badge-home {
    background: #f34a4a;
}

.ticket-shop .badge-away {
    background: transparent;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid;
}

body.color-blue .ticket-shop .badge-away {
    border-color: #002d5b;
    color: #002d5b;
}

body.color-tomato .ticket-shop .badge-away {
    border-color: #f34a4a;
    color: #f34a4a;
}

/* Variant display - clickable links to each product */
.ticket-shop .variants-box {
    margin-top: 10px;
}

.ticket-shop a.variant-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.ticket-shop .variant-label {
    font-weight: 600;
    text-transform: capitalize;
}

.ticket-shop .variant-price {
    font-weight: bold;
}

.ticket-shop .member-price {
    font-size: 0.85em;
    opacity: 0.8;
}

.ticket-shop .no-tickets {
    text-align: center;
    padding: 40px 20px;
    opacity: 0.7;
}

.ticket-shop .no-tickets p {
    font-size: 1.1em;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .ticket-shop .ticket-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .ticket-shop .ticket-filters .btn {
        width: 100%;
        text-align: center;
    }

    .ticket-shop .month-header {
        font-size: 1.2em;
        padding: 15px 0 8px;
    }

    .ticket-shop .ticket-time {
        display: block;
        margin-left: 0;
        margin-top: 3px;
    }
}
