.add-to-cart-bag-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 10;
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    padding: 10px;
    cursor: pointer;
    background-image: url('/wp-content/themes/MG_Wear/assets/img/bag.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.add-to-cart-bag-btn:hover {
    transform: scale(1.1);
}

.add-to-cart-bag-btn:active {
    transform: scale(0.95);
}

.add-to-cart-bag-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.add-to-cart-bag-btn svg {
    display: none;
}

.add-to-cart-bag-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .add-to-cart-bag-btn {
        width: 42px;
        height: 42px;
        padding: 8px;
        bottom: 10px;
        right: 10px;
        background-size: 20px; /* Adjusted icon size */
    }

    .add-to-cart-bag-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .add-to-cart-bag-btn {
        width: 38px;
        height: 38px;
        padding: 7px;
        bottom: 8px;
        right: 8px;
        background-size: 18px; /* Adjusted icon size */
    }

    .add-to-cart-bag-btn svg {
        width: 18px;
        height: 18px;
    }
}