.mpvcr-catalog,
.mpvcr-detail {
    --mpvcr-bg: #0d0d0d;
    --mpvcr-panel: #171717;
    --mpvcr-border: #2b2b2b;
    --mpvcr-text: #f5f2ea;
    --mpvcr-muted: #aaa49a;
    --mpvcr-gold: #d6a83e;
    color: var(--mpvcr-text);
    font-family: inherit;
}

.mpvcr-single-template {
    background: #050505;
    padding: 40px 0;
}

.mpvcr-single-template .mpvcr-detail,
.mpvcr-single-template .mpvcr-description {
    max-width: 1290px;
    margin-right: auto;
    margin-left: auto;
}

.mpvcr-catalog {
    background: var(--mpvcr-bg);
    padding: 14px;
}

.mpvcr-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #151515 0%, #0f0f0f 100%);
    border: 1px solid #202020;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.mpvcr-filter-area {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.mpvcr-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mpvcr-tabs button,
.mpvcr-sort {
    border: 1px solid transparent;
    background: transparent;
    color: #fff;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.mpvcr-tabs button.is-active {
    color: var(--mpvcr-gold);
    border-bottom-color: var(--mpvcr-gold);
}

.mpvcr-type-tabs button,
.mpvcr-seat-tabs button {
    color: var(--mpvcr-muted);
    font-size: 11px;
}

.mpvcr-sort {
    background: #151515;
    border-color: var(--mpvcr-border);
    color: #fff;
    flex: 0 0 150px;
}

.mpvcr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.mpvcr-grid--columns-1 {
    grid-template-columns: 1fr;
}

.mpvcr-grid--columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mpvcr-grid--columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mpvcr-card {
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 0%, rgba(214, 168, 62, 0.1), transparent 24%),
        linear-gradient(180deg, #191919 0%, #111 100%);
    border: 1px solid var(--mpvcr-border);
    border-radius: 8px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.mpvcr-card[hidden] {
    display: none;
}

.mpvcr-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 5;
    background: #222 center / cover no-repeat;
    color: var(--mpvcr-muted);
}

.mpvcr-card-body {
    padding: 18px;
}

.mpvcr-card h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: clamp(19px, 1.5vw, 24px);
    line-height: 1.2;
}

.mpvcr-detail h1 {
    margin: 0 0 6px;
    color: #fff;
    font-size: clamp(24px, 2.5vw, 38px);
    line-height: 1.2;
}

.mpvcr-meta-line {
    color: var(--mpvcr-gold);
    margin: 0 0 16px;
    font-size: 13px;
}

.mpvcr-spec-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    border-bottom: 1px solid var(--mpvcr-border);
    padding-bottom: 14px;
}

.mpvcr-spec-grid span,
.mpvcr-price-row span,
.mpvcr-detail-specs div {
    min-width: 0;
}

.mpvcr-spec-grid b,
.mpvcr-price-row b,
.mpvcr-detail-specs b {
    display: block;
    color: var(--mpvcr-text);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.mpvcr-spec-grid small,
.mpvcr-price-row small,
.mpvcr-detail-specs small {
    display: block;
    color: var(--mpvcr-muted);
    font-size: 11px;
    line-height: 1.25;
}

.mpvcr-price-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 16px 0;
}

.mpvcr-price-row b {
    color: #fff;
    font-size: 20px;
}

.mpvcr-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mpvcr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    border: 1px solid transparent;
    cursor: pointer;
}

.mpvcr-btn-outline {
    color: var(--mpvcr-gold);
    border-color: var(--mpvcr-gold);
    background: transparent;
}

.mpvcr-btn-outline:hover,
.mpvcr-btn-outline:focus,
.mpvcr-btn-outline:active {
    color: var(--mpvcr-gold);
}

.mpvcr-btn-gold {
    color: #111;
    background: linear-gradient(180deg, #e5bd59 0%, #c9972e 100%);
    border-color: var(--mpvcr-gold);
}

.mpvcr-btn-gold:hover,
.mpvcr-btn-gold:focus,
.mpvcr-btn-gold:active {
    color: #111;
}

.mpvcr-booking-link:hover::before,
.mpvcr-booking-link:hover::after,
.mpvcr-booking-link:focus::before,
.mpvcr-booking-link:focus::after,
.mpvcr-booking-link:active::before,
.mpvcr-booking-link:active::after {
    content: none;
    display: none;
}

.mpvcr-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    background: var(--mpvcr-bg);
    padding: 24px;
}

.mpvcr-detail-main {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #222 center / cover no-repeat;
    border-radius: 8px;
    overflow: hidden;
    transition: background-image 0.2s ease;
    touch-action: pan-y;
}

.mpvcr-slider-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    cursor: pointer;
    font-size: 34px;
    line-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
}

.mpvcr-slider-nav:hover,
.mpvcr-slider-nav:focus {
    border-color: var(--mpvcr-gold);
    color: var(--mpvcr-gold);
    outline: none;
}

.mpvcr-slider-prev {
    left: 14px;
}

.mpvcr-slider-next {
    right: 14px;
}

.mpvcr-detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.mpvcr-gallery-thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
}

.mpvcr-gallery-thumb.is-active {
    border-color: var(--mpvcr-gold);
}

.mpvcr-detail-gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
}

.mpvcr-detail-panel {
    background: var(--mpvcr-panel);
    border: 1px solid var(--mpvcr-border);
    border-radius: 8px;
    padding: 22px;
    align-self: start;
}

.mpvcr-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.mpvcr-booking-form {
    display: grid;
    gap: 12px;
}

.mpvcr-booking-form label,
.mpvcr-date-row span {
    color: var(--mpvcr-muted);
    font-size: 13px;
}

.mpvcr-booking-form select,
.mpvcr-booking-form input[type="date"] {
    min-height: 44px;
    border-radius: 6px;
    border: 1px solid var(--mpvcr-border);
    background: #111;
    color: #fff;
    padding: 0 12px;
}

.mpvcr-booking-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.mpvcr-booking-form input[type="date"]::-webkit-datetime-edit,
.mpvcr-booking-form input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.mpvcr-booking-form input[type="date"]::-webkit-datetime-edit-text,
.mpvcr-booking-form input[type="date"]::-webkit-datetime-edit-month-field,
.mpvcr-booking-form input[type="date"]::-webkit-datetime-edit-day-field,
.mpvcr-booking-form input[type="date"]::-webkit-datetime-edit-year-field {
    color: #fff;
}

.mpvcr-btn:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.mpvcr-date-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mpvcr-date-row label {
    display: grid;
    gap: 6px;
}

.mpvcr-booking-actions {
    display: grid;
    gap: 10px;
}

.mpvcr-btn-whatsapp {
    color: #fff;
    background: #1fa855;
    border-color: #1fa855;
}

.mpvcr-btn-whatsapp:hover,
.mpvcr-btn-whatsapp:focus,
.mpvcr-btn-whatsapp:active {
    color: #fff;
}

.mpvcr-description {
    margin-top: 24px;
}

.mpvcr-empty {
    color: var(--mpvcr-muted);
    margin: 18px 0 0;
}

@media (max-width: 900px) {
    .mpvcr-grid,
    .mpvcr-detail {
        grid-template-columns: 1fr;
    }

    .mpvcr-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .mpvcr-sort {
        flex-basis: auto;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .mpvcr-catalog,
    .mpvcr-detail {
        padding: 10px;
    }

    .mpvcr-spec-grid,
    .mpvcr-detail-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mpvcr-actions {
        grid-template-columns: 1fr;
    }

    .mpvcr-date-row {
        grid-template-columns: 1fr;
    }
}
