/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
a.pisol_buy_now_button {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin:10px auto !important;
    max-width:200px;

    min-height: 46px;
    padding: 0 24px;

    border: 0;
    border-radius: 8px;

    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;

    cursor: pointer;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

a.pisol_buy_now_button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

a.pisol_buy_now_button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

a.pisol_buy_now_button:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

a.pisol_buy_now_button:disabled,
a.pisol_buy_now_button[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.pisol_single_buy_now {
    max-width:300px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top:20px !important;
    
    min-height: 46px;
    padding: 0 24px !important;

    border: 0;
    border-radius: 8px !important;

    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;

    cursor: pointer;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.pisol_single_buy_now:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.pisol_single_buy_now:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.pisol_single_buy_now:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}

.pisol_single_buy_now:disabled,
.pisol_single_buy_now[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.pisol-ck-product-row{
    display: flex;
    align-items: center;
}

.pisol-ck-product-row.pi-inline{
    display:inline-block;
}
.pisol-ck-product-row .remove{
    margin-right:7px;
}

.pisol-ck-product-row  .pisol_product_name{
    width:100%;
}

.pisol-ck-product-row .pisol-qty{
    margin-right: 0px;
    margin-left: auto;
    text-align: center;
}

.pisol-ck-product-row .quantity input{
    width:70px;
    padding:5px;
    text-align: center;
}

form.woocommerce-checkout .remove{
    margin-right:7px;
    display:inline !important;
}