﻿/**
 * Hero / slider tema stilleri â€” body.ui-hero-{style} ile kapsamlandÄ±rÄ±lÄ±r.
 * Klasik stil mevcut style.css dÃ¼zenini korur; yalnÄ±zca Ã¶zelleÅŸtirme deÄŸiÅŸkenleri uygulanÄ±r.
 *
 * GÃ¶rsel sÃ¶zleÅŸmesi:
 * - Klasik: saÄŸ panel 3:2 (1200Ã—800); contain â†’ yanlar her zaman gÃ¶rÃ¼nÃ¼r
 * - Vitrin: benzer panel contain
 * - Fullbleed ailesi: 12:5 (1920Ã—800) oranlÄ± yÃ¼kseklik + cover
 */

/* â€”â€” PaylaÅŸÄ±lan layout sÃ¶zleÅŸmesi (tÃ¼m stiller) â€”â€” */
body[class*="ui-hero-"] .hero {
    height: var(--hero-height, 560px);
    overflow: hidden;
}

/* Tam gÃ¶rsel stiller: yÃ¼kseklik viewportâ€™a oranlÄ± (1920Ã—800 = 12:5), admin yÃ¼ksekliÄŸi tavan */
body.ui-hero-fullbleed .hero,
body.ui-hero-promo .hero,
body.ui-hero-deal .hero,
body.ui-hero-editorial .hero {
    height: min(var(--hero-height, 720px), calc(100vw * 5 / 12));
    max-height: var(--hero-height, 720px);
}

/*
 * Klasik: saÄŸ panel %50 Ã— 3:2 (1200Ã—800).
 * YÃ¼kseklik orana kilitli; cover paneli doldurur â†’ Ã¼stte beyaz ÅŸerit / kayma olmaz.
 * Admin yÃ¼ksekliÄŸi yalnÄ±zca tavan (max-height).
 */
body.ui-hero-classic .hero {
    height: calc(50vw * 2 / 3);
    max-height: var(--hero-height, 800px);
}

/* Vitrin: gÃ¶rsel ~%55 â€” 3:2 */
body.ui-hero-showcase .hero {
    height: calc(55vw * 2 / 3);
    max-height: var(--hero-height, 800px);
}

/* Sol / saÄŸ paneller aynÄ± hizada, tam yÃ¼kseklik */
body.ui-hero-classic .slide {
    display: flex;
    align-items: stretch !important;
}

body.ui-hero-classic .slide-content,
body.ui-hero-classic .slide-image {
    align-self: stretch !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100%;
    margin: 0;
    box-sizing: border-box;
}

body[class*="ui-hero-"] .hero-slider,
body[class*="ui-hero-"] .slide {
    height: 100%;
    min-height: 0;
}

body[class*="ui-hero-"] .slide-image {
    overflow: hidden;
    min-width: 0;
    min-height: 0;
    background: #0f172a;
}

body[class*="ui-hero-"] .slide-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--hero-img-position, center center);
}

/* Klasik / vitrin: paneli doldur (contain Ã¼stte beyaz boÅŸluk bÄ±rakÄ±yordu) */
body.ui-hero-classic .slide-image,
body.ui-hero-showcase .slide-image {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

body.ui-hero-classic .slide-image img,
body.ui-hero-showcase .slide-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

body.ui-hero-fullbleed .slide-image,
body.ui-hero-promo .slide-image {
    background: #111111;
}

body.ui-hero-editorial .slide-image {
    background: #0c0e12;
}

body.ui-hero-deal .slide-image {
    background: #0f1419;
}

body.ui-hero-classic .slide-content {
    min-width: 0;
}

body[class*="ui-hero-"] .slide-content {
    color: var(--hero-text-color, #fff);
    text-align: var(--hero-content-align, left);
    align-items: var(--hero-content-items, flex-start);
    box-sizing: border-box;
}

body[class*="ui-hero-"] .slide-content :is(h1, h2),
body[class*="ui-hero-"] .slide-content p {
    text-align: inherit;
    width: 100%;
    max-width: 100%;
}

body[class*="ui-hero-"] .slide-buttons {
    justify-content: var(--hero-buttons-justify, flex-start);
    width: 100%;
}

/* Metin paneli kapalÄ± veya iÃ§eriksiz â€” gÃ¶rsel tam geniÅŸlik */
body[class*="ui-hero-"] .slide-image--full {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.ui-hero-classic .slide-image--full {
    position: absolute;
    inset: 0;
    height: 100%;
}

@media (max-width: 768px) {
    body.ui-hero-classic .slide-image--full,
    body.ui-hero-showcase .slide-image--full {
        position: relative;
        inset: auto;
        height: auto;
        aspect-ratio: 3 / 2;
        min-height: 200px;
        border-radius: 0;
    }

    body.ui-hero-editorial .slide-image--full,
    body.ui-hero-fullbleed .slide-image--full,
    body.ui-hero-promo .slide-image--full,
    body.ui-hero-deal .slide-image--full {
        position: relative;
        inset: auto;
        height: auto;
        aspect-ratio: 12 / 5;
        min-height: 200px;
        border-radius: 0;
    }
}

body.ui-hero-editorial .slide-image--full {
    inset: clamp(10px, 1.6vw, 18px);
}

body.ui-hero-fullbleed .slide-image--full,
body.ui-hero-showcase .slide-image--full,
body.ui-hero-promo .slide-image--full,
body.ui-hero-deal .slide-image--full {
    inset: 0;
    border-radius: 0;
}

/* Klasik â€” 2 sÃ¼tun dÃ¼zeninde hizalama */
body.ui-hero-classic .slide-content {
    align-items: var(--hero-content-items, flex-start);
    text-align: var(--hero-content-align, left);
}

body[class*="ui-hero-"] .slide-content :is(h1, h2) {
    margin: 0 0 0.45em;
    font-family: var(--hero-title-font, 'Segoe UI', sans-serif);
    font-size: var(--hero-title-size, 48px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--hero-text-color, #fff);
}

body[class*="ui-hero-"] .slide-content p {
    font-family: var(--hero-desc-font, 'Segoe UI', sans-serif);
    font-size: var(--hero-desc-size, 20px);
    color: var(--hero-desc-color, var(--hero-text-color, #fff));
}

body[class*="ui-hero-"] .slide-buttons .btn-primary {
    background: var(--hero-btn-primary-bg, var(--secondary-color));
    color: var(--hero-btn-primary-color, #fff);
    border-color: var(--hero-btn-primary-bg, var(--secondary-color));
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body[class*="ui-hero-"] .slide-buttons .btn-primary:hover:not(.btn-add-cart-detail) {
    background: color-mix(in srgb, var(--hero-btn-primary-bg, var(--secondary-color)) 86%, #000);
    color: var(--hero-btn-primary-color, #fff);
    border-color: color-mix(in srgb, var(--hero-btn-primary-bg, var(--secondary-color)) 86%, #000);
    filter: none;
    transform: translateY(-2px) !important;
    animation: none !important;
    opacity: 1 !important;
    box-shadow: 0 5px 15px color-mix(in srgb, var(--hero-btn-primary-bg, var(--secondary-color)) 40%, transparent);
}

body[class*="ui-hero-"] .slide-buttons .btn-secondary {
    background: var(--hero-btn-secondary-bg, transparent);
    color: var(--hero-btn-secondary-color, #fff);
    border: 2px solid var(--hero-btn-secondary-border, #fff);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body[class*="ui-hero-"] .slide-buttons .btn-secondary:hover {
    background: var(--hero-btn-secondary-border, #fff);
    color: var(--primary-color);
    transform: translateY(-2px) !important;
    animation: none !important;
    opacity: 1 !important;
}

/* fadeInUp + tema hover animasyonu Ã§akÄ±ÅŸmasÄ± â€” hover bitince alttan tekrar gelmesin */
body[class*="ui-hero-"] .slide-buttons,
body[class*="ui-hero-"] .slide-buttons .btn,
body[class*="ui-hero-"] .slide-buttons .hero-slide-btn {
    animation: none !important;
    opacity: 1 !important;
}

body[class*="ui-hero-"] .slider-btn {
    background: var(--hero-nav-btn-bg, rgba(255, 255, 255, 0.2));
    color: var(--hero-nav-btn-color, #fff);
    border-color: var(--hero-nav-btn-border, rgba(255, 255, 255, 0.5));
}

/* YalnÄ±zca seÃ§ilen geÃ§iÅŸ tipi gÃ¶rÃ¼nÃ¼r */
body[class*="ui-hero-"] .hero[data-nav-visible="0"] .slider-controls {
    display: none !important;
}

body[class*="ui-hero-"] .hero[data-dots-visible="0"] .slider-dots {
    display: none !important;
}

/* style.css nokta stillerini sÄ±fÄ±rla â€” pager sÄ±nÄ±fÄ±na gÃ¶re uygula */
body[class*="ui-hero-"] .hero .slider-dots:not(.slider-dots--numbers_stack) {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: calc(100% - 32px);
}

body[class*="ui-hero-"] .hero .slider-dots--numbers_stack {
    position: absolute;
    display: flex;
    z-index: 12;
}

body[class*="ui-hero-"] .hero .slider-dots .dot {
    box-sizing: border-box;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    transition: background 0.25s ease, opacity 0.25s ease, width 0.3s ease, color 0.25s ease, transform 0.25s ease;
}

/* Yuvarlak nokta */
body[class*="ui-hero-"] .slider-dots--dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--hero-dot-color, #fff);
    opacity: 0.45;
}

body[class*="ui-hero-"] .slider-dots--dots .dot.active {
    width: 30px;
    height: 12px;
    border-radius: 6px;
    background: var(--hero-dot-active-color, #fff);
    opacity: 1;
}

/* â€”â€” Ok buton stilleri (yalnÄ±zca ok modunda) â€”â€” */
body[class*="ui-hero-"] .slider-controls--square .slider-btn,
body[class*="ui-hero-"] .hero[data-nav-btn-style="square"] .slider-btn {
    border-radius: 8px;
}

body[class*="ui-hero-"] .slider-controls--square_outline .slider-btn,
body[class*="ui-hero-"] .hero[data-nav-btn-style="square_outline"] .slider-btn {
    border-radius: 6px;
    background: transparent;
    backdrop-filter: none;
}

body[class*="ui-hero-"] .slider-controls--minimal .slider-btn,
body[class*="ui-hero-"] .hero[data-nav-btn-style="minimal"] .slider-btn {
    border-radius: 0;
    background: transparent;
    border-color: transparent;
    backdrop-filter: none;
    width: 44px;
    height: 44px;
}

body[class*="ui-hero-"] .slider-controls--minimal .slider-btn:hover,
body[class*="ui-hero-"] .hero[data-nav-btn-style="minimal"] .slider-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: transparent;
}

/* â€”â€” Sayfalama (pager) stilleri â€”â€” */

/* Premium numara kutusu â€” ortak */
body[class*="ui-hero-"] .slider-dots--numbers .dot,
body[class*="ui-hero-"] .slider-dots--numbers_stack .dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 46px;
    height: 46px;
    min-width: 46px;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    line-height: 1;
    color: var(--hero-num-inactive-color, #fff);
    opacity: 1;
    border-radius: 4px;
    border: 1.5px solid color-mix(in srgb, var(--hero-num-border, #fff) 72%, transparent);
    background: var(--hero-num-inactive-bg, rgba(255, 255, 255, 0.07));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

body[class*="ui-hero-"] .slider-dots--numbers .dot:hover,
body[class*="ui-hero-"] .slider-dots--numbers_stack .dot:hover {
    border-color: color-mix(in srgb, var(--hero-num-border, #fff) 92%, transparent);
    background: rgba(255, 255, 255, 0.12);
}

body[class*="ui-hero-"] .slider-dots--numbers .dot.active,
body[class*="ui-hero-"] .slider-dots--numbers_stack .dot.active {
    color: var(--hero-num-active-color, #fff);
    background: var(--hero-num-active-bg, var(--secondary-color));
    border-color: var(--hero-num-active-bg, var(--secondary-color));
    box-shadow: 0 6px 18px color-mix(in srgb, var(--hero-num-active-bg, #008ed9) 45%, transparent);
    transform: translateY(-1px);
}

body[class*="ui-hero-"] .slider-dots--numbers .dot__label,
body[class*="ui-hero-"] .slider-dots--numbers_stack .dot__label {
    line-height: 1;
}

/* NumaralÄ± yatay: 01  02  03 â€” ok yok */
body[class*="ui-hero-"] .slider-dots--numbers {
    gap: 10px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
}

body[class*="ui-hero-"] .slider-dots--numbers .dot + .dot::before {
    content: none;
}

body[class*="ui-hero-"] .hero[data-control-style="counter"] .slider-controls .slider-btn {
    border-radius: 4px;
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

body[class*="ui-hero-"] .hero[data-control-style="counter"] .slider-controls .slider-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.85);
}

/* Dikey vitrin numaralarÄ± â€” saÄŸ orta, ok yok */
body[class*="ui-hero-"] .hero[data-control-style="numbers_stack"] .slider-dots--numbers_stack {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    bottom: auto;
    left: auto;
    right: clamp(16px, 2.5vw, 32px);
    transform: translateY(-50%);
    gap: 12px;
    padding: 0;
    margin: 0;
    background: transparent;
    backdrop-filter: none;
    max-width: none;
    width: auto;
    z-index: 12;
}

body[class*="ui-hero-"] .slider-dots--numbers_stack .dot {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 14px;
    border-width: 1.5px;
}

body[class*="ui-hero-"] .slider-dots--numbers_stack .dot.active {
    transform: none;
}

/* Kare */
body[class*="ui-hero-"] .slider-dots--squares {
    gap: 8px;
}

body[class*="ui-hero-"] .slider-dots--squares .dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--hero-dot-color, #fff);
    opacity: 0.45;
    transition: width 0.3s ease, opacity 0.25s ease, background 0.25s ease;
}

body[class*="ui-hero-"] .slider-dots--squares .dot.active {
    width: 28px;
    height: 10px;
    border-radius: 2px;
    background: var(--hero-dot-active-color, #fff);
    opacity: 1;
}

/* Kare Ã§erÃ§eve */
body[class*="ui-hero-"] .slider-dots--squares_outline {
    gap: 10px;
}

body[class*="ui-hero-"] .slider-dots--squares_outline .dot {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: transparent;
    border: 2px solid var(--hero-dot-color, #fff);
    opacity: 0.55;
    box-sizing: border-box;
    transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

body[class*="ui-hero-"] .slider-dots--squares_outline .dot.active {
    width: 12px;
    height: 12px;
    background: var(--hero-dot-active-color, #fff);
    border-color: var(--hero-dot-active-color, #fff);
    opacity: 1;
    transform: scale(1.08);
}

/* Bar / Ã§izgi */
body[class*="ui-hero-"] .slider-dots--bar {
    gap: 6px;
    align-items: center;
}

body[class*="ui-hero-"] .slider-dots--bar .dot {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: var(--hero-dot-color, #fff);
    opacity: 0.4;
    transition: width 0.3s ease, opacity 0.25s ease, background 0.25s ease;
}

body[class*="ui-hero-"] .slider-dots--bar .dot.active {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: var(--hero-dot-active-color, #fff);
    opacity: 1;
}

/* SayaÃ§ 01 / 05 */
body[class*="ui-hero-"] .slider-dots--counter {
    gap: 0;
}

body[class*="ui-hero-"] .slider-pager-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
    line-height: 1;
    user-select: none;
}

body[class*="ui-hero-"] .slider-pager-counter__current {
    font-size: 18px;
    font-weight: 700;
    color: var(--hero-dot-active-color, #fff);
}

body[class*="ui-hero-"] .slider-pager-counter__sep {
    font-size: 14px;
    font-weight: 400;
    color: var(--hero-dot-color, #fff);
    opacity: 0.55;
}

body[class*="ui-hero-"] .slider-pager-counter__total {
    font-size: 14px;
    font-weight: 600;
    color: var(--hero-dot-color, #fff);
    opacity: 0.75;
}

.slider-pager-compact {
    display: none;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 220px;
}

.slider-pager-compact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.45);
    color: #fff;
    cursor: pointer;
    flex-shrink: 0;
}

.slider-pager-compact__btn i {
    font-size: 12px;
}

.slider-pager-compact .slider-pager-counter {
    padding: 6px 10px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slider-pager-compact__track {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.28);
    overflow: hidden;
    flex: 1 0 100%;
}

.slider-pager-compact__fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: #fff;
    transition: width 0.35s ease;
}

body[class*="ui-hero-"] .hero .slider-dots--many > .dot {
    display: none !important;
}

body[class*="ui-hero-"] .hero .slider-dots--many .slider-pager-compact {
    display: flex;
}

/* Nav konumu */
body[class*="ui-hero-"] .hero[data-nav-position="bottom"] .slider-controls {
    top: auto;
    bottom: 72px;
    transform: none;
    justify-content: center;
    gap: 12px;
    padding: 0;
    pointer-events: none;
}

body[class*="ui-hero-"] .hero[data-nav-position="bottom"] .slider-btn {
    pointer-events: auto;
    position: static;
    transform: none;
}

body[class*="ui-hero-"] .hero[data-nav-position="hidden"] .slider-controls {
    display: none !important;
}

body[class*="ui-hero-"] .hero[data-dots-visible="0"] .slider-dots,
body[class*="ui-hero-"] .slider-dots--none {
    display: none !important;
}

/* â€”â€” Tam GÃ¶rsel â€”â€” */
body.ui-hero-fullbleed .hero {
    background: #111;
}

body.ui-hero-fullbleed .slide {
    display: block;
}

body.ui-hero-fullbleed .slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    flex: none;
    max-width: none;
    z-index: 1;
}

body.ui-hero-fullbleed .slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--hero-overlay, rgba(0, 0, 0, 0.45)) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

body.ui-hero-fullbleed .slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: min(52%, 640px);
    height: 100%;
    flex: none;
    max-width: none;
    padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 40px);
    background: transparent;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

body.ui-hero-fullbleed .hero[data-content-align="center"] .slide-content {
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    padding-left: clamp(24px, 6vw, 56px);
    padding-right: clamp(24px, 6vw, 56px);
}

body.ui-hero-fullbleed .hero[data-content-align="right"] .slide-content {
    left: auto;
    right: 0;
}

body.ui-hero-fullbleed .hero[data-content-align="right"] .slide-image::after {
    background: linear-gradient(270deg, var(--hero-overlay, rgba(0, 0, 0, 0.45)) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
}

body.ui-hero-fullbleed .hero[data-content-align="center"] .slide-image::after {
    background: linear-gradient(to bottom, var(--hero-overlay, rgba(0, 0, 0, 0.4)) 0%, rgba(0, 0, 0, 0.22) 45%, rgba(0, 0, 0, 0.12) 100%);
}

/* â€”â€” ÃœrÃ¼n Vitrini â€”â€” */
body.ui-hero-showcase .hero {
    background: var(--bg-white, #fff);
}

body.ui-hero-showcase .slide {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

body.ui-hero-showcase .hero-showcase-rail {
    position: relative;
    flex: 0 0 clamp(56px, 6.5vw, 84px);
    width: clamp(56px, 6.5vw, 84px);
    max-width: clamp(56px, 6.5vw, 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 3vh, 32px) clamp(6px, 0.8vw, 10px);
    background: var(--hero-showcase-stripe, var(--text-dark, #263238));
    z-index: 4;
}

body.ui-hero-showcase .hero-showcase-rail::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: var(--hero-btn-primary-bg, var(--secondary-color, #008ed9));
    pointer-events: none;
}

body.ui-hero-showcase .hero-showcase-rail__title {
    margin: 0;
    max-height: 92%;
    overflow: hidden;
    color: #fff;
    font-family: var(--hero-title-font, 'Segoe UI', sans-serif);
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.06;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    text-align: center;
}

body.ui-hero-showcase .slide-content {
    flex: 0 0 32%;
    max-width: 32%;
    min-width: 0;
    height: 100%;
    position: relative;
    padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px);
    background: var(--bg-white, #fff);
    color: var(--text-dark, #263238);
    border-left: none;
    box-shadow: 8px 0 32px rgba(15, 23, 42, 0.08);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: var(--hero-content-items, flex-start);
    text-align: var(--hero-content-align, left);
    overflow: hidden;
}

body.ui-hero-showcase .slide-content :is(h1, h2) {
    color: var(--hero-text-color, var(--text-dark, #263238));
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: clamp(12px, 1.8vh, 18px);
}

body.ui-hero-showcase .slide-content p {
    color: var(--hero-desc-color, #64748b);
    opacity: 1;
    line-height: 1.62;
    margin-bottom: clamp(18px, 2.2vh, 26px);
    max-width: 34ch;
    align-self: var(--hero-content-items, flex-start);
}

body.ui-hero-showcase .slide-image {
    flex: 1 1 55%;
    width: auto;
    max-width: none;
    min-width: 0;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

body.ui-hero-showcase .slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, transparent 18%);
    z-index: 2;
    pointer-events: none;
}

body.ui-hero-showcase .slide-buttons .btn-primary {
    border-radius: 4px;
    font-weight: 700;
    padding: 13px 28px;
}

body.ui-hero-showcase .slide-buttons .btn-secondary {
    color: var(--hero-btn-secondary-color, var(--text-dark, #263238));
    border-color: var(--hero-btn-secondary-border, rgba(15, 23, 42, 0.2));
    border-radius: 4px;
    background: transparent;
}

body.ui-hero-showcase .slide-buttons .btn-secondary:hover {
    background: var(--hero-btn-secondary-border, var(--text-dark, #263238));
    color: #fff;
}

/* â€”â€” Editoryal (tam ekran gÃ¶rsel + orta panel) â€”â€” */
body.ui-hero-editorial .hero {
    background: #0c0e12;
}

body.ui-hero-editorial .slide {
    display: block;
}

body.ui-hero-editorial .slide-image {
    position: absolute;
    inset: clamp(10px, 1.6vw, 18px);
    width: auto;
    height: auto;
    flex: none;
    max-width: none;
    z-index: 1;
    border-radius: 1px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.ui-hero-editorial .slide-image img {
    object-position: var(--hero-img-position, center center);
}

body.ui-hero-editorial .slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 75% at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, transparent 28%, transparent 72%, rgba(0, 0, 0, 0.12) 100%);
    z-index: 2;
    pointer-events: none;
}

body.ui-hero-editorial .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: min(90%, 400px);
    flex: none;
    max-width: none;
    height: auto;
    max-height: calc(100% - 48px);
    min-height: 0;
    padding: clamp(28px, 3.2vw, 40px) clamp(24px, 2.8vw, 36px);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--text-dark, #263238);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: var(--hero-content-items, flex-start);
    text-align: var(--hero-content-align, left);
    overflow: auto;
    box-sizing: border-box;
}

body.ui-hero-editorial .slide-content :is(h1, h2) {
    color: var(--hero-text-color, var(--text-dark, #263238));
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.14;
    margin-bottom: clamp(12px, 1.8vh, 18px);
}

body.ui-hero-editorial .slide-content p {
    color: var(--hero-desc-color, #64748b);
    opacity: 1;
    line-height: 1.62;
    margin-bottom: clamp(18px, 2.2vh, 24px);
    max-width: 34ch;
    align-self: var(--hero-content-items, flex-start);
    font-size: 0.95em;
}

body.ui-hero-editorial .slide-buttons .btn-primary {
    letter-spacing: 0.02em;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 2px;
}

body.ui-hero-editorial .slide-buttons .btn-secondary {
    color: var(--hero-btn-secondary-color, var(--text-dark, #263238));
    border-color: var(--hero-btn-secondary-border, rgba(15, 23, 42, 0.18));
    border-radius: 2px;
    letter-spacing: 0.02em;
    font-size: 14px;
    padding: 10px 22px;
    background: transparent;
}

body.ui-hero-editorial .slide-buttons .btn-secondary:hover {
    background: var(--hero-btn-secondary-border, rgba(15, 23, 42, 0.88));
    color: #fff;
    border-color: transparent;
}

/* â€”â€” Kampanya BandÄ± â€”â€” */
body.ui-hero-promo .hero {
    background: #111;
}

body.ui-hero-promo .slide {
    display: block;
}

body.ui-hero-promo .slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    flex: none;
    max-width: none;
    z-index: 1;
}

body.ui-hero-promo .slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.12) 38%, transparent 68%);
    z-index: 2;
    pointer-events: none;
}

body.ui-hero-promo .slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    height: auto;
    flex: none;
    padding: clamp(20px, 2.8vw, 28px) clamp(24px, 4vw, 56px) clamp(24px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.98);
    color: var(--text-dark, #263238);
    border-top: 4px solid var(--hero-btn-primary-bg, var(--secondary-color, #008ed9));
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: var(--hero-content-items, flex-start);
    text-align: var(--hero-content-align, left);
}

body.ui-hero-promo .hero[data-content-align="center"] .slide-content {
    align-items: center;
    text-align: center;
}

body.ui-hero-promo .hero[data-content-align="right"] .slide-content {
    align-items: flex-end;
    text-align: right;
}

body.ui-hero-promo .slide-content :is(h1, h2) {
    color: var(--hero-text-color, var(--text-dark, #263238));
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: clamp(8px, 1.2vh, 12px);
}

body.ui-hero-promo .slide-content p {
    color: var(--hero-desc-color, #64748b);
    opacity: 1;
    line-height: 1.55;
    margin-bottom: clamp(14px, 1.8vh, 18px);
    max-width: 56ch;
    align-self: var(--hero-content-items, flex-start);
}

body.ui-hero-promo .slide-buttons {
    gap: 12px;
}

body.ui-hero-promo .slide-buttons .btn-primary {
    border-radius: 4px;
    font-weight: 700;
    padding: 12px 26px;
}

body.ui-hero-promo .slide-buttons .btn-secondary {
    color: var(--hero-btn-secondary-color, var(--text-dark, #263238));
    border-color: var(--hero-btn-secondary-border, rgba(15, 23, 42, 0.22));
    border-radius: 4px;
    background: transparent;
}

body.ui-hero-promo .slide-buttons .btn-secondary:hover {
    background: var(--hero-btn-secondary-border, var(--text-dark, #263238));
    color: #fff;
}

/* â€”â€” FÄ±rsat KÃ¶ÅŸesi â€”â€” */
body.ui-hero-deal .hero {
    background: #0f1419;
}

body.ui-hero-deal .slide {
    display: block;
}

body.ui-hero-deal .slide-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    flex: none;
    max-width: none;
    z-index: 1;
}

body.ui-hero-deal .slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.18) 0%, transparent 42%, rgba(0, 0, 0, 0.35) 100%);
    z-index: 2;
    pointer-events: none;
}

body.ui-hero-deal .slide-content {
    position: absolute;
    bottom: clamp(28px, 4.5vh, 52px);
    right: clamp(28px, 4vw, 56px);
    left: auto;
    width: min(92%, 400px);
    flex: none;
    max-width: 400px;
    height: auto;
    max-height: calc(100% - 56px);
    padding: clamp(24px, 2.8vw, 32px) clamp(22px, 2.5vw, 28px);
    background: rgba(255, 255, 255, 0.97);
    color: var(--text-dark, #263238);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: var(--hero-content-items, flex-start);
    text-align: var(--hero-content-align, left);
    overflow: auto;
    box-sizing: border-box;
}

body.ui-hero-deal .hero[data-content-align="center"] .slide-content {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

body.ui-hero-deal .hero[data-content-align="left"] .slide-content {
    left: clamp(28px, 4vw, 56px);
    right: auto;
}

body.ui-hero-deal .hero[data-content-align="right"] .slide-content {
    left: auto;
    right: clamp(28px, 4vw, 56px);
}

body.ui-hero-deal .slide-content :is(h1, h2) {
    color: var(--hero-text-color, var(--text-dark, #263238));
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.14;
    margin-bottom: clamp(10px, 1.5vh, 14px);
}

body.ui-hero-deal .slide-content p {
    color: var(--hero-desc-color, #64748b);
    opacity: 1;
    line-height: 1.58;
    margin-bottom: clamp(16px, 2vh, 22px);
    max-width: 36ch;
    align-self: var(--hero-content-items, flex-start);
}

body.ui-hero-deal .slide-buttons .btn-primary {
    border-radius: 6px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
}

body.ui-hero-deal .slide-buttons .btn-secondary {
    color: var(--hero-btn-secondary-color, var(--text-dark, #263238));
    border-color: var(--hero-btn-secondary-border, rgba(15, 23, 42, 0.2));
    border-radius: 6px;
    background: transparent;
    width: 100%;
    text-align: center;
}

body.ui-hero-deal .slide-buttons .btn-secondary:hover {
    background: var(--hero-btn-secondary-border, var(--text-dark, #263238));
    color: #fff;
}

body.ui-hero-deal .slide-buttons {
    flex-direction: column;
    width: 100%;
}

/* â€”â€” Slide etiketleri (e-ticaret rozetleri) â€”â€” */
body[class*="ui-hero-"] .hero[data-show-badge="0"] .hero-slide-badge {
    display: none !important;
}

body[class*="ui-hero-"] .hero-slide-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap;
    max-width: min(92vw, 220px);
    overflow: hidden;
    text-overflow: ellipsis;
    background: var(--slide-badge-bg, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9)));
    color: var(--slide-badge-color, var(--hero-btn-primary-color, #fff));
}

/* FÄ±rsat kÃ¶ÅŸesi â€” kÃ¶ÅŸe etiketi */
body.ui-hero-deal .hero-slide-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    min-width: clamp(108px, 16vw, 148px);
    max-width: none;
    padding: clamp(14px, 2.2vh, 20px) clamp(18px, 2.5vw, 28px) clamp(14px, 2.2vh, 20px) clamp(14px, 2vw, 22px);
    background: var(--slide-badge-bg, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9)));
    color: var(--slide-badge-color, var(--hero-btn-primary-color, #fff));
    font-size: clamp(10px, 1.1vw, 12px);
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
    box-shadow: 4px 6px 22px rgba(0, 0, 0, 0.28);
}

/* Kampanya bandÄ± + tam gÃ¶rsel â€” yÃ¼zen rozet */
body.ui-hero-promo .hero-slide-badge,
body.ui-hero-fullbleed .hero-slide-badge {
    position: absolute;
    top: clamp(18px, 3vw, 32px);
    left: clamp(18px, 3vw, 32px);
    z-index: 4;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 11px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

body.ui-hero-promo .hero-slide-badge::before,
body.ui-hero-fullbleed .hero-slide-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 4px 0 0 4px;
    background: rgba(255, 255, 255, 0.45);
}

body.ui-hero-fullbleed .hero[data-content-align="right"] .hero-slide-badge {
    left: auto;
    right: clamp(18px, 3vw, 32px);
}

body.ui-hero-fullbleed .hero[data-content-align="center"] .hero-slide-badge {
    left: 50%;
    transform: translateX(-50%);
}

/* Vitrin + editoryal â€” panel etiketi */
body.ui-hero-showcase .hero-slide-badge,
body.ui-hero-editorial .hero-slide-badge {
    align-self: var(--hero-content-items, flex-start);
    margin-bottom: clamp(10px, 1.5vh, 14px);
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 10px;
    background: var(--slide-badge-bg, color-mix(in srgb, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9)) 14%, #fff));
    color: var(--slide-badge-color, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9)));
    border: 1px solid color-mix(in srgb, var(--slide-badge-bg, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9))) 38%, transparent);
}

/* Klasik â€” premium cam etiket (koyu panelde) */
body.ui-hero-classic .hero-slide-badge {
    align-self: var(--hero-content-items, flex-start);
    position: relative;
    margin-bottom: clamp(14px, 2vh, 20px);
    padding: 9px 18px 9px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    line-height: 1.2;
    gap: 8px;
    max-width: min(92vw, 280px);
    color: var(--slide-badge-color, #f7f3ea);
    background: var(
        --slide-badge-bg,
        linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%)
    );
    border: 1px solid color-mix(in srgb, var(--slide-badge-bg, #d4af37) 42%, rgba(255, 255, 255, 0.28));
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px) saturate(1.15);
    -webkit-backdrop-filter: blur(12px) saturate(1.15);
}

body.ui-hero-classic .hero-slide-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--slide-badge-color, #d4af37);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--slide-badge-color, #d4af37) 28%, transparent);
}

/* Ã–zel renk seÃ§ildiyse cam yerine dÃ¼z premium dolgu */
body.ui-hero-classic .hero-slide-badge[style*="--slide-badge-bg"] {
    background: var(--slide-badge-bg);
    border-color: color-mix(in srgb, var(--slide-badge-bg) 70%, #fff);
    box-shadow:
        0 10px 28px color-mix(in srgb, var(--slide-badge-bg) 35%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.ui-hero-classic .hero-slide-badge[style*="--slide-badge-bg"]::before {
    background: var(--slide-badge-color, #fff);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--slide-badge-color, #fff) 25%, transparent);
}

body.ui-hero-showcase .hero-slide-badge:not([style*="--slide-badge-bg"]) {
    background: color-mix(in srgb, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9)) 10%, #fff);
}

body.ui-hero-editorial .hero-slide-badge:not([style*="--slide-badge-bg"]) {
    background: color-mix(in srgb, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9)) 12%, #fff);
}

/* Kampanya bandÄ± â€” panel iÃ§i etiket */
body.ui-hero-promo .slide-content .hero-slide-badge {
    position: static;
    transform: none;
    box-shadow: none;
    margin-bottom: 10px;
    align-self: var(--hero-content-items, flex-start);
    background: var(--slide-badge-bg, color-mix(in srgb, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9)) 12%, #fff));
    color: var(--slide-badge-color, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9)));
    border: 1px solid color-mix(in srgb, var(--slide-badge-bg, var(--hero-btn-primary-bg, var(--secondary-color, #008ed9))) 35%, transparent);
}

/* â€”â€” Tablet (769â€“991): tema kimliÄŸini koru, legacy overlay yok â€”â€” */
@media (max-width: 991px) and (min-width: 769px) {
    body.ui-hero-classic .hero {
        height: calc(50vw * 2 / 3);
        max-height: var(--hero-height, 800px);
    }

    body.ui-hero-showcase .hero {
        height: calc(55vw * 2 / 3);
        max-height: var(--hero-height, 800px);
    }

    body.ui-hero-fullbleed .hero,
    body.ui-hero-promo .hero,
    body.ui-hero-deal .hero,
    body.ui-hero-editorial .hero {
        height: min(var(--hero-height, 720px), calc(100vw * 5 / 12));
        max-height: var(--hero-height, 720px);
    }

    body.ui-hero-classic .slide-content {
        padding: 0 clamp(20px, 3vw, 32px);
    }

    body.ui-hero-classic .slide-content :is(h1, h2) {
        font-size: clamp(28px, 3.4vw, 40px);
    }

    body.ui-hero-classic .slide-content p {
        font-size: clamp(15px, 1.8vw, 18px);
    }

    body.ui-hero-fullbleed .slide-content {
        width: min(58%, 520px);
        padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 32px);
    }

    body.ui-hero-showcase .slide-content {
        flex: 0 0 36%;
        max-width: 36%;
        padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
    }

    body.ui-hero-showcase .hero-showcase-rail {
        flex: 0 0 56px;
        width: 56px;
        max-width: 56px;
    }

    body.ui-hero-editorial .slide-image {
        inset: 12px;
    }

    body.ui-hero-editorial .slide-content {
        width: min(88%, 360px);
        padding: 24px 22px;
    }

    body.ui-hero-promo .slide-content {
        padding: 18px 24px 22px;
    }

    body.ui-hero-deal .slide-content {
        width: min(90%, 340px);
        max-width: 340px;
        bottom: 24px;
        right: 24px;
        padding: 20px 18px;
    }

    body.ui-hero-deal .hero[data-content-align="left"] .slide-content {
        left: 24px;
        right: auto;
    }
}

/* â€”â€” Mobil â€”â€” */
@media (max-width: 768px) {
    body[class*="ui-hero-"] .slide-content :is(h1, h2) {
        font-size: var(--hero-title-size-mobile, 28px);
    }

    body[class*="ui-hero-"] .slide-content p {
        font-size: var(--hero-desc-size-mobile, 15px);
    }

    /* â€”â€” Mobil stack: gÃ¶rsel Ã¼stte (12:5), iÃ§erik altta â€” aÅŸÄ±rÄ± min-height yok â€”â€” */
    body.ui-hero-classic .hero,
    body.ui-hero-fullbleed .hero,
    body.ui-hero-editorial .hero,
    body.ui-hero-promo .hero,
    body.ui-hero-deal .hero,
    body.ui-hero-showcase .hero {
        height: auto;
        min-height: 0;
        max-height: none;
        display: flex;
        flex-direction: column;
    }

    body.ui-hero-classic .hero-slider,
    body.ui-hero-fullbleed .hero-slider,
    body.ui-hero-editorial .hero-slider,
    body.ui-hero-promo .hero-slider,
    body.ui-hero-deal .hero-slider,
    body.ui-hero-showcase .hero-slider {
        position: relative;
        flex: 1 1 auto;
        width: 100%;
        height: auto !important;
        min-height: 0;
    }

    /* Aktif slide akÄ±ÅŸta kalsÄ±n ki height:auto Ã§alÄ±ÅŸsÄ±n */
    body.ui-hero-classic .slide,
    body.ui-hero-fullbleed .slide,
    body.ui-hero-editorial .slide,
    body.ui-hero-promo .slide,
    body.ui-hero-deal .slide,
    body.ui-hero-showcase .slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: auto;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
        pointer-events: none;
    }

    body.ui-hero-classic .slide.active,
    body.ui-hero-fullbleed .slide.active,
    body.ui-hero-editorial .slide.active,
    body.ui-hero-promo .slide.active,
    body.ui-hero-deal .slide.active,
    body.ui-hero-showcase .slide.active {
        position: relative;
        inset: auto;
        min-height: 0;
        height: auto;
        pointer-events: auto;
        transform: none;
    }

    body.ui-hero-classic .slide-image,
    body.ui-hero-fullbleed .slide-image,
    body.ui-hero-editorial .slide-image,
    body.ui-hero-promo .slide-image,
    body.ui-hero-deal .slide-image {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        order: 1;
        flex: 0 0 auto;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 180px;
        height: auto;
        aspect-ratio: 12 / 5;
        inset: auto;
        z-index: 1;
        overflow: hidden;
    }

    /* Klasik / vitrin mobil: 1200Ã—800 (3:2) â€” Ã¼st/alt kÄ±rpÄ±lmaz */
    body.ui-hero-classic .slide-image,
    body.ui-hero-showcase .slide-image {
        aspect-ratio: 3 / 2;
        min-height: 200px;
        max-height: none;
        height: auto !important;
    }

    body.ui-hero-classic .slide-image img,
    body.ui-hero-fullbleed .slide-image img,
    body.ui-hero-editorial .slide-image img,
    body.ui-hero-promo .slide-image img,
    body.ui-hero-deal .slide-image img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: var(--hero-img-position, center center);
        position: absolute;
        inset: 0;
    }

    body.ui-hero-classic .slide-image img,
    body.ui-hero-showcase .slide-image img {
        object-fit: cover;
        object-position: center center;
    }

    body.ui-hero-classic .slide-content,
    body.ui-hero-fullbleed .slide-content,
    body.ui-hero-editorial .slide-content,
    body.ui-hero-promo .slide-content,
    body.ui-hero-deal .slide-content {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        order: 2;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        transform: none;
        padding: 12px 16px 14px;
        z-index: 3;
        align-items: stretch;
        text-align: left;
        box-shadow: none;
        border-radius: 0;
    }

    body.ui-hero-classic .slide-content :is(h1, h2),
    body.ui-hero-fullbleed .slide-content :is(h1, h2),
    body.ui-hero-editorial .slide-content :is(h1, h2),
    body.ui-hero-promo .slide-content :is(h1, h2),
    body.ui-hero-deal .slide-content :is(h1, h2) {
        margin-bottom: 8px;
        text-align: inherit;
        max-width: none;
        text-shadow: none;
        align-self: stretch;
    }

    body.ui-hero-classic .slide-content p,
    body.ui-hero-fullbleed .slide-content p,
    body.ui-hero-editorial .slide-content p,
    body.ui-hero-promo .slide-content p,
    body.ui-hero-deal .slide-content p {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.5;
        max-width: none;
        text-align: inherit;
        align-self: stretch;
        text-shadow: none;
        opacity: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    body.ui-hero-classic .slide-buttons,
    body.ui-hero-fullbleed .slide-buttons,
    body.ui-hero-editorial .slide-buttons,
    body.ui-hero-promo .slide-buttons,
    body.ui-hero-deal .slide-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        justify-content: var(--hero-buttons-justify, flex-start);
    }

    body.ui-hero-classic .slide-buttons .btn,
    body.ui-hero-fullbleed .slide-buttons .btn,
    body.ui-hero-editorial .slide-buttons .btn,
    body.ui-hero-promo .slide-buttons .btn,
    body.ui-hero-deal .slide-buttons .btn {
        flex: 1 1 calc(50% - 4px);
        width: auto;
        min-width: 0;
        padding: 10px 12px;
        font-size: 13px;
    }

    body.ui-hero-classic .slide-buttons .btn:only-child,
    body.ui-hero-fullbleed .slide-buttons .btn:only-child,
    body.ui-hero-editorial .slide-buttons .btn:only-child,
    body.ui-hero-promo .slide-buttons .btn:only-child,
    body.ui-hero-deal .slide-buttons .btn:only-child {
        flex-basis: 100%;
    }

    body.ui-hero-classic .slide-content .hero-slide-badge {
        position: static;
        top: auto;
        left: auto;
        margin: 0 0 10px;
        z-index: 1;
        align-self: var(--hero-content-items, flex-start);
    }

    body.ui-hero-editorial .slide-content .hero-slide-badge {
        position: absolute;
        top: -34px;
        left: 14px;
        margin: 0;
        z-index: 5;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    }

    /* Klasik */
    body.ui-hero-classic .slide-content {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        align-items: var(--hero-content-items, flex-start);
        text-align: var(--hero-content-align, left);
        padding-bottom: 8px;
    }

    body.ui-hero-classic .slide-content :is(h1, h2),
    body.ui-hero-classic .slide-content p {
        color: #fff;
        text-align: inherit;
    }

    body.ui-hero-classic .slide-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, transparent 62%, rgba(15, 23, 42, 0.12) 100%);
        z-index: 2;
        pointer-events: none;
    }

    /* Tam GÃ¶rsel */
    body.ui-hero-fullbleed .slide-content {
        background: rgba(255, 255, 255, 0.98);
        color: var(--text-dark, #263238);
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        align-items: var(--hero-content-items, flex-start);
        text-align: var(--hero-content-align, left);
    }

    body.ui-hero-fullbleed .slide-content :is(h1, h2) {
        color: var(--hero-text-color, var(--text-dark, #263238));
    }

    body.ui-hero-fullbleed .slide-content p {
        color: var(--hero-desc-color, #64748b);
    }

    body.ui-hero-fullbleed .slide-image::after {
        background: linear-gradient(to bottom, transparent 58%, rgba(0, 0, 0, 0.14) 100%);
    }

    body.ui-hero-fullbleed .hero-slide-badge {
        top: 12px;
        left: 12px;
        font-size: 9px;
        padding: 5px 9px;
        z-index: 5;
    }

    body.ui-hero-fullbleed .hero[data-content-align="right"] .hero-slide-badge {
        left: auto;
        right: 12px;
    }

    body.ui-hero-fullbleed .hero[data-content-align="center"] .hero-slide-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    body.ui-hero-showcase .hero-showcase-rail {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        order: 1;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        padding: 9px 14px;
        z-index: 4;
    }

    body.ui-hero-showcase .hero-showcase-rail::after {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 3px;
    }

    body.ui-hero-showcase .hero-showcase-rail__title {
        max-height: none;
        max-width: 100%;
        font-size: clamp(16px, 4.2vw, 22px);
        letter-spacing: 0.04em;
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        transform: none;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
    }

    body.ui-hero-showcase .slide-image {
        position: relative;
        top: auto;
        left: auto;
        order: 2;
        flex: 0 0 auto;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 200px;
        height: auto;
        aspect-ratio: 3 / 2;
        z-index: 1;
        overflow: hidden;
    }

    body.ui-hero-showcase .slide-image img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
        object-position: center center;
        position: absolute;
        inset: 0;
    }

    body.ui-hero-showcase .slide-image::after {
        background: linear-gradient(to top, rgba(15, 23, 42, 0.18) 0%, transparent 42%);
    }

    body.ui-hero-showcase .slide-content {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        order: 3;
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 12px 16px 14px;
        border-left: none;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        background: var(--bg-white, #fff);
        box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.06);
        z-index: 3;
        align-items: stretch;
        text-align: left;
        gap: 0;
    }

    body.ui-hero-showcase .slide-content .hero-slide-badge {
        position: absolute;
        top: -34px;
        left: 14px;
        margin: 0;
        z-index: 5;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    }

    body.ui-hero-showcase .slide-content p {
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    body.ui-hero-showcase .slide-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        margin-top: 0;
    }

    body.ui-hero-showcase .slide-buttons .btn {
        flex: 1 1 calc(50% - 4px);
        width: auto;
        min-width: 0;
        padding: 10px 12px;
        font-size: 13px;
    }

    body.ui-hero-showcase .slide-buttons .btn:only-child {
        flex-basis: 100%;
    }

    body.ui-hero-showcase .slide-content :is(h1, h2),
    body.ui-hero-showcase .slide-content p {
        text-align: inherit;
        max-width: none;
    }

    /* Editoryal */
    body.ui-hero-editorial .slide-image {
        border-radius: 0;
        box-shadow: none;
    }

    body.ui-hero-editorial .slide-image::after {
        background: linear-gradient(to bottom, transparent 58%, rgba(0, 0, 0, 0.16) 100%);
    }

    body.ui-hero-editorial .slide-content {
        background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        align-items: var(--hero-content-items, flex-start);
        text-align: var(--hero-content-align, left);
    }

    body.ui-hero-editorial .slide-content :is(h1, h2) {
        color: var(--hero-text-color, var(--text-dark, #263238));
    }

    body.ui-hero-editorial .slide-content p {
        color: var(--hero-desc-color, #64748b);
    }

    /* Kampanya BandÄ± */
    body.ui-hero-promo .slide-content {
        background: rgba(255, 255, 255, 0.98);
        border-top: 4px solid var(--hero-btn-primary-bg, var(--secondary-color, #008ed9));
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
        align-items: var(--hero-content-items, flex-start);
        text-align: var(--hero-content-align, left);
    }

    body.ui-hero-promo .slide-content :is(h1, h2) {
        color: var(--hero-text-color, var(--text-dark, #263238));
    }

    body.ui-hero-promo .slide-content p {
        color: var(--hero-desc-color, #64748b);
    }

    body.ui-hero-promo .slide-image::after {
        background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.14) 100%);
    }

    body.ui-hero-promo .hero-slide-badge {
        top: 12px;
        left: 12px;
        font-size: 9px;
        padding: 5px 9px;
        z-index: 5;
    }

    /* FÄ±rsat KÃ¶ÅŸesi */
    body.ui-hero-deal .slide-content {
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
        align-items: var(--hero-content-items, flex-start);
        text-align: var(--hero-content-align, left);
    }

    body.ui-hero-deal .slide-content :is(h1, h2) {
        color: var(--hero-text-color, var(--text-dark, #263238));
    }

    body.ui-hero-deal .slide-content p {
        color: var(--hero-desc-color, #64748b);
    }

    body.ui-hero-deal .slide-image::after {
        background: linear-gradient(to bottom, transparent 55%, rgba(0, 0, 0, 0.18) 100%);
    }

    body.ui-hero-deal .hero-slide-badge {
        top: 12px;
        left: 12px;
        min-width: 72px;
        padding: 8px 14px 8px 10px;
        font-size: 9px;
        z-index: 5;
    }

    body.ui-hero-deal .hero[data-content-align="center"] .slide-content,
    body.ui-hero-deal .hero[data-content-align="left"] .slide-content,
    body.ui-hero-deal .hero[data-content-align="right"] .slide-content {
        left: auto;
        right: auto;
        transform: none;
    }

    /* â€”â€” Mobil kontrol ÅŸeridi: pager/oklar iÃ§eriÄŸin Ã¼stÃ¼ne binmesin â€”â€” */
    body[class*="ui-hero-"] .hero {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-sizing: border-box;
    }

    body[class*="ui-hero-"] .hero-slider {
        flex: 1 1 auto;
        min-height: 0;
        height: auto !important;
        position: relative;
        width: 100%;
    }

    body[class*="ui-hero-"] .hero .slider-dots:not(.slider-dots--numbers_stack),
    body[class*="ui-hero-"] .hero .slider-dots {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        flex: 0 0 auto;
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 8px 12px 10px;
        box-sizing: border-box;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        z-index: 20;
        background: var(--bg-white, #fff);
        border-top: 1px solid rgba(15, 23, 42, 0.1);
        gap: 8px;
    }

    /* Nokta / kompakt geçiş: görselin üzerinde değil, içerik şeridinin altında sabit */
    body[class*="ui-hero-"] .hero .slider-dots--dots:not(.slider-dots--numbers_stack),
    body[class*="ui-hero-"] .hero .slider-dots--many,
    body.ui-hero-classic .hero .slider-dots--dots:not(.slider-dots--numbers_stack),
    body.ui-hero-showcase .hero .slider-dots--dots:not(.slider-dots--numbers_stack),
    body.ui-hero-fullbleed .hero .slider-dots--dots:not(.slider-dots--numbers_stack),
    body.ui-hero-editorial .hero .slider-dots--dots:not(.slider-dots--numbers_stack),
    body.ui-hero-promo .hero .slider-dots--dots:not(.slider-dots--numbers_stack),
    body.ui-hero-deal .hero .slider-dots--dots:not(.slider-dots--numbers_stack),
    body.ui-hero-fullbleed .hero .slider-dots--many,
    body.ui-hero-editorial .hero .slider-dots--many,
    body.ui-hero-promo .hero .slider-dots--many,
    body.ui-hero-deal .hero .slider-dots--many {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        align-self: stretch;
        margin: 0;
        padding: 8px 16px 12px;
        background: inherit;
        border: 0;
        gap: 8px;
        z-index: 20;
        flex-wrap: nowrap;
    }

    body.ui-hero-classic .hero .slider-dots:not(.slider-dots--numbers_stack) {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-top: 0;
        padding: 2px 16px 14px;
    }

    body[class*="ui-hero-"] .hero .slider-dots--many > .dot {
        display: none !important;
    }

    body[class*="ui-hero-"] .hero .slider-dots--many .slider-pager-compact {
        display: flex;
        width: 100%;
        max-width: none;
        gap: 10px;
    }

    body.ui-hero-classic .hero .slider-pager-compact__btn {
        background: rgba(255, 255, 255, 0.16);
        color: #fff;
    }

    body.ui-hero-classic .hero .slider-pager-compact .slider-pager-counter {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 4px 6px;
    }

    body.ui-hero-classic .hero .slider-pager-compact__track {
        background: rgba(255, 255, 255, 0.22);
    }

    body.ui-hero-classic .hero .slider-pager-compact__fill {
        background: #fff;
    }

    body[class*="ui-hero-"] .hero[data-control-style="numbers_stack"] .slider-dots--numbers_stack {
        flex-direction: row;
        flex-wrap: wrap;
        top: auto;
        right: auto;
        left: auto;
        transform: none;
        padding: 8px 10px;
        gap: 6px;
        background: var(--bg-white, #fff);
    }

    body[class*="ui-hero-"] .slider-dots--numbers {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 2px 4px;
    }

    body[class*="ui-hero-"] .hero .slider-dots--numbers .dot,
    body[class*="ui-hero-"] .hero .slider-dots--numbers_stack .dot {
        color: var(--text-dark, #263238);
        border-color: rgba(15, 23, 42, 0.22);
        background: rgba(15, 23, 42, 0.04);
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body[class*="ui-hero-"] .hero .slider-dots--numbers .dot:hover,
    body[class*="ui-hero-"] .hero .slider-dots--numbers_stack .dot:hover {
        background: rgba(15, 23, 42, 0.08);
        border-color: rgba(15, 23, 42, 0.32);
    }

    body[class*="ui-hero-"] .hero .slider-dots--numbers .dot.active,
    body[class*="ui-hero-"] .hero .slider-dots--numbers_stack .dot.active {
        background: var(--hero-num-active-bg, var(--hero-btn-primary-bg, #008ed9));
        color: var(--hero-num-active-color, #fff);
        border-color: transparent;
    }

    body[class*="ui-hero-"] .hero .slider-dots--dots .dot {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 50%;
        background: transparent;
        opacity: 1;
        box-shadow: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body[class*="ui-hero-"] .hero .slider-dots--dots .dot::after {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #fff;
        opacity: 0.78;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    }

    body[class*="ui-hero-"] .hero .slider-dots--dots .dot.active {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 50%;
        background: transparent;
    }

    body[class*="ui-hero-"] .hero .slider-dots--dots .dot.active::after {
        width: 10px;
        height: 10px;
        opacity: 1;
        background: #fff;
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, 0.95),
            0 1px 3px rgba(0, 0, 0, 0.45);
    }

    body[class*="ui-hero-"] .hero .slider-dots--bar .dot {
        background: rgba(15, 23, 42, 0.18);
        opacity: 1;
    }

    body[class*="ui-hero-"] .hero .slider-dots--bar .dot.active {
        background: var(--hero-btn-primary-bg, var(--secondary-color, #008ed9));
    }

    body[class*="ui-hero-"] .hero .slider-dots--squares .dot {
        background: rgba(15, 23, 42, 0.22);
        opacity: 1;
    }

    body[class*="ui-hero-"] .hero .slider-dots--squares .dot.active {
        background: var(--hero-btn-primary-bg, var(--secondary-color, #008ed9));
    }

    body[class*="ui-hero-"] .hero .slider-dots--squares_outline .dot {
        border-color: rgba(15, 23, 42, 0.28);
        opacity: 1;
    }

    body[class*="ui-hero-"] .hero .slider-dots--squares_outline .dot.active {
        background: var(--hero-btn-primary-bg, var(--secondary-color, #008ed9));
        border-color: var(--hero-btn-primary-bg, var(--secondary-color, #008ed9));
    }

    body[class*="ui-hero-"] .slider-pager-counter {
        background: rgba(15, 23, 42, 0.06);
    }

    body[class*="ui-hero-"] .slider-pager-counter__current,
    body[class*="ui-hero-"] .slider-pager-counter__sep,
    body[class*="ui-hero-"] .slider-pager-counter__total {
        color: var(--text-dark, #263238);
    }

    body[class*="ui-hero-"] .hero[data-nav-visible="1"]:not([data-nav-position="bottom"]) .slider-controls {
        top: 36%;
        bottom: auto;
        height: auto;
        transform: translateY(-50%);
        align-items: center;
        pointer-events: none;
    }

    body[class*="ui-hero-"] .hero[data-nav-visible="1"]:not([data-nav-position="bottom"]) .slider-controls .slider-btn {
        pointer-events: auto;
    }

    body[class*="ui-hero-"] .hero[data-nav-position="bottom"] .slider-controls {
        position: relative;
        top: auto;
        bottom: auto;
        order: 8;
        flex-shrink: 0;
        width: 100%;
        padding: 8px 14px;
        background: var(--bg-white, #fff);
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        pointer-events: auto;
        justify-content: center;
        gap: 12px;
        transform: none;
    }

    body[class*="ui-hero-"] .hero[data-nav-position="bottom"] .slider-btn {
        position: static;
        transform: none;
    }

    body[class*="ui-hero-"] .slider-dots--numbers .dot {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 11px;
    }

    body[class*="ui-hero-"] .slider-dots--numbers {
        gap: 8px;
        padding: 2px 4px;
    }

    body[class*="ui-hero-"] .slider-dots--numbers_stack .dot {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 11px;
    }

    body[class*="ui-hero-"] .hero[data-control-style="counter"] .slider-controls .slider-btn {
        width: 38px;
        height: 38px;
    }

    body[class*="ui-hero-"] .slider-dots--bar .dot {
        width: 24px;
    }

    body[class*="ui-hero-"] .slider-dots--bar .dot.active {
        width: 36px;
    }

    body[class*="ui-hero-"] .slider-pager-counter {
        padding: 6px 12px;
    }

    body[class*="ui-hero-"] .slider-pager-counter__current {
        font-size: 16px;
    }

    body[class*="ui-hero-"] .slider-controls--minimal .slider-btn,
    body[class*="ui-hero-"] .hero[data-nav-btn-style="minimal"] .slider-btn {
        width: 36px;
        height: 36px;
    }
}
