/* ============================================
   Single Excursie (Tour) Page
   ============================================ */

/* Top Bar */
.excursie-topbar {
    padding-top: var(--header-height);
}

.excursie-topbar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid var(--color-white);
}

.excursie-back {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 102px;
    height: 102px;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    color: var(--color-white);
    transition: color 0.3s, border-color 0.3s;
}

.excursie-back img {
    width: 58px;
    height: 58px;
    display: block;
}

.excursie-back:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.excursie-topbar-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    flex: 1;
    text-align: center;
    padding-right: 60px;
}

/* Main Layout */
.excursie-page {
    min-height: 100vh;
}

.excursie-wrapper {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0;
}

@media (max-width: 767px) {
    .excursie-wrapper {
        padding: 0 15px;
    }
}

.excursie-layout {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .excursie-layout {
        grid-template-columns: 42% 58%;
    }
}

/* Image Column — the oval sits inset with breathing room on every side
   (not full-bleed to the column border), matching the wizard column's
   own height via the grid row's equal-height stretch. */
.excursie-image-col {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    box-sizing: border-box;
    border: 1px solid var(--color-white);
    border-right: none;
    border-top: none;
}

.excursie-image-col .excursie-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
    border: 1px solid var(--color-white);
    border-radius: 999px;
}

@media (max-width: 1023px) {
    /* Below 1024px the layout stacks to a single column (see
       .excursie-layout above) — the image column is no longer sitting
       directly left of the wizard column, so the border-right:none set
       above (which avoids doubling up against the wizard's left border
       in the desktop 2-column layout) needs to be restored here. */
    .excursie-image-col { padding: 0px; border-right: 1px solid var(--color-white); }
}

/* Booking Column */
.excursie-booking-col {
    padding: 0;
}

/* Tour title — matches the old layout's big centered serif heading */
.excursie-tour-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-white);
    padding: 24px 20px;
    border: 1px solid var(--color-white);
    border-top: none;
    margin: 0;
}

/* Info Bar */
.excursie-info-bar {
    display: grid;
    grid-template-columns: 55% 45%;
    border: 1px solid var(--color-white);
    border-top: none;
    margin-bottom: 0;
}

.excursie-duration {
    padding: 20px 25px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    text-align: center;
    border-right: 1px solid var(--color-white);
}

.excursie-price {
    padding: 20px 25px;
    font-family: var(--font-display);
    font-size: 1.15rem;
    text-align: center;
}

.excursie-price strong {
    font-weight: 600;
}

/* Booking Grid — 2×2 cells */
.excursie-booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--color-white);
    border-top: none;
}

@media (min-width: 768px) {
    .excursie-booking-grid {
        grid-template-columns: 55% 45%;
        grid-template-rows: 1fr auto;
    }

    .excursie-cell-calendar {
        grid-column: 1;
        grid-row: 1;
        border-right: 1px solid var(--color-white);
    }

    .excursie-cell-options {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
    }

    .excursie-cell-contact {
        grid-column: 1;
        grid-row: 2;
        border-right: 1px solid var(--color-white);
        border-top: 1px solid var(--color-white);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .excursie-cell-payment {
        grid-column: 2;
        grid-row: 2;
        border-top: 1px solid var(--color-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* Options distribute evenly within calendar height */
.excursie-cell-options > .excursie-option-row {
    flex: 1;
    display: flex;
    align-items: center;
}

/* Souvenir takes only its natural height — no stretching */
.excursie-cell-options > .excursie-souvenir {
    flex: 0 0 auto;
}

/* Override plugin's hard display:none with animated transitions */
.excursie-page .dbb-hidden {
    display: block !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    border-width: 0 !important;
    flex: 0 0 0 !important;
    pointer-events: none;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease,
                padding 0.35s ease;
}

/* Visible state — smooth expand */
.excursie-cell-options > .excursie-option-row,
.excursie-cell-options > .excursie-souvenir,
.excursie-cell-options > .dbb-section,
.excursie-cell-payment #dbb-summary-section,
.excursie-cell-calendar .dbb-section {
    max-height: 400px;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s ease 0.08s,
                padding 0.35s ease;
}

/* Calendar day cells — fade in instead of pop */
.excursie-cell-calendar .dbb-calendar-days {
    transition: opacity 0.25s ease;
}

/* Dropdown open — slide down */
.excursie-page .dbb-custom-select__options {
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    display: block !important;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.15s ease;
}

.excursie-page .dbb-open .dbb-custom-select__options {
    transform: scaleY(1);
    opacity: 1;
}

/* Price summary — gentle fade in */
.excursie-cell-payment .dbb-price-summary {
    transition: opacity 0.3s ease;
}

/* Header price — smooth number change */
#excursie-header-price {
    transition: opacity 0.15s ease;
}

/* Submit button — subtle pulse when form is ready */
.excursie-submit-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Calendar Override */
.excursie-cell-calendar {
    overflow: hidden;
    min-width: 0;
}

.excursie-cell-calendar .dbb-booking-form {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.excursie-cell-calendar .dbb-calendar {
    width: 100%;
    max-width: 100%;
    background: transparent;
    border: none;
    padding: 25px;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.excursie-cell-calendar .dbb-calendar-header {
    margin-bottom: 10px;
}

.excursie-cell-calendar .dbb-cal-month {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.excursie-cell-calendar .dbb-cal-prev,
.excursie-cell-calendar .dbb-cal-next {
    border: none;
    font-size: 18px;
}

.excursie-cell-calendar .dbb-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    flex: 1;
    align-content: start;
}

.excursie-cell-calendar .dbb-day {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    margin: 2px auto;
}

.excursie-cell-calendar .dbb-day-selected {
    background: var(--color-white) !important;
    color: var(--color-black) !important;
    border-color: transparent !important;
}

.excursie-cell-calendar .dbb-day[data-date]:hover {
    border-color: var(--color-white);
    color: var(--color-white);
}

.dbb-day-skeleton {
    background: rgba(255, 255, 255, 0.04);
    animation: dbb-pulse 1.5s ease-in-out infinite;
}

@keyframes dbb-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.08; }
}

/* Custom Dropdown */
.dbb-custom-select {
    position: relative;
    width: 120px;
    min-width: 120px;
    box-sizing: border-box;
}

/* Hidden inputs should not affect grid layout */
.excursie-option-row > input[type="hidden"] {
    display: none;
}

#dbb-slots-grid {
    width: auto;
}

.excursie-persons-input {
    box-sizing: border-box;
}

.dbb-custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 40px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    padding: 0 20px;
    cursor: pointer;
    font-size: 13px;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
    color: var(--color-white);
    transition: border-color 0.2s;
    white-space: nowrap;
}

.dbb-custom-select__trigger:hover,
.dbb-open .dbb-custom-select__trigger {
    border-color: var(--color-white);
}

.dbb-custom-select__trigger svg {
    flex-shrink: 0;
    transition: transform 0.2s;
}

.dbb-open .dbb-custom-select__trigger svg {
    transform: rotate(180deg);
}

.dbb-custom-select__options {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--color-black);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 50;
}

.dbb-open .dbb-custom-select__options {
    display: block;
}

.dbb-custom-select__option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 46px;
    padding: 10px 20px;
    gap: 3px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dbb-custom-select__option:last-child {
    border-bottom: none;
}

.dbb-custom-select__option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.dbb-custom-select__option.dbb-selected {
    background: var(--color-white);
    color: var(--color-black);
}

.dbb-custom-select__option.dbb-selected .dbb-opt-detail {
    color: rgba(0, 0, 0, 0.45);
}

.dbb-opt-time {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 42px;
}

.dbb-opt-detail {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-primary);
}

/* Scrollbar for options */
.dbb-custom-select__options::-webkit-scrollbar {
    width: 3px;
}

.dbb-custom-select__options::-webkit-scrollbar-track {
    background: transparent;
}

.dbb-custom-select__options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

/* Contact Section */
.excursie-contact {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.excursie-section-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.excursie-form-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.excursie-form-fields input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font-primary);
}

.excursie-form-fields input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.excursie-form-fields input:focus {
    outline: none;
    border-color: var(--color-white);
}

/* Field validation */
.excursie-field {
    position: relative;
}

.excursie-field-error {
    display: none;
    font-size: 11px;
    color: #e74c3c;
    margin-top: 4px;
    padding-left: 2px;
    letter-spacing: 0.3px;
}

.excursie-field.field-invalid input {
    border-color: #e74c3c;
}

.excursie-field.field-invalid .excursie-field-error {
    display: block;
}

.excursie-field.field-valid input {
    border-color: rgba(255, 255, 255, 0.55);
}

/* Option Rows */
.excursie-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    border-bottom: 1px solid var(--color-white);
    gap: 15px;
}

.excursie-option-row > label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-align: center;
}

.excursie-option-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.excursie-option-label label {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.excursie-option-sub {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.2;
}

/* Select - Pill Shape */
.excursie-select {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    color: var(--color-white);
    padding: 12px 40px 12px 20px;
    font-size: 14px;
    font-family: var(--font-primary);
    width: 100%;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3e%3cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='1.5'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    text-align: center;
}

.excursie-select:focus {
    outline: none;
    border-color: var(--color-white);
}


/* Participants Stepper — enterprise-grade counter */
.excursie-persons-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    overflow: hidden;
    min-width: 140px;
    user-select: none;
}

.excursie-stepper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}

.excursie-stepper-btn:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

.excursie-stepper-btn:active {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(0.92);
    transition: transform 0.08s;
}

.excursie-stepper-btn svg {
    pointer-events: none;
}

.excursie-persons-stepper input[type="number"] {
    flex: 1;
    height: 44px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    font-size: 1.3rem;
    font-weight: 500;
    font-family: var(--font-display);
    padding: 0;
    width: 52px;
    min-width: 52px;
    -moz-appearance: textfield;
}

.excursie-persons-stepper input::-webkit-outer-spin-button,
.excursie-persons-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.excursie-persons-stepper input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.04);
}

/* Souvenir Add-on — enterprise toggle pattern */
.excursie-souvenir {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px 25px;
    box-sizing: border-box;
}

/* Row 1: toggle switch + info + price */
.excursie-souvenir-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* iOS-style toggle switch */
.excursie-souvenir-switch {
    flex-shrink: 0;
    cursor: pointer;
}

.excursie-souvenir-switch input { display: none; }

.excursie-switch-track {
    display: block;
    width: 38px;
    height: 20px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    position: relative;
    transition: background 0.25s ease;
}

.excursie-switch-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s;
}

.excursie-souvenir-switch input:checked + .excursie-switch-track {
    background: var(--color-white);
}

.excursie-souvenir-switch input:checked + .excursie-switch-track .excursie-switch-thumb {
    transform: translateX(18px);
    background: var(--color-black);
}

/* Label: title + info icon */
.excursie-souvenir-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.excursie-souvenir-title {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Info icon with tooltip */
.excursie-souvenir-tooltip-wrap {
    position: relative;
    display: inline-flex;
}

.excursie-souvenir-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 10px;
    font-style: italic;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.4);
    cursor: help;
    transition: border-color 0.2s, color 0.2s;
}

.excursie-souvenir-tooltip-wrap:hover .excursie-souvenir-info-icon {
    border-color: rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.8);
}

.excursie-souvenir-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 10px);
    left: -40px;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 12px;
    font-family: var(--font-primary);
    font-style: normal;
    line-height: 1.4;
    padding: 10px 14px;
    border-radius: 6px;
    width: 220px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    z-index: 200;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    transform: translateY(-4px);
}

.excursie-souvenir-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 48px;
    border: 6px solid transparent;
    border-bottom-color: var(--color-white);
}

.excursie-souvenir-tooltip-wrap:hover .excursie-souvenir-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.excursie-souvenir-price {
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    flex-shrink: 0;
}


/* Row 2: qty picker — animated slide-in */
.excursie-souvenir-qty {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s ease,
                margin-top 0.3s ease,
                padding-top 0.3s ease;
}

.excursie-souvenir.souvenir-active .excursie-souvenir-qty {
    max-height: 50px;
    opacity: 1;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.excursie-souvenir-qty-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.excursie-souvenir-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.excursie-souvenir-stepper {
    min-width: 90px;
    height: 28px;
    border-color: rgba(255, 255, 255, 0.2);
}

.excursie-souvenir-stepper .excursie-stepper-btn {
    width: 28px;
    height: 28px;
}

.excursie-souvenir-stepper input[type="number"] {
    height: 28px;
    font-size: 0.9rem;
    width: 34px;
    min-width: 34px;
}

.excursie-souvenir-subtotal {
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    min-width: 55px;
    text-align: right;
}

/* Payment */
.excursie-payment {
    text-align: center;
    padding: 25px 25px 15px;
}

.excursie-cell-payment .dbb-price-summary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.excursie-cell-payment .dbb-summary-row {
    color: rgba(255, 255, 255, 0.7);
}

.excursie-cell-payment .dbb-summary-total {
    border-top-color: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

.excursie-cell-payment #dbb-summary-section {
    width: 100%;
    padding: 0 25px 25px;
    box-sizing: border-box;
}

.excursie-payment-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.excursie-radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    padding: 6px 0;
}

.excursie-radio-label input[type="radio"] {
    display: none;
}

.excursie-radio-mark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.excursie-radio-label input:checked + .excursie-radio-mark {
    border-color: var(--color-white);
}

.excursie-radio-label input:checked + .excursie-radio-mark::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-white);
}

/* reCAPTCHA Notice */
.excursie-recaptcha-notice {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    padding: 15px 20px;
    border: 1px solid var(--color-white);
    border-top: none;
}

.excursie-recaptcha-notice a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.5);
}

.excursie-recaptcha-notice a:hover {
    color: var(--color-white);
}

/* Submit Button */
.excursie-submit-btn {
    display: block;
    width: 100%;
    padding: 22px;
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.excursie-submit-btn:hover:not(:disabled) {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
}

.excursie-submit-btn:disabled {
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    border-color: var(--color-white);
    cursor: not-allowed;
    letter-spacing: 4px;
}

/* Loading state when submitting */
.excursie-submit-btn.is-loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.excursie-submit-btn.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--color-black);
    border-radius: 50%;
    animation: excursie-spin 0.6s linear infinite;
}

@keyframes excursie-spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 767px) {
    .excursie-info-bar {
        grid-template-columns: 1fr;
    }

    .excursie-duration {
        border-right: none;
        border-bottom: 1px solid var(--color-white);
    }

    .excursie-option-row {
        flex-wrap: wrap;
        gap: 10px;
    }
}
