.tdw-rental-booking {
	display: grid;
	gap: 16px;
	padding: 18px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	background: #fff;
}

.tdw-rental-field {
	display: grid;
	gap: 8px;
}

.tdw-rental-label {
	font-weight: 700;
}

.tdw-rental-datepicker {
	padding: 16px;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	background: #fff;
}

.tdw-rental-datepicker__head {
	display: grid;
	grid-template-columns: 40px 1fr 40px;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	text-align: center;
	text-transform: capitalize;
}

.tdw-rental-datepicker__nav {
	width: 40px;
	height: 40px;
	border: 1px solid #ddd;
	border-radius: 999px;
	background: #fff;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
}

.tdw-rental-datepicker__nav:hover,
.tdw-rental-datepicker__nav:focus {
	background: #f5f5f5;
	outline: none;
}

.tdw-rental-datepicker__weekdays,
.tdw-rental-datepicker__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(32px, 1fr));
	gap: 6px;
}

.tdw-rental-datepicker__weekdays {
	margin-bottom: 6px;
	color: #666;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
}

.tdw-rental-day {
	position: relative;
	min-height: 42px;
	border: 1px solid #e5e5e5;
	border-radius: 10px;
	background: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 600;
}

.tdw-rental-day:hover,
.tdw-rental-day:focus {
	border-color: #222;
	outline: none;
}

.tdw-rental-day.is-outside {
	opacity: .35;
}

.tdw-rental-day.is-past,
.tdw-rental-day.is-incompatible {
	background: #f1f1f1;
	border-color: #e2e2e2;
	color: #aaa;
	cursor: not-allowed;
	text-decoration: none;
}

.tdw-rental-day.is-incompatible::before {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	top: 50%;
	border-top: 1px solid currentColor;
	opacity: .45;
}

.tdw-rental-day.is-weekend {
	background: #f6f6f6;
}

.tdw-rental-day.is-weekend-choice::after {
	content: "WE";
	position: absolute;
	top: 3px;
	right: 5px;
	font-size: 9px;
	font-weight: 800;
	color: #555;
}

.tdw-rental-day.is-in-range {
	background: #dfefff;
	border-color: #8bbcff;
	box-shadow: inset 0 0 0 1px #8bbcff;
}

.tdw-rental-day.is-selected {
	background: #222;
	border-color: #222;
	color: #fff;
}

.tdw-rental-day.is-disabled {
	background: #f2f2f2;
	color: #aaa;
	cursor: not-allowed;
	text-decoration: line-through;
}

.tdw-rental-day.is-holiday,
.tdw-rental-day.is-full {
	background: #ffe8e8;
	border-color: #ffc7c7;
	color: #b00020;
	cursor: not-allowed;
}

.tdw-rental-day.is-limited {
	background: #fff3d8;
	border-color: #ffd27a;
	color: #7a4b00;
}

.tdw-rental-day.is-free {
	background: #eaf8ef;
	border-color: #bfe8cd;
	color: #126b32;
}

.tdw-rental-day.is-selected {
	background: #222;
	border-color: #222;
	color: #fff;
}

.tdw-rental-day__stock {
	position: absolute;
	right: 4px;
	bottom: 3px;
	min-width: 15px;
	height: 15px;
	padding: 0 3px;
	border-radius: 999px;
	background: rgba(255,255,255,.85);
	color: inherit;
	font-size: 10px;
	line-height: 15px;
	font-weight: 800;
}

.tdw-rental-datepicker__help {
	margin: 10px 0 0;
	color: #555;
	font-size: .95em;
}

.tdw-rental-availability {
	margin: 8px 0 0;
	padding: 10px 12px;
	border-radius: 8px;
	font-weight: 700;
}

.tdw-rental-availability.is-ok {
	background: #eaf8ef;
	color: #126b32;
}

.tdw-rental-availability.is-ko {
	background: #ffe8e8;
	color: #b00020;
}

.tdw-rental-availability.is-checking {
	background: #f2f2f2;
	color: #555;
}

.tdw-rental-summary {
	display: grid;
	gap: 8px;
	padding: 14px;
	border-radius: 10px;
	background: #f7f7f7;
}

.tdw-rental-summary__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: baseline;
}

.tdw-rental-summary__row--total {
	margin-top: 4px;
	padding-top: 10px;
	border-top: 1px solid #ddd;
	font-size: 1.08em;
}

.tdw-rental-summary__row--caution {
	color: #7a4b00;
}

.tdw-ign-wrap {
	position: relative;
	width: 100%;
}

.tdw-ign-input {
	width: 100%;
	height: 40px !important;
	line-height: 40px !important;
	padding: 0 12px !important;
	box-sizing: border-box;
}

.tdw-ign-results {
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	right: 0;
	z-index: 99999;
	background: #fff;
	border: 1px solid #d8d8d8;
	border-radius: 6px;
	max-height: 260px;
	overflow-y: auto;
	box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.tdw-ign-item {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 0;
	border-bottom: 1px solid #f0f0f0;
	background: #fff;
	text-align: left;
	cursor: pointer;
	font: inherit;
	line-height: 1.4;
}

.tdw-ign-item:hover,
.tdw-ign-item:focus {
	background: #f4f4f4;
	color: #000;
	outline: none;
}

.tdw-ign-empty {
	padding: 10px 12px;
	color: #666;
	font-size: .95em;
}

@media (max-width: 520px) {
	.tdw-rental-datepicker__weekdays,
	.tdw-rental-datepicker__grid {
		gap: 4px;
	}

	.tdw-rental-day {
		min-height: 36px;
		border-radius: 8px;
		font-size: 13px;
	}
}


.tdw-rental-day.is-full,
.tdw-rental-day.is-holiday {
	text-decoration: line-through;
}

.tdw-rental-day.is-selected.is-in-range,
.tdw-rental-day.is-selected {
	background: #222;
	border-color: #222;
	color: #fff;
}

.tdw-rental-day.is-disabled:not(.is-full):not(.is-holiday):not(.is-incompatible) {
	background: #f2f2f2;
	color: #aaa;
}


/* V0.6.3 : priorité visuelle
   Les jours incompatibles doivent rester gris, sauf indisponibilité/fermeture en rouge. */
.tdw-rental-day.is-incompatible:not(.is-full):not(.is-holiday),
.tdw-rental-day.is-past:not(.is-full):not(.is-holiday) {
	background: #f1f1f1 !important;
	border-color: #e2e2e2 !important;
	color: #aaa !important;
	cursor: not-allowed;
	box-shadow: none !important;
}

.tdw-rental-day.is-incompatible:not(.is-full):not(.is-holiday) .tdw-rental-day__stock,
.tdw-rental-day.is-past:not(.is-full):not(.is-holiday) .tdw-rental-day__stock {
	display: none;
}

.tdw-rental-day.is-full,
.tdw-rental-day.is-holiday {
	background: #ffe8e8 !important;
	border-color: #ffc7c7 !important;
	color: #b00020 !important;
}


.tdw-rental-best-rate {
	padding: 12px 14px;
	border-radius: 12px;
	background: #fff7e6;
	color: #7a4b00;
	font-weight: 800;
	border: 1px solid #ffd27a;
}


/* V0.10.2 front typography */
.tdw-rental-booking,
.tdw-rental-booking *,
.tdw-rental-best-rate {
	font-family: "Montserrat", Montserrat, Arial, sans-serif;
}

.tdw-rental-booking {
	font-weight: 400;
}

.tdw-rental-booking strong,
.tdw-rental-label,
.tdw-rental-datepicker__weekdays,
.tdw-rental-day,
.tdw-rental-summary__row strong {
	font-weight: 500;
}


/* V0.11.2 booking fixes */
.tdw-rental-booking .tdw-rental-day.is-in-range {
	background: #0B0B0B !important;
	border-color: #0B0B0B !important;
	color: #fff !important;
	box-shadow: none !important;
}

.tdw-rental-booking .tdw-rental-day.is-selected {
	background: #0B0B0B !important;
	border-color: #0B0B0B !important;
	color: #fff !important;
}

.tdw-rental-booking .single_add_to_cart_button,
.tdw-rental-booking button.single_add_to_cart_button,
.tdw-rental-booking .button.alt {
	background: #C8A45D !important;
	border-color: #C8A45D !important;
	color: #fff !important;
	border-radius: 20px;
	font-family: "Montserrat", Montserrat, Arial, sans-serif;
	font-weight: 400;
	transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.tdw-rental-booking .single_add_to_cart_button:hover,
.tdw-rental-booking button.single_add_to_cart_button:hover,
.tdw-rental-booking .button.alt:hover {
	background: #0B0B0B !important;
	border-color: #0B0B0B !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.tdw-rental-booking .single_add_to_cart_button:disabled {
	opacity: .5;
	cursor: not-allowed;
	transform: none;
}

.tdw-rental,
.tdw-rental *,
.tdw-rental-catalog,
.tdw-rental-catalog * {
	font-family: "Montserrat", Montserrat, Arial, sans-serif;
	font-weight: 400;
}

.tdw-rental-cart-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(31, 41, 51, .42);
    box-sizing: border-box;
}

.tdw-rental-cart-modal[hidden] {
    display: none;
}

.tdw-rental-cart-modal__box {
    width: min(560px, 100%);
    border-radius: 22px;
    background: #fff;
    padding: 26px;
    box-shadow: 0 24px 70px rgba(30, 25, 15, .22);
    font-family: "Montserrat", Montserrat, Arial, sans-serif;
    color: #1f2933;
    text-align: center;
}

.tdw-rental-cart-modal__box h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
}

.tdw-rental-cart-modal__box p {
    margin: 0 0 20px;
    color: #53606d;
    line-height: 1.55;
}

.tdw-rental-cart-modal__actions {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    flex-wrap: nowrap;
}

.tdw-rental-cart-modal__button {
    appearance: none;
    -webkit-appearance: none;
    border: 0 !important;
    border-radius: 999px !important;
    min-width: 0;
    padding: 13px 18px !important;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    white-space: nowrap;
    min-height: 46px;
    background: #b58a2a !important;
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(181, 138, 42, .22);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.tdw-rental-cart-modal__button--secondary {
    flex: 1.35 1 0;
    max-width: 300px;
}

.tdw-rental-cart-modal__button--primary {
    flex: .85 1 0;
    max-width: 190px;
}

.tdw-rental-cart-modal__button:hover,
.tdw-rental-cart-modal__button:focus {
    background: #9f761f !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(181, 138, 42, .26);
}

@media (max-width: 520px) {
    .tdw-rental-cart-modal__box {
        padding: 24px 18px;
    }

    .tdw-rental-cart-modal__actions {
        gap: 8px;
    }

    .tdw-rental-cart-modal__button {
        font-size: 13px;
        padding: 12px 10px;
    }
}

/* V1.5.2.10 - polish premium front */
.tdw-rental-booking,
.tdw-rental-booking *,
.tdw-rental-cart-modal,
.tdw-rental-cart-modal * {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
	font-size: 14px;
	font-weight: 400;
}

.tdw-rental-label,
.tdw-rental-booking strong,
.tdw-rental-datepicker__weekdays,
.tdw-rental-summary__row strong,
.tdw-rental-cart-modal__button {
	font-size: 14px;
	font-weight: 600 !important;
}

.tdw-rental-cart-modal__box h3 {
	font-size: 16px;
	font-weight: 600 !important;
}

.tdw-rental-booking-top {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 16px;
}

.tdw-rental-mode-field {
	flex: 1 1 auto;
}

.tdw-rental-mode-field label {
	display: block;
	margin-top: 4px;
}

.tdw-rental-best-rate {
	flex: 0 0 220px;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 12px 14px !important;
	border: 0 !important;
	border-radius: 10px !important;
	background: #C8A45D !important;
	color: #fff !important;
	text-align: center;
	line-height: 1.25;
	box-shadow: none !important;
}

.tdw-rental-best-rate span,
.tdw-rental-best-rate strong {
	display: block;
	color: #fff !important;
}

.tdw-rental-best-rate span {
	font-size: 14px;
	font-weight: 400 !important;
}

.tdw-rental-best-rate strong,
.tdw-rental-best-rate strong .woocommerce-Price-amount,
.tdw-rental-best-rate strong .woocommerce-Price-currencySymbol {
	font-size: 16px;
	font-weight: 600 !important;
}

@media (max-width: 680px) {
	.tdw-rental-booking-top {
		display: grid;
	}

	.tdw-rental-best-rate {
		width: 100%;
		box-sizing: border-box;
	}
}


/* V1.5.2.10 - polish meilleur tarif et modale panier */
.tdw-rental-best-rate__price,
.tdw-rental-best-rate__price *,
.tdw-rental-best-rate strong,
.tdw-rental-best-rate strong * {
	display: inline !important;
	white-space: nowrap !important;
}

.tdw-rental-best-rate__price {
	letter-spacing: .1px;
}

.tdw-rental-cart-modal__box {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
}

.tdw-rental-cart-modal__actions {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	gap: 10px !important;
	flex-wrap: nowrap !important;
}

.tdw-rental-cart-modal__button {
	border-radius: 999px !important;
	background: #C8A45D !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	min-height: 46px !important;
	box-shadow: 0 10px 22px rgba(200, 164, 93, .22) !important;
}

.tdw-rental-cart-modal__button--secondary {
	flex: 1.45 1 0 !important;
	max-width: 310px !important;
}

.tdw-rental-cart-modal__button--primary {
	flex: .8 1 0 !important;
	max-width: 170px !important;
}

.tdw-rental-cart-modal__button:hover,
.tdw-rental-cart-modal__button:focus {
	background: #b8934f !important;
	color: #fff !important;
	transform: translateY(-1px);
}

@media (max-width: 520px) {
	.tdw-rental-cart-modal__actions {
		flex-direction: column !important;
	}
	.tdw-rental-cart-modal__button,
	.tdw-rental-cart-modal__button--secondary,
	.tdw-rental-cart-modal__button--primary {
		width: 100% !important;
		max-width: 100% !important;
	}
}


/* V1.5.3.10 - UX livraison groupée sur fiche réservation */
.tdw-rental-delivery-hint {
	display: grid;
	gap: 4px;
	padding: 12px 14px;
	border-radius: 10px;
	line-height: 1.45;
	font-size: 14px;
	font-weight: 400;
}

.tdw-rental-delivery-hint strong {
	font-size: 14px;
	font-weight: 600 !important;
}

.tdw-rental-delivery-hint--groupable {
	background: #edf8f1;
	color: #126b32;
	border: 1px solid #c8ead4;
}

.tdw-rental-delivery-hint--dedicated {
	background: #fff7e6;
	color: #7a4b00;
	border: 1px solid #f0d8a3;
}

/* V1.5.3.11 - shortcode reservation complet : galerie native + onglets */
.tdw-rental-shortcode {
	max-width: 1180px;
	margin: 0 auto;
}

.tdw-rental-shortcode__columns {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(360px, 1fr);
	gap: 24px;
	align-items: start;
}

.tdw-rental-shortcode__gallery {
	position: sticky;
	top: 96px;
	align-self: start;
}

.tdw-rental-gallery {
	width: 100%;
}

.tdw-rental-gallery__frame {
	position: relative;
	height: 420px;
	border-radius: 18px;
	overflow: hidden;
	background: #f8f6f2;
}

.tdw-rental-gallery__image {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center center !important;
	opacity: 0;
	transform: scale(1.015);
	transition: opacity .55s ease, transform .9s ease;
}

.tdw-rental-gallery__image.is-active {
	opacity: 1;
	transform: scale(1);
}

.tdw-rental-gallery__zoom {
	position: absolute !important;
	right: 14px !important;
	bottom: 14px !important;
	z-index: 5 !important;
	width: 52px !important;
	height: 52px !important;
	border-radius: 999px !important;
	background: #fff !important;
	border: 0 !important;
	outline: 0 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .18) !important;
	transition: background-color .22s ease, transform .22s ease !important;
}

.tdw-rental-gallery__zoom svg {
	width: 24px !important;
	height: 24px !important;
	fill: none !important;
	stroke: #C8A45D !important;
	stroke-width: 2.4 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.tdw-rental-gallery__zoom:hover,
.tdw-rental-gallery__zoom:focus {
	background: #C8A45D !important;
	transform: translateY(-2px) scale(1.04) !important;
}

.tdw-rental-gallery__zoom:hover svg,
.tdw-rental-gallery__zoom:focus svg {
	stroke: #fff !important;
}

.tdw-rental-gallery__thumbs {
	display: grid !important;
	grid-template-columns: repeat(5, 1fr) !important;
	gap: 8px !important;
	margin-top: 12px !important;
}

.tdw-rental-gallery__thumb {
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	cursor: pointer !important;
	border-radius: 8px !important;
	overflow: hidden !important;
}

.tdw-rental-gallery__thumb img {
	display: block !important;
	width: 100% !important;
	height: 74px !important;
	object-fit: cover !important;
	border-radius: 8px !important;
	opacity: .55 !important;
	transition: opacity .22s ease, box-shadow .22s ease, transform .22s ease;
}

.tdw-rental-gallery__thumb.is-active img,
.tdw-rental-gallery__thumb:hover img,
.tdw-rental-gallery__thumb:focus img {
	opacity: 1 !important;
	box-shadow: 0 0 0 2px #C8A45D !important;
}

.tdw-rental-gallery__thumb:hover img,
.tdw-rental-gallery__thumb:focus img {
	transform: translateY(-1px);
}

.tdw-rental-product-tabs {
	margin-top: 36px;
	border-top: 1px solid #e5e5e5;
}

.tdw-rental-product-tabs__nav {
	display: flex;
	gap: 0;
	align-items: flex-end;
	margin-top: -1px;
}

.tdw-rental-product-tabs__button {
	min-height: 44px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-top-color: transparent;
	background: transparent;
	color: #222;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
}

.tdw-rental-product-tabs__button.is-active {
	border-color: #e5e5e5;
	border-top-color: #fff;
	background: #fff;
}

.tdw-rental-product-tabs__panel {
	display: none;
	padding: 24px 8px 0;
	font-size: 16px;
	line-height: 1.65;
	color: #222;
}

.tdw-rental-product-tabs__panel.is-active {
	display: block;
}

.tdw-rental-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, .78);
}

.tdw-rental-gallery-lightbox__img {
	max-width: min(1100px, 94vw);
	max-height: 88vh;
	border-radius: 14px;
	object-fit: contain;
	box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.tdw-rental-gallery-lightbox__close {
	position: fixed;
	top: 18px;
	right: 18px;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 0;
	background: #fff;
	color: #222;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

@media (max-width: 900px) {
	.tdw-rental-shortcode__columns {
		grid-template-columns: 1fr;
	}

	.tdw-rental-shortcode__gallery {
		position: static;
	}
}

@media (max-width: 767px) {
	.tdw-rental-gallery__frame {
		height: 320px;
	}

	.tdw-rental-gallery__thumbs {
		grid-template-columns: repeat(4, 1fr) !important;
	}

	.tdw-rental-gallery__thumb img {
		height: 64px !important;
	}

	.tdw-rental-product-tabs__nav {
		overflow-x: auto;
	}

	.tdw-rental-product-tabs__button {
		white-space: nowrap;
	}
}

/* V1.5.3.12 - polish shortcode galerie/onglets */
.tdw-rental-shortcode form.cart,
.tdw-rental-shortcode .tdw-rental-booking.cart,
.woocommerce div.product .tdw-rental-shortcode form.cart {
	margin-bottom: 0 !important;
}

.tdw-rental-product-tabs__button,
.tdw-rental-product-tabs__button:visited {
	border: 0 !important;
	border-radius: 10px 10px 0 0 !important;
	background: #f5f5f5 !important;
	color: #0B0B0B !important;
	text-decoration: none !important;
	transition: background-color .22s ease, color .22s ease, transform .22s ease !important;
}

.tdw-rental-product-tabs__button:hover,
.tdw-rental-product-tabs__button:focus {
	background: #0B0B0B !important;
	color: #ffffff !important;
	outline: none !important;
	transform: translateY(-1px);
}

.tdw-rental-product-tabs__button.is-active,
.tdw-rental-product-tabs__button.is-active:hover,
.tdw-rental-product-tabs__button.is-active:focus {
	background: #C8A45D !important;
	color: #ffffff !important;
}

.tdw-rental-product-tabs__panel.is-active {
	animation: tdwRentalTabSlideIn .24s ease both;
}

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

/* V1.5.3.12 - correctifs réellement appliqués : alignement galerie/réservation + onglets premium */
.tdw-rental-shortcode .tdw-rental-shortcode__booking > form.tdw-rental-booking.cart,
.tdw-rental-shortcode form.tdw-rental-booking.cart,
body.woocommerce div.product .tdw-rental-shortcode form.tdw-rental-booking.cart,
body.woocommerce div.product form.tdw-rental-booking.cart {
	margin-bottom: 0 !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button {
	border: 0 !important;
	border-radius: 10px 10px 0 0 !important;
	background: #f5f5f5 !important;
	color: #0B0B0B !important;
	text-decoration: none !important;
	box-shadow: none !important;
	transition: background-color .22s ease, color .22s ease, transform .22s ease !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button:hover,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button:focus {
	background: #0B0B0B !important;
	color: #ffffff !important;
	outline: none !important;
	transform: translateY(-1px) !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active:hover,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active:focus {
	background: #C8A45D !important;
	color: #ffffff !important;
	transform: none !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__panel {
	animation: none;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__panel.is-active {
	animation: tdwRentalTabSlideInReal .26s ease both;
}

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


/* V1.5.3.13 - onglets produit : arrondis uniquement en bas */
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button,
.tdw-rental-product-tabs__button,
.tdw-rental-product-tabs__button:visited {
	border-radius: 0 0 10px 10px !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button:hover,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button:focus,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active:hover,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active:focus {
	border-radius: 0 0 10px 10px !important;
}


/* V1.5.5.3 - bloc client : dates, livraison, caution avant réservation */
.tdw-rental-info-box {
	display: grid;
	gap: 10px;
	margin: 18px 0;
	padding: 14px;
	border: 1px solid rgba(11, 11, 11, .10);
	border-radius: 16px;
	background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
	box-shadow: 0 12px 28px rgba(11, 11, 11, .06);
}

.tdw-rental-info-box__item {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	align-items: start;
}

.tdw-rental-info-box__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 12px;
	background: rgba(200, 164, 93, .14);
	font-size: 18px;
	line-height: 1;
}

.tdw-rental-info-box strong {
	display: block;
	margin-bottom: 2px;
	font-size: 14px;
	line-height: 1.25;
	color: #0B0B0B;
}

.tdw-rental-info-box span[data-tdw-info-dates],
.tdw-rental-info-box span[data-tdw-info-delivery],
.tdw-rental-info-box span[data-tdw-info-caution] {
	display: block;
	font-size: 13px;
	line-height: 1.35;
	color: rgba(11, 11, 11, .72);
}

@media (max-width: 640px) {
	.tdw-rental-info-box {
		margin: 14px 0;
		padding: 12px;
		border-radius: 14px;
	}

	.tdw-rental-info-box__item {
		grid-template-columns: 30px 1fr;
		gap: 9px;
	}

	.tdw-rental-info-box__icon {
		width: 30px;
		height: 30px;
		border-radius: 10px;
		font-size: 16px;
	}
}


/* V1.5.5.7 - Panier : livraison groupée lisible */
.tdw-cart-delivery-note {
	display: inline-block;
	margin-left: .35rem;
	font-size: .86em;
	font-weight: 600;
	color: #1f7a3f;
}

.tdw-cart-delivery-included {
	display: inline;
	white-space: nowrap;
	font-weight: 600;
	color: #1f7a3f;
}

@media (max-width: 768px) {
	.tdw-cart-delivery-note {
		display: block;
		margin-left: 0;
		margin-top: .15rem;
	}
}


.tdw-rental-associated {
	margin: 16px 0;
	padding: 14px;
	border: 1px solid rgba(15, 23, 42, 0.10);
	border-radius: 16px;
	background: #fff;
}

.tdw-rental-associated__head {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: baseline;
	margin-bottom: 10px;
}

.tdw-rental-associated__head strong {
	font-size: 15px;
}

.tdw-rental-associated__head span {
	font-size: 12px;
	color: #64748b;
}

.tdw-rental-associated__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.tdw-rental-associated__item {
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 10px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px;
	text-decoration: none;
	color: inherit;
	background: #f8fafc;
}

.tdw-rental-associated__item:hover {
	background: #f1f5f9;
}

.tdw-rental-associated__image img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 12px;
}

.tdw-rental-associated__body {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.tdw-rental-associated__body strong {
	font-size: 13px;
	line-height: 1.25;
}

.tdw-rental-associated__body small,
.tdw-rental-associated__body em {
	font-size: 12px;
	line-height: 1.25;
	color: #64748b;
	font-style: normal;
}

@media (max-width: 640px) {
	.tdw-rental-associated__head {
		display: grid;
	}

	.tdw-rental-associated__grid {
		grid-template-columns: 1fr;
	}
}

/* V1.5.5.9 - polish shortcode reservation */
.tdw-rental-shortcode__gallery {
	position: sticky;
	top: 140px;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button {
	border: 0 !important;
	border-radius: 10px 10px 0 0 !important;
	background: #e5e5e5 !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button:hover,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button:focus {
	background: #0B0B0B !important;
	color: #ffffff !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active:hover,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active:focus {
	background: #C8A45D !important;
	color: #ffffff !important;
}

@media (max-width: 900px) {
	.tdw-rental-shortcode__gallery {
		position: static;
		top: auto;
	}
}

/* V1.5.5.10 - ultime polish onglets shortcode */
.tdw-rental-shortcode .tdw-rental-product-tabs {
	margin-top: 65px !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav {
	display: flex;
	align-items: flex-end;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button {
	border: 0 !important;
	border-radius: 0 0 10px 10px !important;
	background: #e5e5e5 !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button:hover,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button:focus {
	background: #0B0B0B !important;
	color: #ffffff !important;
	border-radius: 0 0 10px 10px !important;
}

.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active:hover,
.tdw-rental-shortcode .tdw-rental-product-tabs .tdw-rental-product-tabs__nav button.tdw-rental-product-tabs__button.is-active:focus {
	background: #C8A45D !important;
	color: #ffffff !important;
	border-radius: 0 0 10px 10px !important;
}

/* V1.5.5.11 - mode de remise livraison / retrait */
.tdw-rental-fulfillment-field {
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 14px;
	background: #fffdf8;
}

.tdw-rental-fulfillment-field label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-right: 12px;
	font-weight: 600;
}

.tdw-rental-notice--error {
	padding: 12px 14px;
	border-radius: 12px;
	background: #fef2f2;
	color: #991b1b;
	font-weight: 600;
}

[data-tdw-delivery-address-field][hidden] {
	display: none !important;
}

/* V1.5.5.12 — résumé mode de remise panier/checkout */
.tdw-rental-fulfillment-summary {
	margin: 0 0 18px;
	padding: 14px 16px;
	border: 1px solid rgba(15, 23, 42, 0.12);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.tdw-rental-fulfillment-summary > strong {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
}

.tdw-rental-fulfillment-summary ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.tdw-rental-fulfillment-summary li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 7px 0;
}

.tdw-rental-fulfillment-summary small {
	color: #64748b;
}

.tdw-rental-fulfillment-summary p {
	margin: 10px 0 0;
	color: #475569;
	font-size: 13px;
}

.tdw-rental-fulfillment-pill {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.tdw-rental-fulfillment-pill--delivery {
	background: #eef6ff;
	color: #075985;
}

.tdw-rental-fulfillment-pill--pickup {
	background: #f1f5f9;
	color: #334155;
}

.tdw-rental-fulfillment-summary--checkout {
	margin-top: 18px;
}

/* V1.5.5.13 — UX mode de remise + verrouillage formulaire */
.tdw-rental-mode-field,
.tdw-rental-fulfillment-field {
	padding: 12px;
	border: 1px solid #e6d7b9;
	border-radius: 12px;
	background: #fffdf8;
}

.tdw-rental-fulfillment-option {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 2px 0;
}

.tdw-rental-fulfillment-option.is-disabled {
	opacity: .45;
	cursor: not-allowed;
}

.tdw-rental-fulfillment-option em {
	font-style: normal;
	font-size: 11px;
	text-decoration: none;
}

.tdw-rental-booking--disabled .tdw-rental-datepicker,
.tdw-rental-datepicker.is-disabled {
	opacity: .5;
	pointer-events: none;
}

.tdw-rental-booking--disabled .single_add_to_cart_button,
.tdw-rental-booking .single_add_to_cart_button:disabled {
	opacity: .55;
	cursor: not-allowed;
	filter: grayscale(.35);
}


/* V1.5.5.15 — polish tarifs et modes indisponibles */
.tdw-rental-booking-top {
	align-items: stretch !important;
}

.tdw-rental-best-rate {
	align-self: stretch !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	min-height: 100%;
}

.tdw-rental-fulfillment-option,
.tdw-rental-fulfillment-option span,
.tdw-rental-fulfillment-option em {
	text-decoration: none !important;
}

.tdw-rental-fulfillment-option.is-disabled {
	text-decoration: none !important;
}

@media (max-width: 680px) {
	.tdw-rental-booking-top {
		display: grid !important;
		align-items: stretch !important;
	}

	.tdw-rental-best-rate {
		width: 100% !important;
		min-height: auto;
	}
}

/* V1.5.5.19 — panier/checkout : métas location lisibles par blocs */
.tdw-cart-meta-card {
	margin-top: 7px;
	padding: 10px 12px;
	border: 1px solid rgba(15, 23, 42, 0.10);
	border-radius: 14px;
	background: #fffdf8;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
	font-size: 12px;
	line-height: 1.35;
}

.tdw-cart-meta-card__head {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 8px;
}

.tdw-cart-meta-pill,
.tdw-cart-meta-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}

.tdw-cart-meta-pill--delivery {
	background: #eef6ff;
	color: #075985;
}

.tdw-cart-meta-pill--pickup {
	background: #f1f5f9;
	color: #334155;
}

.tdw-cart-meta-pill--grouped,
.tdw-cart-meta-badge--grouped,
.tdw-cart-meta-badge--included {
	background: #ecfdf3;
	color: #166534;
}

.tdw-cart-meta-list {
	display: grid;
	gap: 5px;
	margin: 0;
}

.tdw-cart-meta-row {
	display: grid;
	grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1.2fr);
	gap: 8px;
	align-items: start;
}

.tdw-cart-meta-row dt,
.tdw-cart-meta-row dd {
	margin: 0;
}

.tdw-cart-meta-row dt {
	display: flex;
	gap: 5px;
	align-items: center;
	font-weight: 700;
	color: #475569;
}

.tdw-cart-meta-row dd {
	color: #0f172a;
	word-break: break-word;
}

.tdw-cart-meta-icon {
	flex: 0 0 auto;
}

@media (max-width: 768px) {
	.tdw-cart-meta-card {
		padding: 9px 10px;
	}

	.tdw-cart-meta-row {
		grid-template-columns: 1fr;
		gap: 2px;
	}
}
