/**************/
/*****CART*****/
/**************/
.woocommerce-cart .page_hentry .woocommerce{
    display: flex;
    flex-wrap: wrap;
    gap: var(--g20);
}
.woocommerce-cart .page_hentry .woocommerce .woocommerce-notices-wrapper{
    width: 100%;
}

/*cart*/
.woocommerce-cart .page_hentry .woocommerce .woocommerce-cart-form {
    flex: 8;
    display: block;
    box-sizing: border-box;
    padding: 60px 5.9%;
    border: 1px solid var(--rose3);
    border-radius: var(--r3);
    margin-bottom: 54px;
}
.woocommerce-cart .woocommerce table.shop_table {
    border: none;
    margin: 0;
    text-align: left;
    border-collapse: unset;
    border-radius: unset;
}
.woocommerce-cart .woocommerce table.cart thead {
    display: none;
}
/* Chaque article devient une grille à 3 zones */
.woocommerce-cart .woocommerce table.cart tr.cart_item {
    display: grid;
    grid-template-columns: 188px 1fr 50px;      /* image | infos | poubelle */
    grid-template-rows: repeat(4, auto) 1fr;    /* la clé : grille explicite + slack en bas */
    align-items: start;                          /* pile collée en haut */
    column-gap: 1rem;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item:not(:last-child) {
    padding-bottom: 40px;
    border-bottom: 1px solid var(--rose3);
    margin-bottom: 40px;
}
.woocommerce-cart .woocommerce table.shop_table td {
    display: block;
    border-top: none;
    padding: 0;
    line-height: unset;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-name,
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-price,
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-quantity,
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-subtotal {
    align-self: start;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-thumbnail { grid-column: 1; grid-row: 1 / -1; }
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-remove    {
    grid-column: 3;
    grid-row: 1 / -1;
    align-self: flex-end;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-name {
    grid-column: 2;
    grid-row: 1;
    padding-top: 2px;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-name .variation{
    display: none;
    visibility: hidden;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-price {
    grid-column: 2;
    grid-row: 3;
    padding-bottom: 12px;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-price .amount,
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-subtotal .amount{
    font-size: 16px;
    font-weight: 700;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-quantity {
    grid-column: 2;
    grid-row: 2;
    padding-bottom: 12px;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-subtotal{
    grid-column: 2;
    grid-row: 4;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item .product-thumbnail img {
    display: block;
    width: 188px;
    height: auto;
    border-radius: var(--r15);
}
.cart_item_title{
    display: block;
    line-height: 20px;
    margin-bottom: 5px;
    font-size: 14px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.cart_item_label{
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
}
.woocommerce a.remove {
    display: block;
    height: 48px;
    width: 48px;
    line-height: unset;
    background: var(--bleu);
    border: 1px solid var(--bleu);
    border-radius: var(--r12);
    font-size: 0;
    color: unset!important;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}
.woocommerce a.remove::before{
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    mask: url('../img/pic_ill_trash.svg') no-repeat center;
    -webkit-mask: url('../img/pic_ill_trash.svg') no-repeat center;
    mask-size: 100%;
    -webkit-mask-size: 100%;
    background-color: var(--wh);
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    transition: all 0.3s;
}
.woocommerce a.remove:hover {
    color: unset!important;
    background: var(--wh);
}
.woocommerce a.remove:hover::before{
    background-color: var(--bleu);
    transition: all 0.3s;
}

/*cart actions*/
.woocommerce-page table.cart td.actions .coupon {
    float: unset;
    display: flex;
    flex-wrap: wrap;
    gap: var(--g10);
    width: 100%;
    margin: 0 0 26px;
}
.woocommerce-cart table.cart td.actions .coupon .input-text{
    flex: 3;
    display: block;
    box-sizing: border-box;
    line-height: 17px;
    padding: 9px 12px;
    border: 1px solid var(--rose3);
    border-radius: var(--r3);
    font-size: 14px;
    font-family: 'unbounded';
    color: var(--rose2);
    font-weight: 400;
}
.woocommerce-cart .woocommerce table.cart td.actions .coupon button.button{
    flex: 4;
    display: block;
    line-height: 17px;
    padding: 9px 0;
    background: var(--rose2);
    border: 1px solid var(--rose2);
    border-radius: var(--r3);
    font-size: 14px;
    font-family: 'unbounded';
    color: var(--beige);
    text-transform: uppercase;
    font-weight: 400;
    text-align: center;
    transition: all 0.3s;
}
.woocommerce-cart .woocommerce table.cart td.actions .coupon button.button:after{
    content: unset!important;
}
.woocommerce-cart .woocommerce table.cart td.actions .coupon button.button:hover{
    background: var(--wh);
    color: var(--rose2);
    transition: all 0.3s;
}
.woocommerce-cart .woocommerce table.cart td.actions button.button{
    margin: 0 0 0 auto;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button{
    display: block;
    line-height: 20px;
    padding: 14px 35px 14px 20px;
    border: 1px solid var(--bleu);
    background: transparent;
    border-radius: var(--r12);
    margin: 0;
    font-size: 14px;
    font-family: 'unbounded';
    font-weight: 400;
    color: var(--bleu);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    transition: all 0.3s;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled:after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]:after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:after{
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    mask: url('../img/pic_arrow_r.svg') no-repeat center;
    -webkit-mask: url('../img/pic_arrow_r.svg') no-repeat center;
    background-color: var(--bleu);
    margin: auto;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover{
    background: var(--bleu);
    color: var(--wh);
    transition: all 0.3s;
}
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled:hover:after, :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]:hover:after,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover:after{
    background-color: var(--wh);
    transition: all 0.3s;
}

/*collaterals*/
.woocommerce-cart .page_hentry .woocommerce .cart-collaterals{
    flex: 7;
}
.woocommerce-cart .page_hentry .woocommerce .cart-collaterals h2 {
    line-height: 26px;
    padding: 0;
    margin: 0 0 30px;
    vertical-align: baseline;
    font-size: 20px;
    font-family: 'unbounded';
    color: var(--bleu);
    font-weight: 700;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals,
.woocommerce-cart.woocommerce-page .cart-collaterals .cart_totals {
    float: unset;
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 41px 16.8%;
    background: var(--beige);
    border-radius: var(--r3);
}
#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
    border: none;
}
.woocommerce .cart-collaterals .cart_totals table.shop_table tr.cart-subtotal th {
    line-height: 21px;
    padding: 0 0 26px;
    font-weight: 400;
}
.woocommerce-cart .cart-collaterals .cart_totals tr.cart-subtotal td{
    line-height: 21px;
    padding: 0 0 26px;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total th,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td{
    padding-top: 26px;
    border-top: 1px solid var(--rose3);
}
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td{
    font-size: 20px;
    text-align: right;
}
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr th{
    padding: 0;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.cart-collaterals .cart_totals table.shop_table tr.shipping th{
    padding: 0 0 26px;
    font-weight: 400;
}
.cart-collaterals .cart_totals table.shop_table tr.shipping td{
    padding: 0 0 26px;
}
.woocommerce-cart .page_hentry .cart_totals table.shop_table tr.shipping ul li {
    padding-left: 30px;
    text-align: right;
}
.woocommerce-cart .page_hentry .cart_totals table.shop_table tr.shipping ul li::before {
    content: unset;
}
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination{
    display: none!important;
}
.woocommerce-cart .cart-collaterals .cart_totals tr.tax-rate th{
    padding: 0 0 26px;
    font-weight: 400;
}
.woocommerce-cart .cart-collaterals .cart_totals tr.tax-rate td{
    padding: 0 0 26px;
    font-weight: 700;
    text-align: right;
}
.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button{
    display: block;
    line-height: 20px;
    padding: 14px 35px 14px 20px;
    border: 1px solid var(--bleu);
    background: transparent;
    border-radius: var(--r12);
    margin: 0;
    font-size: 14px;
    font-family: 'unbounded';
    font-weight: 400;
    color: var(--bleu);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    transition: all 0.3s;
}
.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button:after{
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    mask: url('../img/pic_arrow_r.svg') no-repeat center;
    -webkit-mask: url('../img/pic_arrow_r.svg') no-repeat center;
    background-color: var(--bleu);
    margin: auto;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s;
}
.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button:hover{
    background: var(--bleu);
    color: var(--wh);
    transition: all 0.3s;
}
.woocommerce-cart .woocommerce .wc-proceed-to-checkout a.checkout-button:hover:after{
    background-color: var(--wh);
    transition: all 0.3s;
}

/*checkout*/
.wp-block-woocommerce-checkout {
    padding-top: 0;
}
.wc-block-components-sidebar-layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--g20);
    margin: 0 auto 16px;
    position: relative;
}
.wc-block-components-sidebar-layout .wc-block-components-main {
    flex: 8;
    box-sizing: border-box;
    width: unset;
    padding: 40px 5.9%;
    border: 1px solid var(--rose3);
    border-radius: var(--r3);
    margin: 0 0 54px;
}
.wc-block-components-checkout-step__heading-container {
    margin-bottom: 0;
}
.wc-block-components-form .wc-block-components-checkout-step {
    margin: 0 0 16px;
}
.wc-block-components-title.wc-block-components-title {
    line-height: 26px;
    padding: 0 0 27px;
    border-bottom: 1px solid var(--rose3);
    margin: 0 0 30px;
    vertical-align: baseline;
    font-size: 20px;
    font-family: 'unbounded';
    color: var(--rose2);
    font-weight: 700;
    word-break: break-word;
}
.wc-block-components-form .wc-block-components-text-input input[type="email"], .wc-block-components-form .wc-block-components-text-input input[type="number"], .wc-block-components-form .wc-block-components-text-input input[type="password"], .wc-block-components-form .wc-block-components-text-input input[type="tel"], .wc-block-components-form .wc-block-components-text-input input[type="text"], .wc-block-components-form .wc-block-components-text-input input[type="url"], .wc-block-components-text-input input[type="email"], .wc-block-components-text-input input[type="number"], .wc-block-components-text-input input[type="password"], .wc-block-components-text-input input[type="tel"], .wc-block-components-text-input input[type="text"], .wc-block-components-text-input input[type="url"] {
    background-color: var(--beige);
    border: none;
    border-radius: var(--r3);
    font-family: 'josefin';
    color: var(--bleu);
}


.wc-blocks-components-select .wc-blocks-components-select__select {
    background: var(--beige);
    border: none;
    border-radius: var(--r3);
    color: var(--bleu);
}


.wc-block-components-address-card {
    background: var(--beige);
    border: none;
    border-radius: var(--r3);
    font-size: 16px;
}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked {
    background: var(--beige);
}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked {
    background: var(--beige);
}
.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
    appearance: none;
    background-color: var(--beige);
    border: 1px solid var(--beige);
    border-radius: var(--r3);
}
.wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
    border: 1px solid var(--beige);
}
.wc-block-components-radio-control .wc-block-components-radio-control__input {
    background: var(--beige);
    border: 1px solid var(--beige);
}
.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted, .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    border-radius: var(--r3);
    box-shadow: inset 0 0 0 1.5px var(--rose3);
}

.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button--full-width{
    width: auto;
}
.wc-block-checkout__actions .wc-block-checkout__actions_row--justify-flex-end button {
    display: inline-block;
    line-height: 20px;
    padding: 14px 35px 14px 20px;
    border: 1px solid var(--bleu);
    background: transparent;
    border-radius: var(--r12);
    margin: 0;
    font-size: 14px;
    font-family: 'unbounded';
    font-weight: 400;
    color: var(--bleu);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    position: relative;
    transition: all 0.3s;
}
.wc-block-checkout__actions .wc-block-checkout__actions_row--justify-flex-end button:after{
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    mask-size: 100% auto;
    -webkit-mask-size: 100% auto;
    mask: url('../img/pic_arrow_r.svg') no-repeat center;
    -webkit-mask: url('../img/pic_arrow_r.svg') no-repeat center;
    background-color: var(--bleu);
    margin: auto;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s;
}
.wc-block-checkout__actions .wc-block-checkout__actions_row--justify-flex-end button:hover{
    background: var(--bleu);
    color: var(--wh);
    transition: all 0.3s;
}
.wc-block-checkout__actions .wc-block-checkout__actions_row--justify-flex-end button:hover:after{
    background-color: var(--wh);
    transition: all 0.3s;
}
.wc-block-components-sidebar {
    flex: 7;
    box-sizing: border-box;
    width: unset;
    padding-left: 0;
    background: var(--beige);
    border-radius: var(--r3);
    margin: 0 0 54px;
}
.wc-block-checkout__sidebar {
    top: 0!important;
}
.wp-block-woocommerce-checkout-order-summary-block{
    padding: 41px 16.8%;
    border: none;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
    margin-top: 0;
}
.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
    flex-grow: 1;
    line-height: 26px;
    padding: 0;
    margin: 0 0 30px;
    vertical-align: baseline;
    font-size: 20px;
    font-family: 'unbounded';
    color: var(--bleu);
    font-weight: 700;
    word-break: break-word;
}
.wp-block-woocommerce-checkout-order-summary-block .wp-block-woocommerce-checkout-order-summary-cart-items-block.wc-block-components-totals-wrapper {
    padding-top: 0;
}
.wc-block-components-order-summary {
    padding: 0;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
    margin-bottom: 26px;
}
.wc-block-components-product-badge {
    background: var(--vert3);
    color: var(--wh);
}
.wp-block-woocommerce-checkout-order-summary-coupon-form-block.wc-block-components-totals-wrapper{
    padding: 16px 0;
    border-top: 1px solid var(--rose3);
}
.wp-block-woocommerce-checkout-order-summary-totals-block {
    border-top: 1px solid var(--rose3);
}
.wc-block-components-totals-wrapper {
    padding: 16px 0 0;
    border-top: 1px solid var(--rose3);
}
.wc-block-components-sidebar .slot-wrapper .wc-block-components-panel,
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-sidebar .wc-block-components-totals-coupon,
.wc-block-components-sidebar .wc-block-components-totals-item {
    padding-left: 0;
    padding-right: 0;
}
.wc-block-components-text-input input[type="text"]{
    border: 1px solid var(--rose3);
}
.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    background: var(--rose2);
    border-radius: var(--r3);
    font-size: 14px;
    font-family: 'unbounded';
    color: var(--beige);
    text-transform: uppercase;
    font-weight: 400;
}

.wc-block-components-totals-item__label {
    line-height: 20px;
    font-size: 16px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-weight: 400;
}
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label{
    line-height: 20px;
    font-size: 16px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    font-weight: 700;
}
.wc-block-components-formatted-money-amount {
    font-weight: 700;
    white-space: nowrap;
}


/*validation de commande*/
.woocommerce ul.order_details {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--rose3);
    border-radius: var(--r3);
}
.woocommerce ul.order_details li {
    flex: 1;
    float: unset;
    margin-right: 0;
    text-transform: none;
    font-size: unset;
    line-height: 1;
    border-right: 1px solid var(--rose3);
    padding: 12px 9px;
    list-style-type: none;
}
.woocommerce ul.order_details li::before {
    content: unset;
}
.woocommerce ul.order_details li strong {
    display: block;
    line-height: 18px;
    padding-top: 8px;
    font-size: 16px;
}
.woocommerce .woocommerce-customer-details address {
    width: 100%;
    line-height: 26px;
    padding: 14px 16px;
    border: 1px solid var(--rose3);
    border-radius: var(--r3);
    text-align: left;
}

