/**
 * Screw Counter Styles
 *
 * Styles for the screw counter component on product pages and cart.
 */

/* ========================================
   Product Page - Screw Counter
   ======================================== */

.screw-counter-wrapper {
    display: flex;
    flex-direction: column;
    border: solid 1px #be000f;
    border-radius: 2rem;
    background: #be000f;
    overflow: hidden;
    transition: unset;
    height: 39px;
}

.screw-counter-wrapper .screw-counter-calculation {
    margin: 0;
    padding: 0px 0.75rem;
    font-size: 10px;
    color: white;
    line-height: 1.4;
    text-align: center;
}

.screw-counter-wrapper .screw-counter-total {
    margin: 0;
    padding: 2px 1rem 3px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    color: #333;
    line-height: 1.3;
    text-align: center;
}

/* ========================================
   Cart Page - Screw Counter
   ======================================== */

.cart-screw-counter {
    display: flex;
    flex-direction: column;
    border: solid 1px #be000f;
    border-radius: 2rem;
    background: #be000f;
    overflow: hidden;
    transition: unset;
    height: 39px;
}

/* Cart page quantity column layout */
.woocommerce-cart .woocommerce .woocommerce-cart-form .table-collaterals .shop_table tbody tr td.product-quantity {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    row-gap: 1rem;
}

.woocommerce-cart .woocommerce .woocommerce-cart-form .table-collaterals .shop_table tbody tr td.product-quantity::before {
    display: none;
}

.cart-screw-counter .screw-counter-calculation {
    margin: 0;
    padding: 0px 0.75rem;
    font-size: 10px;
    color: white;
    line-height: 1.4;
    text-align: center;
}

.cart-screw-counter .screw-counter-total {
    margin: 0;
    padding: 2px 1rem 3px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    color: #333;
    line-height: 1.3;
    text-align: center;
}

