/* Skrytí původního quantity prvku */
.product .quantity {
    display: none !important;
}

/* Skrytí původního tlačítka "Do košíku" pokud existuje custom quantity */
.product .p-tools form.pr-action button.btn-cart {
    display: none !important;
}

/* Styling pro nový custom quantity prvek */
.custom-quantity-wrapper {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-right: 8px;
    visibility: visible !important;
    opacity: 1 !important;
}

.custom-quantity-input {
    width: 60px;
    text-align: center;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    appearance: textfield;
    -moz-appearance: textfield;
}

.custom-quantity-input::-webkit-outer-spin-button,
.custom-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all 0.2s;
    user-select: none;
}

.custom-quantity-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.custom-quantity-btn:active {
    background: #e0e0e0;
}

.custom-quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom-quantity-btn.increase {
    color: #28a745;
}

.custom-quantity-btn.decrease {
    color: #dc3545;
}

/* Loading stav */
.custom-quantity-wrapper.loading .custom-quantity-input,
.custom-quantity-wrapper.loading .custom-quantity-btn {
    opacity: 0.6;
    pointer-events: none;
}
