/* Mini Cart Styles */
.custom-mini-cart-container {
    position: relative;
    display: inline-block;
}

.custom-mini-cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
}

.custom-mini-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #0088cc;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    font-weight: bold;
}

.custom-mini-cart-content {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 15px;
    z-index: 9999;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
}

.custom-mini-cart-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.custom-mini-cart-item {
    display: flex;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.custom-mini-cart-item-image {
    width: 60px;
    margin-right: 10px;
}

.custom-mini-cart-item-image img {
    max-width: 100%;
    height: auto;
}

.custom-mini-cart-item-details {
    flex: 1;
    padding-right: 25px; /* Space for remove button */
}

.custom-mini-cart-item-title {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: 1.3;
}

.custom-mini-cart-item-quantity {
    font-size: 12px;
    color: #777;
}

.custom-mini-cart-item-price {
    font-weight: bold;
    margin-top: 5px;
}

.custom-mini-cart-total {
    margin: 10px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: right;
    font-weight: bold;
}

.custom-mini-cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.custom-mini-cart-button {
    display: inline-block;
    padding: 8px 15px;
    background: #f1f1f1;
    color: #333;
    text-decoration: none;
    text-align: center;
    flex: 0 0 48%;
    transition: background-color 0.3s;
}

.custom-mini-cart-button.checkout {
    background: #0088cc;
    color: #fff;
}

.custom-mini-cart-button:hover {
    opacity: 0.8;
}

.custom-mini-cart-empty {
    padding: 20px 0;
    text-align: center;
    color: #777;
}

.custom-mini-cart-remove {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.custom-mini-cart-remove:hover {
    color: #e53935;
}

/* Animation for item removal */
.cart-item-removing {
    animation: fadeOutItem 0.5s ease;
}

@keyframes fadeOutItem {
    from { opacity: 1; }
    to { opacity: 0; transform: translateX(30px); }
}