/* Cart Popup Styles */
.cart-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 90%;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.cart-popup-content {
    padding: 0;
    overflow: hidden;
}

.cart-popup-header {
    background-color: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.cart-popup-header i.bi-check-circle-fill {
    color: #28a745;
    font-size: 24px;
    margin-right: 10px;
}

.cart-popup-header h4 {
    margin: 0;
    flex-grow: 1;
    font-size: 18px;
    font-weight: 600;
}

.close-popup {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    color: #343a40;
}

.cart-popup-body {
    padding: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    border: 1px solid #eee;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.cart-item-details p {
    margin: 0;
    color: #28a745;
    font-size: 14px;
}

.cart-popup-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    background-color: #f8f9fa;
}

.btn-view-cart, .btn-continue-shopping {
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-view-cart {
    background-color: #007bff;
    color: white;
    border: none;
    text-decoration: none;
}

.btn-view-cart:hover {
    background-color: #0069d9;
}

.btn-continue-shopping {
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #ced4da;
}

.btn-continue-shopping:hover {
    background-color: #e9ecef;
}

/* Cart Counter Badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.2s ease;
}

.cart-count.show {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Responsive Styles */
@media (max-width: 576px) {
    .cart-popup {
        width: 95%;
    }
    
    .cart-popup-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-view-cart, .btn-continue-shopping {
        width: 100%;
        text-align: center;
    }
}