* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

.header {
    position: relative;
    z-index: 10;
    padding: 20px;
    background-color: transparent;
}

.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.book-button {
    background-color: #DC143C;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
    font-family: inherit;
    text-align: center;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.book-button:hover {
    background-color: #B8122E;
}

.book-button-container {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: none;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #DC143C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Booking page styles */
.booking-page {
    overflow-y: auto;
    height: auto;
    min-height: 100vh;
}

.booking-header {
    background-color: #2d2d2d;
    padding: 20px;
}

.booking-header .header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-header .logo img {
    height: 60px;
}

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.language-selector-current {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector .flag {
    font-size: 24px;
}

.language-selector .arrow {
    display: flex;
    align-items: center;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.language-selector.open .arrow {
    transform: rotate(180deg);
}

.language-selector .arrow svg {
    width: 12px;
    height: 12px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: #2d2d2d;
    border-radius: 4px;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
    overflow: hidden;
}

.language-selector.open .language-dropdown {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.language-option:hover {
    background-color: #3d3d3d;
}

.language-option .flag {
    font-size: 20px;
}

.language-option .lang-text {
    font-size: 14px;
}

.main-content-section {
    background-color: #EBE6E7;
    padding-bottom: 60px;
}

.section-title {
    padding: 40px 20px;
    text-align: center;
}

.section-title h1 {
    font-family: 'Lustria', serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    max-width: 1400px;
    margin: 0 auto;
}

.booking-container {
    max-width: 1400px;
    margin: 0 auto;
}

.booking-content {
    display: flex;
    margin: 0 auto 30px;
    min-height: 450px;
    border: 1px solid #cccccc;
}

.booking-content:last-child {
    margin-bottom: 0;
}

.content-image {
    width: 50%;
    flex-shrink: 0;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-box {
    width: 50%;
    background-color: white;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-box h2 {
    font-family: 'Lato', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-box p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.choose-button {
    background-color: #DC143C;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    font-family: inherit;
    align-self: center;
    transition: background-color 0.3s ease;
    width: fit-content;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.choose-button:hover {
    background-color: #B8122E;
}

.important-info {
    max-width: 1400px;
    margin: 40px auto 0;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.important-info-header {
    background-color: #2d2d2d;
    padding: 20px;
    text-align: center;
}

.important-info-header h3 {
    font-family: 'Lustria', serif;
    font-size: 24px;
    font-weight: 400;
    color: #e8e8e8;
    margin: 0;
}

.important-info-content {
    background-color: white;
    padding: 40px 50px;
}

.important-info-content p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 20px;
}

.important-info-content p:last-child {
    margin-bottom: 0;
}

.footer {
    background-color: #2d2d2d;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 30px 40px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-copyright {
    flex: 0 0 auto;
}

.footer-copyright p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #b0b0b0;
    margin: 0;
}

.footer-right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.footer-nav a {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.secured-text {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7a9a7a;
}

.sagepay-logo,
.payment-logo {
    height: 24px;
    width: auto;
    display: block;
}

.sagepay-logo {
    height: 20px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-nav {
        justify-content: flex-start;
    }
}

/* Tickets page styles */
body.tickets-page {
    background-color: #EBE6E7;
    min-height: 100vh;
    overflow-y: auto;
    height: auto;
}

.steps-navigation {
    background-color: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #cccccc;
    z-index: 1;
}

.step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.step-dot {
    width: 12px;
    height: 12px;
    background-color: #cccccc;
    border-radius: 50%;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step.active .step-dot {
    background-color: #DC143C;
}

.step-text {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    text-align: center;
}

.step.active .step-text {
    color: #1a1a1a;
}

.ticket-content-wrapper {
    margin-bottom: 40px;
}

.ticket-header-bar {
    background-color: #666666;
    padding: 20px 0;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
}

.ticket-header-container {
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-banner {
    height: 300px;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
}


.ticket-title {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.edit-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
}

.edit-button svg {
    width: 16px;
    height: 16px;
    color: white;
    stroke: white;
}

.edit-button svg path {
    stroke: white;
}

.ticket-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tickets-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.tickets-main-content {
    flex: 1;
}

.tickets-sidebar {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.calendar-section {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

.calendar-header-bar {
    background-color: #666666;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.calendar-icon {
    width: 20px;
    height: 20px;
}

.calendar-widget {
    padding: 10px;
    width: 280px;
    box-sizing: border-box;
    margin: 0 auto;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.calendar-month-year {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
}

.calendar-nav-arrow {
    background: none;
    border: none;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 5px;
}

.calendar-weekdays div {
    font-family: 'Lato', sans-serif;
    font-size: 8px;
    font-weight: 600;
    color: #666666;
    text-align: center;
    padding: 2px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 0;
    row-gap: 2px;
}

.calendar-day {
    aspect-ratio: 1;
    width: 100%;
    max-width: 24px;
    max-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Lato', sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    margin: 0 auto;
    box-sizing: border-box;
}

.calendar-day.prev-month,
.calendar-day.next-month {
    color: #cccccc;
    cursor: default;
}

.calendar-day.available {
    border: 1px solid #cccccc;
}

.calendar-day.available:hover {
    background-color: #f5f5f5;
}

.calendar-day.available.blue {
    background-color: #4A90E2;
    color: white;
    border-color: #4A90E2;
}

.calendar-day.available.selected {
    background-color: #DC143C;
    color: white;
    border-color: #DC143C;
}

.calendar-day.available.selected:hover {
    background-color: #DC143C;
}

.calendar-day.available.blue.selected {
    background-color: #DC143C;
    border-color: #DC143C;
}

.calendar-day.available.blue.selected:hover {
    background-color: #DC143C;
}

.calendar-day.closed {
    background-color: #DC143C;
    color: white;
    border-color: #DC143C;
    cursor: not-allowed;
}

.calendar-legend {
    padding: 8px 10px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #1a1a1a;
}

.legend-circle {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #cccccc;
}

.legend-circle.white {
    background-color: white;
}

.legend-circle.blue {
    background-color: #4A90E2;
    border-color: #4A90E2;
}

.legend-circle.orange {
    background-color: #FF8C00;
    border-color: #FF8C00;
}

.legend-circle.red {
    background-color: #DC143C;
    border-color: #DC143C;
}

/* Larger calendar for medium wide screens (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .calendar-widget {
        width: 400px !important;
        padding: 20px !important;
    }
    
    .calendar-month-year {
        font-size: 20px !important;
    }
    
    .calendar-weekdays div {
        font-size: 15px !important;
        padding: 7px 0 !important;
    }
    
    .calendar-day {
        max-width: 44px !important;
        max-height: 44px !important;
        font-size: 16px !important;
    }
    
    .calendar-nav-arrow {
        width: 24px !important;
        height: 24px !important;
        font-size: 22px !important;
    }
    
    .calendar-days {
        row-gap: 6px !important;
    }
    
    .calendar-nav {
        margin-bottom: 15px !important;
    }
    
    .calendar-weekdays {
        margin-bottom: 8px !important;
    }
}

/* Larger calendar for wide screens (1400px+) */
@media (min-width: 1400px) {
    .calendar-widget {
        width: 500px !important;
        padding: 30px !important;
    }
    
    .calendar-month-year {
        font-size: 24px !important;
    }
    
    .calendar-weekdays div {
        font-size: 18px !important;
        padding: 10px 0 !important;
    }
    
    .calendar-day {
        max-width: 54px !important;
        max-height: 54px !important;
        font-size: 20px !important;
    }
    
    .calendar-nav-arrow {
        width: 28px !important;
        height: 28px !important;
        font-size: 26px !important;
    }
    
    .calendar-days {
        row-gap: 8px !important;
    }
    
    .calendar-nav {
        margin-bottom: 20px !important;
    }
    
    .calendar-weekdays {
        margin-bottom: 12px !important;
    }
}

.booking-options-list {
    margin-top: 40px;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

.booking-option-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background-color: #666666;
    color: white;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: background-color 0.2s ease;
}

.booking-option-item:last-child {
    margin-bottom: 0;
}


.time-option-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background-color: transparent;
    margin-bottom: 8px;
}

.booking-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background-color: #666666;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.booking-option-header .edit-button {
    margin-left: auto;
    background-color: transparent;
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
}

.booking-option-header .edit-button svg {
    color: white;
    stroke: white;
}

.booking-option-header .edit-button svg path {
    stroke: white;
}

.time-selection-content {
    display: none;
    background-color: white;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

.time-option-container.expanded .time-selection-content {
    display: block;
}

.visitors-option-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background-color: transparent;
    margin-bottom: 8px;
}

.visitors-selection-content {
    display: none;
    background-color: white;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
}

.visitors-option-container.expanded .visitors-selection-content {
    display: block;
}

.visitors-content-wrapper {
    padding: 30px;
}

.visitors-info-text {
    margin-bottom: 25px;
}

.visitors-info-text p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
}

.ticket-categories {
    margin-bottom: 25px;
}

.ticket-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.ticket-category:last-of-type {
    border-bottom: none;
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.ticket-name {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.ticket-price {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: #cccccc;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

.qty-btn.plus {
    background-color: #DC143C;
    color: white;
}

.qty-btn:hover {
    opacity: 0.8;
}

.qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    background-color: white;
}

.donation-section {
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.donation-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    cursor: pointer;
    margin-bottom: 10px;
}

.donation-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.donation-link {
    color: #DC143C;
    text-decoration: underline;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.add-to-basket-section {
    display: flex;
    justify-content: flex-end;
    margin: 30px 0;
}

.add-to-basket-btn {
    background-color: #666666;
    color: white;
    border: none;
    padding: 12px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.add-to-basket-btn:hover {
    background-color: #555555;
}

.visitors-notes {
    margin: 30px 0;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.visitors-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.visitors-notes li {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.visitors-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.visitors-notes li:last-child {
    margin-bottom: 0;
}

.continue-section {
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
}

.continue-btn {
    display: block;
    width: 100%;
    background-color: #666666;
    color: white;
    border: none;
    padding: 15px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    text-align: center;
    text-decoration: none;
}

.continue-btn:hover {
    background-color: #555555;
}

.time-slot.selected {
    border: 2px solid #DC143C;
    box-shadow: 0 0 0 2px rgba(220, 20, 60, 0.2);
}

.option-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.accordion-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.time-selection-header {
    background-color: #666666;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.time-selection-header .edit-button {
    background-color: transparent;
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
}

.time-selection-header .edit-button svg {
    color: white;
    stroke: white;
}

.time-selection-header .edit-button svg path {
    stroke: white;
}

.clock-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.time-slots-grid {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.time-slot {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.time-slot:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.time-slot-time {
    background-color: #DC143C;
    color: white;
    padding: 12px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.time-slot-tickets {
    background-color: #f5f5f5;
    color: #1a1a1a;
    padding: 10px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.sidebar-section {
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-header-bar {
    background-color: #666666;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.basket-icon {
    width: 20px;
    height: 20px;
}

.sidebar-content {
    padding: 30px 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-value {
    color: #888888;
}

.empty-basket {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    text-align: center;
    margin: 0;
}

.basket-content {
    min-height: 100px;
}

.basket-section-label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.basket-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.basket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.basket-item-name {
    flex: 1;
}

.basket-item-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.basket-item-price {
    color: #666666;
    font-weight: 400;
}

.basket-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.basket-remove-btn:hover {
    background-color: #f0f0f0;
    color: #666666;
}

.basket-remove-btn svg {
    width: 12px;
    height: 12px;
}

.basket-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 15px 0;
}

.basket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
}

.total-amount {
    font-weight: 600;
    color: #1a1a1a;
}

/* Tablet styles (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .tickets-content-wrapper {
        flex-direction: column;
    }
    
    .tickets-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
        overflow-y: visible;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .sidebar-section {
        margin-bottom: 0;
    }
    
    .sidebar-header-bar {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .sidebar-content {
        padding: 20px 16px;
    }
    
    .info-row {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .basket-content {
        min-height: 80px;
    }
    
    .basket-section-label {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .basket-item {
        font-size: 13px;
    }
    
    .basket-total {
        font-size: 13px;
    }
    
    .empty-basket {
        font-size: 13px;
    }
}

/* Mobile and smaller tablets (up to 767px) */
@media (max-width: 767px) {
    .tickets-content-wrapper {
        flex-direction: column;
    }
    
    .tickets-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        max-height: none;
        overflow-y: visible;
        display: flex;
        flex-direction: column;
    }
}

/* Checkout Page Styles */
body.checkout-page {
    background-color: #EBE6E7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto !important;
    overflow-x: hidden;
    height: auto !important;
}

.checkout-main {
    flex: 1;
    padding: 40px 20px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: start;
}

.checkout-left {
    background-color: white;
    border-radius: 4px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
}

.order-summary h1 {
    font-family: 'Lustria', serif;
    font-size: 32px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.order-description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0 0 20px 0;
}

.order-visit-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
}

.order-info-row:last-child {
    margin-bottom: 0;
}

.order-info-label {
    color: #1a1a1a;
}

.order-info-value {
    color: #666666;
}

.order-items-list {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
}

.order-item:last-child {
    margin-bottom: 0;
}

.order-item-name {
    flex: 1;
}

.order-item-price {
    font-weight: 400;
    color: #1a1a1a;
}

.to-pay-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.to-pay-label {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
}

.to-pay-amount {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}

.email-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.email-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.email-icon {
    width: 16px;
    height: 16px;
    color: #666666;
    flex-shrink: 0;
}

.email-section input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.email-section input:focus {
    outline: none;
    border-color: #007bff;
}

.email-section input::placeholder {
    color: #999999;
}

.email-section input:invalid:not(:placeholder-shown) {
    border-color: #DC143C;
}

.continue-payment-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.continue-payment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background-color: #DC143C;
    color: white;
    border: none;
    padding: 15px 24px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.continue-payment-button:hover {
    background-color: #B8122E;
}

.continue-payment-button svg {
    width: 14px;
    height: 14px;
}

.checkout-right {
    background-color: white;
    border-radius: 4px;
    padding: 40px;
}

.payment-form h2 {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 30px 0;
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.field-icon {
    width: 16px;
    height: 16px;
    color: #666666;
}

.help-icon {
    width: 14px;
    height: 14px;
    color: #666666;
    margin-left: 4px;
    cursor: help;
}

.form-field input {
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
}

.form-field input:focus {
    outline: none;
    border-color: #007bff;
}

.form-field input::placeholder {
    color: #999999;
}

.form-field input:invalid {
    border-color: #DC143C;
}

.error-message {
    display: block;
    color: #DC143C;
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 10px;
}

.back-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    text-decoration: none;
    padding: 12px 20px;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #1a1a1a;
}

.back-button svg {
    width: 14px;
    height: 14px;
}

.confirm-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 24px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.confirm-button:hover {
    background-color: #218838;
}

.confirm-button svg {
    width: 14px;
    height: 14px;
}

.checkout-footer {
    background-color: #0C2074;
    padding: 20px;
    margin-top: auto;
}

.checkout-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}

.checkout-footer .payment-logo {
    height: 40px;
    width: auto;
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 0 20px;
    }
    
    .checkout-left {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .back-button,
    .confirm-button {
        width: 100%;
        justify-content: center;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    background-color: #F5F5F5;
    border-radius: 4px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header {
    background-color: #666666;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.modal-title {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    background-color: white;
}

.about-section {
    margin-bottom: 30px;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h3 {
    font-family: 'Lustria', serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.about-section p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section ul {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.8;
    margin: 0;
    padding-left: 25px;
}

.about-section li {
    margin-bottom: 10px;
}

.about-section li:last-child {
    margin-bottom: 0;
}

.modal-footer {
    padding: 20px 30px;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
}

.modal-ok-button {
    background-color: #DC143C;
    color: white;
    border: none;
    padding: 12px 40px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.modal-ok-button:hover {
    background-color: #B01030;
}

/* Success Payment Modal Styles */
.success-modal {
    max-width: 500px;
}

.success-modal .modal-header {
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px 20px;
    gap: 20px;
}

.success-icon {
    margin-bottom: 10px;
}

.success-modal .modal-title {
    color: #1a1a1a;
    text-align: center;
    font-size: 28px;
}

.success-modal .modal-body {
    text-align: center;
    padding: 20px 30px 30px;
}

.success-modal .modal-body p {
    font-size: 18px;
    color: #666666;
    margin: 0;
}

.success-modal .modal-footer {
    padding: 20px 30px 30px;
    border-top: none;
}

@media (max-width: 768px) {
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
}

/* FAQ Accordion Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: #666666;
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: #666666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 15px 0;
}

.faq-answer p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

/* Galleries Section Styles */
.galleries-option-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background-color: transparent;
    margin-bottom: 8px;
}

.galleries-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background-color: #666666;
    color: white;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.galleries-selection-content {
    display: none;
    padding: 20px;
    background-color: white;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.galleries-option-container.expanded .galleries-selection-content {
    display: block;
    max-height: 5000px;
    overflow: visible;
}

.galleries-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.galleries-title-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.galleries-title {
    font-family: 'Lustria', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.galleries-description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.galleries-image-section {
    width: 100%;
    max-width: 600px;
}

.galleries-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.galleries-time-section {
    width: 100%;
    max-width: 300px;
}

.galleries-time-select {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.galleries-tickets-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.galleries-ticket-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.galleries-ticket-category:last-child {
    border-bottom: none;
}

.galleries-ticket-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.galleries-ticket-name {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.galleries-ticket-price {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.galleries-add-basket-section {
    margin-top: 10px;
}

.essential-companion-add-basket-section {
    margin-top: 10px;
    margin-bottom: 10px;
}

.visitors-add-basket-section {
    margin-top: 10px;
    margin-bottom: 10px;
}

.add-to-basket-btn {
    padding: 12px 30px;
    background-color: #666666;
    color: white;
    border: none;
    border-radius: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-basket-btn:hover {
    background-color: #555555;
}

.galleries-notes {
    margin-top: 20px;
}

.galleries-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.galleries-notes li {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.galleries-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.galleries-continue-section {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .galleries-image-section {
        max-width: 100%;
    }
    
    .galleries-time-section {
        max-width: 100%;
    }
}

/* Tours & Events Section Styles */
.tours-events-option-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background-color: transparent;
    margin-bottom: 8px;
}

.tours-events-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tours-events-selection-content {
    display: none;
    padding: 20px;
    background-color: white;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.tours-events-option-container.expanded .tours-events-selection-content {
    display: block;
    max-height: 5000px;
    overflow: visible;
}

.tours-events-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tour-event-item {
    margin-bottom: 40px;
}

.tour-event-item:last-child {
    margin-bottom: 0;
}

.tour-event-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.tour-event-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tour-event-title {
    font-family: 'Lustria', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.tour-event-description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.tour-event-image {
    width: 50%;
    flex-shrink: 0;
}

.tour-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.tour-time-section {
    width: 100%;
    max-width: 300px;
}

.tour-time-select {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #E8F4F8;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.tour-tickets-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tour-ticket-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.tour-ticket-category:last-child {
    border-bottom: none;
}

.tour-ticket-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tour-ticket-name {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.tour-ticket-price {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
}

.tour-add-basket-section {
    margin-top: 10px;
}

.tour-notes {
    margin-top: 20px;
}

.tour-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-notes li {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.tour-notes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.upcoming-talks {
    margin-top: 20px;
}

.upcoming-talks-title {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
}

.talks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.talks-list li {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
}

.tour-status-message {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #DC143C;
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-left: 3px solid #DC143C;
}

.tours-events-continue-section {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .tour-event-content {
        flex-direction: column;
    }
    
    .tour-event-image {
        width: 100%;
    }
    
    .tour-time-section {
        max-width: 100%;
    }
}

/* Guide books & Items styles */
.guide-books-option-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background-color: transparent;
    margin-bottom: 8px;
}

.guide-books-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background-color: #666666;
    color: white;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.guide-books-selection-content {
    display: none;
    padding: 20px;
    background-color: #EBE6E7;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.guide-books-option-container.expanded .guide-books-selection-content {
    display: block;
    max-height: 5000px;
    overflow: visible;
}

.guide-books-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-book-item {
    background-color: white;
    padding: 25px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.guide-book-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.guide-book-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guide-book-title {
    font-family: 'Lustria', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
}

.guide-book-description {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

.guide-book-price {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.guide-book-language-section {
    width: 100%;
    max-width: 300px;
}

.guide-book-language-select {
    width: 100%;
    padding: 12px 15px;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%231a1a1a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.guide-book-quantity-section {
    margin-top: 10px;
    width: fit-content;
}

.guide-book-quantity-section .quantity-selector {
    width: fit-content;
}

.guide-book-image-section {
    width: 200px;
    flex-shrink: 0;
}

.guide-book-image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
    border-radius: 4px;
    overflow: hidden;
}

.guide-book-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.guide-book-zoom-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
}

.guide-book-add-basket-section {
    margin-top: 15px;
}

.guide-books-continue-section {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .guide-book-content {
        flex-direction: column;
    }
    
    .guide-book-image-section {
        width: 100%;
    }
    
    .guide-book-language-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tours-events-image-section {
        max-width: 100%;
    }
}

/* Mobile styles for booking page */
@media (max-width: 768px) {
    .booking-header {
        padding: 15px;
    }
    
    .booking-header .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .booking-header .logo img {
        height: 40px;
    }
    
    .language-selector {
        font-size: 12px;
    }
    
    .language-selector .flag {
        font-size: 20px;
    }
    
    .language-dropdown {
        min-width: 100px;
    }
    
    .language-option {
        padding: 8px 12px;
    }
    
    .main-content-section {
        padding-bottom: 40px;
    }
    
    .section-title {
        padding: 30px 15px 20px;
    }
    
    .section-title h1 {
        font-size: 24px;
    }
    
    .booking-container {
        padding: 0 15px;
    }
    
    .booking-content {
        flex-direction: column;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .content-image {
        width: 100%;
        height: 250px;
    }
    
    .content-box {
        width: 100%;
        padding: 30px 20px;
    }
    
    .content-box h2 {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .content-box p {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.5;
    }
    
    .choose-button {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
    
    .important-info {
        margin: 30px 15px 0;
    }
    
    .important-info-header {
        padding: 15px;
    }
    
    .important-info-header h3 {
        font-size: 20px;
    }
    
    .important-info-content {
        padding: 25px 20px;
    }
    
    .important-info-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .footer {
        padding: 20px 15px;
        margin-top: 40px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px 15px;
    }
    
    .time-slot {
        border-radius: 3px;
    }
    
    .time-slot-time {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .time-slot-tickets {
        padding: 8px 6px;
        font-size: 11px;
        line-height: 1.3;
    }
    
    .time-slot:hover {
        transform: none;
    }
    
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .about-section {
        margin-bottom: 20px;
    }
    
    .about-section h3 {
        font-size: 18px;
    }
    
    .about-section p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .about-section ul {
        font-size: 14px;
        padding-left: 20px;
    }
    
    .faq-list {
        gap: 0;
    }
    
    .faq-item {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 12px 0;
        line-height: 1.4;
        flex-wrap: wrap;
    }
    
    .faq-question span:first-child {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 10px;
        word-wrap: break-word;
    }
    
    .faq-icon {
        font-size: 18px;
        margin-left: 10px;
        flex-shrink: 0;
    }
    
    .faq-answer {
        font-size: 14px;
        padding: 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 12px 0;
        max-height: 1000px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .booking-header .logo img {
        height: 35px;
    }
    
    .section-title h1 {
        font-size: 20px;
    }
    
    .content-box h2 {
        font-size: 20px;
    }
    
    .content-box p {
        font-size: 13px;
    }
    
    .choose-button {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .important-info-header h3 {
        font-size: 18px;
    }
    
    .important-info-content p {
        font-size: 13px;
    }
    
    .footer-nav a {
        font-size: 11px;
    }
    
    .modal-content {
        width: 100%;
        max-width: 100%;
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .faq-question {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .faq-question span:first-child {
        padding-right: 8px;
    }
    
    .faq-icon {
        font-size: 16px;
        margin-left: 8px;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 0 10px 0;
    }
}

@media (max-width: 480px) {
    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 15px 10px;
    }
    
    .time-slot-time {
        padding: 8px 6px;
        font-size: 12px;
    }
    
    .time-slot-tickets {
        padding: 6px 4px;
        font-size: 10px;
    }
}

