/**
 * Custom WooCommerce Mini Cart Styles
 * Ensures proper display of cart items in the header
 */

/* Cart badge - hide when empty */
.cart-count {
    display: inline-flex !important;
}

.cart-count:empty {
    display: none !important;
}

/* Mini cart product images */
.mini-cart-content .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Mini cart product info */
.mini-cart-content .info-box h6 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}

.mini-cart-content .info-box span {
    font-size: 13px;
}

/* Remove button hover effect */
.mini-cart-content .remove {
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mini-cart-content .remove:hover {
    transform: scale(1.1);
}

/* Loading state */
.mini-cart-content .single-box[style*="opacity"] {
    pointer-events: none;
}

/* Empty cart message */
.mini-cart-content .text-center {
    padding: 40px 20px;
}

/* Ensure footer stays at bottom */
.nav-items-wrapper {
    display: flex;
    flex-direction: column;
}

.nav-items-wrapper .nav-items {
    flex: 1;
    overflow-y: auto;
    max-height: calc(100vh - 250px);
}

.nav-items-wrapper .footer-area {
    margin-top: auto;
}

/* WooCommerce compatibility */
.woocommerce-mini-cart-wrapper .woocommerce-Price-amount {
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .mini-cart-content .icon-box {
        width: 50px !important;
        height: 50px !important;
    }
    
    .mini-cart-content .info-box h6 {
        font-size: 13px;
    }
    
    .mini-cart-content .info-box span {
        font-size: 12px;
    }
}

