/* Custom Quantity Selector Styles */
.custom-qty-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the controls */
    gap: 5px;
    max-width: 150px; /* Limit width */
    margin: 10px auto; /* Space and center */
}

.qty-button {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    border-radius: 3px;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    flex-shrink: 0;
}
.qty-button:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

.qty-input {
    width: 100%;
    max-width: 60px;
    text-align: center;
    font-size: 16px;
    padding: 5px 0;
    border: 1px solid #ccc;
    border-radius: 3px;
    -moz-appearance: textfield; /* Firefox */
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Specific styles for single product page if needed */
.single-product-qty-wrapper .custom-qty-container {
    /* Adjust as needed for single product layout */
    margin: 10px 0; /* Example: align left instead of center */
    justify-content: flex-start;
}

/* Minimum Quantity Message Style */
.min-qty-message {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: center; /* Center on loop */
    font-size: 0.9em;
    color: #555;
}
/* Adjust for single product page */
.woocommerce-product-summary .min-qty-message {
    text-align: left;
    margin-left: 0;
}