.angie-cart-wrapper-c6a0a79a {
    max-width: 1100px;
    margin: 0 auto;
    font-family: inherit;
    color: #333;
}

.cart-grid-c6a0a79a {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 992px) {
    .cart-grid-c6a0a79a {
        grid-template-columns: 1fr;
    }
}

.cart-table-c6a0a79a {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e0ddd8;
    border-radius: 12px;
    overflow: hidden;
}

.cart-table-c6a0a79a th, 
.cart-table-c6a0a79a td {
    padding: 16px 20px;
    border-bottom: 1px solid #e0ddd8;
    vertical-align: middle;
}

.cart-table-c6a0a79a th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #555;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Alignement spécifique des colonnes */
.cart-table-c6a0a79a th:nth-child(1) { text-align: left; } /* Produit */
.cart-table-c6a0a79a th:nth-child(2) { text-align: center; } /* Prix */
.cart-table-c6a0a79a th:nth-child(3) { text-align: center; } /* Quantité */
.cart-table-c6a0a79a th:nth-child(4) { text-align: right; }  /* Total */

.product-remove-c6a0a79a {
    width: 40px;
    text-align: center;
}

.remove-btn-c6a0a79a {
    display: inline-block;
    color: #999;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s;
}

.remove-btn-c6a0a79a:hover {
    color: #e53935;
}

.product-name-c6a0a79a {
    text-align: left;
}

.product-name-c6a0a79a a {
    color: #1B2E6E;
    text-decoration: none;
    font-weight: 500;
}

.product-price-c6a0a79a {
    font-weight: 500;
    text-align: center;
}

.product-subtotal-c6a0a79a {
    font-weight: 500;
    text-align: right;
}

.product-quantity-c6a0a79a {
    text-align: center;
}

.qty-wrapper-c6a0a79a {
    display: inline-flex;
    border: 1px solid #e0ddd8;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.qty-btn-c6a0a79a {
    background: transparent;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    color: #1B2E6E;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
}

.qty-btn-c6a0a79a:hover {
    background: #f5f3ef;
}

.qty-wrapper-c6a0a79a input {
    width: 45px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0ddd8;
    border-right: 1px solid #e0ddd8;
    -moz-appearance: textfield;
    font-weight: 500;
    color: #333;
}

.qty-wrapper-c6a0a79a input::-webkit-outer-spin-button,
.qty-wrapper-c6a0a79a input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.totals-box-c6a0a79a {
    border: 1px solid #e0ddd8;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
}

.totals-box-c6a0a79a h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #1a1a2e;
}

.totals-row-c6a0a79a {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #e0ddd8;
    font-size: 0.95rem;
}

.totals-row-c6a0a79a.total {
    font-weight: 700;
    font-size: 1.15rem;
    border-bottom: none;
    color: #1B2E6E;
    padding-top: 20px;
}

.coupon-c6a0a79a {
    display: flex;
    flex-direction: column; /* Stack input and button vertically */
    gap: 10px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.coupon-c6a0a79a input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0ddd8;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    box-sizing: border-box; /* Ensure padding doesn't increase width */
}

.coupon-c6a0a79a input:focus {
    border-color: #1B2E6E;
}

.coupon-c6a0a79a button {
    width: 100%;
    background: #fff;
    border: 1px solid #1B2E6E;
    color: #1B2E6E;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-sizing: border-box;
}

.coupon-c6a0a79a button:hover {
    background: #1B2E6E;
    color: #fff;
}

.checkout-btn-c6a0a79a {
    display: block;
    width: 100%;
    text-align: center;
    background: #1B2E6E;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 12px;
    transition: opacity 0.2s;
    box-sizing: border-box;
}

.checkout-btn-c6a0a79a:hover {
    opacity: 0.9;
    color: #fff;
}

.secure-payment-c6a0a79a {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 16px;
}

.angie-empty-cart-c6a0a79a {
    text-align: center;
    padding: 40px;
    background: #f5f3ef;
    border-radius: 12px;
    color: #555;
}