.shop_table {
    width: 100%;
    border-collapse: collapse;
}

.shop_table thead {
    background-color: #f8f8f8;
}

.shop_table th,
.shop_table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid #eaeaea;
}

.shop_table th {
    color: #333;
    font-weight: bold;
}

.shop_table td.product-remove {
    color: #c00;
    cursor: pointer;
}

.shop_table td.product-remove:hover {
    color: #f00;
}

.shop_table td.product-thumbnail img {
    max-width: 100px;
    height: auto;
}

.shop_table td.product-name,
.shop_table td.product-price,
.shop_table td.product-quantity,
.shop_table td.product-subtotal {
    vertical-align: middle;
}

.shop_table td.product-subtotal {
    font-weight: bold;
}

.shop_table .cart_item:last-child td {
    border-bottom: none;
}

.shop_table tr:hover {
    background-color: #f4f4f4;
}

.offer-buttons-wrapper {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-direction: column;
}

.product-actions-wrapper {
    display: flex;
    gap: 1rem;
}

.offer-attribute-wrapper {
    gap: 0.5rem;
    display: flex;
    flex-direction: column;
}

.product-variants-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input.offer-quantity-input {
    height: 51.73px;
    display: block;
    text-align: center;
    width: 60px;
    padding-left: 14px;
}

.toast {
    z-index: 999999;
    width: auto;
    display: flex;
    align-items: start;
    position: fixed;
    bottom: 16px;
    right: 0;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 20px;
    background: #f15e21;
    color: #fff;
    text-align: start;
    width: 380px;
    animation: slideUp .5s forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(20px);
        opacity: 0;
    }
}


@keyframes slideUp {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0px);
        opacity: 1;
    }
}

