#aier-shop .aier-shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px;
}
@media (max-width: 700px) {
  #aier-shop .aier-shop-grid { grid-template-columns: 1fr; }
}
#aier-shop .aier-shop-thumb { margin: -4px -4px 12px; border-radius: 10px 10px 0 0; overflow: hidden; }
#aier-shop .aier-shop-thumb img { width: 100%; height: 160px; object-fit: cover; display: block; }
#aier-shop .aier-event-card { display: flex; flex-direction: column; }


/*  */
/* ==========================================================
   Live Shop Cart Quantity
   ========================================================== */

#aier-shop .aier-shop-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

#aier-shop .aier-shop-qty-wrap {
    display: inline-flex;
    align-items: center;
    height: 44px;

    border: 1px solid #cfd7df;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

#aier-shop .aier-shop-qty-btn {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    background: #f5f7f9;
    color: #143b66;

    padding: 0;
    margin: 0;

    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;

    cursor: pointer;
}

#aier-shop .aier-shop-qty-btn:hover {
    background: #e9edf2;
}

#aier-shop .aier-shop-qty-input {
    width: 58px;
    height: 44px;

    padding: 0 5px;
    margin: 0;

    border: 0;
    border-left: 1px solid #cfd7df;
    border-right: 1px solid #cfd7df;
    border-radius: 0;

    background: #fff;
    color: #143b66;

    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    text-align: center;

    appearance: textfield;
    -moz-appearance: textfield;
}

#aier-shop
.aier-shop-qty-input::-webkit-inner-spin-button,
#aier-shop
.aier-shop-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#aier-shop .aier-shop-qty-input:focus {
    outline: 2px solid #1499a6;
    outline-offset: -2px;
}

#aier-shop .aier-shop-qty-status {
    font-size: 13px;
    font-weight: 700;
    color: #8a97a6;
}

#aier-shop
.aier-shop-qty-status--in-cart {
    color: #0f7a5e;
}

/* While AJAX is updating this product */
#aier-shop .aier-shop-card--updating {
    position: relative;
}

#aier-shop
.aier-shop-card--updating
.aier-shop-qty-wrap {
    opacity: .6;
}

#aier-shop
.aier-shop-card--updating
.aier-shop-qty-btn,
#aier-shop
.aier-shop-card--updating
.aier-shop-qty-input {
    cursor: wait;
}
/*  */