.er-product-select-wrapper {
    direction: rtl;
    font-family: inherit;
    width: fit-content;
}
.er-product-select-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 545px;
}
.er-product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.er-product-row:first-child {
    border-top: 1px solid #e5e5e5;
}
.er-product-row:hover {
    background-color: #f9f9f9;
}
.er-product-row.is-selected {
    background-color: #f0f7ff;
}
.er-product-row__checkbox {
    flex-shrink: 0;
    margin-inline-end: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2271b1;
}
.er-product-row__info {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    margin: 0 10px;
    gap: 20px;
}
.er-product-row__name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.er-product-row__price {
    font-size: 14px;
    color: #555;
}
.er-product-row__price .woocommerce-Price-amount {
    font-weight: 600;
    color: #333;
}
.er-product-row__price > del{
  margin-left: 8px;
}
.er-product-row__image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    background: #f0f0f0;
}
.er-product-row__image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}
.er-add-to-cart-btn {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 13px 20px;
    background-color: #282725;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}
.er-add-to-cart-btn:hover,.er-add-to-cart-btn:focus {
    background-color: #CAA98A;
}
.er-add-to-cart-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.er-product-select-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 12px;
    border-top: 2px solid #e5e5e5;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}
.er-product-select-total__label {
    color: #555;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .er-product-row__price {
    display: flex;
    flex-direction: column;
  }
  .er-product-row__price > del{
    margin-left: unset;
  }
}
