/**
 * Custom Mini Cart Toggle Styles
 * Version: 1.0.0
 */

.custom-mini-cart-toggle-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    /* background: #fff; */
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-mini-cart-toggle-wrapper:hover {
    transform: scale(1.1);
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); */
}

.custom-mini-cart-toggle-wrapper .header-cart-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #333;
}

.custom-mini-cart-toggle-wrapper .icon-shopping-basket,
.custom-mini-cart-toggle-wrapper .icon-shopping-bag,
.custom-mini-cart-toggle-wrapper .icon-shopping-cart {
    font-size: 24px;
    color: #333;
}

.custom-mini-cart-toggle-wrapper .cart-icon {
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-mini-cart-toggle-wrapper .cart-icon strong,
.custom-mini-cart-toggle-wrapper .header-cart-icon[data-icon-label]:after,
.custom-mini-cart-toggle-wrapper .image-icon[data-icon-label]:after {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 4px;
}

.custom-mini-cart-toggle-wrapper .image-icon strong {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-mini-cart-toggle-wrapper {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }
    
    .custom-mini-cart-toggle-wrapper .icon-shopping-basket,
    .custom-mini-cart-toggle-wrapper .icon-shopping-bag,
    .custom-mini-cart-toggle-wrapper .icon-shopping-cart {
        font-size: 40px;
    }
}
