/* Style personnalisé pour l'éditeur de description WooCommerce */
#postexcerpt .wp-editor-area {
    color: black !important;
    /* Remplacez par la couleur de texte souhaitée */
}


/* Reset Style */

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    color: var(--color-darkgrey);
    height: 100%;
}

body {
    margin: 0 50px;
}

body:has(#contact) {
    height: 100vh;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--color-darkgrey);
}

:root {
    --color-primary: #E66745;
    --color-darkgrey: #252727;
    --color-lightgrey: #777777;
}


#header {
    height: 110px;
    font-family: 'bilo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 0;
}

#header>nav {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-darkgrey);
    padding-bottom: 20px;
}

#header>nav>ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    flex: 2;
}

/* #header #logo, */
#header #menu_actions {
    height: 100%;
    flex: 1;
    display: flex;
}

#header #logo {
    height: 100%;
    flex: 1;
}

#header #logo img.desktop,
#header #menu_actions img {
    height: 100%;
    /* aspect-ratio: 1; */
}


#menu_actions {
    align-items: center;
    justify-content: end;
    gap: 40px;
}

#menu_actions input {
    display: none;
}

#menu_actions label {
    display: block;
    height: 40%;
    aspect-ratio: 1/1;
    cursor: pointer;
}

#header ul li.current-page a {
    color: var(--color-primary) !important;
}

#header ul a {
    letter-spacing: 0.15em;
    display: inline-block;
    padding: 15px 5px;
    position: relative;
}

#header ul a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    background: var(--color-primary);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

#header ul a:hover:after {
    width: 100%;
    left: 0;
}

#burger {
    display: none;
    width: 40px;
    height: 40px;
    z-index: 2;
}

#burger input {
    display: none;
}

#burger label {
    display: flex;
    height: 100%;
    width: 100%;
    cursor: pointer;
    flex-flow: column;
    justify-content: space-around;
}

#burger span {
    width: 100%;
    height: 3px;
    background-color: var(--color-darkgrey);
    border-radius: 9999px;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#burger label span:nth-child(1) {
    transform-origin: 0% 0%;
}

#burger input:checked~label span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #36383F;
}

#burger input:checked~label span:nth-child(1) {
    transform: rotate(45deg);
}

#burger input:checked~label span:nth-child(2) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

#burger label span:nth-child(3) {
    transform-origin: 0% 100%;
}

#burger input:checked~label span:nth-child(3) {
    transform: rotate(-45deg) translate(-1px, 0);
}

#icon_account {
    margin-top: 7px !important;
}

.panel {
    height: 100%;
    width: 80%;
    position: absolute;
    top: 0;
    right: 0;
    /* transform: translateX(100%); */
    transition: max-width 0.5s ease-in-out;
    font-size: 1.8em;
    font-weight: 900;
    font-family: "Montserrat";
    background: White;
    box-shadow: none;
    max-width: 0;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    z-index: 1;
}

.panel_menu {
    margin-top: 110px;
}

.panel * {
    opacity: 0;
    transition: opacity 1s ease;
}

.panel_top {
    display: flex;
    justify-content: flex-start;
    margin-top: 30px;
    gap: 30px;
    margin-left: 20px;
}

.panel_top a {
    margin-top: -4px;
}

.panel_top .cart-count {
    background-color: white;
}

.panel_reseaux {
    display: flex;
    justify-content: space-evenly;
    height: 30px;
}

.panel_reseaux img {
    height: 100%;
    object-fit: contain;
}


.active_panel {
    /* transform: translateX(0) !important; */
    box-shadow: rgba(37, 39, 39, 0.5) 0px 0px 9999px;
    max-width: 80%;
}


.mobile {
    display: none !important;
}

.mobile a {
    display: flex;
    height: 100%;
}

.mobile a img:last-child {
    height: 55%;
    margin: auto;
}

.spacer,
.divider {
    flex-grow: 1 !important;
}

.divider {
    width: 2px;
    background: var(--color-darkgrey);
    margin: 10px 0;
}

.divider.horizontal {
    width: 100%;
    height: 2px;
    margin: 100px 0;
}

.divider.horizontal.separator {
    margin: 50px 0;
    width: 70%;
    height: 1px;
}

.panel.active_panel * {
    opacity: 1;
}


.cart-count {
    position: relative;
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 0 5px;
    border-radius: 50%;
    top: -15px;
    left: 8px;
}


/* ///////////////////////////////////////// */

.main_image {
    position: relative;
    /* height: 400px; */
    /* height: clamp(300px, 50vw, 400px); */
    
spect-ratio: 1;
    width: 100%
    margin-left: auto;
    margin-right: auto;

}

.main_image img {
    
    	width: 100%;
   	height:100%;
	object-fit: cover;
    	filter: brightness(.8);
}

.container {
  display: flex;
  object-fit: cover;
}

.container img {
  margin-left: auto;
  max-height: 550px;
  margin-right: auto;
  border: solid black 3px;
  max-width: 100%;
}


.main_content {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* position: absolute; */
    top: 0;
    left: 0;
    /* height: 100%; */
    margin: 50px 200px;
    background-size: cover;

}

.main_content h1 {
    /* font-size: 2.5em; */
    font-size: clamp(1.5em, 5vw, 2.5em);
    font-family: 'bilo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: inherit;
    border-bottom: solid 9px var(--color-primary);
    padding: 5px 0;
    text-align: -webkit-center;
    width: fit-content;
    margin: 20px auto;
}

.main_content p {
    /* font-size: 1em; */
    font-size: clamp(1em, 3vw, 1.5em);
    font-family: 'bilo', sans-serif;
    color: inherit;
    width: 100%;
	  text-align: -webkit-center;
    margin-top: 0px;
    margin-bottom: 0px;
    white-space: break-spaces;
}

/* ///////////////////////////////////////// */

#contact {
    display: flex;
    justify-content: center;
    gap: 200px;
}

#contact .contact_content,
#contact .contact_form {
    max-width: 40%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

#contact .contact_content {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

#contact .contact_content h1 {
    /* font-size: 2.5em; */
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0;
}

#contact .contact_info {
    text-align: center;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 20px;
}

#contact .contact_info_icon {
    display: block;
    height: 10px;
    width: 10px;
    background-color: var(--color-primary);
    transform: rotate(45deg);
}

#contact .contact_form {
    display: block;
    width: 40%;
}

#contact .contact_form .wpforms-form {
    width: 100%;
}

#contact .contact_form input,
#contact .contact_form textarea {
    border: var(--color-darkgrey) solid 2px;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    resize: none;
}

#contact .contact_form input::placeholder,
#contact .contact_form textarea::placeholder {
    color: var(--color-darkgrey);
}

#contact .contact_form .wpforms-submit-container {
    text-align: center;
}

#contact .contact_form .wpforms-submit-container button {
    background-color: var(--color-primary);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.2em;
    cursor: pointer;
}

#contact .contact_form .wpforms-container,
#contact .contact_form .wpforms-container form,
#contact .wpforms-field-container {
    margin: 0;
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

#contact .wpforms-field-container {
    gap: 40px;
}

#contact .contact_form .wpforms-field {
    padding: 0;
}

/* ///////////////////////////////////////// */

#actu_recent {
    display: flex;
    flex-flow: column;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    /* gap: 50px; */
}

#actu_recent h1 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    margin-top: 0;
    position: relative;
    /* width: fit-content; */
    padding-bottom: 15px;
    margin-bottom: 50px;
}

#actu_recent h1:after {
    content: '';
    position: absolute;
    top: 100%;
    height: 3px;
    background: var(--color-primary);
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
}



#actu_recent .button {
    background: var(--color-primary);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 70px;
}

.actualite {
    display: flex;
    justify-content: space-around;
    font-size: 18px;
    line-height: 1.5;
    height: 50vh;
}

.actualite>* {
    flex: 1;
    max-width: 40%;
    overflow: auto;
    height: 100%;
}

.actualite>div:last-child {
    max-width: 50%;
}

.actualite img {
    height: 100%;
    object-fit: contain;
}

.actualite.revert {
    flex-flow: row-reverse;
}

.actualite_content {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    padding-top: 0 !important;
    position: relative;
}

.actualite_content h1 {
    font-size: 20px;
    padding: 20px 0 !important;
    position: sticky !important;
    top: 0;
    background: white;
    box-shadow: lightslategray 0px 1px 20px;
}

.actualite_content h1:after {
    height: 2px !important;
    width: 100% !important;
}

.actualite_content>*:not(h1) {
    padding: 0px 20px !important;
}

.actualite_content::-webkit-scrollbar {
    width: 16px;
}

.actualite_content::-webkit-scrollbar-track {
    border-radius: 8px;
}

.actualite_content::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid transparent;
    background-clip: content-box;
    background-color: #cccccc;
}

@media screen and (max-width: 768px) {
    .actualite {
        flex-flow: column !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important;
        border-radius: 8px !important;
        height: 75vh;
    }

    .actualite>* {
        max-width: none !important;
        width: 100%;
        flex: auto;
    }

    .actualite_content {
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .actualite h1,
    .actualite h2 {
        font-size: 16px !important;
    }

    .actualite h1 {
        margin-bottom: 10px !important;
    }

    .actualite img {
        height: 50%;
        object-fit: contain;
        width: 50%;
        place-self: center;
    }

    .actu {
        gap: 0 !important;
        margin-top: 0 !important;
    }

    .about {
        flex-flow: column;
        padding: 0 !important;
    }
}

/*----------------------------------------ABOUT----------------------------------------*/

.about {
    display: flex;
    flex-flow: column;
    gap: 100px;
    padding: 0 100px;
}

.about img {
    width: 70%;
    object-fit: cover;
    place-self: center;
}

.about_content {
    overflow: visible;
    line-height: 1.5;

    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#actu_recent input {
    display: none;
}

#actu_recent label {
    background: var(--color-primary);
    color: white;
    padding: 20px;
    font-size: 16px;
    width: fit-content;
    align-self: center;
}

#actu_recent label span:last-child {
    display: none;
}

#actu_recent input:checked+.about_content {
    -webkit-line-clamp: unset;
}

#actu_recent input:checked~label span:last-child {
    display: block;
}

#actu_recent input:checked~label span:first-child {
    display: none;
}


/*----------------------------------------FOOTER----------------------------------------*/

#footer {
    height: 100px;
    font-family: 'montserrat', sans-serif;
    font-weight: 600;
    margin: 50px 0px;
}

#footer nav {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-top: 2px solid var(--color-darkgrey);
    color: var(--color-darkgrey);
    font-weight: 400;
}


#footer nav ul {
    margin: 0;
    list-style: none;
    height: 100%;
    line-height: 25px;
}

#footer-social img {
    width: 20px;
}

#icon-facebook {
    width: 10px !important;
}

#icon-pinterest {
    width: 16px !important;
}

#icon-instagram {
    width: 20px !important;
}

#footer-social {
    display: flex;
    flex-direction: row;
    width: 150px;
    justify-content: space-evenly;
}

#footer-col-1 {
    line-height: 10px;
}

#footer-col-1-name {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 20px;
}

#footer-col-1-describe {
    color: var(--color-darkgrey);
    font-weight: 400;
}

#footer-col-2-ul,
#footer-col-3-ul {
    border-left: 4px solid var(--color-primary);
    padding-left: 10px;
}

#footer-col-2 li {
    margin-right: 10px;
}

#footer-col-2 ul li a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 768px) {

    #footer {
        margin: 100px 0;
    }

    .nav-footer {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    #footer nav {
        display: flex;
        flex-direction: column;
        height: 200px;
    }

    #footer-social {
        margin-top: 20px;
    }

    .footer-bloc-1 {
        margin-top: 32px !important;
    }

    .footer-bloc-2 {
        margin-left: 0 !important;
    }

    .footer-bloc-3 {
        margin-left: -20px !important;
        margin-top: 40px;
    }

}


/*----------------------------------------GALERIE----------------------------------------*/

.preview-galerie {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 50px;
}

.bloc_1 > div {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    padding: 20px !important;
}

.bloc_2 > div {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    padding: 20px !important;
}

.bloc-preview-galerie > div {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    padding: 20px !important;
}

div .product {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px !important;
    padding: 20px !important;
    overflow: hidden
}

.bloc-preview-galerie {
    margin-top: 40px;
}

.preview-galerie img {
    width: 400px;
    height: 300px;
    display: flex;
    flex-direction: row;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.preview-galerie img:hover {
    transform: scale(1.1);
}


@media screen and (max-width: 768px) {
    .preview-galerie img {
        width: 100%;
    }
}

.bloc_1,
.bloc_2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 80px;
}

@media screen and (max-width: 991px) {
    .preview-galerie {
        flex-direction: column;
        align-items: center;
        margin-top: 80px;
    }
}

.bloc-preview-galerie {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
}

.middle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 0.5px solid var(--color-darkgrey);
}

#oeuvre {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-darkgrey);
}

#titre-oeuvre {
    font-weight: 600;
    font-size: 20px;
    color: var(--color-darkgrey);
}

#dimensions-oeuvre {
    font-weight: 400;
    font-size: 16px;
    color: var(--color-lightgrey);
}

#details-oeuvre {
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    line-height: 0px;

    font-family: 'montserrat', sans-serif;
    border-left: 4px solid var(--color-primary);
    padding-left: 10px;
}

.bloc-bouton {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#bouton-galerie:hover {
    background-color: #FF8F73;
    transition: background-color;
}

#bouton-galerie {
    padding: 10px 20px;
    text-transform: uppercase;
    font-family: 'montserrat', sans-serif;
    background-color: var(--color-primary);
    color: white;
    font-weight: 400;
    border: none;
}


/*----------------------------------------PAGE PRODUIT SINGLE----------------------------------------*/

.single-product {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 50px 0 70px 0;
    font-family: 'montserrat', sans-serif;
}

.product-border {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--color-primary);
    padding-left: 10px;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin-top: 50px;
    width: 350px;
}

.product-info .product-title,
.product-price {
    font-size: 24px;
    font-weight: 600;
}

.product-info .product-title {
    margin-bottom: 5px;
}

.product-info .product-dimensions {
    color: #777777;
    font-size: 17px;
    font-weight: 400;
    margin-top: 1px;
}

.product-image {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.single-product .product-image img {
    max-width: 500px;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.single-product .product-image img:hover {
    transform: scale(1.05);
}

.single_add_to_cart_button {
    text-transform: uppercase;
    background-color: var(--color-primary);
    padding: 10px 25px;
    border: none;
    color: white;
    font-size: 15px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    margin-top: 50px;
}

.single_add_to_cart_button:hover {
    background-color: #ff6b4a;
    transition: background-color;
    opacity: 0.8;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

@media screen and (max-width: 768px) {
    .single-product {
        flex-direction: column !important;
        align-items: center !important;
    }

    .product-image {
        align-items: center;
        margin-top: 0 !important;
    }

    .product-image img {
        width: 90% !important;
    }

    .product-info {
        margin-left: 90px;
    }

    .product-info,
    h1 {
        font-size: 20px !important;
    }

    .product-info,
    p {
        font-size: 16px !important;
    }

    .product-price {
        margin-top: 5px;
        margin-bottom: 5px;
    }
}

/*----------------------------------------PAGE TERMES CONDITIONS----------------------------------------*/

body>* {
    margin: 0;
    padding: 0;
    font-family: 'montserrat', sans-serif;
}

.page-navigation {
    text-align: center;
    margin-bottom: 20px;
}

.page-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.page-navigation li {
    margin-right: 10px;
}

.page-navigation a {
    text-decoration: none;
    padding: 10px 20px;
    background-color: white;
    color: var(--color-primary);
    border-radius: 5px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.page-navigation a:hover {
    background-color: var(--color-primary);
    color: white;
}

.page-navigation .active {
    background-color: var(--color-primary);
    color: white;
}

.mentions-conditions {
    padding: 50px;
}

.mentions-conditions main {
    margin: 20px;
}

.mentions-conditions h1,
.mentions-conditions h2,
.mentions-conditions h3 {
    margin-bottom: 10px;
    color: var(--color-primary);
}

.mentions-conditions .page-section {
    margin-bottom: 30px;
    background-color: #f8f8f8;
    padding: 20px;
}

.mentions-conditions .page-section>h3 {
    font-size: 1.17em !important;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

@media screen and (max-width: 768px) {
    .page-navigation ul {
        flex-direction: column;
        align-items: center;
    }

    .page-navigation ul li {
        display: flex;
        gap: 20px;
    }

    .mentions-conditions {
        padding: 0;
    }
}

/*----------------------------------------PAGE PANIER----------------------------------------*/

.woocommerce {
    display: flex;
    flex-direction: column;
    font-family: 'montserrat', sans-serif;
}

.cart-empty-message {
    margin-bottom: 450px;
}

.product-column {
    display: flex;
    align-items: center;
    gap: 40px;
}

.product-thumbnail {
    display: flex;
}

.product-details {
    display: flex;
}

.checkout-button,
.woocommerce-button {
    font-family: 'montserrat', sans-serif;
    text-transform: uppercase;
    background-color: var(--color-primary) !important;
    padding: 10px 25px;
    border: none;
    color: white !important;
    font-size: 15px;
    transition: background-color 0.3s ease, opacity 0.3s ease;
    margin-top: 50px;
    margin-bottom: 50px !important;
}

.page-title {
    font-family: 'montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 50px;
}

.woocommerce-message {
    font-family: 'montserrat', sans-serif !important;
}


.woocommerce .woocommerce-cart-form {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.woocommerce-cart-table {
    width: 100%;
    border-collapse: collapse;
    display: flex;
    flex-direction: column;
}

.woocommerce-cart-table thead,
.woocommerce-cart-table tbody {
    display: contents;
}

.woocommerce-cart-table tr {
    display: flex;
    flex-direction: row;
}

.woocommerce-cart-table th,
.woocommerce-cart-table td {
    flex: 1;
    padding: 1rem;
    border-bottom: 1px solid var(--color-darkgrey);
}

.woocommerce-cart-table th {
    text-align: left;
    font-family: 'montserrat', sans-serif;
}

.woocommerce-cart-table .product-thumbnail img {
    max-width: 100px;
    height: auto;
}

.woocommerce-cart-table .product-name {
    flex-basis: 15%;
}

.woocommerce-cart-table .product-price,
.woocommerce-cart-table .product-quantity,
.woocommerce-cart-table .product-subtotal,
.woocommerce-cart-table .product-remove {
    flex-basis: 15%;
}

.quantity-column {
    display: flex;
    gap: 10px;
}

.quantity-column input {
    display: none;
}

.woocommerce a.remove {
    color: var(--color-primary) !important;
}

.woocommerce a.remove:hover {
    background-color: var(--color-primary) !important;
}

.actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.actions .button {
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    text-transform: uppercase;
    cursor: pointer;
}

.actions .button:hover {
    background-color: #c6523b;
}

.cart-collaterals {
    margin-top: 2rem;
    display: flex;
    justify-content: end;
}



@media screen and (max-width: 767px) {
    .woocommerce-cart-table {
        display: flex;
        flex-direction: column;
    }

    .woocommerce-cart-table tr {
        display: flex;
        flex-direction: column;
        border-radius: 8px;
        margin-bottom: 20px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        background-color: #fff;
    }

    .woocommerce-cart-table thead tr:first-child {
        display: none;
    }

    .woocommerce-cart-table td {
        border: unset;
        align-self: baseline;
    }

    .woocommerce-cart-table tbody .total-column span bdi {
        font-weight: 600 !important;
    }

    .woocommerce-cart-table tbody .total-column span bdi::before {
        content: "Montant total :   ";
    }

    .woocommerce-cart-table tbody .quantity-column::before {
        content: "Quantité :   ";
    }

    .woocommerce-cart-table tbody .price-column::before {
        content: "Prix unitaire :   ";
    }

    .woocommerce-cart-table tbody .remove-column {
        margin-left: auto;
    }


    .product-column {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 0;
    }

    .product-thumbnail {
        width: 100%;
        height: auto;
        position: relative;
        overflow: hidden;
    }

    .product-thumbnail img {
        width: 100%;
        height: auto;
        transition: transform 0.3s ease;
    }

    .product-details {
        padding: 15px;
        background-color: #fff;
    }

    .product-details h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
    }

    .product-details .price {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }

    .product-details .quantity-column {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }

    .product-details .quantity-column input {
        width: 40px;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        text-align: center;
    }

    .product-details .remove-column {
        display: flex;
        align-items: center;
    }

    .product-details .remove-column a {
        color: #999;
        font-size: 18px;
        transition: color 0.3s ease;
    }

    .product-details .remove-column a:hover {
        color: #e74c3c;
    }
}


/*----------------------------------------STYLE PAGE FAQ----------------------------------------*/

#bouton-faq:hover {
    transition: 0.4s, background-color;
    transition: 0.4s, color;
    background-color: var(--color-primary);
    color: white;
}

#bouton-faq, #bouton-contact {
    padding: 10px 20px;
    font-family: 'montserrat', sans-serif;
    background-color: unset;
    color: black;
    font-weight: 400;
    border: none;
}

#bouton-contact {
    display: inline-block;
    padding: 10px 20px;
    background-color: unset;
    color: black;
    font-size: 18px;
    text-decoration: none;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

#bouton-contact::before,
#bouton-contact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

#bouton-contact::before {
    right: 0;
    left: auto;
    transform-origin: right;
}

#bouton-contact:hover::before,
#bouton-contact:hover::after {
    width: 100%;
}

#titre-page-faq {
    text-align: center;
    margin: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    cursor: default;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-answer {
    overflow: hidden;
    border-left: 4px solid var(--color-primary);
    padding-left: 10px;
    margin: 0 0 40px 30px;
}

.faq-toggle:checked + .faq-question + .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s ease;
}



/*----------------------------------------STYLE PAGE DE CONNEXION----------------------------------------*/
.connexion-form {
    display: flex;
    /*justify-content: center;*/
    margin-top: 50px;
}

.connexion-form .woocommerce {
    flex-direction: row;
    /*LA*/
    gap: 50px;
}

.connexion-form .woocommerce h2 {
    color: var(--color-primary);
}


.woocommerce-form-login {
    width: 800px;
}

.form-row {
    margin-top: 30px !important;
}

.woocommerce-form-login.login {
    max-width: 400px;
    margin: 0 auto;
}

.woocommerce-form-login.login input[type="text"],
.woocommerce-form-login.login input[type="password"],
.woocommerce-form-login.login input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.woocommerce-form-login.login input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #E66745;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.woocommerce-form-login.login input[type="submit"]:hover {
    background-color: #D45333;
}

.woocommerce-form-login.login p.woocommerce-LostPassword {
    margin-top: 15px;
    text-align: center;
}

.woocommerce-form-login.login p.woocommerce-LostPassword a {
    color: #E66745;
    text-decoration: none;
}

.woocommerce-form-login.login p.woocommerce-LostPassword a:hover {
    text-decoration: underline;
}


@media screen and (max-width: 768px) {
    .woocommerce-form-login.login {
        width: 130%;
    }

    .woocommerce-form-login.login input[type="text"],
    .woocommerce-form-login.login input[type="password"],
    .woocommerce-form-login.login input[type="email"] {
        font-size: 18px;
    }


    .woocommerce-form-login.login input[type="submit"] {
        font-size: 18px;
    }

    .woocommerce-MyAccount-navigation ul {
        gap: 20px !important;
    }

    .connexion-form .woocommerce {
        flex-direction: column;
    }

    .woocommerce-MyAccount-content {
        margin-left: 0 !important;
    }
}


/*----------------------------------------STYLE PAGE DE COMPTE----------------------------------------*/

.woocommerce-MyAccount-navigation {
    margin-bottom: 20px;
    display: flex;
    font-size: 20px;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.woocommerce-MyAccount-navigation li {
    /*display: inline-block;*/
    margin-right: 10px;
    display: flex;
}

.woocommerce-MyAccount-navigation ul li:last-child {}

.woocommerce-MyAccount-navigation-link a {
    text-decoration: none;
    color: #E66745;
}

.woocommerce-MyAccount-navigation-link.is-active a {
    font-weight: bold;
}

.woocommerce-MyAccount-content {
    display: flex;
    margin-bottom: 50px;
    margin-left: 50px;
    flex-direction: column;
    font-size: 20px;
}

.woocommerce-MyAccount-content p {
    margin-bottom: 20px;
}

.woocommerce-MyAccount-content a {
    color: #E66745;
    text-decoration: none;
}

.woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

.account-orders-table {
    width: calc(100vw - 500px) !important;
}

/*----------------------------------------STYLE PAGE FAQ----------------------------------------*/




/*----------------------------------------STYLE PAGE DE COMMANDE----------------------------------------*/

.checkout-page {
    margin: 0 auto;
    padding: 20px;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.checkout-page h3 {
    color: var(--color-primary);
    font-size: 25px !important;
}

.woocommerce-checkout .col2-set {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#billing_country {
    width: auto !important;
}

.woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

form.checkout {
    display: flex;
    flex-wrap: wrap;
}

.col2-set {
    display: flex;
    flex-wrap: wrap;
}

.col-1 {
    flex-basis: 50%;
    padding-right: 10px;
}

.woocommerce-billing-fields h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
}

.woocommerce-billing-fields__field-wrapper {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-row label {
    flex-basis: 30%;
    font-weight: bold;
    padding-right: 10px;
}

.woocommerce-input-wrapper {
    flex-basis: 100%;
}

#order_comments_field label {
    line-break: anywhere;
}

select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: black;
    font-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23333"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
}

select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.3);
}

select option {
    background-color: #fff;
    color: #333;
}

.input-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.woocommerce-checkout-review-order-table {
    margin-bottom: 20px;
    margin-left: auto !important;
    margin-right: auto !important;
}

#payment {
    margin-top: 20px;
}

#payment button.button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#payment button.button:hover {
    background-color: #45a049;
}


.woocommerce-thankyou-order-received {
    font-size: 30px;
    color: var(--color-primary);
    font-weight: 800;
}

/* ///////////////////////////////////////// */

@media screen and (max-width: 768px) {
    #burger {
        display: flex;
    }

    #header nav> :not(#burger, .panel, .mobile) {
        display: none;
    }

    /* .panel * {
        opacity: 1;
    } */
    .mobile {
        display: block !important;
    }

    /* main, */

    .main_content {
        padding: 10px;
        width: 100%;
        margin: 0;
    }

    .main_content p {
        margin: 0 20px 20px 20px;
        width: 100%;
    }

    body {
        justify-content: initial !important;
    }

    #contact {
        flex-flow: column;
        gap: 40px;
    }

    #contact .contact_content,
    #contact .contact_form {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .wpforms-field-row {
        display: flex;
        flex-flow: column;
    }

    #contact .wpforms-field-container {
        gap: 15px;
    }
}