/* ═══════════════════════════════════
   Roso Products Carousel — style.css
═══════════════════════════════════ */
.roso-wrap { font-family: 'Discovery', 'Assistant', sans-serif; }
.roso-wrap * { box-sizing: border-box; }

/* Header */
.roso-header {
    text-align: right;
    margin-bottom: 20px;
    direction: rtl;
}
.roso-header-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

/* Viewport + Track */
.roso-viewport { overflow: hidden; }
.roso-track {
    display: flex;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    direction: ltr;
    align-items: stretch;
}

/* Card */
.roso-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

/* Image */
.roso-img-wrap {
    position: relative;
    background: #f2f2f2;
    border-radius: 8px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.roso-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.roso-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    transition: transform 0.35s ease;
}
.roso-card:hover .roso-img-wrap img {
    transform: scale(1.04);
}

/* Badge — top corner, never overflows */
.roso-badge-wrap {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    max-width: calc(100% - 20px);
}
.roso-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    background: #e53935;
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
}

/* Cart buttons — two corners at bottom of image, like reference */
.roso-cart-btn {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    z-index: 3;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.roso-cart-btn:hover { background: #e53935 !important; background-color: #e53935 !important; border-color: #e53935 !important; }
.roso-cart-btn:hover svg { stroke: #fff !important; fill: none !important; }

/* ── scoped לקרוסלה — מנצח את archive.css ── */
.roso-wrap .roso-cart-btn {
    bottom: 12px !important;
    left: 12px !important;
}
.roso-wrap .roso-heart-btn {
    bottom: 12px !important;
    left: 60px !important;
}
.roso-wrap .roso-cart-btn:hover,
.roso-wrap button.roso-cart-btn:hover {
    background: #e53935 !important;
    background-color: #e53935 !important;
    border-color: #e53935 !important;
}
.roso-wrap .roso-cart-btn:hover svg { stroke: #fff !important; fill: none !important; }
.roso-wrap .roso-heart-btn:hover,
.roso-wrap button.roso-heart-btn:hover {
    background: #e53935 !important;
    background-color: #e53935 !important;
    border-color: #e53935 !important;
}
.roso-wrap .roso-heart-btn:hover svg { stroke: #fff !important; fill: none !important; }

/* Active (in wishlist) — strong override so it stays red */
.roso-wrap .roso-heart-btn.active,
.roso-wrap button.roso-heart-btn.active {
    background: #e53935 !important;
    background-color: #e53935 !important;
    border-color: #e53935 !important;
    color: #fff !important;
}
.roso-wrap .roso-heart-btn.active svg {
    fill: #fff !important;
    stroke: #fff !important;
}
/* pop animation on toggle */
.roso-heart-btn.pop {
    animation: roso-heart-pop 0.32s ease;
}
@keyframes roso-heart-pop {
    0%   { transform: scale(1); }
    45%  { transform: scale(1.28); }
    100% { transform: scale(1); }
}

/* Info */
.roso-info {
    padding: 10px 4px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    direction: rtl;
    text-align: right;
    flex: 1;
    min-height: 0;
}

/* Meta row: brand + discount pill */
.roso-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}
.roso-brand {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    text-decoration: underline;
    cursor: pointer;
}
.roso-disc-pill {
    font-size: 11px;
    font-weight: 700;
    background: #e53935;
    color: #fff;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* Product name */
.roso-name-link { text-decoration: none; color: inherit; }
.roso-name {
    font-size: 14px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

/* Prices */
.roso-prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}
.roso-price-sale {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}
.roso-price-sale .woocommerce-Price-amount { font-size: inherit; }
.roso-price-old {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}
.roso-price-old .woocommerce-Price-amount { font-size: inherit; }
.roso-price-reg {
    font-size: 15px;
    font-weight: 700;
    color: #111;
}
.roso-price-reg .woocommerce-Price-amount { font-size: inherit; }

/* Price + more sizes row */
.roso-price-row-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 24px;
}

/* More sizes link */
.roso-more {
    font-size: 12px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
}
.roso-more:hover { text-decoration: underline; }

/* Dots */
.roso-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
}
.roso-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.roso-dot.active { background: #111; transform: scale(1.3); }

/* Footer */
.roso-footer {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}
.roso-viewall {
    display: inline-block;
    padding: 13px 48px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
    direction: rtl;
}
.roso-viewall:hover { background: #333; color: #fff; }

/* Toast */
.roso-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #222;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 99999;
    direction: rtl;
}
.roso-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .roso-img-wrap { height: 240px; }
}
@media (max-width: 600px) {
    .roso-img-wrap { height: 180px; }
    .roso-name { font-size: 12px; }
}

/* ── Navigation arrows ── */
.roso-carousel-outer {
    position: relative;
}
.roso-carousel-outer .roso-viewport {
    width: 100%;
}
.roso-arrow {
    position: absolute;
    top: 10px;
    transform: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #ccc;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 10;
}
.roso-arrow.roso-prev { left: 0; }
.roso-arrow.roso-next { right: 0; }
.roso-arrow svg {
    width: 20px;
    height: 20px;
}
.roso-arrow:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}
.roso-arrow.disabled {
    opacity: 0.25;
    pointer-events: none;
}

/* ── Variation popup ── */
#roso-var-popup { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: flex-end; justify-content: center; }
#roso-var-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
#roso-var-modal {
    position: relative; background: #fff; width: 100%; max-width: 480px;
    border-radius: 16px 16px 0 0; padding: 24px 20px 32px;
    direction: rtl; z-index: 1;
    animation: roso-slide-up 0.25s ease;
}
@keyframes roso-slide-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
#roso-var-close {
    position: absolute; top: 16px; left: 16px;
    background: none; border: none; font-size: 18px; cursor: pointer; color: #888; padding: 4px;
}
#roso-var-title { font-size: 17px; font-weight: 700; margin-bottom: 20px; color: #111; text-align: right; }
.roso-var-group { margin-bottom: 16px; }
.roso-var-label { font-size: 13px; font-weight: 600; color: #555; margin-bottom: 8px; }
.roso-var-options { display: flex; flex-wrap: wrap; gap: 8px; }
.roso-var-opt {
    padding: 7px 16px; border: 1.5px solid #ddd; border-radius: 6px;
    background: #fff; color: #111; font-size: 14px; cursor: pointer;
    transition: all 0.15s;
}
.roso-var-opt:hover { border-color: #e53935; color: #e53935; }
.roso-var-opt.selected { border-color: #e53935; background: #e53935; color: #fff; }
#roso-var-error { color: #e53935; font-size: 13px; margin: 8px 0; min-height: 18px; }
#roso-var-submit {
    width: 100%; padding: 14px; background: #e53935; color: #fff;
    border: none; border-radius: 8px; font-size: 15px; font-weight: 700;
    cursor: pointer; margin-top: 8px; transition: background 0.15s;
}
#roso-var-submit:hover { background: #c62828; }
#roso-var-submit:disabled { background: #ccc; cursor: not-allowed; }

/* ── Heart button — bottom-left next to cart ── */
.roso-heart-btn {
    position: absolute;
    bottom: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    z-index: 6;
    padding: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    outline: none;
}
.roso-heart-btn:hover {
    background: #e53935;
    border-color: #e53935;
    transform: scale(1.1);
    transform-origin: center center;
}
.roso-heart-btn svg {
    display: block;
    flex-shrink: 0;
}
.roso-heart-btn:hover svg { stroke: #fff; }
.roso-heart-btn.active {
    background: #e53935;
    border-color: #e53935;
    color: #fff;
}
.roso-heart-btn.active svg { fill: #fff; stroke: #fff; }

/* override ישן */
.roso-heart-btn {
    border-radius: 50% !important;
    width: 38px !important;
    height: 38px !important;
    padding: 0 !important;
}

/* mobile override — מוסר, נשאר 38px כמו בארכיון */

/* ══════════════════════════════════════
   פילטר קטגוריות — Category Filter Tabs
══════════════════════════════════════ */

.roso-cat-filter {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding: 0 0 14px 0;
    margin-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.roso-cat-filter::-webkit-scrollbar { display: none; }

.roso-cat-btn {
    flex-shrink: 0;
    height: 38px;
    padding: 0 20px;
    background: #F5F5F5;
    color: #111;
    border: 1.5px solid transparent;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Discovery', 'Assistant', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
    letter-spacing: 0.01em;
    outline: none;
}
.roso-cat-btn:hover:not(.active) {
    background: #ebebeb;
    transform: translateY(-1px);
}
.roso-cat-btn.active {
    background: #e53935;
    color: #fff;
    border-color: #e53935;
}

/* ── Card Action Buttons (הוסף לסל / קנה עכשיו) ── */
.roso-card-actions {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
    width: 100%;
}

.roso-card-atc-btn,
.roso-card-buy-btn {
    flex: 1;
    height: 42px;
    padding: 0 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Discovery', 'Assistant', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.18s, transform 0.12s;
    outline: none;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roso-card-atc-btn {
    background: #111111;
    color: #ffffff;
}

.roso-card-buy-btn {
    background: #e53935;
    color: #ffffff;
}

.roso-card-atc-btn:hover,
.roso-card-buy-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.roso-card-atc-btn:active,
.roso-card-buy-btn:active {
    transform: translateY(0);
    opacity: 0.95;
}

.roso-card-atc-btn:disabled,
.roso-card-buy-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ════════════════════════════════════════
   Variation Drawer (same as archive)
   ════════════════════════════════════════ */
.roso-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
}
.roso-overlay.open { opacity: 1; pointer-events: all; }

.roso-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(420px, 100vw);
    background: #fff;
    z-index: 9001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(.4,0,.2,1);
    box-shadow: -6px 0 32px rgba(0,0,0,.12);
    direction: rtl;
    font-family: 'Discovery', 'Assistant', sans-serif;
}
.roso-drawer.open { transform: translateX(0); }

.roso-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 14px;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.roso-drawer-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
}
.roso-drawer-close {
    width: 32px; height: 32px;
    border: none !important;
    background: none !important;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #888 !important;
    transition: background 0.15s, color 0.15s;
    padding: 0 !important;
}
.roso-drawer-close:hover { background: #f5f5f5 !important; color: #111 !important; }

.roso-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.roso-drawer-product {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.roso-drawer-img {
    width: 100px;
    height: 130px;
    object-fit: contain;
    background: #f5f5f5;
    border-radius: 6px;
    flex-shrink: 0;
}
.roso-drawer-meta { flex: 1; }
.roso-drawer-name {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin-bottom: 8px;
}
.roso-drawer-price { font-size: 14px; color: #111; }
.roso-drawer-price .woocommerce-Price-amount { font-size: inherit; }

.roso-drawer-attr-sec { display: flex; flex-direction: column; gap: 10px; }
.roso-drawer-attr-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666;
}
.roso-drawer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.roso-drawer-tag {
    padding: 7px 14px;
    border: 1.5px solid #ddd !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333 !important;
    cursor: pointer;
    transition: all 0.15s;
}
.roso-drawer-tag:hover { border-color: #111 !important; color: #111 !important; }
.roso-drawer-tag.active {
    background: #111 !important;
    border-color: #111 !important;
    color: #fff !important;
}

.roso-drawer-err {
    font-size: 12px;
    color: #e53935;
    padding: 8px 12px;
    background: #fdecea;
    border-radius: 4px;
}

.roso-drawer-foot {
    padding: 14px 20px 10px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}
.roso-drawer-qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.roso-drawer-minus,
.roso-drawer-plus {
    width: 42px; height: 48px;
    border: none !important;
    background: #f5f5f5 !important;
    font-size: 22px !important;
    color: #111 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    transition: background 0.15s;
}
.roso-drawer-minus:hover,
.roso-drawer-plus:hover { background: #eee !important; }
.roso-drawer-qty {
    width: 48px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    color: #111;
}
.roso-drawer-view {
    display: block;
    text-align: center;
    padding: 10px 20px 16px;
    font-size: 12px;
    color: #888;
    text-decoration: underline;
    flex-shrink: 0;
}

.roso-drawer-btns {
    display: flex;
    gap: 10px;
    flex: 1;
    direction: rtl;
}
.roso-drawer-atc {
    flex: 1;
    height: 44px;
    background: #111 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.roso-drawer-atc:hover { opacity: 0.85; }
.roso-drawer-atc:disabled { opacity: 0.6; pointer-events: none; }

.roso-drawer-buy {
    flex: 1;
    height: 44px;
    background: #e53935 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: opacity 0.2s;
    white-space: nowrap;
}
.roso-drawer-buy:hover { opacity: 0.85; }
.roso-drawer-buy:disabled { opacity: 0.6; pointer-events: none; }

@media(max-width:600px){
    .roso-drawer { width: 100vw; }
}

/* ════════════════════════════════════════
   Out of Stock
   ════════════════════════════════════════ */
/* Faded card */
.roso-card.roso-out-of-stock .roso-img-wrap img {
    opacity: 0.55;
    filter: grayscale(0.3);
}
.roso-card.roso-out-of-stock .roso-name,
.roso-card.roso-out-of-stock .roso-prices {
    opacity: 0.7;
}

/* "Out of stock" label on image */
.roso-oos-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(17,17,17,0.82);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    cursor: pointer;
    z-index: 3;
    font-family: 'Discovery', 'Assistant', sans-serif;
}

/* Out-of-stock card button */
.roso-card-oos-btn {
    flex: 1;
    height: 42px;
    padding: 0 10px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #f5f5f5;
    color: #888;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Discovery', 'Assistant', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, border-color 0.18s;
}
.roso-card-oos-btn:hover {
    background: #ececec;
    border-color: #ccc;
}

/* Price-0 "request a quote" badge on image */
.roso-quote-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #e53935;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 6px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    cursor: pointer;
    z-index: 3;
    text-decoration: none;
    font-family: 'Discovery', 'Assistant', sans-serif;
    transition: background 0.18s;
}
.roso-quote-badge:hover { background: #c62828; }

/* Price-0 "request a quote" card button */
.roso-card-quote-btn {
    flex: 1;
    height: 42px;
    padding: 0 10px;
    border: none;
    border-radius: 8px;
    background: #e53935;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Discovery', 'Assistant', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.18s, transform 0.12s;
}
.roso-card-quote-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* OOS popup */
.roso-oos-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 9100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.roso-oos-overlay.open { opacity: 1; pointer-events: all; }

.roso-oos-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.94);
    width: min(380px, 92vw);
    background: #fff;
    z-index: 9101;
    border-radius: 14px;
    padding: 32px 28px 24px;
    box-shadow: 0 12px 48px rgba(0,0,0,.22);
    direction: rtl;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s cubic-bezier(.34,1.56,.64,1);
    font-family: 'Discovery', 'Assistant', sans-serif;
}
.roso-oos-popup.open {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}
.roso-oos-close {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 30px; height: 30px;
    border: none;
    background: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s, color 0.15s;
}
.roso-oos-close:hover { background: #f5f5f5; color: #111; }
.roso-oos-icon {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}
.roso-oos-title {
    font-size: 19px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.roso-oos-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 22px;
}
.roso-oos-wishlist-btn {
    width: 100%;
    height: 46px;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Discovery', 'Assistant', sans-serif;
    cursor: pointer;
    transition: opacity 0.18s, background 0.18s;
    margin-bottom: 10px;
}
.roso-oos-wishlist-btn:hover { opacity: 0.88; }
.roso-oos-wishlist-btn.added { background: #27ae60; }
.roso-oos-contact-btn {
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    background: #fff;
    color: #111;
    border: 1.5px solid #111;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Discovery', 'Assistant', sans-serif;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.18s, color 0.18s;
    margin-bottom: 10px;
}
.roso-oos-contact-btn:hover { background: #111; color: #fff; }
.roso-oos-cancel {
    width: 100%;
    height: 40px;
    background: none;
    color: #999;
    border: none;
    font-size: 13px;
    font-family: 'Discovery', 'Assistant', sans-serif;
    cursor: pointer;
    text-decoration: underline;
}
.roso-oos-cancel:hover { color: #555; }

/* Out-of-stock price label */
.roso-price-oos {
    font-size: 15px;
    font-weight: 700;
    color: #e53935;
    letter-spacing: 0.02em;
}

/* Price-0 "request a quote" label */
.roso-price-quote {
    font-size: 15px;
    font-weight: 700;
    color: #e53935;
    letter-spacing: 0.02em;
}

/* ── Card entrance animation (only active when JS adds .roso-anim) ── */
.roso-track.roso-anim .roso-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s cubic-bezier(.22,.61,.36,1), transform 0.55s cubic-bezier(.22,.61,.36,1);
}
.roso-track.roso-anim .roso-card.roso-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ── Color dots on carousel cards (right-aligned, RTL) ── */
.roso-card-colors{
    display:flex;
    flex-direction:row;
    justify-content:flex-start; /* RTL: flex-start = right edge */
    gap:6px;
    flex-wrap:wrap;
    margin:6px 0 2px;
    width:100%;
}
.roso-color-dot{
    width:16px;height:16px;border-radius:50%;
    border:1.5px solid rgba(0,0,0,.18);
    box-sizing:border-box;cursor:pointer;display:inline-block;padding:0;
    transition:transform .15s ease, box-shadow .15s ease;
}
.roso-color-dot:hover{ transform:scale(1.2); border-color:#111; }
.roso-color-dot.active{ box-shadow:0 0 0 2px #fff inset, 0 0 0 2px #111; border-color:#111; }
