/*
	Theme Name: Lithium Marketing
	Theme URI: https://lithiummarketing.com/
	Author: Lithium Marketing
	Author URI: https://lithiummarketing.com/
	Description: Thème par Lithium Marketing	
	Version: 2.0
	Text Domain: lithiummarketing
	Bootstrap 4
*/

* {
	margin: 0;
	padding: 0;
}

body {
    font-family: 'Kumbh Sans', sans-serif;
}

/*** --------- VARIABLES --------- ***/
:root {
	/*--primary-color: #5DA34D;*/
	--primary-color: #3e4714;
	--secondary-color: #8A8A8A;
}
/*** --------- END VARIABLES --------- ***/


/*** --------- FONT-SIZES --------- ***/
html {
    font-size: 20px;
}

h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #3e4714;
    font-family: 'Noto Serif KR', serif;
}

.banner h1 {
    font-weight: normal;
}

h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #a88c52;
    font-family: 'Noto Serif KR', serif;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #a88c52;
    font-family: 'Noto Serif KR', serif;
}

h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
}

h5 {
    font-size: 1.1rem;
    font-weight: normal;
    color: black;
}

#home .banner .banner-content h1 {
    font-size: 3.65rem;
    font-weight: normal;
    color: white;
    font-family: 'Noto Serif KR', serif;
}


#footer-content *:not(h5),
#footer-copyright {
    font-size: 0.8rem;
}

#footer-content .larger {
    font-size: 0.9rem;
}

.footer-scroll-button * {
    font-size: 1.5rem !important;
}
/*** --------- END FONT-SIZES --------- ***/


/*** --------- COLORS --------- ***/
.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

a {
    color: currentColor;
}

#footer-copyright {
    background-color: #8A8A8A;
    color: white;
}
/*** --------- END COLORS --------- ***/


/*** --------- GENERAL   --------- ***/
a:hover {
	text-decoration: none;
    color: var(--primary-color);
}
ul {
    list-style-position: inside;
}

hr {
    width: 150px;
    border-color: currentColor;
}

body.scroll-disabled {
    overflow-y: hidden;
}

.content li {
    list-style-type: "\f178";
    font-family: 'Font Awesome 5 Pro';
    margin-left: 20px;
    padding-left: 10px;
    list-style-position: initial;
}

li::marker {
    color: #3e4714;
}

/*** --------- END OF GENERAL --------- ***/


/*** --------- HELPER CLASSES --------- ***/
.object-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.object-contain {
    width: 100%;
	height: 100%;
	object-fit: contain;
}
/*** --------- HELPER CLASSES --------- ***/


/*** --------- COMPONENTS AND EFFECTS --------- ***/
.btn-theme {
    /*background-color: transparent;*/
    background-color: var(--primary-color);
    color: #fff;
    border: solid 1px var(--primary-color);
    font-size: 0.7rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 300;
    padding: 10px 15px 10px 25px;
    display: inline-block;
    transition: all ease 500ms;
    font-family: 'Lato', sans-serif;
}

.btn-theme::after {
    content: "\f178";
    font-family: 'Font Awesome 5 Pro';
    margin-left: 10px;
    font-weight: 600;
}

.btn-theme:hover {
    /*background-color: var(--primary-color);
    border-color: var(--primary-color);
	color: white !important;*/
	opacity: 0.75;
    transition: all ease 500ms;
}

.btn-theme:focus {
    background-color: var(--primary-color);
    color: white !important;
	outline: none !important;
    transition: all ease 500ms;
}

.btn-filter {
    border: solid 1px var(--primary-color);
    padding: 5px 25px 5px 25px;
    display: inline-block;
    font-family: 'Lato', sans-serif;
    outline: none !important;
    transition: all ease 300ms;
    position: relative;
}

#home .btn-filter {
    padding: 5px 30px 5px 25px;
}

.btn-filter.active {
    /*background-color: #B7B7B7;*/
    background-color: var(--primary-color);
    color: white;
    transition: all ease 300ms;
}

#home .btn-filter.active::after {
    content: '\f00d';
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    right: 10px;
    margin-left: 10px;
}

#home .btn-filter.active:hover::after {
    color: #8A8A8A !important;
}

.btn-back {
    padding: 10px 25px 10px 15px;
}

.btn-back::after {
    content: none;
}

.btn-back::before {
    content: "\f177";
    font-family: 'Font Awesome 5 Pro';
    margin-right: 10px;
    font-weight: 600;
}

#main-navbar a {
    color: black;
    font-size: 0.7rem;
    font-weight: normal;
    text-transform: uppercase;
    margin-left: 5px;
    margin-right: 5px;
    padding-top: 0;
    padding-bottom: 0;
}

#main-navbar a:hover,
#main-navbar .active a,
#main-navbar .current-page-ancestor a {
    /*color: var(--primary-color) !important;*/
    color: #8b4f1f !important;
}

.menu-item-has-children .current_page_item {
	background-color: var(--primary-color);
}
.menu-item-has-children .current_page_item a {
	color: white !important;
}

.menu-item-has-children li a {
	color: black !important;
	margin-left: 0 !important;
}

.menu-item-has-children .dropdown-item:hover {
	background-color: var(--secondary-color);
	color: white !important;
}

#main-header #menu-main li:last-child a {
    margin-right: 0;
    padding-right: 0;
}

#menu-col .navbar-toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
}

#menu-top a,
#menu-bottom a {
    font-family: 'Lato', sans-serif;
    padding: 5px 15px;
    transition: all 300ms;
}

#menu-top a:hover {
    background-color: #3e4714;
    color: white;
    transition: all 300ms;
}

#menu-top .btn-phone,
#menu-top .btn-email {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}

#menu-top .btn-cart,
#menu-top .btn-facebook{
    border: solid 1.5px var(--primary-color);
    color: var(--primary-color);
    border-top: none;
}

#menu-bottom {
    padding-top: 0.5rem;
    position: absolute;
    right: 0;
    top: 100%;
}

#menu-bottom a {
    color: white;
    font-weight: normal;
    transition: all 300ms;
    font-size: 0.8rem;
}

#menu-bottom a::after {
    content: "\f178";
    font-family: 'Font Awesome 5 Pro';
    margin-left: 10px;
    font-weight: 600;
}

#menu-bottom .btn-reservation {
    background-color: #8b4f1f;
}

#menu-bottom .btn-giftcard {
    background-color: var(--primary-color);
}

#menu-bottom a:hover {
    background-color: white;
    color: var(--primary-color);
}
/*** --------- END COMPONENTS AND EFFECTS --------- ***/


/*** --------- POSITIONS AND DISPLAY --------- ***/
#home .banner {
    height: 600px;
}
.banner-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner-text {
    position: relative;
    line-height: 1;
    z-index: 10 !important;
}

.footer-coordinates {
    display: flex;
    justify-content: center;
}

.footer-scroll-button {
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-coordinates .fa-ul {
    margin-left: 1.5rem;
}

.footer-scroll-button a {
	display: flex;
	justify-content: center;
	align-items: center;
}
/*** --------- END POSITIONS AND DISPLAY --------- ***/

#main-header {
	position: fixed;
	width: 100%;
	z-index: 999;
	transition: all 500ms;
}

#main-header #header-wrapper {
    padding-bottom: 0.5rem;
}

#main-header #logo-col img {
    max-height: 100px;
}

#home {
    overflow: hidden;
}


#conditions {
    position: fixed;
    top: 0;
    z-index: 1000;
    overflow-x: hidden;
    transition: all 0s ease 500ms, left 500ms;
}

#conditions .content {
    position: fixed;
    padding: 0;
    background-color: white;
    left: 100%;
    width: 0;
    height: 100%;
    visibility: hidden;
    transition: all 0ms ease 500ms, left 500ms;
}

#conditions.open .content {
    width: 50%;
    left: 50%;
    padding: 4rem;
    visibility: visible;
    transition: left 500ms;
    overflow-y: scroll;
}

#conditions #green-background {
    position: fixed;
    height: 100%;
    width: 100vw;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(162, 192, 156, 0.7);
    transition: all 250ms;
    z-index: -1;
}

#conditions.open #green-background {
    visibility: visible;
    opacity: 1;
    transition: all 250ms;
}

#conditions.open #green-background:hover {
    cursor: pointer;
}


#conditions-opener {
    position: fixed;
    top: 50%;
    right: 0;
    padding: 15px 10px 20px 10px;
    transform: translateY(-50%) rotate(180deg);
    background-color: white;
    color: var(--primary-color);
    writing-mode: vertical-rl;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: 'Noto Serif KR', serif;
    z-index: 999;
    border: solid 0.5px grey;
    border-left: none;
}

#conditions-opener::before {
    content: "\f177";
    font-family: 'Font Awesome 5 Pro';
    margin-bottom: 10px;
    font-weight: 600;
}

#conditions-opener:hover {
    cursor: pointer;
}

#conditions #close-btn {
    color: var(--primary-color);
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.2rem;
}

#conditions #close-btn:hover {
    cursor: pointer;
}

#section_quicklinks {
    margin-top: -6%;
}

#section_quicklinks .quick_link {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#section_quicklinks .quick_link:hover {
    background-color: white !important;
    transition: all 500ms;
}

#section_quicklinks .quick_link i {
    font-weight: 600;
}

#section_quicklinks .quick_link:nth-child(odd) {
    background-color: #3e4714;
    border: solid 2px #3e4714;
}
#section_quicklinks .quick_link:nth-child(odd):hover * {
    color: #3e4714 !important;
    transition: all 500ms;
}

#section_quicklinks .quick_link:nth-child(even) {
    background-color: #5a5b1e;
    border: solid 2px #5a5b1e;
}
#section_quicklinks .quick_link:nth-child(even):hover * {
    color: #5a5b1e !important;
    transition: all 500ms;
}

#section_courses {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#section_courses .img-fit {
    width: fit-content;
}

#section_promotions .subscription_title,
#section_subscriptions .subscription_title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#section_promotions .subscription .sale_info,
#section_subscriptions .subscription .sale_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    border-color: var(--primary-color) !important;
}

#section_promotions .subscription,
#section_subscriptions .subscription {
    border: solid 1px var(--primary-color);
}

#section_calendar {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
}

#section_calendar * {
    color: white !important;
}

#main-header.scrolled #menu-top {
    padding-bottom: 0.5rem !important;
    transition: all 500ms;
}

#main-header.scrolled #menu-top a {
    padding: 2.5px 15px;
    font-size: 0.8rem;
    transition: all 500ms;
}

#main-header.nav-down {
    max-height: 200px;
}
#main-header.nav-up {
    max-height: 0px;
    overflow: hidden;
}

#main-navbar {
	justify-content: flex-end;
}

.form-control {
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    height: 55px;
    border-width: 2px;
}

.form-control:hover,
.form-control:active,
.form-control:focus {
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}

.form-control:active {
    border-color: #043265;
}

.form-control:focus {
    border-color: #043265;
}

#menu-footer a {
    padding: 0;
    margin: 2px 0;
}

.btn-collapse {
	border: none;
	text-align: left;
	padding: 15px 0px;
    margin-bottom: 0;
	position: relative;
    outline: none !important;
    width: 100%;
    font-family: 'Lato', sans-serif;
}

.btn-collapse:hover {
    cursor: pointer;
}

.subscription ul {
    list-style-position: outside;
    margin-left: 1.25rem;
}

.subscription ul li::marker {
    font-size: 1.5rem;
}


.btn-collapse::before,
.btn-collapse::after {
    font-family: 'Font Awesome 5 Pro', sans-serif;
}

.btn-collapse::before {
    content: '\f068';
	margin-right: 15px;
	color: black;
}

.btn-collapse.collapsed::before {
	content: '\f067';
}

#page-course .course-wrapper {
    background-repeat: no-repeat;
    background-position: bottom;
}

.course-table thead th {
    border: none !important;
    padding: 0;
}

.course-table tbody,
.course-table td {
    border: solid 1px var(--primary-color) !important;
}

.course-table table thead {
    text-transform: uppercase;
    text-align: center;
    font-size: 0.8rem;
}

.course-table table td {
    font-size: 1.2rem;
    font-weight: bold;
    color: black;
    text-align: center;
}

#page-course .hole {
    border: solid 1px var(--primary-color);
}

#page-course .hole img {
    width: 150px;
    object-fit: contain;
}

#page-course .hole div *:not(hr) {
    margin-top: 5px;
}

#page-course .hole .distance {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    color: black;
}

#page-course .hole .hole-name {
    color: #A1A0A0;
    font-size: 1.1rem;
    font-family: 'Noto Serif KR', serif;
}

#page-course .hole .distance::after {
    content: "  \f178  " attr(data-distance);
    font-family: 'Font Awesome 5 Pro', 'Kumbh Sans';
}

#page-course .hole .distance-color::after {
    text-transform: uppercase;
    font-family: 'Font Awesome 5 Pro', 'Kumbh Sans';
    content: "distance  \f178  " attr(data-distance);
    color: black;
}

#page-course .hole .distance-color::before {
    content: "-";
    display: inline-block;
    width: 25px;
    margin-right: 10px;
    background-color: currentColor !important;
}

#page-tarifs table {
    border-bottom: solid 1px var(--primary-color) !important;
}

#page-tarifs thead th {
    font-size: 0.7rem;
    font-weight: normal;
}

#page-tarifs thead th,
#page-tarifs tbody td {
    border-top: none;
    border-bottom: none;
}

#page-tarifs tbody tr:first-of-type {
    border-top: solid 1px var(--primary-color) !important;
}

#page-tarifs tbody tr {
    border-left: solid 1px var(--primary-color) !important;
    border-right: solid 1px var(--primary-color) !important;
}

#page-tarifs table.table-striped tbody tr:nth-of-type(odd) {
    background-color: white;
}
#page-tarifs table.table-striped tbody tr:nth-of-type(even) {
    /*background-color: #E5F0E2;*/
    background-color: #E5E5E5;
}

#page-tarifs tbody td {
    vertical-align: middle;
}

#page-tarifs .check-buy {
    position: relative;
    height: 20px;
    width: 20px;
}
#page-tarifs .check-buy::before {
    content: '';
    background-color: white;
    width: 100%;
    height: 100%;
    position: absolute;
    line-height: 1;
    border: solid 1.5px black !important;
}

#page-tarifs .check-buy:checked::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro';
}

#page-tarifs .check-buy:hover {
    cursor: pointer;
}

/* #popmake-181.pum-container {
    height: calc(100vh - 300px) !important;
    top: 150px !important;
    overflow: scroll !important;
} */

html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
    padding-right: inherit !important;
}
html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
    overflow-y: scroll !important;
}

html.pum-open.pum-open-overlay.pum-open-scrollable .pum-overlay.pum-active {
    overflow: hidden !important;
}

html.pum-open.pum-open-overlay, html.pum-open.pum-open-overlay.pum-open-fixed .pum-overlay {
    overflow: hidden!important;
}
#menu-main .menu-item-object-custom.nav-item{
	display:none !important;
}

.pum-close:focus {
    outline: none !important;
}

.wpcf7-submit {
    padding: 10px 15px 10px 15px !important;
}
.wpcf7-submit::after {
    content: none;
}

.checkout-button,
#place_order,
.single_add_to_cart_button {
    background-color: var(--primary-color) !important;
    transition: all 500ms;
}
.checkout-button:hover,
#place_order:hover,
.single_add_to_cart_button:hover {
    background-color: #4C873F !important;
    transition: all 500ms;
}

.single_add_to_cart_button:focus {
    outline: none;
}

.woocommerce .col-1,
.woocommerce .col-2 {
    max-width: 50% !important;
    padding-left: 0;
    padding-right: 0;
}

.woocommerce .coupon #coupon_code,
.woocommerce #pwgc-redeem-gift-card-number {
    width: 150px;
    font-size: 0.8rem;
}

.woocommerce h1,
.woocommerce h2 {
    margin-bottom: 1rem;
}

.woocommerce .woocommerce-additional-fields #order_comments_field {
    flex-direction: column;
}

.woocommerce-info {
    border-color: var(--primary-color);
}

.woocommerce-info::before {
    color: var(--primary-color);
}

.service-block td:first-child {
    width: 172px;
}
.service-block td:nth-child(2) {
    padding-left: 1rem;
}

.quantity{
    text-align: right;
    margin-bottom: 10px;
}

/* Ajout Accueil Distinctions et Engagements */

.distinctions {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.distinctions h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #3e4714;
}

.distinctions .container {
  max-width: 1200px;
  margin: 0 auto;
}

.distinctions .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.distinctions {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.distinctions h3 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: #1d392a;
}

.distinctions p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}

.distinctions .logo {
  margin-bottom: 15px;
  object-fit: contain;
  display: block;
  margin-top: 30px;
}

/**** MODIFICATION 02-2026 ****/
/* ==========================================================================
SECTION ACCUEIL : DUO STRATÉGIQUE (Parcours vs Abonnements)
========================================================================== */

#section_duo_strategique .duo-titre {
    color: #a88c52;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: 'Noto Serif KR', serif;
}

#section_duo_strategique .duo-soustitre {
    color: #1b3b27; 
    font-size: 1.4rem;
    /*font-family: 'Kumbh Sans', sans-serif;*/
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    display: block;
    padding: 0 1em;
}

#section_duo_strategique .duo-texte {
    color: #444444;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    padding: 0 15px;
}

/* Le séparateur vertical au centre */
#section_duo_strategique .duo-separateur {
    position: absolute;
    left: 50%;
    top: 5%;
    bottom: 5%;
    width: 1px;
    background-color: #e0d5ba; 
    transform: translateX(-50%);
    z-index: 0;
}

/* BOUTONS OR / CHAMPAGNE */
.btn-gold-filled {
    background-color: #a88c52;
    color: white !important;
    border: solid 1px #a88c52;
    font-size: 0.8rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    padding: 12px 20px 12px 25px;
    display: inline-block;
    transition: all ease 300ms;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
}

.btn-gold-filled::after {
    content: "\f178"; /* Flèche Font Awesome */
    font-family: 'Font Awesome 5 Pro';
    margin-left: 10px;
    font-weight: 600;
}

.btn-gold-filled:hover {
    background-color: #8c7340;
    border-color: #8c7340;
    color: white !important;
}

.btn-gold-outline {
    background-color: transparent;
    color: #a88c52 !important;
    border: solid 1px #a88c52;
    font-size: 0.8rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
    padding: 12px 20px 12px 25px;
    display: inline-block;
    transition: all ease 300ms;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
}

.btn-gold-outline::after {
    content: "\f178"; /* Flèche Font Awesome */
    font-family: 'Font Awesome 5 Pro';
    margin-left: 10px;
    font-weight: 600;
}

.btn-gold-outline:hover {
    background-color: #a88c52;
    color: white !important;
}

/* ==========================================================================
SECTION DISTINCTIONS ET ENGAGEMENTS (AJUSTEMENTS MAQUETTE)
========================================================================== */

.titre-distinctions {
    color: #a88c52;
    font-family: 'Noto Serif KR', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#section_distinctions_chic .col-md-6 > div.position-relative {
    justify-content: center !important;
    padding-left: 3rem !important;
}

#section_distinctions_chic .col-md-6 .position-absolute {
    background: linear-gradient(to right, rgba(17, 44, 30, 0.95) 0%, rgba(17, 44, 30, 0.85) 45%, rgba(17, 44, 30, 0) 100%) !important;
}

#section_distinctions_chic .gold-text {
    color: #fff !important;
    font-size: 1rem !important;
    line-height: 1.1;
    margin-bottom: 20px !important;
    max-width: 80%;
}

#section_distinctions_chic p.text-white {
    font-size: 14px !important;
    line-height: 1.6;
    max-width: 60% !important; transparente */
    margin-bottom: 30px !important;
}

#section_distinctions_chic .row:last-child > .col-12 > div {
    background-color: #112c1e !important;
    flex-direction: column !important;
    padding: 30px 20px !important;
}

#section_distinctions_chic .row:last-child img {
    height: 60px !important;
    margin: 0 15px !important;
}

#section_distinctions_chic .row:last-child .mx-4 {
    display: none !important;
}

#section_distinctions_chic .row:last-child .text-white {
    text-align: center !important;
    max-width: 800px !important;
    margin-top: 15px !important;
    font-size: 0.95rem !important;
}

/* ==========================================================================
   ONGLETS DE LA PAGE PARCOURS
   ========================================================================== */
#page-course .banner.position-relative {
    min-height: 45vh;
    overflow: hidden;
}

.btn-parcours-tab {
    border-radius: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    background-color: transparent !important;
    color: #ffffff !important;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
}

.btn-parcours-tab:hover,
.btn-parcours-tab.active {
    border-color: #a88c52 !important;
    background-color: #a88c52 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(168, 140, 82, 0.3);
}

@media(max-width: 800px) {
    #page-course .banner.position-relative {
        min-height: 45vh;
        overflow: hidden;
        padding-bottom: 2em;
    }
    
    .socials.ml-auto {
        margin: auto !important;
    }
    
    .home .pum-container {
        top: 7em !important;
        height: auto !important;
        overflow: scroll !important;
    }
    
/* ==========================================================================
MENU PRINCIPAL MOBILE
========================================================================== */

ul#menu-main {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    align-items: left !important;
    width: 100% !important;
    margin: 30px 0 0 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

ul#menu-main > li {
    order: 1 !important;
    display: block !important;
    border-top: 1px solid #ccc;
}


ul#menu-main > li .nav-link {
    font-family: 'Noto Serif KR', serif;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    color: #112c1e !important;
    padding: 10px 15px !important;
    transition: color 0.3s ease;
}

ul#menu-main > li .nav-link:hover,
ul#menu-main > li.current-menu-item .nav-link {
    color: #a88c52 !important;
}

ul#menu-main::after {
    content: "";
    display: block !important;
    width: 100% !important;
    height: 0px;
    order: 2 !important;
    margin: 5px 0 !important;
}

ul#menu-main > a {
    order: 3 !important;
    display: inline-flex !important;
    align-items: center;
    margin-left: 25px !important;
    font-family: 'Kumbh Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666 !important;
    text-decoration: none !important;
    padding-bottom: 15px;
}

/* Icônes dorées */
ul#menu-main > a i {
    margin-right: 8px;
    font-size: 1rem;
    color: #a88c52 !important;
}
ul#menu-main > a:hover {
    color: #a88c52 !important;
}

ul#menu-main a.btn-facebook.btn-top.order-2,
ul#menu-main a.btn-facebook.btn-top{
    display: none!important;
}


/* --- LE BOUTON CARTE-CADEAU --- */
ul#menu-main > a.btn-reservation {
    background-color: #a88c52 !important;
    color: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 20px 0 0 20px !important;
    box-shadow: none !important;
    width: max-content !important; 
    align-self: flex-start !important;
}
ul#menu-main > a.btn-reservation:hover {
     background-color: #112c1e !important;
     color: #fff !important;
}
    
}

/* ==========================================================================
PAGE TARIFS
========================================================================== */
    #page-tarifs #section_quicklinks {
        position: relative;
        z-index: 10;
    }
    
/* ==========================================================================
PAGE PANIER
========================================================================== */
    
    .woocommerce-cart .site-header {
        background-color: transparent !important;
        position: absolute;
        width: 100%;
        top: 0;
        z-index: 999;
    }
    
    .woocommerce-cart .entry-title {
        margin-top: 40px;
        text-align: center;
        font-family: 'Playfair Display', serif; /* Ou la police de ton thème */
    }

@media(min-width:1200px){
#header-wrapper.container{max-width:1280px;}
}