/* Cart Popup Styles */
.cart-wrapper {
    position: relative;
}

.cart-icon {
    cursor: pointer;
    user-select: none;
}

.cart-popup {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 1000;
    border-radius: 8px;
    flex-direction: column;
    margin-top: 10px;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cart-popup.active {
    display: flex;
}

.cart-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 8px 8px 0 0;
}

.cart-header h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.close-cart {
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    color: #999;
    transition: color 0.2s;
}

.close-cart:hover {
    color: #333;
}

.cart-items {
    max-height: 350px;
    overflow-y: auto;
    padding: 0;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 3px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    transition: background-color 0.2s;
}

.cart-item:hover {
    background-color: #fafafa;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #fff;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 14px;
    margin: 0 0 5px;
    font-weight: 600;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 14px;
    color: #e44d26;
    font-weight: bold;
}

.cart-item-quantity {
    font-size: 12px;
    color: #777;
    margin-left: 5px;
}

.cart-item-remove {
    color: #ccc;
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
    padding: 5px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #e44d26;
}

.empty-cart-message {
    padding: 30px;
    text-align: center;
    color: #777;
    font-style: italic;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
    border-radius: 0 0 8px 8px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.checkout-btn {
    width: 100%;
    background-color: #e44d26;
    color: #fff;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.2s;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    background-color: #c0392b;
}
