/* ==========================
   MASB PREMIUM CART
========================== */

.woocommerce-cart .shop_table {
    width: 100%;
    border: none;
    border-collapse: separate;
    border-spacing: 0 18px;
    background: transparent;
}

.woocommerce-cart table.shop_table thead th {
    background: #0b2c59;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 18px;
    border: none;
}

.woocommerce-cart table.shop_table tbody tr {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border-radius: 14px;
}

.woocommerce-cart table.shop_table tbody td {
    padding: 20px 18px;
    border-top: none;
    vertical-align: middle;
}

.woocommerce-cart table.shop_table tbody tr td:first-child {
    border-radius: 14px 0 0 14px;
}

.woocommerce-cart table.shop_table tbody tr td:last-child {
    border-radius: 0 14px 14px 0;
}

.masb-product-thumb img {
    width: 95px;
    height: 95px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ececec;
    transition: .3s;
}

.masb-product-thumb img:hover {
    transform: scale(1.05);
}

/* ==========================
   PRODUCT DETAILS
========================== */

.product-name a {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    line-height: 1.5;
    transition: .3s;
}

.product-name a:hover {
    color: #0b2c59;
}

.product-name dl.variation {
    margin: 10px 0 0;
    font-size: 13px;
    color: #666;
}

.masb-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
}

.masb-stock.in-stock {
    background: #eaf8ef;
    color: #1b8d45;
}

.masb-stock.out-stock {
    background: #ffe8e8;
    color: #d93025;
}

/* ==========================
   QUANTITY
========================== */

.masb-qty-box {
    display: flex;
    justify-content: center;
}

.masb-qty-box .quantity {
    display: inline-flex;
    align-items: center;
}

.masb-qty-box .qty {
    width: 70px;
    height: 42px;
    text-align: center;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: .25s;
    background: #fff;
}

.masb-qty-box .qty:focus {
    border-color: #0b2c59;
    box-shadow: 0 0 0 3px rgba(11,44,89,.12);
}

/* ==========================
   PRICE / SUBTOTAL
========================== */

.masb-price-box,
.masb-subtotal-box {
    font-size: 18px;
    font-weight: 700;
    color: #0b2c59;
}

.product-price .amount,
.product-subtotal .amount {
    color: #0b2c59;
    font-weight: 700;
}

.product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff2f2;
    color: #e53935 !important;
    font-size: 18px;
    transition: all .25s ease;
}

.product-remove a:hover {
    background: #e53935;
    color: #fff !important;
    transform: rotate(90deg) scale(1.08);
}

.product-remove a::before {
    display: none;
}

/* ==========================
   PREMIUM CHECKBOX
========================== */

.masb-check-wrap {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.masb-check-wrap input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.masb-checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #0b2c59;
    border-radius: 7px;
    background: #fff;
    transition: all .25s ease;
    position: relative;
}

.masb-checkmark::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg) scale(0);
    transition: .2s ease;
}

.masb-check-wrap input:checked + .masb-checkmark {
    background: #0b2c59;
    border-color: #0b2c59;
}

.masb-check-wrap input:checked + .masb-checkmark::after {
    transform: rotate(45deg) scale(1);
}

.masb-check-wrap:hover .masb-checkmark {
    transform: scale(1.08);
}