/**
 * Hide quantity-only stock status labels on product listing
 * Target: .amstockstatus.amsts_132 (option_id 132 = "{qty} szt.")
 * 
 * IMPORTANT: Also hide parent wrapper to prevent empty space
 */

/* Hide the quantity label itself */
.amstockstatus.amsts_132 {
    display: none !important;
}

/* Hide parent wrapper when it only contains quantity label (amsts_132) */
/* This prevents empty space where the wrapper has padding/margin */
.amstockstatus-category:has(.amsts_132):not(:has(.amstockstatus:not(.amsts_132))) {
    display: none !important;
}

/* Fallback for browsers without :has() support - hide wrapper if it only has amsts_132 */
.amstockstatus-status-container:has(.amsts_132):not(:has(.amstockstatus:not(.amsts_132))) {
    display: none !important;
}