.cart-widget {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    margin-left: 15px;
    padding: 5px;
}

.cart-widget:hover {
    color: var(--primary-color);
    border-bottom: none !important;
}

.cart-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

@media (max-width: 768px) {
    .cart-widget {
        margin-left: 8px;
        padding: 3px;
    }

    .cart-icon {
        width: 20px;
        height: 20px;
    }

    .cart-count-badge {
        font-size: 0.65rem;
        min-width: 16px;
        height: 16px;
        top: -4px;
        right: -6px;
    }
}

@media (max-width: 480px) {
    .cart-widget {
        margin-left: 5px;
    }

    .cart-icon {
        width: 18px;
        height: 18px;
    }

    .cart-count-badge {
        font-size: 0.6rem;
        min-width: 14px;
        height: 14px;
    }
}
