/**
 * Wild Bunny Wzory - frontend styles
 */

/* ===== Selector (strona produktu) ===== */
.wbw-selector-wrap {
    margin: 15px 0 !important;
    padding: 10px 12px !important;
    background: #fafafa !important;
    border: 1px solid #eee !important;
    border-radius: 6px !important;
    /* Zapobiega psuciu flex layoutu w form.cart */
    display: block !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    flex-basis: 100% !important;
    clear: both !important;
    box-sizing: border-box !important;
}

/* Usunieto order: -1 (powodowalo problemy z add-to-cart w niektorych motywach) */

.wbw-field-label {
    display: block !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    font-size: 13px !important;
}

.wbw-required {
    color: #e53935 !important;
    margin-left: 3px !important;
}

.wbw-selector-preview {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.wbw-selected-placeholder {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 1 !important;
    min-height: 36px !important;
    padding: 6px 10px !important;
    background: #fff !important;
    border: 1px dashed #ccc !important;
    border-radius: 4px !important;
}

.wbw-selected-placeholder.wbw-has-selection {
    border-style: solid !important;
    border-color: var(--wbw-accent-color, #0f172a) !important;
    background: #fff !important;
}

.wbw-selected-placeholder img {
    width: 32px !important;
    height: 32px !important;
    object-fit: cover !important;
    border-radius: 3px !important;
}

.wbw-placeholder-text {
    color: #999 !important;
    font-style: italic !important;
    font-size: 12px !important;
}

.wbw-selected-text {
    font-weight: 600 !important;
    color: var(--wbw-accent-color, #0f172a) !important;
    font-size: 13px !important;
}

/* Przycisk "Wybierz wzor" - dziedziczy kolory z motywu (klasa .button) */
.wbw-open-gallery {
    padding: 6px 14px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
    /* Kolor, tlo, border-radius z motywu - nie nadpisujemy */
}

/* ===== Modal ===== */
.wbw-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbw-modal[hidden] {
    display: none !important;
}

.wbw-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.wbw-modal-box {
    position: relative;
    background: #fff;
    border-radius: 8px;
    width: 95%;
    max-width: 1100px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    font-family: inherit;
}

.wbw-modal-box * {
    font-family: inherit;
}

.wbw-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.wbw-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: var(--wbw-accent-color, #0f172a);
    font-family: inherit;
}

.wbw-modal-close {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.2s;
}

.wbw-modal-close:hover {
    background: #f5f5f5;
}

.wbw-modal-toolbar {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 15px 24px !important;
    border-bottom: 1px solid #eee !important;
    background: #fafafa !important;
    flex-wrap: wrap !important;
}

.wbw-category-tabs {
    display: flex !important;
    gap: 8px !important;
    flex: 1 1 auto !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    max-width: calc(100% - 220px) !important;
    width: auto !important;
}

.wbw-tab {
    display: inline-flex !important;
    align-items: center !important;
    padding: 8px 16px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
    transition: all 0.2s !important;
    /* Nie pozwol motywowi nadpisac szerokosci */
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: none !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    text-decoration: none !important;
}

.wbw-tab:hover {
    background: #f5f5f5 !important;
    border-color: #999 !important;
    color: #333 !important;
}

.wbw-tab-active,
.wbw-tab.wbw-tab-active {
    /* Uzywa koloru motywu - dark z theme jak przycisk Dodaj do koszyka */
    background: var(--wbw-accent-color, #0f172a) !important;
    color: #fff !important;
    border-color: var(--wbw-accent-color, #0f172a) !important;
}

.wbw-search-box {
    min-width: 200px !important;
    width: 200px !important;
    flex: 0 0 200px !important;
    margin: 0 !important;
}

.wbw-search-input {
    width: 100% !important;
    padding: 8px 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    height: auto !important;
    line-height: 1.5 !important;
    background: #fff !important;
    color: #333 !important;
    margin: 0 !important;
}

@media (max-width: 640px) {
    .wbw-category-tabs {
        max-width: 100% !important;
        width: 100% !important;
    }
    .wbw-search-box {
        width: 100% !important;
        flex: 1 1 100% !important;
    }
}

.wbw-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.wbw-patterns-grid {
    display: grid;
    grid-template-columns: repeat(var(--wbw-cols, 4), 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .wbw-patterns-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .wbw-modal-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .wbw-search-box {
        min-width: 0;
    }
}

.wbw-pattern-item {
    position: relative;
    aspect-ratio: 3/4;
    border: 3px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
    background: #f5f5f5;
}

.wbw-pattern-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wbw-pattern-item.wbw-selected {
    border-color: var(--wbw-accent-color, #0f172a);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.2);
}

.wbw-pattern-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wbw-pattern-number {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Przycisk "wybierz" w prawym gornym rogu miniatury */
.wbw-pattern-check-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--wbw-accent-color, #0f172a);
    border: 2px solid var(--wbw-accent-color, #0f172a);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
    z-index: 2;
}

.wbw-pattern-item:hover .wbw-pattern-check-btn {
    opacity: 1;
}

.wbw-pattern-check-btn:hover {
    background: var(--wbw-accent-color, #0f172a);
    color: #fff;
    transform: scale(1.1);
}

.wbw-pattern-item.wbw-selected .wbw-pattern-check-btn {
    opacity: 1;
    background: var(--wbw-accent-color, #0f172a);
    color: #fff;
}

/* Ikona lupy - hint ze mozna powiekszyc */
.wbw-pattern-zoom-hint {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1;
    pointer-events: none;
}

.wbw-pattern-item:hover .wbw-pattern-zoom-hint {
    opacity: 1;
}

/* Lightbox - powiekszenie wzoru */
.wbw-lightbox {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 2147483647 !important; /* Maksymalny z-index */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.wbw-lightbox[hidden] {
    display: none !important;
}

/* Reset wszystkich child elements zeby motyw nie mieszal */
.wbw-lightbox * {
    box-sizing: border-box !important;
}

.wbw-lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    cursor: pointer;
}

/* === LIGHTBOX TOPBAR === */
.wbw-lightbox-topbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 20px 24px !important;
    z-index: 10 !important;
    pointer-events: none;
}

.wbw-lightbox-topbar > * {
    pointer-events: auto;
}

.wbw-lightbox-counter {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    padding: 8px 14px !important;
    border-radius: 20px !important;
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

.wbw-lightbox-current {
    color: #fff !important;
    font-weight: 800 !important;
}

.wbw-lightbox-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    padding: 0 !important;
    pointer-events: auto !important;
}

/* SVG wewnatrz przyciskow NIE powinny lapac eventow (beda parentowi) */
.wbw-lightbox-close svg,
.wbw-lightbox-nav svg {
    pointer-events: none !important;
}

.wbw-lightbox-close:hover {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    transform: rotate(90deg) !important;
}

/* === LIGHTBOX NAVIGATION ARROWS === */
.wbw-lightbox-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 64px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1a1a1a !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.25s ease !important;
    padding: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
}

.wbw-lightbox-prev {
    left: 24px !important;
}

.wbw-lightbox-next {
    right: 24px !important;
}

.wbw-lightbox-nav:hover {
    background: var(--wbw-accent-color, #0f172a) !important;
    color: #fff !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4) !important;
}

.wbw-lightbox-nav:active {
    transform: translateY(-50%) scale(0.95) !important;
}

.wbw-lightbox-nav:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: none;
}

.wbw-lightbox-prev:hover {
    transform: translateY(-50%) scale(1.1) translateX(-4px) !important;
}

.wbw-lightbox-next:hover {
    transform: translateY(-50%) scale(1.1) translateX(4px) !important;
}

/* === LIGHTBOX CONTENT === */
.wbw-lightbox-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    max-width: 90vw !important;
    max-height: 90vh !important;
    padding: 60px 20px 20px !important;
    z-index: 1 !important;
}

.wbw-lightbox-img-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wbw-lightbox-img {
    max-width: 80vw !important;
    max-height: 70vh !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6) !important;
    background: #fff !important;
    display: block !important;
}

/* === BOTTOM INFO + BUTTON === */
.wbw-lightbox-bottom {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    background: #fff !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.wbw-lightbox-info {
    color: #333 !important;
}

.wbw-lightbox-info {
    display: flex !important;
    gap: 14px !important;
    align-items: center !important;
    color: #fff !important;
    font-size: 15px !important;
}

.wbw-lightbox-number {
    background: var(--wbw-accent-color, #0f172a) !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    font-weight: 800 !important;
    color: #fff !important;
    letter-spacing: 0.5px;
}

.wbw-lightbox-name {
    color: #555 !important;
    font-weight: 500 !important;
}

.wbw-lightbox-select {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    background: var(--wbw-accent-color, #0f172a) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.wbw-lightbox-select:hover {
    background: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5) !important;
}

.wbw-lightbox-select:active {
    transform: translateY(0) !important;
}

/* === KEYBOARD HINT === */
.wbw-lightbox-hint {
    position: absolute !important;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 12px !important;
    text-align: center;
    letter-spacing: 0.3px;
}

.wbw-lightbox-hint kbd {
    display: inline-block;
    padding: 3px 8px;
    margin: 0 2px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    font-family: monospace;
    font-size: 12px;
    color: #fff;
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 768px) {
    /* Lightbox - uzywa dynamicznego vh na iOS Safari */
    .wbw-lightbox {
        height: 100dvh !important; /* dynamic viewport height */
    }

    /* Strzalki nawigacji - wieksze tap-targets (min 48px) */
    .wbw-lightbox-nav {
        width: 48px !important;
        height: 48px !important;
        /* Ukryj strzalki - uzytkownik bedzie swipeowal */
        background: rgba(255, 255, 255, 0.15) !important;
        opacity: 0.7 !important;
    }
    .wbw-lightbox-nav svg {
        width: 28px !important;
        height: 28px !important;
    }
    .wbw-lightbox-prev { left: 8px !important; }
    .wbw-lightbox-next { right: 8px !important; }

    /* Top bar bardziej kompaktowy */
    .wbw-lightbox-topbar {
        padding: 10px 14px !important;
    }
    .wbw-lightbox-counter {
        font-size: 12px !important;
        padding: 6px 10px !important;
    }
    .wbw-lightbox-close {
        width: 44px !important;
        height: 44px !important;
    }
    .wbw-lightbox-close svg {
        width: 22px !important;
        height: 22px !important;
    }

    /* Obraz wypelnia wiecej ekranu */
    .wbw-lightbox-img {
        max-width: 92vw !important;
        max-height: 60vh !important;
    }

    /* Dolny bar - full-width na dole ekranu (sticky bottom) */
    .wbw-lightbox-bottom {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        border-radius: 0 !important;
        padding: 14px !important;
        gap: 12px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
    }
    .wbw-lightbox-info {
        font-size: 13px !important;
        flex: 1 !important;
        flex-direction: column !important;
        gap: 4px !important;
        align-items: flex-start !important;
    }
    .wbw-lightbox-name {
        font-size: 11px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        max-width: 180px !important;
    }
    .wbw-lightbox-select {
        padding: 12px 18px !important;
        font-size: 14px !important;
        flex-shrink: 0 !important;
    }

    /* Ukryj keyboard hint na mobile (nie ma klawiatury) */
    .wbw-lightbox-hint {
        display: none !important;
    }

    /* Content padding - miejsce na bottom bar */
    .wbw-lightbox-content {
        padding: 60px 10px 80px !important;
    }

    /* === MODAL GALERII na mobile === */
    .wbw-modal-box {
        width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
    }
    .wbw-modal-header {
        padding: 14px 16px !important;
    }
    .wbw-modal-header h2 {
        font-size: 16px !important;
    }
    .wbw-modal-close {
        width: 40px !important;
        height: 40px !important;
        font-size: 26px !important;
    }
    .wbw-modal-toolbar {
        padding: 12px 14px !important;
        gap: 10px !important;
    }
    .wbw-modal-body {
        padding: 14px !important;
    }
    .wbw-modal-footer {
        padding: 12px 14px !important;
        position: sticky !important;
        bottom: 0 !important;
        background: #fafafa !important;
    }
    .wbw-confirm-selection {
        padding: 12px 20px !important;
    }

    /* === SELECTOR NA MOBILE === */
    .wbw-selector-wrap {
        padding: 8px 10px !important;
        margin: 12px 0 !important;
    }
    .wbw-selector-preview {
        gap: 8px !important;
    }
    .wbw-selected-placeholder {
        min-height: 40px !important;
    }
    .wbw-open-gallery {
        padding: 8px 16px !important;
        min-height: 36px !important;
        font-size: 13px !important;
    }

    /* === KAFELKI WZOROW NA MOBILE === */
    .wbw-pattern-item {
        border-width: 2px !important;
    }
    .wbw-pattern-check-btn {
        width: 36px !important;
        height: 36px !important;
        opacity: 1 !important; /* zawsze widoczny na mobile */
    }
    .wbw-pattern-zoom-hint {
        display: none !important; /* nie ma hover na mobile */
    }
}

/* Ekstremalnie male ekrany (telefony 320-480px) */
@media (max-width: 480px) {
    .wbw-lightbox-nav {
        width: 44px !important;
        height: 44px !important;
    }
    .wbw-lightbox-img {
        max-height: 55vh !important;
    }
    .wbw-modal-toolbar {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .wbw-category-tabs {
        max-width: 100% !important;
        overflow-x: auto !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .wbw-tab {
        flex-shrink: 0 !important;
    }
}

.wbw-loading,
.wbw-no-results {
    text-align: center;
    padding: 40px;
    color: #999;
    font-style: italic;
    grid-column: 1 / -1;
}

.wbw-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.wbw-selected-info {
    font-size: 14px;
    color: #666;
}

.wbw-confirm-selection {
    padding: 10px 24px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    /* Kolory dziedziczone z motywu przez klase .button */
}

.wbw-confirm-selection:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

/* Body scroll lock gdy modal otwarty */
body.wbw-modal-open {
    overflow: hidden;
}

/* ===== Shortcode "Co nowego" ===== */
.wbw-new-patterns {
    margin: 24px 0;
    --wbw-new-cols: 5;
}

.wbw-new-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #1a1a1a;
}

.wbw-new-grid {
    display: grid;
    grid-template-columns: repeat(var(--wbw-new-cols, 5), 1fr);
    gap: 14px;
}

.wbw-new-item {
    position: relative;
    display: block;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.wbw-new-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.wbw-new-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.wbw-new-item:hover img {
    transform: scale(1.06);
}

.wbw-new-number {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.wbw-new-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #e91e63, #ff5722);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.4);
    animation: wbw-new-pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes wbw-new-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.wbw-new-empty {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
    background: #fafafa;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .wbw-new-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    .wbw-new-title {
        font-size: 18px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .wbw-new-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
