.elementor-11 .elementor-element.elementor-element-172e0563{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-11 .elementor-element.elementor-element-5ecba5e{text-align:center;}.elementor-11 .elementor-element.elementor-element-5ecba5e .elementor-heading-title{font-family:"Sergio-Trendy", Sans-serif;font-size:40px;font-weight:600;}/* Start custom CSS for shortcode, class: .elementor-element-6aeb4d9 *//* ==========================================================================
   PANIER DYNAMIQUE SANS COUPON - STYLE MODERNE & ANIMÉ
   ========================================================================== */
/* ==========================================================================
    SHORTCODE : PANIER DYNAMIQUE SANS COUPON
   ========================================================================== */

/* --- CONTENEUR GLOBAL --- */
.custom-cart-container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {opacity:0; transform: translateY(10px);}
    to {opacity:1; transform: translateY(0);}
}

/* --- TITRE --- */
.cart-title {
    font-size: 26px;
    font-weight: 600;
    color: #6D4E88;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #F0E6F8;
}

/* --- LIGNE PRODUIT --- */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAF7FF;
    border: 1px solid #E6DAF2;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.cart-item:hover {
    background: #F6F0FD;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(163,134,178,0.15);
}

/* --- IMAGE --- */
.item-thumbnail img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-thumbnail img:hover {
    transform: scale(1.05);
}

/* --- INFO PRODUIT --- */
.item-details {
    flex: 1;
    margin-left: 20px;
}

.item-name {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #4A3A55;
}

.item-price {
    font-size: 15px;
    font-weight: 500;
    color: #7A6A85;
    margin-top: 5px;
}

/* --- QUANTITÉ --- */
.item-quantity {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-quantity label {
    color: #6A567C;
    font-weight: 500;
    font-size: 14px;
}

.qty-input {
    width: 50px;
    min-width: 50px;
    padding: 6px 8px;
    border-radius: 8px;
    border: 1px solid #d8c9e8;
    background: #fff;
    text-align: center;
    font-size: 14px;
    transition: 0.3s ease;
    outline: none;
}

.qty-input:focus {
    border-color: #A386B2;
    box-shadow: 0 0 6px rgba(163,134,178,0.4);
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

/* --- SOUS-TOTAL LIGNE --- */
.item-subtotal {
    text-align: right;
}
.item-subtotal .line-subtotal {
    font-weight: 600;
    font-size: 16px;
    color: #6D4E88;
}

/* --- SUPPRIMER PRODUIT --- */
.remove-item {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    color: #ff4d6d;
    transition: color 0.3s ease;
    text-decoration: none;
}

.remove-item:hover {
    color: #d6002a;
}

/* --- RÉCAP DU PANIER --- */
.cart-summary {
    margin-top: 30px;
    padding: 25px;
    background: #FCF9FF;
    border: 1px solid #E6DAF2;
    border-radius: 15px;
}

.totals p {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    padding: 10px 0;
    border-bottom: 1px solid #EFE5F8;
    color: #5C4A6E;
}

.totals .grand-total {
    font-size: 20px;
    font-weight: 700;
    color: #6D4E88;
    border-bottom: none;
    margin-top: 10px;
}

/* --- BOUTON COMMANDER --- */
.checkout-btn {
    display: block;
    margin-top: 25px;
    background: #A386B2;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #8E6BA6;
    box-shadow: 0 8px 20px rgba(163,134,178,0.3);
}

/* --- PANIER VIDE --- */
.custom-cart-container p {
    text-align: center;
    font-size: 18px;
    color: #A386B2;
}

/* --- RESPONSIVE MOBILE --- */
@media(max-width: 600px) {

    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .item-details {
        margin: 15px 0;
    }

    .item-subtotal {
        margin-top: 12px;
    }

    .checkout-btn {
        font-size: 16px;
        padding: 13px;
    }
}
/* --- QUANTITÉ TRÈS COMPACTE --- */
.item-quantity {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-quantity label {
    color: #6A567C;
    font-weight: 500;
    font-size: 13px;
}

.qty-input {
    width: 35px;       /* beaucoup plus petit */
    min-width: 35px;
    padding: 4px 6px;  /* padding réduit */
    border-radius: 6px;
    border: 1px solid #d8c9e8;
    background: #fff;
    text-align: center;
    font-size: 13px;   /* police plus petite */
    transition: 0.3s ease;
    outline: none;
}

.qty-input:focus {
    border-color: #A386B2;
    box-shadow: 0 0 4px rgba(163,134,178,0.3);
}

/* Supprimer flèches par défaut */
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}




input[type=number] {
    border: 1px solid #666;
    border-radius: 3px;
    padding: .5rem 1rem;
    transition: all .3s;
    width: 50px;
}





/* --- CONTENEUR GLOBAL --- */
.custom-cart-container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.07);
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {opacity:0; transform: translateY(15px);}
    to {opacity:1; transform: translateY(0);}
}

/* --- TITRE --- */
.cart-title {
    font-size: 26px;
    font-weight: 600;
    color: #6D4E88;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #F0E6F8;
    position: relative;
}

/* --- LIGNE PRODUIT --- */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FAF7FF;
    border: 1px solid #E6DAF2;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.cart-item:hover {
    background: #F6F0FD;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(163,134,178,0.2);
}

/* --- IMAGE --- */
.item-thumbnail img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item-thumbnail img:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 15px rgba(163,134,178,0.3);
}

/* --- INFO PRODUIT --- */
.item-details {
    flex: 1;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.item-name {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #4A3A55;
    margin-bottom: 3px;
}

.item-price {
    font-size: 15px;
    font-weight: 500;
    color: #7A6A85;
}

/* --- QUANTITÉ TRÈS COMPACTE --- */
.item-quantity {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-quantity label {
    color: #6A567C;
    font-weight: 500;
    font-size: 13px;
}

.qty-input {
    width: 35px;
    min-width: 35px;
    padding: 4px 6px;
    border-radius: 6px;
    border: 1px solid #d8c9e8;
    background: #fff;
    text-align: center;
    font-size: 13px;
    transition: all 0.3s ease;
}

.qty-input:focus {
    border-color: #A386B2;
    box-shadow: 0 0 5px rgba(163,134,178,0.3);
}

/* Supprimer flèches par défaut */
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}

/* --- SOUS-TOTAL LIGNE --- */
.item-subtotal {
    text-align: right;
    transition: all 0.3s ease;
}
.item-subtotal .line-subtotal {
    font-weight: 600;
    font-size: 16px;
    color: #6D4E88;
}

/* --- SUPPRIMER PRODUIT --- */
.remove-item {
    display: block;
    margin-top: 8px;
    font-size: 20px;
    color: #ff4d6d;
    transition: all 0.3s ease;
    text-decoration: none;
}

.remove-item:hover {
    color: #d6002a;
    transform: scale(1.2);
}

/* --- RÉCAP DU PANIER --- */
.cart-summary {
    margin-top: 30px;
    padding: 25px;
    background: #FCF9FF;
    border: 1px solid #E6DAF2;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.totals p {
    display: flex;
    justify-content: space-between;
    font-size: 17px;
    padding: 10px 0;
    border-bottom: 1px solid #EFE5F8;
    color: #5C4A6E;
    transition: all 0.3s ease;
}

.totals .grand-total {
    font-size: 20px;
    font-weight: 700;
    color: #6D4E88;
    margin-top: 10px;
}

/* --- BOUTON COMMANDER --- */
.checkout-btn {
    display: block;
    margin-top: 25px;
    background: #A386B2;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #8E6BA6;
    box-shadow: 0 8px 25px rgba(163,134,178,0.4);
    transform: translateY(-2px);
}

/* --- PANIER VIDE --- */
.custom-cart-container p {
    text-align: center;
    font-size: 18px;
    color: #A386B2;
    animation: fadeIn 0.5s ease;
}

/* --- RESPONSIVE MOBILE --- */
@media(max-width: 600px) {

    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .item-details {
        margin: 15px 0;
    }

    .item-subtotal {
        margin-top: 12px;
    }

    .checkout-btn {
        font-size: 16px;
        padding: 13px;
    }

    .item-thumbnail img {
        width: 70px;
        height: 70px;
    }

    .qty-input {
        width: 30px;
        padding: 3px 5px;
        font-size: 12px;
    }
}

/* --- ANIMATION AJOUT / SUPPRIMER PRODUIT --- */
.cart-item.added {
    animation: addedItem 0.5s ease forwards;
}

.cart-item.removed {
    animation: removedItem 0.4s ease forwards;
}

@keyframes addedItem {
    0% { opacity: 0; transform: translateY(-20px) scale(0.95);}
    50% { opacity: 1; transform: translateY(0) scale(1.02);}
    100% { opacity: 1; transform: scale(1);}
}

@keyframes removedItem {
    0% { opacity: 1; transform: scale(1);}
    100% { opacity: 0; transform: scale(0.9);}
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Sergio-Trendy';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://dream-pastry-shop.fr/wp-content/uploads/2025/09/Sergio-Trendy-Regular.woff') format('woff');
}
/* End Custom Fonts CSS */