/* --------------------- Classic Style --------------------- */
/* Classic Style */
.tpwqpb_classic .minus, .tpwqpb_classic .plus {
    background: none;
    color: black;
    border: none;
    cursor: pointer;
}
.tpwqpb_classic .minus{
    padding: 5px 15px 5px 10px;
}
.tpwqpb_classic .plus {
    padding: 5px 10px 5px 15px;
}
.tpwqpb_classic .input-text.qty.text {
    margin: 0 10px;
    border: 1px solid #d1d1d1;
    padding: 5px;
    text-align: center;
    width: 20px;
}

.tpwqpb_classic{
    border: 1px solid #000;
}

.tpwqpb_classic input[type="number"]::-webkit-outer-spin-button,
.tpwqpb_classic input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* --------------------- Modern Style --------------------- */
/* Modern Style */
.tpwqpb_modern .minus, .tpwqpb_modern .plus {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 4px;
}
.tpwqpb_classic .input-text.qty.text {
    margin: 0;
    border: none;
    padding: 5px;
    text-align: center;
    width: 20px;
}

/* --------------------- Elegant Style --------------------- */
/* Elegant Style */
.tpwqpb_elegant .minus, .tpwqpb_elegant .plus {
    background-color: #555;
    color: #fff;
    border: 2px solid #555;
    padding: 3px 8px;
    cursor: pointer;
    border-radius: 50%;
    font-weight: bold;
}
.tpwqpb_elegant .input-text.qty.text {
    margin: 0 10px;
    border: 2px solid #555;
    padding: 5px;
    text-align: center;
}

/* --------------------- Minimalist Style --------------------- */
/* Minimalist Style */
.tpwqpb_minimalist .minus, .tpwqpb_minimalist .plus {
    background-color: transparent;
    color: #333;
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 2px;
}
.tpwqpb_minimalist .input-text.qty.text {
    margin: 0 10px;
    border: 1px solid #ccc;
    padding: 5px;
    text-align: center;
}

/* ---------------------- Bold Style ----------------------- */
/* Base styling for the quantity block */
.tpwqpb_bold {
    display: flex;
    align-items: center;
}

/* Styling for the minus and plus buttons */
.tpwqpb_bold .minus, .tpwqpb_bold .plus {
    background-color: #e74c3c; /* Bold red background */
    color: white; /* White text */
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 3px;
    font-size: 16px;
}

/* Styling for the quantity input field */
.tpwqpb_bold .input-text.qty.text {
    margin: 0 10px; /* Space between buttons and input field */
    width: 60px; /* Fixed width for the input field */
    text-align: center;
    border: 2px solid #e74c3c; /* Border color similar to buttons for consistency */
    padding: 5px;
    border-radius: 3px;
}

/* Optional: Styling for the screen-reader label (hidden but accessible for screen readers) */
.tpwqpb_bold .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --------------------------------------------------------- */
/* Unified Style Container */
.tpwqpb_unified {
    display: flex;
    border: 2px solid #666; /* Unified border */
    border-radius: 4px; /* Rounded corners */
    overflow: hidden; /* Ensures the child elements don't overflow the rounded corners */
}

/* Unified Style Minus and Plus Buttons */
.tpwqpb_unified .minus, .tpwqpb_unified .plus {
    background-color: #666; /* Button background color */
    color: white; /* Button text color */
    border: none; /* No individual border for buttons */
    padding: 7px 10px;
    cursor: pointer;
}

/* Unified Style Quantity Input */
.tpwqpb_unified .input-text.qty.text {
    flex-grow: 1; /* Makes the input field expand to fill available space */
    border: none; /* Removes individual border */
    padding: 5px 10px;
    text-align: center;
}

/* --------------------------------------------------------- */