.cart-container {
    position: fixed;
    top: 11rem;
    right: 2rem;
    z-index: 1500;
}

.cart-icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cart-icon {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cart-icon-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cart-icon-btn:hover .cart-icon {
    transform: scale(1.2) rotate(-10deg);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #6366f1, #818cf8);
    color: #ffffff;
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.cart-icon-btn:hover .cart-badge {
    transform: scale(1.2);
    box-shadow: 0 4px 14px rgba(255, 87, 51, 0.5);
}

/* Responsive */
@media only screen and (max-width: 1200px) {
    .cart-container {
        top: 10rem;
        right: 1.5rem;
    }

    .cart-icon-btn {
        width: 55px;
        height: 55px;
    }

    .cart-icon {
        font-size: 1.6rem;
    }
}

@media only screen and (max-width: 992px) {
    .cart-container {
        top: 9.5rem;
        right: 1rem;
    }

    .cart-icon-btn {
        width: 50px;
        height: 50px;
    }

    .cart-icon {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .cart-container {
        top: auto;
        bottom: 2rem;
        left: 2rem;
        right: auto;
    }

    .cart-icon-btn {
        width: 55px;
        height: 55px;
    }

    .cart-icon {
        font-size: 1.6rem;
    }

    .cart-badge {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
}

@media only screen and (max-width: 480px) {
    .cart-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .cart-icon-btn {
        width: 50px;
        height: 50px;
    }

    .cart-icon {
        font-size: 1.4rem;
    }

    .cart-badge {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        top: -6px;
        right: -6px;
    }
}