@import url(https://db.onlinewebfonts.com/c/c4d8819fda4c3fd79e36cedcc8d422bb?family=Halyard+Display);

@font-face {
    font-family: "Halyard Display";
    src: url("https://db.onlinewebfonts.com/t/c4d8819fda4c3fd79e36cedcc8d422bb.eot");
    src: url("https://db.onlinewebfonts.com/t/c4d8819fda4c3fd79e36cedcc8d422bb.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/c4d8819fda4c3fd79e36cedcc8d422bb.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/c4d8819fda4c3fd79e36cedcc8d422bb.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/c4d8819fda4c3fd79e36cedcc8d422bb.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/c4d8819fda4c3fd79e36cedcc8d422bb.svg#Halyard Display")format("svg");
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

body {
    margin: 0;
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
  font-family: "Work Sans", sans-serif;
    /* background: #f5f5f5; */
}

#disney-calendar-module * {
    /* font-family: "Halyard Display" !important; */
  font-family: "Work Sans", sans-serif;
}

/* Модульные стили для календаря Disney */
#disney-calendar-module {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
  font-family: "Work Sans", sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    /* background: #f5f5f5; */
}

#disney-calendar-module .calendar-container {
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

#disney-calendar-module .calendar-header {
    padding: 12px 24px;
    /* border-bottom: 1px solid #e0e0e0; */
}

#disney-calendar-module .sub-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

#disney-calendar-module .week-selector {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

#disney-calendar-module .day-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 3px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    /* min-width: 80px; */
    width: 100%;
    background: white;
}

#disney-calendar-module .day-option.selected {
    border-color: #8B5CF6;
    background: #F3F0FF;
}

#disney-calendar-module .day-option:hover {
    border-color: #8B5CF6;
}

#disney-calendar-module .day-name {
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
    text-transform: uppercase;
}

#disney-calendar-module .day-date {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

#disney-calendar-module .day-price {
    font-size: 12px;
    color: #666;
}

#disney-calendar-module .more-dates {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 3px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
    background: white;
}

#disney-calendar-module .more-dates:hover {
    border-color: #8B5CF6;
}

#disney-calendar-module .more-dates-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

#disney-calendar-module .more-dates-text {
    font-size: 12px;
    color: #666;
}

#disney-calendar-module .calendar-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

#disney-calendar-module .modal-content {
    background: white;
    border-radius: 12px;
    padding: 24px;
    /* max-width: 800px; */
    width: 70%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

#disney-calendar-module .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

#disney-calendar-module .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

#disney-calendar-module .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

#disney-calendar-module .close-btn:hover {
    background: #f0f0f0;
}

#disney-calendar-module .calendar-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#disney-calendar-module .nav-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

#disney-calendar-module .nav-btn:hover {
    background: #f0f0f0;
}

#disney-calendar-module .nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#disney-calendar-module .month-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

#disney-calendar-module .calendars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

#disney-calendar-module .calendar-month {
    width: 100%;
}

#disney-calendar-module .month-header {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}

#disney-calendar-module .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

#disney-calendar-module .weekday-header {
    text-align: center;
    font-size: 12px;
    color: #666;
    padding: 8px 4px;
    font-weight: 600;
}

#disney-calendar-module .calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    min-height: 60px;
    position: relative;
}

#disney-calendar-module .calendar-day:not(.disabled):hover {
    background: #f3f0ff;
}



#disney-calendar-module .calendar-day.selected {
    background: #8B5CF6;
    color: white;
}

#disney-calendar-module .calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

#disney-calendar-module .calendar-day.other-month {
    color: #ccc;
}

#disney-calendar-module .day-number {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

#disney-calendar-module .day-price-small {
    font-size: 10px;
    color: inherit;
    opacity: 0.8;
}

#disney-calendar-module .calendar-day.selected .day-price-small {
    color: white;
}

#disney-calendar-module .price-note {
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 16px;
}

#disney-calendar-module .tickets-bar {
    padding: 24px;
    /* background: #f8f9fa;
    border-left: 1px solid #e0e0e0; */
}

#disney-calendar-module .sidebar-content {
    position: sticky;
    top: 20px;
}

#disney-calendar-module .ticket-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 2px 8px;
    margin-bottom: 20px;
    max-width: 200px;
}

#disney-calendar-module .ticket-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 16px !important;
    height: 40px;
    margin: 0;
}

#disney-calendar-module .ticket-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

#disney-calendar-module .ticket-option.selected {
    border-color: #8B5CF6;
    background: #f3f0ff;
}

#disney-calendar-module .ticket-option:hover {
    border-color: #8B5CF6;
}

#disney-calendar-module .ticket-info {
    /* flex: 1; */
}

#disney-calendar-module .ticket-name {
    font-size: 14px;
    font-weight: 600;
    color: rgb(68, 68, 68);
    margin-bottom: 4px;
}

#disney-calendar-module .ticket-price {
    font-size: 16px;
    font-weight: 700;
    color: rgb(68, 68, 68);
}

#disney-calendar-module .select-btn {
    background: #0000;
    border: 1px solid #7300e5;
    color: #60c;
    padding: 7px 24px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
}

#disney-calendar-module .select-btn:hover {
    background: #f3e9ff;
    /* color: white; */
}

#disney-calendar-module .benefits-list {
    list-style: none;
    margin: 16px 0;
    border-top: 0.0625rem dashed rgb(226, 226, 226);
    padding-top: 10px !important;
    margin-top: 15px !important;
}

#disney-calendar-module .benefits-list li {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

#disney-calendar-module .benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

@media (max-width: 768px) {
    #disney-calendar-module .calendars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* #disney-calendar-module .week-selector {
        flex-wrap: wrap;
    } */

    #disney-calendar-module .day-option {
        min-width: 70px;
    }
}

#disney-calendar-module .day-price.discount,
#disney-calendar-module .day-price-small.discount {
    color: #16a34a !important;
    font-weight: 700;
    color: rgb(9, 87, 48);
    background: rgb(219, 253, 219);
    padding: 0.0625rem;
}

#disney-calendar-module .nav-months {
    display: flex;
    align-items: center;
    gap: 12px;
}

#disney-calendar-module .month-separator {
    color: #ccc;
    font-size: 16px;
}

#disney-calendar-module .calendar-day.selected .day-price-small.discount {
    color: #a3f3a3 !important;
}

#disney-calendar-module .tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 240px));
    gap: 10px;
    margin-top: 20px;
}

#disney-calendar-module .ticket-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    /* height: 100%;  */
}

#disney-calendar-module .ticket-card:hover {
    border-color: #8B5CF6;
}

#disney-calendar-module .ticket-card.selected {
    border-color: #8B5CF6;
    background: #f9f9ff;
}


#disney-calendar-module .ticket-option {
    margin-bottom: 16px;
}

#disney-calendar-module .ticket-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#disney-calendar-module .ticket-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

#disney-calendar-module .ticket-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

#disney-calendar-module .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    /* Заполняет оставшееся место */
    margin-bottom: 20px;
}

#disney-calendar-module .benefits-list li {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
    line-height: 1.4;
}

#disney-calendar-module .benefits-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}


#disney-calendar-module .select-btn.active {
    background: #f3e9ff;
    border: none;
}

#disney-calendar-module .select-btn.active:hover {
    background: #ecd9ff;
}

/* Убираем старые стили, которые могут конфликтовать */
#disney-calendar-module .ticket-option {
    display: block;
    padding: 0;
    border: none;
    border-radius: 0;
    transition: none;
}

#disney-calendar-module .ticket-option.selected {
    background: transparent;
    border: none;
}








/* ---------- AFTER SECOND OPTION ---------- */
/* Validity Section */
#disney-calendar-module .validity-section {
    padding: 12px 24px;
    background: white;
    /* border-bottom: 1px solid #e0e0e0; */
}

#disney-calendar-module .validity-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

#disney-calendar-module .validity-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 60px;
}

#disney-calendar-module .validity-dropdown {
    position: relative;
    flex: 1;
    max-width: 300px;
}

#disney-calendar-module .dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.2s;
}

#disney-calendar-module .dropdown-selected:hover {
    border-color: #8B5CF6;
}

#disney-calendar-module .dropdown-selected.has-error {
    border-color: #dc2626;
}

#disney-calendar-module .dropdown-selected.placeholder {
    color: #666;
}

#disney-calendar-module .dropdown-arrow {
    transition: transform 0.2s;
    color: #666;
}

#disney-calendar-module .dropdown-arrow.open {
    transform: rotate(180deg);
}

#disney-calendar-module .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: 4px;
}

#disney-calendar-module .dropdown-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

#disney-calendar-module .dropdown-option:last-child {
    border-bottom: none;
}

#disney-calendar-module .dropdown-option:hover {
    background: #f3f0ff;
}

#disney-calendar-module .option-name {
    font-size: 14px;
    color: #333;
}

#disney-calendar-module .option-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

#disney-calendar-module .validation-error {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    color: #dc2626;
    font-size: 13px;
}

#disney-calendar-module .tickets-section-header {
    padding: 24px 24px 0 24px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 12px;
}

#disney-calendar-module .here-indicator {
    background: #fbbf24;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

#disney-calendar-module .tickets-bar {
    padding-top: 0;
}


/* Summary Bar */
#disney-calendar-module .summary-bar {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 24px;
}

#disney-calendar-module .summary-content {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 20px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#disney-calendar-module .summary-info {
    flex: 1;
}

#disney-calendar-module .summary-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

#disney-calendar-module .summary-details {
    font-size: 14px;
    color: #666;
}

#disney-calendar-module .summary-next-btn {
    background: #8B5CF6;
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    min-width: 120px;
}

#disney-calendar-module .summary-next-btn:hover {
    background: #7C3AED;
}

/* Добавляем отступ снизу для контента, чтобы он не перекрывался summary bar */
#disney-calendar-module .tickets-bar {
    /* margin-bottom: 30px; */
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    #disney-calendar-module .summary-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    #disney-calendar-module .summary-next-btn {
        width: 100%;
    }
}



/* -------- AFTER THREE BLOCKS -------- */


/* Three Blocks Version Styles */

/* Booking Blocks */
#disney-calendar-module .booking-block {
    background: white;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
    margin-bottom: 32px;
    overflow: hidden;
}

#disney-calendar-module .block-header {
    display: flex;
    align-items: center;
    padding: 24px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

#disney-calendar-module .block-number {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    margin-right: 16px;
}

#disney-calendar-module .block-info {
    flex: 1;
}

#disney-calendar-module .block-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
}

#disney-calendar-module .block-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Operating Hours */
#disney-calendar-module .operating-hours {
    background: rgb(255, 248, 239);
    padding: 12px 24px;
    border: 1px solid #ffecb3;
    border-radius: 8px;
    margin: 16px 24px;
    font-size: 14px;
    color: rgb(164, 86, 59);
}

/* Ticket Selection */
#disney-calendar-module .ticket-selection {
    padding: 24px;
}

#disney-calendar-module .selection-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

#disney-calendar-module .likely-notice {
    color: rgb(102, 102, 102);
    font-size: 14px;
    margin: 0 0 16px 0;
}

#disney-calendar-module .free-entry-notice {
    font-size: 14px;
    color: #666;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

/* Ticket Counters */
#disney-calendar-module .ticket-counters {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#disney-calendar-module .ticket-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    /* border: 1px solid #e0e0e0; */
    border-radius: 8px;
}

#disney-calendar-module .counter-info {
    flex: 1;
}

#disney-calendar-module .counter-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

#disney-calendar-module .counter-subtitle {
    font-size: 14px;
    color: #666;
}

#disney-calendar-module .counter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 24px;
}

#disney-calendar-module .counter-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #8B5CF6;
    background: white;
    color: #8B5CF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.2s;
}

#disney-calendar-module .counter-btn:hover:not(:disabled) {
    background: #8B5CF6;
    color: white;
}

#disney-calendar-module .counter-btn:disabled {
    border-color: #e0e0e0;
    color: #ccc;
    cursor: not-allowed;
}

#disney-calendar-module .counter-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    min-width: 20px;
    text-align: center;
}

#disney-calendar-module .counter-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

/* Time Selection */
#disney-calendar-module .time-selection {
    padding: 24px;
    border-top: 1px solid #e0e0e0;
}

#disney-calendar-module .time-dropdown {
    position: relative;
    margin-top: 16px;
}

#disney-calendar-module .time-dropdown .dropdown-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 14px;
    transition: border-color 0.2s;
}

#disney-calendar-module .time-dropdown .dropdown-selected:hover {
    border-color: #8B5CF6;
}

#disney-calendar-module .time-dropdown .dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    margin-top: 4px;
}

#disney-calendar-module .time-dropdown .dropdown-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

#disney-calendar-module .time-dropdown .dropdown-option:last-child {
    border-bottom: none;
}

#disney-calendar-module .time-dropdown .dropdown-option:hover {
    background: #f3f0ff;
}

#disney-calendar-module .time-dropdown .dropdown-option.selected {
    background: #f3f0ff;
    color: #8B5CF6;
}

#disney-calendar-module .time-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#disney-calendar-module .time-value {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

#disney-calendar-module .time-duration {
    font-size: 12px;
    color: #666;
}

#disney-calendar-module .time-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #disney-calendar-module .block-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    #disney-calendar-module .ticket-counter {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    #disney-calendar-module .counter-controls {
        margin: 0;
    }
}




.hours-container {
    max-width: 400px;
    /* margin: 0 auto; */
    background-color: white;
    /* border: 1px solid #e5e7eb; */
    border-radius: 10px;
    padding: 24px;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
}

.hours-label {
    font-size: 0.875rem;
    /* 14px */
    color: #6b7280;
    /* серый текст */
    margin: 0;
}

.hours-time {
    margin: 8px 0 0;
    font-size: 1.125rem;
    /* 18px */
    font-weight: 600;
    color: #111827;
    /* почти чёрный */
}

.breadcrumb {
    background: #f8f9fa;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #1f4b99;
}










/* ---------------------- */



:root{
  --container-max: 1100px;
  --gap: 28px;
  --muted: #6b6b6b;
  --text: #222;
  --accent: #00a651; /* при желании заменить */
  --heading-size: 20px;
  --lead-size: 18px;
  --desc-size: 14px;
}

/* Сброс небольших особенностей (если нужно) */
.features-block { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color: var(--text); }
.features-inner { max-width: var(--container-max); margin: 0 auto; padding: 32px 20px; }

/* Заголовок блока (опционально) */
.features-heading {
  font-size: 20px;
  margin: 0 0 18px 0;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.2px;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
  align-items: start;
}

/* Одиночная карточка */
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: transparent; /* если нужно — замени на белый/серый */
  padding: 6px 0;
}

/* Медиа (иконка/изображение) */
.feature-media {
  width: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Убедись, что вставляешь картинки подходящего размера */
.feature-img {
  max-width: 64px;
  height: auto;
  display: block;
}

/* Тело карточки — текст */
.feature-body { flex: 1; }

/* большие цифры (прим. "42 million+") */
.feature-number {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--text);
}

/* Заголовки внутри карточки (названия) */
.feature-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* Лид/выделенные тексты */
.feature-lead {
  margin: 0 0 6px 0;
  font-size: var(--lead-size);
  font-weight: 600;
  color: var(--text);
}

/* Обычные описания */
.feature-desc {
  margin: 0;
  font-size: var(--desc-size);
  color: var(--muted);
  line-height: 1.35;
}

/* Мутный текст вспомогательных элементов */
.muted { color: var(--muted); font-weight: 500; }

/* Responsive tweaks */
@media (max-width: 880px){
  .feature { gap: 14px; }
  .feature-media { width: 56px; min-width: 56px; }
  .feature-img { max-width: 56px; }
  .feature-number { font-size: 20px; }
}

@media (max-width: 520px){
  .features-inner { padding: 18px 14px; }
  /* на узких экранах — вертикально, картинка сверху */
  .feature { flex-direction: row; align-items: flex-start; }
  /* если хочешь, чтобы иконка была над текстом — раскомментируй: */
  /*
  .feature { flex-direction: column; align-items: center; text-align: center; }
  .feature-media { width: 72px; min-width: 72px; margin-bottom: 8px; }
  .feature-body { width: 100%; }
  */
}

/* Доп. вариант: если карточки должны выглядеть как центрированные блоки */
.features-grid.centered .feature { align-items: center; }



/* .tickets-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.ticket-card {
  min-width: 250px;
  scroll-snap-align: start;
} */

.swiper-wrapper {
  display: flex;
  align-items: stretch; /* растягивает все карточки */
}
.swiper-slide {
  height: auto !important; /* чтобы высота бралась по контенту wrapper */
}
.ticket-card {
  display: flex;
  flex-direction: column; /* чтобы содержимое нормально распределялось */
}

.ticket-card {
  display: flex;
  flex-direction: column;
}

.benefits-list {
  flex: 1;       /* растягивает список по высоте */
  margin-bottom: 20px; /* отступ до кнопки */
}

.select-btn {
  margin-top: auto;    /* прижимает кнопку вниз */
}

.swiper-button-next,
.swiper-button-prev {
  width: 30px !important;
  height: 30px !important;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}



.swiper-button-next svg,
.swiper-button-prev svg {
  font-size: 20px;     /* размер стрелки */
  color: #333;         /* цвет стрелки */
  font-weight: bold;
  height: 14px !important;
}

/* .swiper-button-prev {
  left: -60px;
}

.swiper-button-next {
  right: -60px;
} */





@media (max-width: 768px) {
    #disney-calendar-module .calendars-grid {
        grid-template-columns: 1fr; /* один столбец вместо двух */
    }
    
    /* Скрываем второй календарь на мобильных */
    #disney-calendar-module .calendar-month:nth-child(2) {
        display: none;
    }
    
    /* Центрируем навигацию */
    #disney-calendar-module .nav-months {
        justify-content: center;
    }
    
    /* Показываем только текущий месяц в навигации */
    #disney-calendar-module .nav-months .month-separator,
    #disney-calendar-module .nav-months .month-title:nth-child(3) {
        display: none;
    }
}