/* Cart Page Styles */

/* Continue Shopping Button Hover Effects */
.btn-continue-shopping {
    border: 2px solid #2ea78f !important;
    color: #2ea78f !important;
    background: transparent !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-continue-shopping:hover {
    background: linear-gradient(135deg, #2ea78f 0%, #1e8c73 100%) !important;
    color: white !important;
    border-color: #2ea78f !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(46, 167, 143, 0.3) !important;
}

.btn-continue-shopping:focus {
    box-shadow: 0 0 0 0.2rem rgba(46, 167, 143, 0.25) !important;
    outline: none !important;
}

/* Browse Products Button Hover Effects (for empty cart) */
.btn-browse-products {
    background: linear-gradient(135deg, #2ea78f 0%, #34c087 100%) !important;
    border: none !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.btn-browse-products:hover {
    background: linear-gradient(135deg, #1e8c73 0%, #2ea78f 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(46, 167, 143, 0.3) !important;
}

.btn-browse-products:focus {
    box-shadow: 0 0 0 0.2rem rgba(46, 167, 143, 0.25) !important;
    outline: none !important;
}

/* Checkout Button Hover Effects */
.btn-checkout {
    background: linear-gradient(135deg, #2ea78f 0%, #34c087 100%) !important;
    border: none !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.btn-checkout:hover:not(:disabled) {
    background: linear-gradient(135deg, #1e8c73 0%, #2ea78f 100%) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(46, 167, 143, 0.3) !important;
}

.btn-checkout:focus {
    box-shadow: 0 0 0 0.2rem rgba(46, 167, 143, 0.25) !important;
    outline: none !important;
}

.btn-checkout:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Remove item button hover effects */
.remove-item {
    transition: all 0.3s ease !important;
}

.remove-item:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3) !important;
}
