/* ================================================
   QUANTITY SELECTOR (DESKTOP ONLY)
   ================================================ */

.pg-product-quantity {
    margin-bottom: 22px;
}

.pg-quantity-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.pg-quantity-row .pg-product-quantity-label {
    margin-bottom: 0;
}

/* Variation Stock Info */
.pg-variation-stock-info {
    font-size: 12px;
    font-weight: 400;
    color: var(--pg-grey-light);
    transition: all 0.3s ease;
}

.pg-variation-stock-info:empty {
    display: none;
}

.pg-variation-stock-info.is-low {
    color: var(--pg-status-pending-text);
}

.pg-variation-stock-info.is-unavailable {
    color: var(--pg-error);
    font-weight: 500;
}

@media (max-width: 1023px) {
    .pg-product-quantity {
        display: none;
    }
}

.pg-product-quantity-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--pg-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pg-quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--pg-border);
    border-radius: 2px;
    background: var(--pg-white);
    height: 48px;
    overflow: hidden;
}

.pg-quantity-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    color: var(--pg-grey-medium);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    user-select: none;
    transition: color 0.2s ease;
}

.pg-quantity-btn + .pg-quantity-input,
.pg-quantity-input + .pg-quantity-btn {
    border-left: 1px solid var(--pg-border);
}

.pg-quantity-btn:hover,
.pg-quantity-btn:active {
    color: var(--pg-dark);
    background: var(--pg-bg-light);
}

.pg-quantity-input {
    min-width: 68px;
    width: 68px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: var(--pg-dark);
    background: var(--pg-white);
    padding: 0 8px;
}

.pg-quantity-input:focus {
    outline: none;
}

/* ================================================
   DESKTOP ACTION BUTTONS - HIDDEN (NOW IN STICKY FOOTER)
   ================================================ */

.pg-product-actions-desktop {
    display: none !important;
}

.pg-btn-add-cart-desktop {
    display: none !important;
}

