.ts-fdd07ca0-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: inherit;
}
.ts-fdd07ca0-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    padding: 32px;
    background: transparent;
    border-bottom: 2px solid #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) {
    .ts-fdd07ca0-item {
        grid-template-columns: 80px 1fr auto;
        gap: 40px;
        padding: 40px 0;
    }
}
.ts-fdd07ca0-item:hover {
    background: rgba(0,0,0,0.02);
}
.ts-fdd07ca0-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ts-fdd07ca0-date-day {
    font-size: 3.5em;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -2px;
}
.ts-fdd07ca0-date-month {
    font-size: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}
.ts-fdd07ca0-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ts-fdd07ca0-theater-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.ts-fdd07ca0-theater {
    font-size: 2em;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
}
.ts-fdd07ca0-type {
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    background: #000;
    color: #fff;
    border-radius: 50px;
    display: inline-block;
}
.ts-fdd07ca0-city {
    font-size: 1.2em;
    font-weight: 500;
    opacity: 0.6;
}
.ts-fdd07ca0-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    background: #000;
    color: #fff;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    width: 100%;
    cursor: pointer;
    border: 2px solid #000;
}
@media (min-width: 768px) {
    .ts-fdd07ca0-button {
        width: auto;
        min-width: 180px;
    }
}
.ts-fdd07ca0-button:hover:not(.ts-disabled) {
    background: #fff;
    color: #000;
}

/* Sold Out Default Styles */
.ts-status-sold_out {
    background: transparent;
    color: #999;
    border-color: #ddd;
}
.ts-status-sold_out.ts-disabled,
.ts-disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Waitlist Default Styles */
.ts-status-waitlist {
    background: #fff;
    color: #000;
    border-color: #000;
}
.ts-status-waitlist:hover:not(.ts-disabled) {
    background: #000;
    color: #fff;
}

/* Last Tickets Styles */
.ts-status-last_tickets {
    background: #ff3333;
    border-color: #ff3333;
}
.ts-status-last_tickets:hover:not(.ts-disabled) {
    background: #000;
    border-color: #000;
    color: #fff;
}

.ts-fdd07ca0-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #000;
    color: #fff;
    padding: 6px 16px;
    font-size: 0.75em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.ts-fdd07ca0-empty {
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    padding: 40px;
    border: 2px dashed #000;
}