/* מבצעי השבוע — תצוגת לקוח */

/* תווית אחוז הנחה — צד שמאל של הכרטיס */
.product.prodi { position: relative; }
.aio-wd-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    background: #e53935;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    padding: 6px 8px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
    direction: ltr;
}

/* מחיר מבצע */
.aio-wd-price .aio-wd-old { color: #888; font-size: .85em; margin-inline-end: 4px; }
.aio-wd-price .aio-wd-new { color: #e53935; font-weight: 700; }

/* קרוסלה */
.aio-wd-carousel-wrap { margin: 20px 0; }
.aio-wd-carousel-title { text-align: center; margin-bottom: 12px; }
.aio-wd-carousel-viewport { position: relative; }
.aio-wd-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 4px;
    scrollbar-width: thin;
}
.aio-wd-carousel > .product {
    flex: 0 0 auto;
    width: 230px;
    scroll-snap-align: start;
}
.aio-wd-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #ffda66;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.aio-wd-prev { right: -6px; }
.aio-wd-next { left: -6px; }

/* גריד עמוד קטגוריית מבצעים */
.aio-wd-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.aio-wd-empty { text-align: center; padding: 30px; font-size: 18px; color: #555; }
