.shows-related-shows {
}

.shows-related-shows__list {
    display: flex;
    gap: 10px;
}

.shows-related-shows__item {
    background-color: #186eb7;
    color: #ffffff;
    padding: 4px;
}

.shows-related-shows__item-link {
    color: #ffffff;
    text-decoration: none;
}

.shows-related-shows__item-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.shows-packages {
}

.shows-packages__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shows-packages__item {
    background-color: #186eb7;
    color: #ffffff;
    padding: 4px;
    flex: 0 0 calc(33.333% - 7px);
    min-width: 200px;
    max-width: calc(33.333% - 7px);
}

.shows-packages__item-content {
    background-color: #f9f9f9;
    color: #303030;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.shows-packages__item-link {
    color: #ffffff;
    text-decoration: none;
}

.shows-packages__item-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.shows-packages__item-price {
    font-size: 20px;
    font-weight: 600;
}

.shows-packages__item-image {
    margin: 20px 0;
}

.shows-photos {
}

.shows-photos__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shows-gallery__photos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shows-photos__item {
    flex: 0 0 calc(33.333% - 7px);
    min-width: 150px;
    max-width: calc(33.333% - 7px);
}

.shows-gallery__photos-item {
    flex: 0 0 calc(33.333% - 7px);
    min-width: 150px;
    max-width: calc(33.333% - 7px);
}

.shows-photos__item-link {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.shows-gallery__photos-item-link {
    display: block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.shows-photos__item-link:hover {
    transform: scale(1.05);
}

.shows-gallery__photos-item-link:hover {
    transform: scale(1.05);
}

.shows-photos__item-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.shows-gallery__photos-item-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.shows-videos {
}

.shows-videos__list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.shows-videos__item {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 200px;
    max-width: calc(33.333% - 10px);
}

.shows-videos__item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.shows-videos__item-thumbnail {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.shows-videos__item-link:hover .shows-videos__item-thumbnail {
    transform: scale(1.05);
}

.shows-videos__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shows-videos__item-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.shows-videos__item-link:hover .shows-videos__item-play-icon {
    opacity: 1;
}

.shows-videos__item-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.shows-videos__item-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.shows-videos__item-title {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    color: #303030;
}

/* PhotoSwipe custom styles for videos */
.photoswipe-video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photoswipe-video-wrapper iframe {
    width: 90vw;
    height: 50.625vw; /* 16:9 ratio */
    max-width: 1280px;
    max-height: 720px;
}

.shows-header {
    font-size: 20px;
}

.shows-header__title-section {
    margin-bottom: 1.5rem;
}

.shows-header__title {
    font-size: 40px;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-wrap: break-word;
}

.shows-header__title-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.shows-header__rating-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shows-header__title-divider {
    width: 1px;
    height: 30px;
    background-color: #000000;
    flex-shrink: 0;
}

.shows-header__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shows-header__title-meta .shows-header__location,
.shows-header__title-meta .shows-header__theater {
    margin: 0;
}

/* Accessibility: Focus indicators */
.shows-header__book-button:focus,
.shows-header__location-link:focus,
.shows-header__theater-link:focus,
.shows-header__offer-link:focus,
.shows-photos__item-link:focus,
.shows-gallery__photos-item-link:focus {
    outline: 3px solid #186eb7;
    outline-offset: 2px;
}

.shows-header__book-button:focus-visible {
    outline: 3px solid #186eb7;
    outline-offset: 2px;
}

/* Ensure touch targets are at least 44x44px on mobile */
@media (max-width: 768px) {
    .shows-header__book-button {
        min-height: 44px;
        min-width: 120px;
        padding: 12px 24px;
    }
    
    .shows-header__thumbnail-item a {
        min-height: 44px;
        display: block;
    }
    
    .shows-gallery__thumbnail-item a {
        min-height: 44px;
        display: block;
    }
    
    .shows-header__featured-image a {
        min-height: 44px;
        display: block;
    }
    
    .shows-gallery__featured-image a {
        min-height: 44px;
        display: block;
    }
    
    .shows-header__location-link,
    .shows-header__theater-link {
        min-height: 44px;
        display: inline-block;
        padding: 4px 0;
    }
    
    .shows-header__badges .shows-listing__badge {
        min-height: 32px;
        padding: 0.5rem 0.75rem;
    }
}

.shows-header__video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.shows-header__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.shows-header__image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.shows-gallery__image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.shows-header__content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.shows-header__media {
    flex: 0 0 760px;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.shows-gallery__media {
    width: 760px;
    max-width: 100%;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.shows-header__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    justify-content: flex-start;
}

.shows-gallery__thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    justify-content: flex-start;
}

.shows-header__thumbnail-item {
    width: 150px;
    flex-shrink: 0;
}

.shows-gallery__thumbnail-item {
    width: 150px;
    flex-shrink: 0;
}

.shows-header__thumbnail-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.shows-gallery__thumbnail-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}

.shows-header__featured-image {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.shows-gallery__featured-image {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.shows-header__featured-image .shows-header__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.shows-gallery__featured-image .shows-gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.shows-header__info {
    flex: 1 1 auto;
    border: 1px solid #ddd;
    padding: 24px;
    border-radius: 4px;
}

.shows-header__theater {
    margin-bottom: 1rem;
}

.shows-header__theater-link {
    font-weight: 600;
    text-decoration: underline;
    color: inherit;
}

.shows-header__price-line {
    margin-bottom: 1rem;
}

.shows-header__price-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.shows-header__price-value {
    font-weight: 700;
    color: #186eb7;
    margin-right: 0.5rem;
}

.shows-header__price-note {
    /* No additional styles needed */
}

.shows-header__book-button {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background-color: #186eb7;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    box-sizing: border-box;
}

.shows-header__book-button:hover {
    background-color: #145a9a;
    color: white;
}

.shows-header__book-button:focus {
    color: white;
}

.shows-header__discount-note {
    color: #666;
    margin-bottom: 1rem;
}

.shows-header__contact {
    margin-top: 1rem;
}

.shows-header__webcode {
    font-weight: 600;
}

.shows-header__phone {
    font-weight: 600;
    text-decoration: underline;
}

.shows-header__special-offer {
    font-size: 20px;
    background-color: #f8d333;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.shows-header__offer-link {
    font-weight: 600;
    text-decoration: underline;
    color: #186eb7;
}


.shows-header__location {
    margin-bottom: 1rem;
}

.shows-header__location-link {
    font-weight: 600;
    text-decoration: underline;
    color: inherit;
}

.shows-header__coming-soon {
    font-weight: 600;
    color: #D00;
    margin-bottom: 1rem;
}

.shows-ticket-prices {
    margin-top: 2rem;
    font-size: 22px;
}

.shows-ticket-prices__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.shows-ticket-prices__info-text {
    flex: 1;
}

.shows-ticket-prices__compare-link {
    text-decoration: underline;
    color: #186eb7;
}

.shows-ticket-prices__group {
    border: 4px solid #186eb7;
    margin-bottom: 3rem;
}

.shows-ticket-prices__group-title {
    font-size: 26px;
    font-weight: 600;
    padding: 10px 0;
    margin: 0;
    background-color: #186eb7;
    color: #ffffff;
    text-align: center;
}

.shows-ticket-prices__details {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    background-color: #f2f2f2;
}

.shows-ticket-prices__icon {
    background-color: #cde8e8;
    padding: 20px 50px;
    border-right: 4px dashed #186eb7;
}

.shows-ticket-prices__icon-image {
    width: 100px;
    object-fit: contain;
}

.shows-ticket-prices__prices {
    flex: 1;
    padding: 15px 25px;
}

.shows-ticket-prices__price-item {
    margin-bottom: 0.5rem;
}

.shows-ticket-prices__note {
    color: #666;
    margin-top: 0.5rem;
}

.shows-ticket-prices__actions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.shows-ticket-prices__info-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #186eb7;
}

.shows-ticket-prices__info-link:hover {
    text-decoration: underline;
}

.shows-title {
    margin-bottom: 1.5rem;
}

.shows-title__heading {
    font-size: 40px;
    margin-bottom: 0;
    line-height: 1.2;
    word-wrap: break-word;
}

.shows-title__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.shows-title__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shows-title__divider {
    color: #666;
    font-weight: 600;
}

.shows-title__badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shows-title__theater {
    margin: 0;
}

.shows-title__theater-link {
    font-weight: 600;
    text-decoration: underline;
    color: inherit;
}

.shows-title__theater-link:focus {
    outline: 3px solid currentColor;
    outline-offset: 2px;
}

/* Tablet and below (768px) */
@media (max-width: 768px) {
    .shows-title__heading {
        font-size: 32px;
    }

    .shows-title__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .shows-title__divider {
        display: none;
    }

    .shows-header__content {
        flex-direction: column;
        gap: 24px;
    }

    .shows-header__media {
        flex: 1 1 100%;
        flex-direction: column;
    }

    .shows-gallery__media {
        width: 100%;
        flex-direction: column;
    }

    .shows-header__thumbnails {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 15px;
    }

    .shows-gallery__thumbnails {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        margin-bottom: 15px;
    }

    .shows-header__thumbnail-item {
        width: calc(20% - 8px);
        min-width: 100px;
    }

    .shows-gallery__thumbnail-item {
        width: calc(20% - 8px);
        min-width: 100px;
    }

    .shows-header__featured-image {
        width: 100%;
    }

    .shows-gallery__featured-image {
        width: 100%;
    }

    .shows-header__info {
        flex: 1 1 100%;
    }

    .shows-header__title-section .shows-header__title {
        font-size: 32px;
    }
    
    .shows-header__title-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .shows-header__title-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }
    
    .shows-header__badges {
        width: 100%;
    }
    
    .shows-header__info {
        padding: 24px;
    }
    
    .shows-header__content {
        flex-direction: column;
        gap: 16px;
    }
    
    .shows-header__media {
        width: 100%;
        max-width: 100%;
    }

    .shows-gallery__media {
        width: 100%;
        max-width: 100%;
    }


    .shows-header__special-offer {
        font-size: 18px;
    }

    .shows-packages__item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    .shows-photos__item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    .shows-gallery__photos-item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    .shows-videos__item {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }

    .shows-ticket-prices {
        font-size: 18px;
    }

    .shows-ticket-prices__title {
        font-size: 22px;
    }

    .shows-ticket-prices__group-title {
        font-size: 22px;
    }

    .shows-ticket-prices__details {
        flex-direction: column;
        gap: 0;
    }

    .shows-ticket-prices__icon {
        border-right: none;
        border-bottom: 4px dashed #186eb7;
        padding: 20px;
        display: flex;
        justify-content: center;
    }

    .shows-ticket-prices__prices {
        padding: 15px 20px;
    }

    .shows-ticket-prices__actions {
        padding: 15px 20px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .shows-title__heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .shows-header {
        font-size: 18px;
    }

    .shows-header__title-section .shows-header__title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .shows-header__title-section {
        margin-bottom: 1rem;
    }

    
    .shows-header__thumbnails {
        margin-bottom: 10px;
    }
    
    .shows-gallery__thumbnails {
        margin-bottom: 10px;
    }
    
    .shows-header__thumbnail-item {
        width: calc(20% - 4px);
        min-width: 80px;
    }
    
    .shows-gallery__thumbnail-item {
        width: calc(20% - 4px);
        min-width: 80px;
    }
    
    .shows-header__info {
        padding: 24px;
    }

    .shows-header__book-button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .shows-header__special-offer {
        font-size: 16px;
        padding: 0.75rem;
    }

    .shows-related-shows__list {
        flex-direction: column;
    }

    .shows-related-shows__item {
        width: 100%;
    }

    .shows-packages__item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .shows-photos__item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
        min-width: 120px;
    }

    .shows-gallery__photos-item {
        flex: 0 0 calc(50% - 5px);
        max-width: calc(50% - 5px);
        min-width: 120px;
    }

    .shows-videos__item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .shows-videos__item-title {
        font-size: 14px;
    }

    .photoswipe-video-wrapper iframe {
        width: 95vw;
        height: 53.4375vw;
    }

    .shows-ticket-prices {
        font-size: 16px;
    }

    .shows-ticket-prices__title {
        font-size: 20px;
    }

    .shows-ticket-prices__group-title {
        font-size: 20px;
        padding: 8px 0;
    }

    .shows-ticket-prices__icon-image {
        width: 80px;
    }

    .shows-ticket-prices__prices {
        padding: 12px 15px;
    }

    .shows-ticket-prices__actions {
        padding: 12px 15px;
    }
}