/* ── Webreta Ürün Sistemi — Frontend CSS ──────────────────── */
/* Font: Geist-style clean sans-serif via system stack         */

:root {
    --wus-fg:         #111111 ;
    --wus-fg-muted:   #6b7280 ;
    --wus-border:     #e5e7eb ;
    --wus-bg-light:   #f7f8fa ;
    --wus-accent:     #1a1a1a ;
    --wus-green:      #25d366 ;
    --wus-radius:     8px ;
    --wus-radius-lg:  12px ;
    --wus-shadow:     0 1px 3px rgba(0,0,0,.06) ;
    --wus-shadow-sm:  0 1px 2px rgba(0,0,0,.05) ;
    --wus-shadow-lg:  0 2px 8px rgba(0,0,0,.07) ;
    --wus-max:        1300px ;
    --wus-gap:        24px ;
    --wus-font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif ;
}

/* ── Container ────────────────────────────────────────────── */

.wus-single-wrapper,
.wus-archive-wrapper {
    font-family: var(--wus-font) !important;
    color: var(--wus-fg) !important;
    padding: 32px 16px 64px !important;
}

.wus-container {
    max-width: var(--wus-max) !important;
    margin: 0 auto !important;
}

/* ── Breadcrumb ───────────────────────────────────────────── */

/* ── Page Header ──────────────────────────────────────────── */

.wus-page-header {
    background: #1b3c53 !important;
    padding: 22px 16px !important;
    margin-bottom: 0px !important;
}

.wus-page-header .wus-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.wus-page-header-cat {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,.55) !important;
}

.wus-page-header-title {
    font-size: 27px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -.01em !important;
}

@media (max-width: 768px) {
    .wus-page-header { padding: 18px 16px !important; margin-bottom: 0px !important; }
    .wus-page-header .wus-container { align-items: center !important; text-align: center !important; }
    .wus-page-header-title { font-size: 20px !important; padding-top: 10px;padding-bottom: 10px;}
}

/* ── Product Main (2-col layout) ──────────────────────────── */

.wus-product-main {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 56px !important;
    align-items: start !important;
    margin-bottom: 48px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* ── Gallery ──────────────────────────────────────────────── */

.wus-gallery-section {
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
}

.wus-gallery-thumbs {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    flex-shrink: 0 !important;
    width: 72px !important;
}

.wus-thumb {
    width: 72px !important;
    height: 72px !important;
    border: 2px solid var(--wus-border) !important;
    border-radius: var(--wus-radius) !important;
    overflow: hidden !important;
    cursor: pointer !important;
    padding: 0 !important;
    background: #fff !important;
    transition: border-color .15s !important;
    display: block !important;
}

.wus-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform .2s !important;
}
.wus-thumb:hover { border-color: #aaa; }
.wus-thumb:hover img { transform: scale(1.05); }
.wus-thumb.active { border-color: var(--wus-fg); }

.wus-gallery-main { flex: 1; }

.wus-main-img-wrap {
    position: relative !important;
    background: var(--wus-bg-light) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--wus-border) !important;
}

#wus-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    transition: opacity .2s !important;
}

#wus-main-img.wus-fading { opacity: 0; }

.wus-zoom-btn {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: var(--wus-radius) !important;
    background: rgba(255,255,255,.85) !important;
    backdrop-filter: blur(4px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--wus-fg) !important;
    text-decoration: none !important;
    border: 1px solid var(--wus-border) !important;
    opacity: 0 !important;
    transition: opacity .15s, background .15s !important;
}

.wus-main-img-wrap:hover .wus-zoom-btn { opacity: 1; }
.wus-zoom-btn:hover { background: rgba(255,255,255,1); }

/* ── Inline Breadcrumb (product info) ────────────────────── */

.wus-breadcrumb-inline {
    font-size: 12px !important;
    color: var(--wus-fg-muted) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 4px !important;
    margin-bottom: 14px !important;
}

.wus-breadcrumb-inline a {
    color: var(--wus-fg-muted) !important;
    text-decoration: none !important;
}
.wus-breadcrumb-inline a:hover { color: var(--wus-fg) !important; text-decoration: underline !important; }
.wus-breadcrumb-inline .wus-bc-sep { color: #d1d5db !important; }
.wus-breadcrumb-inline .wus-bc-current { color: var(--wus-fg) !important; font-weight: 500 !important; }

/* Tek görsel varsa thumb strip yok, main tam genişlik */
.wus-gallery-single {
    flex-direction: column !important;
}
.wus-gallery-single .wus-gallery-main {
    width: 100% !important;
    flex: 1 !important;
}

.wus-cats-top {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
    margin-bottom: 8px !important;
}

.wus-cat-chip {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .1em !important;
    color: var(--wus-fg-muted) !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    transition: color .15s !important;
}
.wus-cat-chip + .wus-cat-chip::before { content: ', '; color: #bbb; }
.wus-cat-chip:hover { color: var(--wus-fg); }

.wus-product-title {
    font-size: clamp(24px, 3vw, 34px) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    color: #111 !important;
    margin: 0 0 18px !important;
    letter-spacing: -.025em !important;
}

.wus-product-price {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 0 20px !important;
    letter-spacing: -.01em !important;
    line-height: 1 !important;
}

.wus-divider {
    border: none !important;
    border-top: 1px solid var(--wus-border) !important;
    margin: 18px 0 !important;
}

.wus-product-sku {
    font-size: 13px !important;
    color: var(--wus-fg-muted) !important;
    margin-bottom: 12px !important;
}
.wus-product-sku span { color: var(--wus-fg); font-weight: 500; }

/* Description */
.wus-product-desc {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #374151 !important;
    margin-bottom: 28px !important;
}
.wus-product-desc p { margin: 0 0 14px !important; }
.wus-product-desc p:last-child { margin-bottom: 0 !important; }

/* Editor stilleri */
.wus-product-desc strong,
.wus-product-desc b { font-weight: 700 !important; color: #111 !important; }
.wus-product-desc em,
.wus-product-desc i { font-style: italic !important; }
.wus-product-desc u { text-decoration: underline !important; }
.wus-product-desc s,
.wus-product-desc del { text-decoration: line-through !important; }
.wus-product-desc a { color: #1a1a1a !important; text-decoration: underline !important; }
.wus-product-desc a:hover { color: #555 !important; }

.wus-product-desc h2 { font-size: 20px !important; font-weight: 700 !important; color: #111 !important; margin: 20px 0 10px !important; line-height: 1.3 !important; }
.wus-product-desc h3 { font-size: 17px !important; font-weight: 700 !important; color: #111 !important; margin: 16px 0 8px !important; line-height: 1.3 !important; }
.wus-product-desc h4 { font-size: 15px !important; font-weight: 700 !important; color: #111 !important; margin: 14px 0 6px !important; }

.wus-product-desc ul,
.wus-product-desc ol {
    list-style: revert !important;
    padding-left: 22px !important;
    margin: 0 0 14px !important;
}
.wus-product-desc ul li,
.wus-product-desc ol li {
    margin-bottom: 6px !important;
    padding-left: 0 !important;
}
.wus-product-desc ul li::before,
.wus-product-desc ul li::after,
.wus-product-desc ol li::before,
.wus-product-desc ol li::after {
    display: none !important;
    content: none !important;
}

.wus-product-desc blockquote {
    border-left: 3px solid #e5e7eb !important;
    padding: 8px 16px !important;
    margin: 14px 0 !important;
    color: #6b7280 !important;
    font-style: italic !important;
}

.wus-product-desc table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 14px 0 !important;
    font-size: 14px !important;
}
.wus-product-desc table td,
.wus-product-desc table th {
    padding: 8px 12px !important;
    border: 1px solid #e5e7eb !important;
    vertical-align: top !important;
}
.wus-product-desc table th { background: #f7f8fa !important; font-weight: 600 !important; }

/* ── Contact Buttons ──────────────────────────────────────── */

.wus-contact-btns {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 24px !important;
}

.wus-btn {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 28px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    letter-spacing: normal !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    min-height: unset !important;
    min-width: unset !important;
    max-width: unset !important;
    text-transform: none !important;
    text-shadow: none !important;
    text-align: center !important;
    vertical-align: middle !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    outline: none !important;
    flex: 1 !important;
}

.wus-btn-phone {
    background: #111111 !important;
    color: #ffffff !important;
    border: 2px solid #111111 !important;
    transition: background .18s !important;
}
.wus-btn-phone:hover {
    background: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

.wus-btn-wa {
    background: #ffffff !important;
    color: #075e54 !important;
    border: 2px solid #e5e7eb !important;
    transition: background .18s, border-color .18s !important;
}
.wus-btn-wa:hover {
    background: #25d366 !important;
    color: #ffffff !important;
    border-color: #25d366 !important;
}

.wus-btn svg {
    display: block !important;
    flex-shrink: 0 !important;
    pointer-events: none !important;
}

/* ── Specs Tabs ───────────────────────────────────────────── */

.wus-tabs { margin-bottom: 20px !important; }

.wus-tab-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    border-bottom: 2px solid #e5e7eb !important;
    margin-bottom: 0 !important;
    list-style: none !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.wus-tab-btn {
    display: inline-block !important;
    padding: 11px 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    cursor: pointer !important;
    border-bottom: 2px solid transparent !important;
    margin-bottom: -2px !important;
    white-space: nowrap !important;
    background: none !important;
    border-radius: 0 !important;
    box-sizing: border-box !important;
    line-height: 1.4 !important;
    user-select: none !important;
    letter-spacing: .01em !important;
    transition: color .15s !important;
}

.wus-tab-btn.active,
.wus-tab-btn:hover {
    color: #111 !important;
    border-bottom-color: #111 !important;
    background: none !important;
}

.wus-tab-panel {
    display: none !important;
}
.wus-tab-panel.active {
    display: block !important;
    padding-top: 4px !important;
}

/* ── Specs Table ──────────────────────────────────────────── */

.wus-specs-section {
    margin-bottom: 40px !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 0 !important;
}

.wus-specs-heading {
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
    margin: 0 0 20px !important;
    color: var(--wus-fg) !important;
    padding-bottom: 16px !important;
    border-bottom: 2px solid var(--wus-border) !important;
}

.wus-specs-table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 14px !important;
}

.wus-specs-table tbody tr { border-bottom: 1px solid var(--wus-border); transition: background .12s; }
.wus-specs-table tbody tr:last-child { border-bottom: none; }
.wus-specs-table tbody tr:hover { background: #f9fafb; }

.wus-spec-group td {
    background: var(--wus-bg-light) !important;
    padding: 10px 16px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--wus-fg) !important;
    letter-spacing: .01em !important;
}

.wus-spec-data td {
    padding: 10px 16px !important;
    vertical-align: top !important;
}

.wus-spec-key {
    color: var(--wus-fg-muted) !important;
    width: 55% !important;
}

.wus-spec-val {
    color: var(--wus-fg) !important;
    font-weight: 500 !important;
    font-variant-numeric: tabular-nums !important;
}

/* ── Long content ─────────────────────────────────────────── */

.wus-product-content {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #374151 !important;
    max-width: 780px !important;
}

/* ── Grid + Filter layout ─────────────────────────────────── */

.wus-grid-wrap { margin-bottom: 40px !important; }

.wus-grid-layout {
    display: flex !important;
    gap: 32px !important;
    align-items: flex-start !important;
}

.wus-has-filter .wus-grid {
    flex: 1 !important;
    min-width: 0 !important;
}

/* ── Filter Sidebar ───────────────────────────────────────── */

.wus-filter-sidebar {
    width: 200px !important;
    flex-shrink: 0 !important;
    position: sticky !important;
    top: 24px !important;
}

.wus-filter-heading {
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .07em !important;
    color: #6b7280 !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
}

.wus-filter-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.wus-filter-list li::before,
.wus-filter-list li::after {
    content: none !important;
    display: none !important;
}

.wus-filter-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    font-size: 13.5px !important;
    color: #374151 !important;
    cursor: pointer !important;
    user-select: none !important;
    transition: background .12s !important;
    font-weight: 500 !important;
    gap: 8px !important;
}

.wus-filter-item:hover {
    background: #f3f4f6 !important;
    color: #111 !important;
}

.wus-filter-item.active {
    background: #111 !important;
    color: #fff !important;
    font-weight: 600 !important;
}

.wus-filter-item.active .wus-filter-count {
    background: rgba(255,255,255,.2) !important;
    color: #fff !important;
}

.wus-filter-count {
    font-size: 11px !important;
    background: #e5e7eb !important;
    color: #6b7280 !important;
    border-radius: 20px !important;
    padding: 2px 7px !important;
    font-weight: 600 !important;
    flex-shrink: 0 !important;
    min-width: 20px !important;
    text-align: center !important;
}

/* Filtreli grid kolon düzeltmesi */
.wus-has-filter .wus-grid-cols-4 { grid-template-columns: repeat(3, 1fr) !important; }
.wus-has-filter .wus-grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }

/* Gizli kart */
.wus-card.wus-hidden {
    display: none !important;
}

/* ── Related Products ─────────────────────────────────────── */

.wus-related-wrap {
    padding: 56px 16px 64px !important;
    margin-top: 0 !important;
}

.wus-related-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 28px !important;
}

.wus-related-heading {
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
    margin: 0 !important;
    color: #111 !important;
}

.wus-related-arrows {
    display: flex !important;
    gap: 8px !important;
}

.wus-section-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    letter-spacing: -.02em !important;
    margin: 0 0 24px !important;
    color: var(--wus-fg) !important;
}

.wus-grid {
    display: grid !important;
    gap: var(--wus-gap) !important;
}

.wus-grid-cols-1 { grid-template-columns: 1fr; }
.wus-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.wus-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.wus-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Card ─────────────────────────────────────────────────── */

.wus-card {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    transition: none !important;
}

.wus-card:hover {
    box-shadow: none !important;
    transform: none !important;
}

/* Görsel alanı */
.wus-card-img-wrap {
    display: block !important;
    background: #eeeeee !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    text-decoration: none !important;
    border-radius: 10px !important;
    border: 1px solid #e8edf2 !important;
    box-shadow: 0 2px 8px rgba(27,60,83,.07) !important;
    transition: box-shadow .25s, border-color .25s !important;
    position: relative !important;
}

.wus-card-img-wrap:hover {
    border-color: #c8d6e0 !important;
    box-shadow: 0 8px 28px rgba(27,60,83,.13) !important;
}

.wus-card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    padding: 16px !important;
    box-sizing: border-box !important;
    transition: transform .3s cubic-bezier(.4,0,.2,1) !important;
}

.wus-card-img-wrap:hover img {
    transform: scale(1.04) !important;
}

.wus-card-no-img {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #c0c4cc !important;
}

/* Metin alanı */
.wus-card-body {
    padding: 14px 4px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    background: transparent !important;
    gap: 6px !important;
}

.wus-card-cats {
    font-size: 11px !important;
    color: var(--wus-fg-muted) !important;
    letter-spacing: .05em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}
.wus-card-cats a { color: inherit !important; text-decoration: none !important; }

.wus-card-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    color: #111 !important;
}

.wus-card-title a {
    color: inherit !important;
    text-decoration: none !important;
}

.wus-card-price {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin: 0 !important;
    line-height: 1 !important;
}

.wus-card-excerpt {
    font-size: 13px !important;
    color: #6b7280 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    flex: 1 !important;
}

/* ── Card overlay (hover) ─────────────────────────────────── */

.wus-card-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(17,17,17,.45) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity .22s !important;
    border-radius: 10px !important;
}

.wus-card-img-wrap:hover .wus-card-overlay {
    opacity: 1 !important;
}

.wus-card-overlay-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px 20px !important;
    border-radius: 99px !important;
    letter-spacing: .01em !important;
    transform: translateY(6px) !important;
    transition: transform .22s !important;
    white-space: nowrap !important;
}

.wus-card-img-wrap:hover .wus-card-overlay-btn {
    transform: translateY(0) !important;
}

/* ── Slider ───────────────────────────────────────────────── */

.wus-slider-wrap { margin-bottom: 40px !important; }

/* Outer: ok butonlarını barındırır, slider'ı sıkıştırır */
.wus-slider-outer {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    position: relative !important;
}

.wus-slider {
    flex: 1 !important;
    min-width: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}

.wus-slider-track {
    display: flex !important;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1) !important;
    will-change: transform !important;
    align-items: stretch !important;
}

/* Slide genişliği JS tarafından set ediliyor */
.wus-slide {
    flex-shrink: 0;
    box-sizing: border-box;
}

.wus-slide .wus-card { height: 100% !important; }

/* Ok butonları — slider dışında, flex satırda */
.wus-slider-prev,
.wus-slider-next {
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 1px solid #e5e7eb !important;
    background: #fff !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #111 !important;
    box-sizing: border-box !important;
    user-select: none !important;
    transition: border-color .15s, background .15s !important;
    position: static !important;
    transform: none !important;
    z-index: auto !important;
}

.wus-slider-prev { margin-right: 12px !important; }
.wus-slider-next { margin-left: 12px !important; }

.wus-slider-prev:hover,
.wus-slider-next:hover {
    background: #f3f4f6 !important;
    border-color: #d1d5db !important;
}

.wus-slider-prev svg,
.wus-slider-next svg {
    display: block !important;
    flex-shrink: 0 !important;
    pointer-events: none !important;
}

/* Dots */
.wus-slider-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 18px !important;
    margin-bottom: 0 !important;
}

.wus-dot {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #d1d5db !important;
    cursor: pointer !important;
    display: inline-block !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
    user-select: none !important;
    transition: background .2s, transform .2s !important;
}

.wus-dot.active {
    background: #111 !important;
    transform: scale(1.3) !important;
}

/* ── Archive ──────────────────────────────────────────────── */

.wus-archive-title {
    font-size: clamp(26px, 4vw, 38px) !important;
    font-weight: 700 !important;
    letter-spacing: -.03em !important;
    margin: 0 0 8px !important;
}

.wus-archive-desc {
    font-size: 15px !important;
    color: var(--wus-fg-muted) !important;
    margin: 0 0 32px !important;
}

.wus-pagination {
    margin-top: 40px !important;
    display: flex !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
}

.wus-pagination .page-numbers {
    padding: 8px 14px !important;
    border: 1px solid var(--wus-border) !important;
    border-radius: var(--wus-radius) !important;
    text-decoration: none !important;
    color: var(--wus-fg) !important;
    font-size: 14px !important;
    transition: background .15s !important;
}

.wus-pagination .page-numbers.current,
.wus-pagination .page-numbers:hover { background: var(--wus-fg); color: #fff; border-color: var(--wus-fg); }

/* ── Flatsome Reset — bullet & arrow override ─────────────── */

.wus-single-wrapper ul,
.wus-single-wrapper ol,
.wus-archive-wrapper ul,
.wus-archive-wrapper ol,
.wus-grid ul,
.wus-grid ol,
.wus-card ul,
.wus-card ol {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.wus-single-wrapper li::before,
.wus-single-wrapper li::after,
.wus-archive-wrapper li::before,
.wus-archive-wrapper li::after,
.wus-grid li::before,
.wus-grid li::after,
.wus-card li::before,
.wus-card li::after,
.wus-slider-wrap li::before,
.wus-slider-wrap li::after {
    content: none !important;
    display: none !important;
    background: none !important;
    border: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* wus-product-desc kendi list stillerini yönetir — override etme */
.wus-product-desc li::before,
.wus-product-desc li::after {
    display: none !important;
    content: none !important;
    background: none !important;
    border: none !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Flatsome hover oku (a::before / a::after) */
.wus-card a::before,
.wus-card a::after,
.wus-card-link::before,
.wus-card-link::after,
.wus-card-title a::before,
.wus-card-title a::after,
.wus-breadcrumb a::before,
.wus-breadcrumb a::after,
.wus-cats-top a::before,
.wus-cats-top a::after {
    content: none !important;
    display: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Flatsome underline animasyon sıfırla */
.wus-card a,
.wus-card-link,
.wus-breadcrumb a,
.wus-cats-top a,
.wus-meta-row a {
    background-image: none !important;
    background-size: 0 0 !important;
    background-position: 0 100% !important;
}

/* ── Empty state ──────────────────────────────────────────── */

.wus-empty {
    color: var(--wus-fg-muted) !important;
    font-size: 15px !important;
    padding: 40px 0 !important;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 1024px) {
    .wus-grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
    .wus-filter-sidebar { width: 170px !important; }
    .wus-has-filter .wus-grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .wus-product-main {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
        padding: 0 !important;
    }

    /* Galeri üstte, bilgi altta */
    .wus-gallery-section { order: 1 !important; }
    .wus-product-info    { order: 2 !important; }

    /* Mobilde galeri dikey: önce ana görsel, altında thumb'lar */
    .wus-gallery-section {
        flex-direction: column !important;
    }
    .wus-gallery-thumbs {
        flex-direction: row !important;
        width: 100% !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-top: 10px !important;
    }
    .wus-thumb { width: 60px !important; height: 60px !important; }
    .wus-gallery-main { width: 100% !important; }

    .wus-gallery-thumbs { flex-direction: row; width: auto; flex-wrap: wrap; }
    .wus-thumb { width: 60px; height: 60px; }

    .wus-grid-cols-3,
    .wus-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }

    .wus-contact-btns { flex-direction: column; }
    .wus-btn { flex: none !important; justify-content: center; }

    .wus-specs-section { padding: 0 !important; }
    .wus-tab-nav { margin: 0 !important; }

    /* Filtre mobilde üste yatay scroll */
    .wus-grid-layout { flex-direction: column !important; gap: 16px !important; }
    .wus-filter-sidebar {
        width: 100% !important;
        position: static !important;
    }
    .wus-filter-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        flex-direction: unset !important;
    }
    .wus-has-filter .wus-grid-cols-4,
    .wus-has-filter .wus-grid-cols-3 { grid-template-columns: repeat(2, 1fr) !important; }

    /* Mobilde overlay gizle */
    .wus-card-overlay {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .wus-grid-cols-2,
    .wus-grid-cols-3,
    .wus-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }

    .wus-has-filter .wus-grid-cols-4,
    .wus-has-filter .wus-grid-cols-3 { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Search Box ───────────────────────────────────────────── */

@keyframes wus-spin {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.wus-search-wrap {
    position: relative !important;
    display: inline-block !important;
    font-family: var(--wus-font) !important;
}

/* Dönen gradient çerçeve — pseudo element trick */
.wus-search-box-outer {
    position: relative !important;
    border-radius: 99px !important;
    padding: 2px !important;
    background: #e5e7eb !important;
    overflow: hidden !important;
    transition: background .3s !important;
}

.wus-search-box-outer::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 200% !important;
    height: 200% !important;
    background: conic-gradient(
        from 0deg,
        #1b3c53,
        #4a0e1a,
        #7a1425,
        #4a0e1a,
        #1b3c53
    ) !important;
    border-radius: 0 !important;
    animation: wus-spin 3s linear infinite !important;
    opacity: 1 !important;
}

.wus-search-box-outer:focus-within {
    box-shadow: 0 0 16px rgba(58,123,213,.25), 0 4px 20px rgba(27,60,83,.15) !important;
}

.wus-search-box {
    position: relative !important;
    z-index: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #fff !important;
    border-radius: 99px !important;
    padding: 9px 16px !important;
    min-width: 240px !important;
    box-sizing: border-box !important;
}

.wus-search-icon {
    flex-shrink: 0 !important;
    color: #9ca3af !important;
    display: block !important;
    transition: color .2s !important;
}

.wus-search-box-outer:focus-within .wus-search-icon {
    color: #1b3c53 !important;
}

.wus-search-input {
    all: unset !important;
    flex: 1 !important;
    font-size: 14px !important;
    color: #111 !important;
    line-height: 1 !important;
    background: transparent !important;
    min-width: 0 !important;
}

.wus-search-input::placeholder { color: #b0b7c0 !important; }

.wus-search-clear {
    all: unset !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: #b0b7c0 !important;
    transition: color .15s !important;
    padding: 2px !important;
}
.wus-search-clear:hover { color: #111 !important; }

/* Dropdown */
.wus-search-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06) !important;
    z-index: 99999 !important;
    overflow: hidden !important;
    min-width: 300px !important;
}

.wus-search-results { padding: 6px !important; }

.wus-search-loading,
.wus-search-empty {
    padding: 20px 16px !important;
    font-size: 13px !important;
    color: #9ca3af !important;
    text-align: center !important;
}

.wus-search-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 9px 10px !important;
    border-radius: 9px !important;
    text-decoration: none !important;
    transition: background .12s !important;
    color: #111 !important;
}

.wus-search-item:hover { background: #f3f4f6 !important; }
.wus-search-item:hover .wus-search-item-title { color: #1b3c53 !important; }

.wus-search-item img,
.wus-search-no-thumb {
    width: 46px !important;
    height: 46px !important;
    border-radius: 8px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    background: #f0f0f0 !important;
    padding: 3px !important;
    box-sizing: border-box !important;
}

.wus-search-item-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    min-width: 0 !important;
}

.wus-search-item-cat {
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    color: #9ca3af !important;
}

.wus-search-item-title {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #111 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    transition: color .12s !important;
}

/* ── Product Icons ────────────────────────────────────────── */

.wus-product-icons {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 0 !important;
    margin: 32px 0 32px !important;
    padding: 20px 0 !important;
    border-top: 1px solid #e5e7eb !important;
    border-bottom: 1px solid #e5e7eb !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    background: transparent !important;
    width: 100% !important;
}
.wus-product-icons::-webkit-scrollbar { display: none !important; }

.wus-product-icon {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 7px !important;
    flex: 1 !important;
    text-align: center !important;
}

.wus-product-icon-svg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 47px !important;
    height: 47px !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    color: #5c1b21 !important;
}

.wus-product-icon-svg svg {
    display: block !important;
	 width: 37px !important;
    height: 37px !important;
}

.wus-product-icon-label {
    font-size: 10.5px !important;
    font-weight: 600 !important;
    color: #6b7280 !important;
    line-height: 1.3 !important;
    text-align: center !important;
    white-space: nowrap !important;
}

/* ── Comparison Table ─────────────────────────────────────── */

.wus-ctable-section {
    margin: 0 0 48px !important;
}

.wus-ctable-type-label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #374151 !important;
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid #e5e7eb !important;
}

.wus-ctable-wrap {
    overflow-x: auto !important;
    border-radius: 8px !important;
    border: 1px solid #e5e7eb !important;
}

.wus-ctable {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 13px !important;
    font-family: var(--wus-font) !important;
}

/* Model başlıkları (F01-F06) */
.wus-ctable-groups th {
    background: #374151 !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 10px 16px !important;
    text-align: center !important;
    border: 1px solid #4b5563 !important;
    letter-spacing: .04em !important;
}

/* Sol üst boş köşe */
.wus-ctable-groups th:first-child {
    background: #1f2937 !important;
    border-color: #1f2937 !important;
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
}

/* Grup başlık satırı */
.wus-ctable-group-row td {
    background: #f3f4f6 !important;
    color: #374151 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    border: 1px solid #e5e7eb !important;
    border-left: 3px solid #9ca3af !important;
}

/* Özellik etiketi sütunu */
.wus-ctable-spec-label {
    font-weight: 500 !important;
    color: #374151 !important;
    background: #f9fafb !important;
    text-align: left !important;
    padding: 8px 14px !important;
    white-space: nowrap !important;
    border: 1px solid #e5e7eb !important;
    font-size: 12.5px !important;
    width: 180px !important;
    min-width: 180px !important;
    max-width: 180px !important;
}

/* Değer hücreleri */
.wus-ctable tbody td:not(.wus-ctable-spec-label) {
    padding: 8px 16px !important;
    text-align: left !important;
    border: 1px solid #e5e7eb !important;
    color: #374151 !important;
    font-variant-numeric: tabular-nums !important;
    font-size: 11px !important;
}

.wus-ctable-even td:not(.wus-ctable-spec-label) { background: #ffffff !important; }
.wus-ctable-odd  td:not(.wus-ctable-spec-label) { background: #fafafa !important; }

.wus-ctable tbody tr:not(.wus-ctable-group-row):hover td:not(.wus-ctable-spec-label) {
    background: #fef2f2 !important;
}
.wus-ctable tbody tr:not(.wus-ctable-group-row):hover .wus-ctable-spec-label {
    background: #fef2f2 !important;
    color: #5c1b21 !important;
}