/* Modern Minimalist Cart - Single Line Per Item */

/* Cart item - single line layout */
.cart-item-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e8e8e8;
    gap: 1rem;
}

.cart-item-compact:last-child {
    border-bottom: none;
}

/* Left side - Product info */
.cart-item-header {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.cart-item-title-compact {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price-compact {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c41e3a;
    white-space: nowrap;
}

/* Right side - Actions */
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: #f5f5f5;
    border-radius: 6px;
    padding: 0.15rem 0.3rem;
}

.qty-btn-compact {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.qty-btn-compact:hover {
    background-color: #e0e0e0;
    color: #333;
}

.qty-display-compact {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: #333;
}

.remove-btn-compact {
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.remove-btn-compact:hover {
    opacity: 1;
}

/* Cart items container */
#cartItemsContainer {
    padding: 0 1rem;
}

/* Summary - compact */
.cart-summary {
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0 0.75rem 0;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.cart-summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c41e3a;
    padding-top: 0.75rem;
    border-top: 2px solid #ddd;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* Delivery message - compact */
.delivery-info-message p {
    font-size: 0.85rem !important;
    padding: 0.75rem !important;
    margin: 0.75rem 0 !important;
    background: #f0f7ff !important;
    border-left: 3px solid #4a90e2 !important;
}

/* WhatsApp button */
.btn-whatsapp {
    margin: 0 !important;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .cart-item-compact {
        padding: 0.6rem 0;
        gap: 0.5rem;
    }

    .cart-item-title-compact {
        font-size: 0.85rem;
    }

    .cart-item-price-compact {
        font-size: 0.85rem;
    }

    .qty-btn-compact {
        width: 22px;
        height: 22px;
        font-size: 1rem;
    }

    .qty-display-compact {
        font-size: 0.85rem;
        min-width: 18px;
    }

    .remove-btn-compact {
        font-size: 1rem;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .cart-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .cart-item-title-compact {
        white-space: normal;
        line-height: 1.3;
    }
}