/* ============================================================
   ShopWoo - Premium Shop Page CSS
   Mobile-first, Apple-grade design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables (overridden by PHP dynamic CSS) ── */
:root {
    --sw-pill-bg:           #ffffff;
    --sw-pill-text:         #111111;
    --sw-pill-hover-bg:     #f5f5f5;
    --sw-pill-hover-text:   #111111;
    --sw-pill-active-bg:    #000000;
    --sw-pill-active-text:  #ffffff;
    --sw-title-color:       #111111;
    --sw-price-color:       #111111;
    --sw-buynow-bg:         #000000;
    --sw-buynow-text:       #ffffff;
    --sw-slider-color:      #000000;
    --sw-badge-bg:          #e53e3e;
    --sw-badge-text:        #ffffff;
    --sw-border:            #eaeaea;
    --sw-bg:                #FAF9F6;
    --sw-white:             #ffffff;
    --sw-radius:            12px;
    --sw-shadow:            0 4px 20px rgba(0,0,0,0.03);
    --sw-transition:        0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --sw-pc-cols:           4;
    --sw-mobile-cols:       2;
    /* Gallery */
    --sw-gallery-arrow-bg:  rgba(255,255,255,0.90);
    --sw-gallery-arrow-ico: #111111;
    --sw-gallery-dot-active:#111111;
    /* Quick View */
    --sw-qv-accent:         #6c47ff;
}

/* ── Base ── */
#shopwoo-app * { box-sizing: border-box; font-family: 'Inter', sans-serif !important; }
#shopwoo-app a { text-decoration: none; }
#shopwoo-app { background: var(--sw-bg); min-height: 100vh; padding-bottom: 80px; }

/* ══ CATEGORY BARS ══ */
.shopwoo-pill-bar-wrap {
    background: #ffffff;
    border-bottom: 1px solid var(--sw-border);
    z-index: 10;
}
.shopwoo-pill-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 24px 24px 20px;
    max-width: 1400px; margin: 0 auto;
}

.sw-pill {
    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid #d0d0d0;
    background: var(--sw-pill-bg);
    color: var(--sw-pill-text);
    font-size: 14px; font-weight: 500;
    cursor: pointer;
    transition: all var(--sw-transition);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sw-pill:hover {
    background: var(--sw-pill-hover-bg) !important;
    color: var(--sw-pill-hover-text) !important;
    border-color: #000;
}
.sw-pill.active {
    background: var(--sw-pill-active-bg) !important;
    color: var(--sw-pill-active-text) !important;
    border-color: var(--sw-pill-active-bg) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* Subcategories Container */
#sw-subcat-container {
    display: none;
    background: #fafafa;
    border-top: 1px solid var(--sw-border);
}
.shopwoo-subcat-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    max-width: 1400px; margin: 0 auto;
}
.sw-sub-pill {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: #ffffff;
    color: #444;
    font-size: 13px; font-weight: 500;
    cursor: pointer;
    transition: all var(--sw-transition);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.sw-sub-pill:hover {
    background: var(--sw-pill-hover-bg);
    color: var(--sw-pill-hover-text);
    border-color: #ddd;
}
.sw-sub-pill.active {
    background: var(--sw-pill-active-bg);
    color: var(--sw-pill-active-text);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ══ MAIN LAYOUT ══ */
.shopwoo-main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    max-width: 1400px; margin: 0 auto;
    padding: 32px 24px 0;
    align-items: start;
}

/* ══ SIDEBAR ══ */
.shopwoo-sidebar {
    position: sticky; top: 32px;
    background: var(--sw-white);
    border-radius: var(--sw-radius);
    border: 1px solid var(--sw-border);
    box-shadow: var(--sw-shadow);
    overflow: hidden;
}
.sw-sidebar-inner { padding: 24px; }

.sw-filter-group {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--sw-border);
}
.sw-filter-group:last-of-type { border-bottom: none; margin-bottom: 0; }

.sw-filter-title {
    font-size: 13px; font-weight: 700;
    color: #111; margin: 0 0 16px;
    text-transform: uppercase; letter-spacing: 0.8px;
}

/* Price Display */
.sw-price-display {
    display: flex; justify-content: space-between;
    font-size: 14px; font-weight: 600; color: #111;
    margin-bottom: 16px;
}

/* Minimalist Range Slider */
.sw-range-wrap { position: relative; height: 32px; margin-bottom: 4px; }
.sw-range-track {
    position: absolute; top: 50%; left: 0; right: 0;
    transform: translateY(-50%); height: 2px;
    background: #e0e0e0; pointer-events: none;
}
.sw-range-fill {
    position: absolute; height: 100%;
    background: var(--sw-slider-color);
}
.sw-range {
    position: absolute; width: 100%; height: 2px;
    -webkit-appearance: none; appearance: none;
    background: transparent; pointer-events: none; top: 50%;
    transform: translateY(-50%); outline: none;
}
.sw-range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 16px; height: 16px; border-radius: 50%;
    background: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    pointer-events: all; cursor: pointer; transition: transform 0.15s;
}
.sw-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.sw-range::-moz-range-thumb {
    width: 16px; height: 16px; border-radius: 50%;
    background: #000; border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    pointer-events: all; cursor: pointer;
}

/* Radio filters */
.sw-radio-list { display: flex; flex-direction: column; gap: 10px; }
.sw-radio-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: #444; cursor: pointer;
    padding: 6px 8px; border-radius: 6px; transition: all 0.2s;
}
.sw-radio-item:hover { background: #f5f5f5; color: #000; }
.sw-radio-item input[type="radio"] { accent-color: var(--sw-slider-color); width: 15px; height: 15px; }

/* Sort Select */
.sw-select {
    width: 100%; padding: 12px 14px;
    border: 1px solid var(--sw-border); border-radius: 8px;
    font-size: 13px; background: #ffffff;
    appearance: none; -webkit-appearance: none;
    cursor: pointer; outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23111' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    padding-right: 36px;
    transition: border-color 0.2s;
}
.sw-select:focus { border-color: #000; }

/* Apply Button */
.sw-apply-btn {
    width: 100%; padding: 14px;
    background: #000000;
    color: #ffffff; border: none; border-radius: 8px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    transition: all var(--sw-transition);
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sw-apply-btn:hover { background: #222222; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* ══ PRODUCT AREA ══ */
.shopwoo-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
}
.sw-result-count { font-size: 13px; color: #666; font-weight: 500; }
.sw-mobile-filter-toggle { display: none; }

/* ══ PRODUCT GRID ══ */
.shopwoo-grid {
    display: grid;
    grid-template-columns: repeat(var(--sw-pc-cols, 4), 1fr);
    gap: 24px;
}

/* ══ PRODUCT CARD ══ */
.shopwoo-product-card {
    background: var(--sw-white);
    border-radius: var(--sw-radius);
    border: 1px solid var(--sw-border);
    box-shadow: var(--sw-shadow);
    overflow: hidden;
    transition: transform var(--sw-transition), box-shadow var(--sw-transition);
    position: relative;
}
.shopwoo-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Card Image Wrapper */
.shopwoo-card-img-wrap {
    display: block; position: relative; overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-bottom: 1px solid var(--sw-border);
}

/* ══ GALLERY SLIDER ══ */
.sw-gallery-track {
    display: flex;
    width: 100%; height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}
.sw-gallery-slide {
    min-width: 100%; height: 100%;
    flex-shrink: 0;
}
.sw-gallery-slide img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Gallery Arrows */
.sw-gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 32px; height: 32px;
    background: var(--sw-gallery-arrow-bg);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 5;
    transition: opacity 0.25s, transform 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    opacity: 0;
    pointer-events: none;
}
.sw-gallery-arrow svg { width: 14px; height: 14px; stroke: var(--sw-gallery-arrow-ico); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.sw-gallery-arrow-prev { left: 8px; }
.sw-gallery-arrow-next { right: 8px; }
.sw-gallery-arrow:hover { transform: translateY(-50%) scale(1.1); }

/* Show arrows on card hover */
.shopwoo-product-card:hover .sw-gallery-arrow,
.bz-product-card-wrap:hover .sw-gallery-arrow {
    opacity: 1;
    pointer-events: auto;
}

/* Always show arrows setting */
.sw-arrows-always .sw-gallery-arrow {
    opacity: 1;
    pointer-events: auto;
}

/* Gallery Dots */
.sw-gallery-dots {
    position: absolute; bottom: 8px;
    left: 50%; transform: translateX(-50%);
    display: flex; gap: 5px; z-index: 5;
}
.sw-gallery-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.sw-gallery-dot.active {
    background: var(--sw-gallery-dot-active);
    transform: scale(1.3);
    border-color: transparent;
}

/* Hover Actions (Buy Now / View) — above gallery arrows */
.shopwoo-hover-actions {
    position: absolute; inset: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; padding: 20px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 6;
}
.shopwoo-product-card:hover .shopwoo-hover-actions {
    opacity: 1; pointer-events: auto;
}

/* Quick View Button (sits above hover overlay on bottom) */
.sw-quick-view-btn {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 10px 0;
    background: var(--sw-qv-accent);
    color: #fff;
    font-size: 12px; font-weight: 700;
    text-align: center; letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer; border: none;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 7;
}
.shopwoo-product-card:hover .sw-quick-view-btn,
.bz-product-card-wrap:hover .sw-quick-view-btn {
    transform: translateY(0);
}

/* Badge */
.shopwoo-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--sw-badge-bg); color: var(--sw-badge-text);
    font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 999px;
    text-transform: uppercase; letter-spacing: 0.5px;
    z-index: 8;
}

.shopwoo-buynow-btn,
.shopwoo-view-btn {
    display: flex; align-items: center; justify-content: center;
    width: 80%; max-width: 160px; height: 42px;
    border-radius: 999px; font-size: 13px; font-weight: 700;
    text-align: center; cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1.5px solid transparent;
}
.shopwoo-buynow-btn {
    background: var(--sw-buynow-bg);
    color: var(--sw-buynow-text);
}
.shopwoo-buynow-btn:hover {
    background: #cba865;
    border-color: #cba865;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(203,168,101,0.3);
}
.shopwoo-view-btn {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
}
.shopwoo-view-btn:hover {
    background: #cba865;
    color: #ffffff;
    border-color: #cba865;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Card Body */
.shopwoo-card-body { padding: 16px 18px 20px; text-align: center; }
.shopwoo-product-title {
    margin: 0 0 8px; font-size: 14px; font-weight: 500;
    line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.shopwoo-product-title a { color: var(--sw-title-color); text-decoration: none; }
.shopwoo-product-title a:hover { text-decoration: underline; }
.shopwoo-product-price { font-size: 14px; font-weight: 600; color: var(--sw-price-color); }
.shopwoo-product-price del { font-size: 12px; color: #999; font-weight: 400; margin-right: 6px; }
.shopwoo-product-price ins { text-decoration: none; }

/* ══ SKELETON LOADER ══ */
@keyframes sw-shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}
.shopwoo-skeleton-card {
    background: var(--sw-white);
    border-radius: var(--sw-radius);
    border: 1px solid var(--sw-border);
    overflow: hidden;
}
.sw-skel-img, .sw-skel-line {
    background: linear-gradient(90deg, #f5f5f5 25%, #e8e8e8 50%, #f5f5f5 75%);
    background-size: 800px 100%;
    animation: sw-shimmer 1.4s infinite linear;
}
.sw-skel-img  { width: 100%; aspect-ratio: 1/1; }
.sw-skel-line { height: 14px; border-radius: 6px; margin: 12px auto; }
.sw-skel-title { width: 70%; }
.sw-skel-price { width: 40%; margin-top: 6px; }

/* ══ PAGINATION ══ */
.shopwoo-pagination {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 40px; flex-wrap: wrap;
}
.sw-page-btn {
    padding: 8px 16px; border-radius: 8px; border: 1px solid var(--sw-border);
    background: #fff; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; color: #333;
}
.sw-page-btn:hover { border-color: #000; color: #000; }
.sw-page-btn.active { background: #000; color: #fff; border-color: #000; }

/* ══ MOBILE FILTER DRAWER ══ */
.sw-drawer-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 99998; opacity: 0; pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.sw-drawer-overlay.open { opacity: 1; pointer-events: auto; }

.sw-drawer {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    background: #fff; border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 85vh; display: flex; flex-direction: column;
}
.sw-drawer.open { transform: translateY(0); }

.sw-drawer-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px 16px; border-bottom: 1px solid var(--sw-border);
    flex-shrink: 0;
}
.sw-drawer-header h3 { font-size: 16px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: 0.5px; }
.sw-drawer-close {
    width: 32px; height: 32px; border-radius: 50%;
    background: #f5f5f5; border: none; cursor: pointer;
    font-size: 14px; display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.sw-drawer-close:hover { background: #e8e8e8; }

.sw-drawer-body {
    overflow-y: auto; padding: 24px;
    flex: 1; -webkit-overflow-scrolling: touch;
}
.sw-drawer-body::-webkit-scrollbar { width: 6px; }
.sw-drawer-body::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

.sw-drawer-footer {
    padding: 16px 24px; border-top: 1px solid var(--sw-border);
    flex-shrink: 0;
}
.sw-drawer-footer .sw-apply-btn { margin-top: 0; }

/* ══ QUICK VIEW MODAL ══ */
.sw-qv-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999990;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.sw-qv-backdrop.open {
    opacity: 1; pointer-events: auto;
}
.sw-qv-modal {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -56%);
    width: 90%; max-width: 860px;
    max-height: 88vh;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.22);
    z-index: 999991;
    display: flex; flex-direction: column;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.sw-qv-modal.open {
    opacity: 1; pointer-events: auto;
    transform: translate(-50%, -50%);
}
.sw-qv-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex: 1;
    overflow: hidden;
}
.sw-qv-img-wrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
}
.sw-qv-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    display: block;
}
.sw-qv-info {
    padding: 32px 28px;
    overflow-y: auto;
    display: flex; flex-direction: column; gap: 16px;
}
.sw-qv-close {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: #f0f0f0; border: none; cursor: pointer;
    font-size: 18px; line-height: 36px; text-align: center;
    transition: background 0.2s; z-index: 2;
}
.sw-qv-close:hover { background: #e0e0e0; }
.sw-qv-title {
    font-size: 20px; font-weight: 700; color: #111; margin: 0;
    line-height: 1.3;
}
.sw-qv-price {
    font-size: 18px; font-weight: 700;
    color: var(--sw-price-color);
}
.sw-qv-price del { font-size: 14px; color: #999; font-weight: 400; margin-right: 6px; }
.sw-qv-price ins { text-decoration: none; }
.sw-qv-desc {
    font-size: 14px; color: #555; line-height: 1.7;
}
.sw-qv-actions {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: auto;
}
.sw-qv-buy-btn, .sw-qv-view-btn {
    display: flex; align-items: center; justify-content: center;
    height: 48px; border-radius: 999px;
    font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all 0.25s;
    border: 2px solid transparent;
    text-decoration: none;
}
.sw-qv-buy-btn {
    background: var(--sw-buynow-bg);
    color: var(--sw-buynow-text);
}
.sw-qv-buy-btn:hover { background: #cba865; border-color: #cba865; }
.sw-qv-view-btn {
    background: transparent;
    color: #111;
    border-color: #111;
}
.sw-qv-view-btn:hover { background: #111; color: #fff; }
.sw-qv-loading {
    display: flex; align-items: center; justify-content: center;
    height: 200px; font-size: 14px; color: #999;
}

/* No products */
.sw-no-products {
    grid-column: 1/-1; text-align: center; padding: 60px 20px;
    font-size: 16px; color: #888;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
    .shopwoo-main-layout { grid-template-columns: 240px 1fr; }
    .shopwoo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .shopwoo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .shopwoo-main-layout { grid-template-columns: 1fr; padding: 20px 16px 80px; }
    .shopwoo-sidebar { display: none; }

    .shopwoo-toolbar { justify-content: space-between; margin-bottom: 16px; }
    .sw-mobile-filter-toggle {
        display: flex; align-items: center; gap: 8px;
        padding: 10px 20px; background: #000; color: #fff;
        border: none; border-radius: 999px; font-size: 13px;
        font-weight: 600; cursor: pointer;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .shopwoo-grid {
        grid-template-columns: repeat(var(--sw-mobile-cols, 2), 1fr);
        gap: 16px;
    }
    #shopwoo-app[data-mobile-cols="1"] .shopwoo-grid { grid-template-columns: 1fr; }

    .shopwoo-pill-bar { padding: 16px 16px; gap: 8px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
    .shopwoo-pill-bar::-webkit-scrollbar { display: none; }
    .sw-pill { padding: 8px 18px; font-size: 12px; }

    .shopwoo-subcat-bar { padding: 12px 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
    .shopwoo-subcat-bar::-webkit-scrollbar { display: none; }

    .shopwoo-card-body { padding: 12px; }
    .shopwoo-product-title { font-size: 13px; }
    .shopwoo-product-price { font-size: 13px; }

    .shopwoo-buynow-btn, .shopwoo-view-btn {
        width: 90%; max-width: 140px; height: 38px; font-size: 12px;
    }

    /* Quick View Modal — Mobile bottom sheet */
    .sw-qv-modal {
        top: auto; left: 0; right: 0; bottom: 0;
        transform: translateY(100%) !important;
        max-width: 100%; width: 100%;
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
    }
    .sw-qv-modal.open {
        transform: translateY(0) !important;
    }
    .sw-qv-inner {
        grid-template-columns: 1fr;
    }
    .sw-qv-img-wrap {
        aspect-ratio: 16/9;
        max-height: 220px;
    }
    .sw-qv-info {
        padding: 20px 20px 32px;
    }
    .sw-qv-title { font-size: 17px; }
    .sw-qv-price { font-size: 16px; }

    /* Gallery arrows always shown on mobile (no hover) */
    .sw-gallery-arrow {
        opacity: 1;
        pointer-events: auto;
        width: 28px; height: 28px;
    }
    .sw-gallery-arrow svg { width: 12px; height: 12px; }
}
