
/* mini-cart.css */
.mini-cart-container {
    position: relative;
    display: inline-block;
    z-index: 1000;
}

.cart-icon-badge {
    position: relative;
}

.cart-icon-badge .cart-link {
    display: block;
    position: relative;
    font-size: 20px;
    color: #333;
    text-decoration: none;
    padding: 10px;
}

.cart-icon-badge .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #3498db;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mini-cart-container:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-content {
    max-height: 400px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 20px;
    margin: 0;
    color: #777;
}

.cart-items-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.cart-item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

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

.product-image {
    width: 60px;
    margin-right: 15px;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
}

.product-details {
    flex: 1;
}

.product-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.product-name a {
    color: #333;
    text-decoration: none;
}

.product-name a:hover {
    color: #3498db;
}

.product-meta {
    font-size: 14px;
    color: #666;
}

.product-remove {
    /*position: absolute;*/
    top: 10px;
    right: 0;
}

.product-remove a {
    color: #e74c3c;
    text-decoration: none;
    font-size: 16px;
    display: block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 50%;
    transition: all 0.3s;
}

.product-remove a:hover {
    background: #f9f9f9;
}

.cart-totals {
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 15px 0;
}

.subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
}

.amount {
    color: #e74c3c;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cart-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.view-cart {
    background: #f8f8f8;
    color: #333;
    border: 1px solid #ddd;
}

.view-cart:hover {
    background: #eee;
}

select, .select2-container .select2-selection--single {
    background-image:none !important;}