/**
 * Cart-specific styles
 */

/* ===== PAGE PANIER PERSONNALISÉE ===== */
.cbb-custom-cart-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.cbb-cart-title {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #333;
}

.cbb-cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

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

/* Items du panier */
.cbb-cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cbb-cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    padding: 20px;
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    align-items: start;
}

.cbb-cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    object-fit: cover;
}

.cbb-cart-item-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.cbb-cart-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cbb-cart-item-title {
    font-size: 13px;
    margin: 0 0 5px 0;
}

.cbb-cart-item-price {
    margin: 5px 0;
}

.cbb-cart-item-remove {
    background: none;
    border: none;
    color: #ff6b59;
    cursor: pointer;
    font-size: 12px;
    padding: 4px 8px;
}

.cbb-loyalty-points-icon {
    font-size: 24px;
}

.cbb-loyalty-points-info {
    flex: 1;
}

/* Panneau prix détaillé */
.cbb-price-details-panel {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.cbb-price-details-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
}

.cbb-price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cbb-price-line:last-of-type {
    border-bottom: none;
}

.cbb-price-line.subtotal {
    font-weight: 600;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #E0E0E0;
}

.cbb-price-line.discount {
    color: #28a745;
}

.cbb-price-line.discount .cbb-price-line-value {
    color: #28a745;
    font-weight: 600;
}

.cbb-price-line.total {
    font-size: 20px;
    font-weight: 700;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #333;
    color: #333;
}

.cbb-price-line-label {
    font-size: 14px;
    color: #666;
}

.cbb-price-line-value {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.cbb-price-line.total .cbb-price-line-label,
.cbb-price-line.total .cbb-price-line-value {
    font-size: 18px;
    color: #333;
}

/* Styles pour les totaux (partial order-totals.php) */
.cbb-cart-totals {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cbb-cart-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.cbb-cart-total-line:last-of-type {
    border-bottom: none;
}

.cbb-cart-total-line.subtotal {
    font-weight: 600;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid #E0E0E0;
}

.cbb-cart-total-line.discount {
    color: #28a745;
}

.cbb-cart-total-line.discount .cbb-cart-total-value {
    color: #28a745;
    font-weight: 600;
}

.cbb-cart-total-line.total {
    font-size: 20px;
    font-weight: 700;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid #333;
    color: #333;
}

.cbb-cart-total-label {
    font-size: 14px;
    color: #666;
}

.cbb-cart-total-value {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.cbb-cart-total-line.total .cbb-cart-total-label,
.cbb-cart-total-line.total .cbb-cart-total-value {
    font-size: 18px;
    color: #333;
}

/* Section code promo */
.cbb-promo-code-section {
    margin: 20px 0;
}

.cbb-element-code-propo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cbb-titre-promo {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.cbb-promo-code-apply-btn {
    background: none;
    border: none;
    color: #ff6b59;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    transition: color 0.2s;
}

.cbb-promo-code-apply-btn:hover {
    color: #ff4532;
    text-decoration: underline;
}

.cbb-promo-code-input-group {
    position: relative;
}

.cbb-promo-code-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.cbb-promo-code-input:focus {
    outline: none;
    border-color: #ff6b59;
}

.cbb-promo-code-input::placeholder {
    color: #999;
}

.cbb-checkout-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #ff6b59;
    color: white;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 20px;
}

.cbb-checkout-btn:hover {
    background: #ff4532;
    color: white;
    text-decoration: none;
}

/* Points de fidélité */
.cbb-point {
    margin-bottom: 20px;
}

.cbb-loyalty-notification {
    background: #FFF5F5;
    border: 2px solid #FFE5E5;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.cbb-loyalty-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: #FF6B59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cbb-loyalty-icon span {
    font-size: 18px;
    display: block;
}

.cbb-loyalty-content {
    padding-left: 50px;
    color: #333;
}

.cbb-loyalty-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cbb-loyalty-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #666;
}

.cbb-loyalty-apply-btn {
    background: transparent;
    color: #FF6B59;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-left: auto;
}

.cbb-loyalty-apply-btn:hover:not(:disabled) {
    color: #FF4532;
    text-decoration: underline;
}

.cbb-loyalty-apply-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cbb-loyalty-apply-btn.applied {
    color: #28a745;
}

.cbb-loyalty-points-panel {
    display: flex;
    align-items: center;
    gap: 12px;
}