:root {
  --beige: #F7F5F3;
  --noir: #0C0C0C;
  --blanc: #fff;
  --corps: #696969;
}

/* Experiences Grid */
.lr-experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 40px;
}

.lr-experience-card {
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lr-experience-image {
    position: relative;
    padding-bottom: 66.67%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.lr-experience-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.6s cubic-bezier(0.16, 1.08, 0.38, 0.98) 0s;
}

.lr-experience-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lr-experience-category {
    display: block;
    font-family: Geist;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--noir);
    opacity: 0.5;
    margin-bottom: 20px;
    padding: 40px 40px 0 40px;
}

.lr-experience-title {
    margin: 0 0 15px;
    font-family: Cormorant Garamond;
    font-size: 34px;
    font-weight: 300;
    color: var(--noir);
    padding: 0 40px;
}

.lr-experience-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 20px;
    padding: 0;
    border-top: solid 1px var(--beige);
    border-bottom: solid 1px var(--beige);
}

.lr-meta-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: Geist;
    font-size: 11px;
    font-weight: 500;
	letter-spacing: 1.4px;
	line-height: 1.6;
	text-transform: uppercase;
    padding: 20px;
}

/* Bordures internes : colonne de gauche */
.lr-meta-item:nth-child(odd) {
    border-right: solid 1px var(--beige);
}

/* Bordures internes : ligne du haut */
.lr-meta-item:nth-child(-n+2) {
    border-bottom: solid 1px var(--beige);
}

.lr-meta-item svg {
    flex-shrink: 0;
}

.lr-experience-excerpt {
    margin-bottom: 20px;
    font-family: Geist;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .35px;
    line-height: 1.55;
    color: #9c9c98;
    flex-grow: 1;
    padding: 0 40px 20px 40px;
}

.lr-experience-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 40px 40px 40px;
    margin-top: auto;
}

.lr-experience-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

.lr-book-button {
    display: inline-block;
    width: 100% !important;
    padding: 12px 24px;
    background: var(--noir);
    color: var(--blanc) !important;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    border: solid 1px var(--noir);
}

.lr-book-button:hover {
    background: var(--blanc);
    color: var(--noir) !important;
}

.lr-experience-footer .call-cta {
    margin-top: 10px;
    font-family: Geist;
    font-size: 9px;
    font-weight: 300;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1.2px;
    line-height: 1.3;
}

.lr-no-experiences {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 18px;
}

/* Booking Modal */
.lr-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
}

.lr-booking-modal.active {
    display: block;
}

.lr-booking-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

.lr-booking-container {
    position: relative;
    max-width: calc(50% - 40px);
    height: calc(100% - 80px);
    margin: 40px auto;
    padding: 60px;
    background: #fff;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    animation: slideUp 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--beige) transparent;
}

.lr-booking-container::-webkit-scrollbar {
    width: 4px;
}

.lr-booking-container::-webkit-scrollbar-track {
    background: transparent;
}

.lr-booking-container::-webkit-scrollbar-thumb {
    background-color: #857f79;
    border-radius: 0 !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(30px);
    }
}

.lr-booking-modal.closing .lr-booking-overlay {
    animation: fadeOut 0.3s ease;
}

.lr-booking-modal.closing .lr-booking-container {
    animation: slideDown 0.3s ease;
}

.lr-booking-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0 !important;
    background: rgba(255, 255, 255);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
}

.lr-booking-close::before,
.lr-booking-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: #333;
    border-radius: 0 !important;
    transition: background 0.3s ease;
}

.lr-booking-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lr-booking-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lr-booking-close:hover {
    background: white;
}

.lr-booking-close:hover::before,
.lr-booking-close:hover::after {
    background: #000;
}

/* Hero Section */
.lr-booking-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.lr-booking-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lr-booking-hero-overlay {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    padding: 30px;
    background: rgba(0, 0, 0, 0);
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.58) 100%);
    color: white;
}

.lr-booking-hero-overlay h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 300;
}

.lr-booking-hero-overlay p {
    margin: 0 0 10px 0;
    text-decoration: none;
	font-family: Geist;
    font-size: 10px;
    font-weight: 500;
	letter-spacing: 1.4px;
	text-transform: uppercase;
    transition: opacity 0.3s ease;
    display: block;
}

/* Steps */
.lr-booking-steps {
    display: flex;
    margin: 20px 0;
    border-bottom: .5px solid #EFE8E1;
}

.lr-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: var(--beige);
    cursor: pointer;
    transition: all 0.3s;
}

.lr-step-active {
    background: var(--noir);
    color: white;
}

.lr-step-number {
    width: 26px;
    height: 26px;
    padding-left: 1px;
    border-radius: 50%;
    background: var(--beige);
    border: solid .5px var(--noir);
    color: var(--noir);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Geist;
    font-size: 10px;
    font-weight: 500;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.lr-step-active .lr-step-number {
    border-radius: 50%;
    background: var(--beige);
    color: var(--noir);
}

.lr-step-label {
    font-family: Geist;
    font-size: 10px;
    font-weight: 500;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

/* Experience Description */
.lr-booking-description {
    padding: 40px 0;
    border-bottom: .5px solid #EFE8E1;
    font-family: Geist;
    font-size: 14px;
    line-height: 1.8;
    color: var(--corps);
}

.lr-booking-description h2,
.lr-booking-description h3,
.lr-booking-description h4 {
    font-family: inherit;
    color: var(--noir);
    margin: 20px 0 10px;
}

.lr-booking-description h2 {
    font-size: 24px;
    font-weight: 400;
}

.lr-booking-description h3 {
    font-size: 20px;
    font-weight: 400;
}

.lr-booking-description h4 {
    font-size: 16px;
    font-weight: 500;
}

.lr-booking-description p {
    margin: 15px 0;
}

.lr-booking-description ul,
.lr-booking-description ol {
    margin: 15px 0;
    padding-left: 25px;
}

.lr-booking-description li {
    margin: 8px 0;
}

.lr-booking-description strong {
    font-weight: 600;
    color: var(--noir);
}

.lr-booking-description a {
    color: var(--noir);
    text-decoration: underline;
}

.lr-booking-description a:hover {
    opacity: 0.7;
}

/* Body */
.lr-booking-body {
    font-family: Geist;
}

.lr-booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.lr-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 400;
    margin: 20px 0 10px 0;
    color: var(--noir);
}

.lr-section-icon {
    font-size: 24px;
}

/* Counter Controls */
.lr-counter-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lr-counter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--beige);
    transition: border-color 0.2s;
}

.lr-counter-item:hover {
    border-color: #dee2e6;
}

.lr-counter-label strong {
    display: block;
    font-family: Geist;
    font-size: 13px;
    font-weight: 500;
	letter-spacing: 1.2px;
    color: var(--noir);
    opacity: .8;
}

.lr-counter-label small {
    display: block;
    font-family: Geist;
    font-size: 11px;
    font-weight: 500;
	letter-spacing: 1px;
    color: var(--noir);
    opacity: .5;
    margin-top: 4px;
}

.lr-counter-controls {
    display: flex;
    align-items: center;
}

.lr-counter-controls input[type=number] {
    width: 70px;
    height: 60px;
    border: solid .5px #e4dcd3;
    border-left: none;
    border-right: none;
    border-radius: 0;
    font-family: Geist;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    background: var(--beige);
    text-align: center;
    padding: 0;
    box-sizing: border-box;
    color: var(--noir);
    opacity: .8;
    line-height: 40px;
    -moz-appearance: textfield;
}

.lr-counter-controls input[type=number]::-webkit-outer-spin-button,
.lr-counter-controls input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.lr-counter-controls input[type=number]:focus {
    outline: none;
    box-shadow: none;
    color: var(--noir);
    opacity: .8;
}

.lr-counter-btn {
    width: 70px;
    height: 60px;
    border: solid .5px #e4dcd3;
    border-radius: 0;
    background: var(--beige);
    font-family: Geist;
    font-size: 24px;
    font-weight: 100;
    line-height: 1;
    cursor: pointer;
    transition: all .15s ease-in-out;
    color: var(--noir);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.lr-counter-btn:hover:not(:disabled) {
    border-color: #c1b9b0;
    background: none;
}

.lr-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.lr-counter-controls input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #2c3338;
}

/* Language Buttons */
.lr-language-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 40px;
}

.lr-language-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border: solid .5px #e4dcd3;
    border-radius: 0;
    font-family: Geist;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.lr-language-btn:hover {
    border-color: #dee2e6;
}

.lr-language-active {
    border-color: #EFE8E1;
    background: var(--beige);
}

.lr-flag {
    font-size: 20px;
}

/* Form Inputs */
.lr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px) {
    .lr-form-row {
        grid-template-columns: 1fr;
    }
}

.lr-form-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lr-form-group label {
    font-family: Geist;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--noir);
    opacity: .6;
}

.lr-form-group input,
.lr-form-group input[type="text"],
.lr-form-group input[type="email"],
.lr-form-group select,
.lr-form-group textarea,
.lr-date-input,
.lr-select-input {
    padding: 20px;
    border: .5px solid #e4dcd3;
    border-radius: 0;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: white;
}

.lr-form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.lr-form-help {
    font-size: 13px;
    color: #6c757d;
    margin-top: 4px;
}

/* Supprimer le fond bleu + outline au focus */
.lr-form-group input:focus,
.lr-form-group input[type="text"]:focus,
.lr-form-group input[type="email"]:focus,
.lr-form-group select:focus,
.lr-form-group textarea:focus,
.lr-date-input:focus,
.lr-select-input:focus {
    outline: none;
    box-shadow: none;
    background: white;
    border: 1px solid #e4dcd3;
    border-radius: 0;
}


/* Price Summary */
.lr-price-summary {
    background: var(--beige);
    padding: 20px;
}

.lr-price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-family: Geist;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .8px;
    color: var(--noir);
    opacity: .6;
}

.lr-price-subtotal {
    font-weight: 400;
    margin-top: 5px;
}

.lr-price-total {
    font-size: 16px;
    font-weight: 600;
    color: var(--noir);
    padding-top: 15px;
    margin-top: 5px;
    border-top: 1px solid #e4dcd397 !important;
}

/* Recap */
.lr-booking-recap {
    background: var(--beige);
    padding: 20px;
}

.lr-booking-recap h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 400;
    color: var(--noir);
    opacity: .6;
}

.lr-recap-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-family: Geist;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .8px;
    color: var(--noir);
    opacity: .6;
}

.lr-recap-row strong {
    font-family: Geist;
    font-size: 13px;
    font-weight: 400;
    color: var(--noir);
}

.lr-recap-price {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e4dcd397 !important;
}

.lr-recap-total {
    font-size: 16px;
    font-weight: 600;
    color: var(--noir);
    padding-top: 15px;
    margin-top: 5px;
    border-top: 1px solid #e4dcd397 !important;
    border-bottom: 0;
    padding-bottom: 0;
}

.lr-recap-total strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--noir);
}

/* Buttons */
.lr-button {
    padding: 16px 32px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lr-button-primary {
    background-color: var(--noir);
    color: var(--blanc);
    padding: 20px 0;
    font-family: Geist;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    text-transform: uppercase;
    border: solid .5px var(--noir);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.lr-button-primary:hover:not(:disabled) {
    background: var(--blanc);
    color: var(--noir);
    border: solid .5px #e4dcd3;
}

.lr-button-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.lr-button-secondary {
    background-color: var(--blanc);
    color: var(--noir);
    padding: 20px 0;
    font-family: Geist;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    text-transform: uppercase;
    border: solid .5px #e4dcd3;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.lr-button-secondary:hover {
    border: solid .5px var(--noir);
}

.lr-button-full {
    width: 100%;
}

.lr-form-actions {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.lr-form-actions button {
    width: 50%;
}

.lr-form-actions .lr-button {
    flex: 1;
}

/* Messages */
.lr-booking-message {
    padding: 20px;
    display: none;
    font-family: Geist;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

.lr-booking-message.show {
    display: block;
}

.lr-booking-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.lr-booking-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Loading state */
.lr-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.lr-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid #2c5f2d;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

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

/* Accordion Styles */
.lr-accordion-item {
    border-bottom: .5px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lr-accordion-item:hover {
    border-color: #dee2e6;
}

.lr-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #2c3338;
    transition: all 0.3s ease;
}

.lr-accordion-title {
    flex: 1;
    font-family: Geist;
    font-size: 12px;
    font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
    color: var(--noir);
    opacity: .6;
}

.lr-accordion-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #6c757d;
}

.lr-accordion-active .lr-accordion-arrow {
    transform: rotate(180deg);
    color: #2c5f2d;
}

.lr-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.lr-accordion-active .lr-accordion-content {
    max-height: 1000px;
    padding: 0;
}

/* Flatpickr Custom Styles */

.lr-accordion-content.calendrier {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lr-accordion-content.calendrier #lr-booking-date,
.lr-accordion-content.calendrier #lr-available-dates-info {
    display: none;
}

.flatpickr-calendar {
    background: white;
    border: none;
    box-shadow: none;
    font-family: inherit;
    width: 100%;
    margin-bottom: 60px;
}

.flatpickr-innerContainer {
    display: flex;
    justify-content: center;
}

.flatpickr-rContainer {
    max-width: 80%;
    width: 100%;
}

.flatpickr-days {
    width: 100%;
}

.dayContainer {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
    min-width: 0;
    max-width: none;
    justify-content: center; /* horizontal (items) */
    align-items: center;     /* vertical (items) */
    justify-items: center;   /* centre chaque jour */
    align-content: center;   /* centre le bloc */
    gap: 15px;
    padding: 0;
    box-sizing: border-box;
}

.flatpickr-day {
    width: 100%;
}

.flatpickr-months {
    position: relative;
    padding: 20px 20px 10px;
}

.flatpickr-current-month {
    font-size: 18px;
    font-weight: 600;
    color: var(--noir);
}

.flatpickr-weekdays {
    background: transparent;
    padding: 20px 0;
}

.flatpickr-weekdaycontainer {
    gap: 15px;
}

.flatpickr-weekday {
    font-weight: 500;
    font-size: 13px;
    color: #b7bbbe !important;
}

.flatpickr-day {
    color: var(--noir);
    font-weight: 500;
    opacity: .8;
    transition: all 0.2s ease;
}

.flatpickr-day:hover:not(.flatpickr-disabled) {
    background: #f7f5f384;
    border-color: var(--beige);
    color: var(--noir);
}

.flatpickr-day.selected {
    background: var(--noir) !important;
    border-color: var(--noir) !important;
    color: white !important;
}

.flatpickr-day.today {
    border-color: var(--noir);
    color: var(--noir);
}

.flatpickr-day.today:hover {
    background: var(--noir);
    color: var(--noir);
}

.flatpickr-day.flatpickr-disabled {
    color: #dee2e6;
}

.flatpickr-day.available {
    background: var(--beige);
    color: var(--noir);
    font-weight: 600;
}

.flatpickr-day.available.prevMonthDay,
.flatpickr-day.available.nextMonthDay {
    background: var(--blanc);
    color: #dee2e6;
    font-weight: 500;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    fill: #2c5f2d;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
    fill: #234d24;
}

/* Override input style for flatpickr */
#lr-booking-date {
    cursor: pointer;
}

/* Time Buttons (like language buttons) */
.lr-time-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding-bottom: 40px;
}

.lr-time-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border: solid .5px #e4dcd3;
    border-radius: 0;
    font-family: Geist;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.lr-time-btn:hover {
    border-color: #dee2e6;
}

.lr-time-active {
    border-color: #EFE8E1;
    background: var(--beige);
}

.lr-time-btn .lr-time-value {
    font-family: Geist;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    color: #2c3338;
}

.lr-time-btn .lr-time-spots {
    font-family: Geist;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1;
    color: #6c757d;
}

/* Payment Checkbox */

.lr-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.lr-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--noir);
    flex-shrink: 0;
}

.lr-checkbox-label span {
    flex: 1;
    padding-top: 6px;
    font-weight: 400;
    font-size: 11px;
}

/* Terms info (not a checkbox) */

.lr-terms-info {
    position: relative;
    top: -10px;
}

.lr-terms-info p {
    margin: 0;
    padding: 0;
    text-decoration: none;
    font-family: Geist;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: .5px;
    line-height: 1.4;
    display: block;
    opacity: .4;
    text-align: center;
}

/* intl-tel-input customization */
.iti {
    display: block;
    width: 100%;
}

.iti__input {
    width: 100%;
    padding: 20px;
    border: .5px solid #e4dcd3;
    border-radius: 0;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: white;
}

.iti input[type="tel"] {
    padding: 20px;
    border: .5px solid #e4dcd3;
    border-radius: 0;
    font-size: 15px;
    transition: border-color 0.3s ease;
    background: white;
}

.iti input[type="tel"]:focus {
    outline: none;
    border: 1px solid #e4dcd3;
}

.iti__selected-country {
    padding: 0 12px 0 8px;
    background-color: transparent;
    transition: border-color 0.3s ease;
}

.iti__country-list {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid #e9ecef;
    max-height: 200px;
}

.iti__country:hover {
    background-color: var(--beige);
}

.iti__country.iti__highlight {
    background-color: var(--beige);
}

.iti__dropdown-content {
    font-family: 'Geist';
    font-size: 13px;
    font-weight: 300;
}

.iti--inline-dropdown .iti__dropdown-content {
    position: absolute;
    z-index: 99999;
    margin-top: 0px;
    margin-left: calc(var(--iti-border-width) * -1);
    border: solid .5px #e4dcd3;
    box-shadow: none;
}

.iti__tel-input[type=tel] {
    width: 100%;
}

.lr-checkbox-label input[type="checkbox"] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 0 !important;
}

/* Écrase le z-index par défaut d'intl-tel-input (1060) pour passer au-dessus de la modale */
:root {
    --iti-zindex: 999999;
}

.iti__dropdown-content input[type="text"]{
    border: none;
}

ul.iti__country-list {
    box-shadow: none;
    border-radius: 0;
    border: none;
}



/* Children age inputs */
.lr-children-ages {
    margin: 20px 0 40px 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
}

@media (max-width: 768px) {
    .lr-children-ages {
        grid-template-columns: 1fr;
    }
}

.lr-child-age-input {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lr-child-age-input label {
    display: block;
    font-family: Geist;
    font-size: 13px;
    font-weight: 500;
	letter-spacing: 1.2px;
    color: var(--noir);
    opacity: .8;
}

.lr-select-wrapper {
    position: relative;
}

.lr-select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #000000b8;
    border-bottom: 1.5px solid #000000b8;
    pointer-events: none;
}

.lr-child-age-input select {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 16px 40px 16px 16px;
    border: solid .5px #e4dcd3;
    border-radius: 0;
    font-family: Geist;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1;
    cursor: pointer;
    transition: all .15s ease-in-out;
    color: #000000b8;
    background-color: transparent;
}

.lr-child-age-input select:focus {
    outline: none;
}

/* Update accordion title to show selected value */
.lr-accordion-header .lr-accordion-value {
    color: var(--noir);
    font-weight: 600;
    margin-left: 8px;
}

/* Responsive for experience cards */
@media (max-width: 1200px) {
    .lr-experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lr-experiences-grid {
        grid-template-columns: 1fr;
    }

    .lr-experience-content {
        padding: 0;
    }

    .lr-experience-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 0;
    }

    .lr-booking-container {
        max-width: 100%;
        margin: 20px;
        max-height: calc(100vh - 40px);
        height: 100vh;
        padding: 0px;
    }
    
    .lr-booking-hero {
        height: 300px;
    }

    .lr-booking-hero-overlay {
        padding: 30px 20px;
    }

    .lr-booking-hero-overlay h2 {
        font-size: 38px;
    }

    .lr-booking-description {
        margin-bottom: 0;
        border: none;
        font-family: Geist;
        font-size: 13px;
        font-weight: 300;
        letter-spacing: .35px;
        line-height: 1.55;
        color: #9c9c98;
        flex-grow: 1;
        padding: 20px 20px 20px 20px;
    }
    
    .lr-booking-body {
        padding: 24px;
    }
    
    .lr-booking-steps {
        flex-direction: column;
        margin: 0;
    }

    .lr-counter-item {
        display: block;
    }

    .lr-counter-label {
        text-align: center;
        margin-bottom: 10px;
    }

    .lr-counter-controls {
        justify-content: center;
        margin-bottom: 9px;
    }

    .lr-children-ages {
        padding: 0;
    }

    .flatpickr-rContainer {
        max-width: 100%;
    }

    .lr-form-actions button {
        width: 100%;
    }
    
    .lr-language-buttons {
        grid-template-columns: 1fr;
    }
    
    .lr-form-actions {
        flex-direction: column-reverse;
    }
    
    .lr-booking-close {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
    }

    .lr-experience-category {
        padding: 40px 20px 0 20px;
    }

    .lr-experience-title {
        padding: 0 20px 0 20px;
    }

    .lr-experience-excerpt {
        padding: 0px 20px 20px 20px;
    }

    .lr-experience-footer {
        padding: 0px 20px 40px 20px;
    }
}

