/* Shared quick-order cart icon (store grid + homepage promoted products) */
.store-quick-order,
#promoted_products a.store-quick-order,
#promoted_pricelist a.store-quick-order,
.pricelist-card > a.store-quick-order {
    position: absolute;
    top: 8px;
    right: 8px;
    left: auto;
    bottom: auto;
    inset-inline-end: 8px;
    inset-inline-start: auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    box-sizing: border-box;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    text-decoration: none;
    pointer-events: auto;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

:lang(he) .store-quick-order,
:lang(ar) .store-quick-order,
#promoted_products a.store-quick-order:lang(he),
#promoted_products a.store-quick-order:lang(ar),
#promoted_pricelist a.store-quick-order:lang(he),
#promoted_pricelist a.store-quick-order:lang(ar) {
    right: auto;
    left: 8px;
}

.store-quick-order:hover,
#promoted_products a.store-quick-order:hover,
#promoted_pricelist a.store-quick-order:hover {
    background: #ffffff;
    background-color: #ffffff;
    transform: scale(1.06);
}

.store-quick-order svg {
    width: 30px;
    height: 30px;
    display: block;
    pointer-events: none;
}

.store-quick-order path {
    fill: var(--selected, #41a746);
}

.pricelist-card-wrap,
.promoted-product-wrap {
    position: relative;
    display: block;
}

.pricelist-card {
    position: relative;
}

.pricelist-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
@media screen and (max-width: 600px) {
    .store-quick-order{
        left:2px !important;
        right:auto !important;
        top:2px;
    }

    .store-quick-order:lang(he) {
        right:2px !important;
        left:auto !important;
    }
}
