/* Ukryj pole quantity i przyciski "+" oraz "-" dla produktów Level Boost */
.quantity:has(input[type="hidden"]) {
    display: none !important;
}

/* Ukryj pole price-formula */
.price-formula {
    display: none !important;
}

/* Elementy w sekcji w jednym rzędzie */
.wapf-section {
    flex-direction: row;
}
.wapf-section > div {
    flex: 1;
}
@media (max-width: 767px) {
  .wapf-section {
    flex-direction: column;
  }
}