/* Site tema: layout’ta main.css’ten sonra #site-theme-overrides ile gelir. Marka vurguları için var(--bs-brand-2), açık mavi için var(--bs-brand-1), koyu kırmızı için var(--bs-brand-2-darken), hover border için var(--bs-link-hover-color) tercih edin. */

/* ============================================================
   Footer — sosyal medya SVG’leri
   Varsayılan beyaz (koyu footer); hover’da site marka rengi.
   ============================================================ */
.footer .box-socials-footer a.icon-socials svg path {
    fill: var(--bs-color-white, #ffffff) !important;
    transition: fill 0.2s ease;
}

.footer .box-socials-footer a.icon-socials:hover svg path {
    fill: var(--bs-brand-2) !important;
}

/* ============================================================
   Çerez onay banner'i (sag-alt kart) + sabit cerez ikonu (sol-alt)
   ============================================================ */
.rtm-cookie-banner {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1080;
    width: min(380px, calc(100vw - 32px));
    background: #ffffff;
    color: var(--bs-neutral-900, #111);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22), 0 4px 12px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .2s ease, transform .2s ease;
}
.rtm-cookie-banner[hidden] { display: none !important; }
.rtm-cookie-banner.is-open {
    opacity: 1;
    transform: translateY(0);
}
.rtm-cookie-banner__inner {
    padding: 18px 18px 16px;
}
.rtm-cookie-banner__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.rtm-cookie-banner__icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--bs-brand-2, #d21f3c) 12%, #ffffff);
    color: var(--bs-brand-2, #d21f3c);
}
.rtm-cookie-banner__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}
.rtm-cookie-banner__desc {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--bs-neutral-700, #374151);
    margin: 0 0 12px;
}
.rtm-cookie-banner__policy {
    color: var(--bs-brand-2, #d21f3c);
    text-decoration: underline;
    font-weight: 600;
    margin-left: 4px;
}
.rtm-cookie-banner__policy:hover { color: var(--bs-link-hover-color, #8a1228); }

.rtm-cookie-banner__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0 4px;
    border-top: 1px solid var(--bs-neutral-200, #e5e7eb);
    margin-bottom: 10px;
}
.rtm-cookie-banner__details[hidden] { display: none; }

.rtm-cookie-cat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    background: var(--bs-neutral-50, #f9fafb);
    border-radius: 10px;
    cursor: pointer;
}
.rtm-cookie-cat.is-disabled { cursor: default; opacity: .9; }
.rtm-cookie-cat__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.rtm-cookie-cat__name {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--bs-neutral-900, #111);
}
.rtm-cookie-cat__badge {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--bs-brand-2, #d21f3c) 12%, #ffffff);
    color: var(--bs-brand-2, #d21f3c);
    white-space: nowrap;
}
.rtm-cookie-cat__desc {
    font-size: 12.5px;
    color: var(--bs-neutral-600, #4b5563);
    line-height: 1.45;
}
.rtm-cookie-cat input[type="checkbox"][disabled] {
    accent-color: var(--bs-brand-2, #d21f3c);
    opacity: .5;
}

/* Kucuk sekmeli switch */
.rtm-cookie-switch {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 20px;
    flex: 0 0 auto;
}
.rtm-cookie-switch input {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}
.rtm-cookie-switch__track {
    position: absolute;
    inset: 0;
    background: var(--bs-neutral-300, #d1d5db);
    border-radius: 999px;
    transition: background .15s ease;
}
.rtm-cookie-switch__track::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform .15s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,.25);
}
.rtm-cookie-switch input:checked + .rtm-cookie-switch__track {
    background: var(--bs-brand-2, #d21f3c);
}
.rtm-cookie-switch input:checked + .rtm-cookie-switch__track::after {
    transform: translateX(16px);
}

.rtm-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.rtm-cookie-btn {
    appearance: none;
    border: 1px solid transparent;
    background: transparent;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    padding: 9px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.rtm-cookie-btn--primary {
    background: var(--bs-brand-2, #d21f3c);
    color: #fff;
    flex: 1 1 auto;
    min-width: 140px;
}
.rtm-cookie-btn--primary:hover { background: var(--bs-brand-2-darken, #a8172f); }
.rtm-cookie-btn--outline {
    background: #fff;
    color: var(--bs-neutral-900, #111);
    border-color: var(--bs-neutral-300, #d1d5db);
    flex: 1 1 auto;
    min-width: 140px;
}
.rtm-cookie-btn--outline:hover {
    border-color: var(--bs-brand-2, #d21f3c);
    color: var(--bs-brand-2, #d21f3c);
}
.rtm-cookie-btn--link {
    color: var(--bs-neutral-700, #374151);
    text-decoration: underline;
    padding: 6px 4px;
    flex: 0 0 auto;
}
.rtm-cookie-btn--link:hover { color: var(--bs-brand-2, #d21f3c); }
.rtm-cookie-btn--save {
    width: 100%;
    order: 99;
}

/* Sol-alt sabit cerez ikonu.
   Sag-altta duran #scrollUp (bottom: 30px) ile AYNI dikey hizada dursun. */
.rtm-cookie-fab {
    position: fixed;
    left: 30px;
    bottom: 30px;
    z-index: 1079;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--bs-brand-2, #d21f3c);
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, color .15s ease, background .15s ease;
}
.rtm-cookie-fab[hidden] { display: none !important; }
.rtm-cookie-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.2);
    color: #fff;
    background: var(--bs-brand-2, #d21f3c);
}

/* Fixed contact rail sol kenarda dikey dursa bile banner/FAB sol-alt kosedeki
   yerinde kalir (rail dikey orta hizada oldugundan cakisma olmaz). */

/* Mobilde taslayabilir genislik */
@media (max-width: 575.98px) {
    .rtm-cookie-banner {
        right: 12px;
        left: 12px;
        bottom: 12px;
        width: auto;
    }
    .rtm-cookie-btn--primary,
    .rtm-cookie-btn--outline {
        flex: 1 1 100%;
        min-width: 0;
    }
    .rtm-cookie-btn--link {
        flex: 1 1 100%;
        text-align: center;
    }
    .rtm-cookie-fab {
        left: 16px;
        bottom: 30px; /* scrollUp ile ayni hiza (mobil) */
    }
}


/* Header alt çizgisini kaldır: slider/marka şeridi üstündeki ince gri border'ı temizler.
   (main.css .header { border-bottom: 1px solid var(--bs-neutral-200) } override) */
.header {
    border-bottom: 0 !important;
    box-shadow: none !important;
}
/* Marka şeridi ve üst barların altındaki utility border'ları da temizle */
.site-brands-strip--header,
.rtm-top-bar {
    border-bottom: 0 !important;
}

/* Mobil / tablet (burger görünür): sticky üst çubuk ve yan menü logoları — max 170px genişlik */
@media (max-width: 1199.98px) {
    .header .main-header .header-left .header-logo {
        max-width: 170px;
    }
    .header .main-header .header-left .header-logo a img {
        max-width: 170px !important;
        width: auto !important;
        height: auto;
        max-height: 52px;
        object-fit: contain;
    }
    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-logo a img,
    .sidebar-canvas-wrapper .sidebar-canvas-head .sidebar-canvas-logo a img {
        max-width: 170px !important;
        width: auto !important;
        height: auto;
        max-height: 52px;
        object-fit: contain;
    }
    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-top .mobile-header-logo a img {
        max-width: 170px !important;
        width: auto !important;
        max-height: 52px;
    }
}

/* Footer logo + 3 menü: tam genişlik, sağda boşluk kalmasın (main.css %30/17.5 + Bootstrap row g devre dışı) */
.footer > .container > .footer-main-columns {
    display: grid;
    gap: 1.25rem 1.5rem;
    align-items: start;
}
@media (max-width: 575.98px) {
    .footer > .container > .footer-main-columns {
        grid-template-columns: minmax(0, 1fr);
    }
}
@media (min-width: 576px) and (max-width: 991.98px) {
    .footer > .container > .footer-main-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 992px) {
    .footer > .container > .footer-main-columns {
        grid-template-columns: repeat(var(--footer-grid-cols, 4), minmax(0, 1fr));
    }
    /* Logo alanı ilk sütunda biraz daha geniş (menü sütunları eşit fr kaldı) */
    .footer > .container > .footer-main-columns.footer-main-columns--cols-4 {
        grid-template-columns: minmax(0, 1.55fr) repeat(3, minmax(0, 1fr));
    }
    .footer > .container > .footer-main-columns.footer-main-columns--cols-3 {
        grid-template-columns: minmax(0, 1.65fr) repeat(2, minmax(0, 1fr));
    }
    .footer > .container > .footer-main-columns.footer-main-columns--cols-2 {
        grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    }
    .footer > .container > .footer-main-columns.footer-main-columns--cols-1 {
        grid-template-columns: minmax(0, 1fr);
    }
}
.footer > .container > .footer-main-columns .footer-main-columns__cell {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
}

/* Anasayfa slider — üstten nefes aldıracak boşluk (header/marka şeridiyle arada ayrım) */
section.rtm-home-slider {
    margin-top: 24px;
}
@media (max-width: 991.98px) {
    section.rtm-home-slider { margin-top: 16px; }
}
@media (max-width: 575.98px) {
    section.rtm-home-slider { margin-top: 12px; }
}

/* Anasayfa slider — yükseklik, yan boşluk ve yuvarlak köşeler */
.rtm-home-slider.block-banner-home3 .swiper-group-1 {
    max-width: 100% !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}
.rtm-home-slider.block-banner-home3 .container-banner-home3 {
    padding-left: 24px !important;
    padding-right: 24px !important;
}
.rtm-home-slider.block-banner-home3 .item-banner-slide {
    padding: 170px 0 150px !important;
    min-height: 820px !important;
    border-radius: 20px !important;
}
@media (max-width: 991.98px) {
    .rtm-home-slider.block-banner-home3 .item-banner-slide {
        padding: 120px 0 100px !important;
        min-height: 640px !important;
    }
    .rtm-home-slider.block-banner-home3 .item-banner-slide h1 {
        font-size: 25px !important;
        line-height: 30px !important;
    }
    .rtm-home-slider.block-banner-home3 .item-banner-slide h6 {
        font-size: 12px !important;
        line-height: 18px !important;
    }
    .rtm-home-slider.block-banner-home3 .container-banner-home3 {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}
@media (max-width: 767.98px) {
    .rtm-home-slider.block-banner-home3 .item-banner-slide {
        padding: 96px 0 80px !important;
        min-height: 540px !important;
    }
    .rtm-home-slider.block-banner-home3 .container-banner-home3 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .rtm-home-slider.block-banner-home3 .swiper-group-1 {
        border-radius: 14px !important;
    }
}

/* Üst bar: iletişim + dil + sosyal */
.rtm-top-bar .rtm-top-link {
    font-size: 13px;
}
.rtm-top-bar .rtm-top-social a {
    font-size: 15px;
    line-height: 1;
}

/* Çoklu marka şeridi: tam genişlik şerit, içerik Bootstrap .container ile sitedeki diğer bloklarla aynı hizada */
.site-brands-strip--header {
    position: relative;
    z-index: 5;
    clear: both;
    float: none;
    width: 100%;
}
.site-brands-strip--full {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.site-brands-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 0.85rem 1.15rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 0.25rem 0;
}
@media (min-width: 768px) {
    .site-brands-strip-inner {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 1.1rem 1.35rem;
        overflow-x: visible;
    }
}
.site-brand-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0.65rem 1.2rem;
    min-height: 60px;
    border-radius: 12px;
    border: 1px solid var(--bs-neutral-300);
    background: var(--bs-neutral-0);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-brand-chip img {
    display: block;
    max-height: 58px;
    max-width: 240px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 1;
}
.site-brand-chip__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--bs-neutral-900);
    white-space: nowrap;
}
.site-brand-chip:hover {
    border-color: var(--bs-brand-2);
}
.site-brand-chip.is-active {
    background: color-mix(in srgb, var(--bs-brand-2) 22%, var(--bs-neutral-0));
    border-color: var(--bs-brand-2);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--bs-brand-2) 35%, transparent);
}
@supports not (background: color-mix(in srgb, red, blue)) {
    .site-brand-chip.is-active {
        background: var(--bs-neutral-100);
        border-color: var(--bs-brand-2);
        box-shadow: inset 0 0 0 2px var(--bs-brand-2);
    }
}
/* Footer: kartlar beyaz zemin; metin koyu. Seçili = header ile aynı marka vurgusu */
.site-brands-strip--footer .site-brand-chip {
    border-color: var(--bs-neutral-200);
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.site-brands-strip--footer .site-brand-chip__label {
    color: var(--bs-neutral-900);
}
.site-brands-strip--footer .site-brand-chip:hover {
    border-color: var(--bs-brand-2);
}
.site-brands-strip--footer .site-brand-chip.is-active {
    background: color-mix(in srgb, var(--bs-brand-2) 22%, var(--bs-neutral-0));
    border-color: var(--bs-brand-2);
    box-shadow:
        inset 0 0 0 1px color-mix(in srgb, var(--bs-brand-2) 35%, transparent),
        0 1px 4px rgba(0, 0, 0, 0.1);
}
@supports not (background: color-mix(in srgb, red, blue)) {
    .site-brands-strip--footer .site-brand-chip.is-active {
        background: var(--bs-neutral-100);
        border-color: var(--bs-brand-2);
        box-shadow: inset 0 0 0 2px var(--bs-brand-2), 0 1px 4px rgba(0, 0, 0, 0.1);
    }
}

/* Mobilde site marka şeridi (header + footer): dokunmatik için biraz daha büyük chip / logo */
@media (max-width: 767.98px) {
    .site-brands-strip--header { padding-top: .5rem; padding-bottom: .5rem; }
    .site-brands-strip--footer { padding-bottom: .85rem; margin-bottom: .85rem; }

    .site-brands-strip-inner {
        gap: .55rem .65rem;
        padding: .2rem 0;
    }

    .site-brand-chip {
        padding: .45rem .85rem;
        min-height: 46px;
        border-radius: 10px;
    }
    .site-brand-chip img {
        max-height: 38px;
        max-width: 155px;
    }
    .site-brand-chip__label {
        font-size: 13px;
    }
}

/* Çok dar ekranlar: hâlâ sığdırmak için hafif küçült */
@media (max-width: 380px) {
    .site-brand-chip {
        padding: .35rem .65rem;
        min-height: 42px;
    }
    .site-brand-chip img {
        max-height: 32px;
        max-width: 132px;
    }
}

/* Üst bar sağ: önce dil, sonra metin + sosyal (LTR) */
.rtm-top-bar-end {
    direction: ltr;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem 0.75rem;
}
.rtm-top-bar-end .head-lang {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 12px;
    margin-right: 0;
    height: auto;
    line-height: inherit;
}
.rtm-top-social-caption {
    max-width: 200px;
    line-height: 1.25;
    font-size: 12px;
    font-weight: 500;
}

/* Sol sabit iletişim şeridi (tüm cihazlarda görünür) */
.rtm-fixed-contact-rail {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 124;
    gap: 6px;
    padding: 10px 8px;
    background: color-mix(in srgb, var(--bs-brand-2) 92%, #000);
    border-radius: 0 10px 10px 0;
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.12);
}
.rtm-fixed-contact-rail__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #fff !important;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-size: 16px;
}
.rtm-fixed-contact-rail__btn:hover,
.rtm-fixed-contact-rail__btn:focus-visible {
    /* Not: a:hover kurali main.css'te !important ile color'u ezmeye calisir.
       Ikonun brand'a karismasin diye bizde de !important kullaniyoruz. */
    background: rgba(255, 255, 255, 0.22) !important;
    color: #fff !important;
    transform: scale(1.08);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35) inset;
}
.rtm-fixed-contact-rail__btn i {
    color: inherit !important;
}
.rtm-fixed-contact-rail__btn--static {
    cursor: default;
    opacity: 0.85;
}
.rtm-fixed-contact-rail__sep {
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,.18);
    margin: 2px 0;
}

/* Hover'da yan tooltip (data-label ile) */
.rtm-fixed-contact-rail__btn[data-label]::before,
.rtm-fixed-contact-rail__btn[data-label]::after {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}
.rtm-fixed-contact-rail__btn[data-label]::before {
    content: attr(data-label);
    padding: 6px 10px;
    background: color-mix(in srgb, var(--bs-brand-2) 92%, #000);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}
.rtm-fixed-contact-rail__btn[data-label]::after {
    content: "";
    left: calc(100% + 4px);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 6px solid color-mix(in srgb, var(--bs-brand-2) 92%, #000);
}
.rtm-fixed-contact-rail__btn[data-label]:hover::before,
.rtm-fixed-contact-rail__btn[data-label]:hover::after,
.rtm-fixed-contact-rail__btn[data-label]:focus-visible::before,
.rtm-fixed-contact-rail__btn[data-label]:focus-visible::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Mobil uyum: dikey sol-kenar rail'i yerine ALT-ORTA'da yatay bir cubuk.
   Boylece cerez FAB (sol-alt) ve #scrollUp (sag-alt) arasina yatay olarak
   oturup daha sik ve dengeli bir alt eylem seridi olusturur. */
@media (max-width: 991.98px) {
    .rtm-fixed-contact-rail {
        top: auto;
        left: 50%;
        right: auto;
        bottom: 30px;
        transform: translateX(-50%);
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 4px;
        padding: 5px 8px;
        border-radius: 999px; /* pill seridi */
        background: color-mix(in srgb, var(--bs-brand-2) 92%, #000);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
        /* Iki FAB (sol cerez + sag scrollUp) icin yeterli yer birak */
        max-width: calc(100vw - 150px);
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .rtm-fixed-contact-rail::-webkit-scrollbar { display: none; }

    .rtm-fixed-contact-rail__btn {
        flex: 0 0 auto;
        width: 34px;
        height: 34px;
        font-size: 14px;
        border-radius: 50%;
    }
    /* Yatay modda ayiricilar: dikey cubuk */
    .rtm-fixed-contact-rail__sep {
        width: 1px;
        height: 20px;
        margin: 0 2px;
    }
    .rtm-fixed-contact-rail__btn[data-label]::before,
    .rtm-fixed-contact-rail__btn[data-label]::after {
        display: none;
    }
}

/* Cok dar ekranlar: ikonlar biraz daha kompakt, boslukta daralsin */
@media (max-width: 420px) {
    .rtm-fixed-contact-rail {
        bottom: 20px;
        padding: 4px 6px;
        gap: 2px;
        max-width: calc(100vw - 130px);
    }
    .rtm-fixed-contact-rail__btn {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    .rtm-fixed-contact-rail__sep {
        height: 16px;
        margin: 0 1px;
    }
}

/*
 * E-bülten + anasayfa haber: dış section boyanmaz; yalnızca iç kart.
 * Kutunun rengi --bs-brand-1 (pastel süzüm), tam genişlik çizgi yok.
 */
.rtm-subscriber-module.box-subscriber.section-box,
.rtm-news-module.box-picked.section-box {
    background: transparent !important;
}
.rtm-subscriber-module .block-subscriber,
.rtm-news-module .block-news-home {
    background-color: color-mix(in srgb, var(--bs-brand-1) 12%, #ffffff) !important;
    border-color: color-mix(in srgb, var(--bs-brand-1) 24%, var(--bs-border-color)) !important;
}
@supports not (background: color-mix(in srgb, red, white)) {
    .rtm-subscriber-module.box-subscriber.section-box,
    .rtm-news-module.box-picked.section-box {
        background: transparent !important;
    }
    .rtm-subscriber-module .block-subscriber,
    .rtm-news-module .block-news-home {
        background-color: var(--bs-neutral-0) !important;
        border-color: var(--bs-border-color) !important;
    }
}

/* Haber bloğu: tema kartı (.block-news-home) içinde üst boşluk / eski sağ şerit yerine tek yüzey */
.rtm-news-module .block-news-home {
    border-radius: 12px;
    border-style: solid;
    border-width: 1px;
    padding: 32px 36px 40px;
}
@media (max-width: 991.98px) {
    .rtm-news-module .block-news-home {
        padding: 24px 20px 28px;
    }
}
.rtm-news-module .box-videos-small {
    margin-top: 28px;
    padding-top: 0;
}

/* Anasayfa e-bülten modülü: KVKK form içinde, butonun altında */
.form-subscriber .homepage-subscriber-kvkk {
    margin-top: 14px;
    width: 100%;
    position: relative;
    clear: both;
}
.block-subscriber .form-subscriber {
    flex-wrap: wrap;
    align-items: flex-start;
}
.block-subscriber .form-subscriber .btn-submit {
    position: absolute;
    top: 0;
    right: 0;
}
.block-subscriber .form-subscriber .homepage-subscriber-kvkk {
    flex: 0 0 100%;
    margin-top: 72px;
}
/* Product List View Styles */
.box-grid-tours .row.list-view .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.box-grid-tours .row.list-view .card-journey-small {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 20px;
    border: 1px solid var(--bs-neutral-200);
    border-radius: 12px;
    background: var(--bs-neutral-0);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.box-grid-tours .row.list-view .card-journey-small:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.box-grid-tours .row.list-view .card-journey-small .card-image {
    flex: 0 0 200px;
    margin-right: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.box-grid-tours .row.list-view .card-journey-small .card-image img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.box-grid-tours .row.list-view .card-journey-small .card-info {
    flex: 1;
    padding: 0;
}

.box-grid-tours .row.list-view .card-journey-small .card-info h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
}

.box-grid-tours .row.list-view .card-journey-small .card-info p {
    margin-bottom: 15px;
    color: var(--bs-neutral-600);
    line-height: 1.5;
}

.box-grid-tours .row.list-view .card-journey-small .card-facitlities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
}

.box-grid-tours .row.list-view .card-journey-small .card-facitlities p {
    margin: 0;
    font-size: 14px;
    padding: 5px 10px;
    background: var(--bs-neutral-100);
    border-radius: 6px;
    border-left: 3px solid var(--bs-brand-2);
}

/* Product attribute icon + text (square icon) */
.attribute-icon-box,
.option-icon-wrapper {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 8px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.attribute-icon-box img,
.option-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product detail tabs: allow long feature text + images without shrinking visuals */
.portfolio_single .pbmit-tabs-col {
    display: block !important;
}

/* Product options (detail page) */
.option-card {
    transition: transform .15s ease, box-shadow .15s ease;
    background: var(--bs-neutral-0);
}

.option-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.option-icon-wrapper {
    background: var(--bs-background-3);
    color: var(--bs-brand-1);
    display: inline-flex;
}

.option-icon-placeholder svg {
    opacity: 0.8;
    max-width: 22px;
    max-height: 22px;
}

/* Product cards: remove default icon background next to custom icons */
.card-journey-small .card-facitlities .card-miles {
    background-image: none !important;
    background: none !important;
    padding-left: 0 !important;
}

/* Product detail page styles (moved from detail.blade.php) */
.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.btn-video-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-video-play:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.gallery-car-thumb {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.gallery-car-thumb.active {
    opacity: 1;
    border: 2px solid var(--bs-brand-2);
}

.gallery-car-thumb:hover {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   Share Modal — modern/yenilenmis tasarim
═════════════════════════════════════════════════════════════ */
.rtm-share-modal .modal-content {
    border: 0 !important;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
    background: #ffffff;
}
.rtm-share-modal .modal-header {
    padding: 22px 26px 8px;
    border: 0 !important;
    position: relative;
}
.rtm-share-modal .modal-header::after {
    content: "";
    position: absolute;
    inset: 0 26px auto 26px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15,23,42,0.08), transparent);
}
.rtm-share-modal .modal-body {
    padding: 20px 26px 26px;
}
.rtm-share-modal .modal-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
}
.rtm-share-modal .btn-close {
    border-radius: 10px;
    padding: 10px;
    opacity: .55;
    transition: all .2s ease;
}
.rtm-share-modal .btn-close:hover {
    opacity: 1;
    background-color: #f1f5f9;
}
.rtm-share-modal .share-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--bs-brand-2), color-mix(in srgb, var(--bs-brand-2) 65%, #000));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--bs-brand-2) 40%, transparent);
}

.rtm-share-modal .share-product-preview {
    border: 1px solid #e2e8f0;
    border-radius: 14px !important;
    transition: all 0.25s ease;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
}

.rtm-share-modal .share-product-preview:hover {
    border-color: var(--bs-brand-2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.rtm-share-modal .share-product-preview img {
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.rtm-share-modal .share-btn {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent !important;
    position: relative;
    overflow: hidden;
    min-height: 92px;
    border-radius: 14px !important;
    color: #ffffff !important;
}
.rtm-share-modal .share-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .25s ease;
}
.rtm-share-modal .share-btn:hover::before {
    opacity: 1;
}
.rtm-share-modal .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}
.rtm-share-modal .share-btn svg {
    transition: transform .25s ease;
    position: relative;
    z-index: 1;
}
.rtm-share-modal .share-btn:hover svg {
    transform: scale(1.15);
}
.rtm-share-modal .share-btn span {
    position: relative;
    z-index: 1;
}
.rtm-share-modal .copy-link-section h6 {
    font-weight: 700;
    color: #0f172a !important;
}
.rtm-share-modal .copy-link-section .input-group {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}
.rtm-share-modal .copy-link-section .form-control {
    border: 1px solid #e2e8f0 !important;
    border-right: 0 !important;
    border-radius: 12px 0 0 12px !important;
    background: #f8fafc;
    color: #475569;
    font-size: .9rem;
}
.rtm-share-modal .copy-link-section .form-control:focus {
    box-shadow: none;
    background: #fff;
}
.rtm-share-modal .copy-link-section .btn {
    border-radius: 0 12px 12px 0 !important;
    background: var(--bs-brand-2) !important;
    border-color: var(--bs-brand-2) !important;
    color: #fff !important;
    font-weight: 600;
    padding-left: 22px;
    padding-right: 22px;
    transition: all .2s ease;
}
.rtm-share-modal .copy-link-section .btn:hover {
    background: color-mix(in srgb, var(--bs-brand-2) 85%, #000) !important;
    border-color: color-mix(in srgb, var(--bs-brand-2) 85%, #000) !important;
}

.share-btn-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bb8);
    color: white;
}

.share-btn-facebook:hover {
    background: linear-gradient(135deg, #0d5bb8, #1877f2);
    color: white;
}

.share-btn-twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bd9);
    color: white;
}

.share-btn-twitter:hover {
    background: linear-gradient(135deg, #0d8bd9, #1da1f2);
    color: white;
}

.share-btn-linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    color: white;
}

.share-btn-linkedin:hover {
    background: linear-gradient(135deg, #005885, #0077b5);
    color: white;
}

.share-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #1ea952);
    color: white;
}

.share-btn-whatsapp:hover {
    background: linear-gradient(135deg, #1ea952, #25d366);
    color: white;
}

.copy-link-section .form-control {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.copy-link-section .btn {
    border-radius: 0 8px 8px 0;
    border-left: none;
}

.copy-link-section .input-group {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.copy-link-section .input-group:focus-within {
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

/* Animation for copy button */
@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.copy-success {
    animation: copySuccess 0.3s ease;
}

/* Product detail rich text tables */
.product-detail-richtext {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.product-detail-richtext table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    table-layout: auto;
}

.product-detail-richtext table th,
.product-detail-richtext table td {
    padding: 10px 12px;
    border: 1px solid var(--bs-neutral-200);
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
    white-space: normal;
}

.product-detail-richtext table th {
    font-weight: 600;
    color: var(--bs-color-white);
    background-color: var(--bs-brand-2); /* panel: --bs-brand-2 */
}

.product-detail-richtext table thead {
    background-color: var(--bs-brand-2);
}

.product-detail-richtext table tbody tr:nth-child(even) {
    background-color: var(--bs-neutral-100);
}

/* Product features - 3 items per row on desktop */
.box-feature-car .feature-item-col {
    width: 100%;
}

.box-feature-car .feature-image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .box-feature-car .feature-item-col {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .box-feature-car .feature-item-col {
        width: 33.3333%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .box-grid-tours .row.list-view .card-journey-small {
        flex-direction: column;
        padding: 15px;
    }

    .box-grid-tours .row.list-view .card-journey-small .card-image {
        flex: none;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .box-grid-tours .row.list-view .card-journey-small .card-facitlities {
        gap: 10px;
    }
}

/* Sidebar Özel Stilleri */
.social-links-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: var(--bs-neutral-100);
    border-radius: 8px;
    text-decoration: none;
    color: var(--bs-neutral-600);
    transition: all 0.3s ease;
}

.social-link-item:hover {
    background: var(--bs-neutral-200);
    transform: translateX(5px);
    color: var(--bs-brand-2);
}

.social-link-item i {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 20px;
    text-align: center;
    color: var(--bs-brand-2);
    margin-top: 2px;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
}

.contact-item a {
    color: var(--bs-neutral-600);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--bs-brand-2);
}

.box-quick-links {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--bs-neutral-200);
}

.title-quick-links {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bs-neutral-600);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: var(--bs-neutral-100);
    border-radius: 6px;
    text-decoration: none;
    color: var(--bs-neutral-600);
    transition: all 0.3s ease;
    font-size: 14px;
}

.quick-link-item:hover {
    background: var(--bs-neutral-200);
    transform: translateX(3px);
    color: var(--bs-brand-2);
}

.quick-link-item i {
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.box-author-profile .card-image img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

/* Product cards grid view - prevent image cropping */
.box-grid-tours .card-journey-small .card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Product category cards - prevent image cropping */
.product-categories-page .card-news .card-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-categories-page .card-news .card-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.box-author-profile .card-info p:first-child {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.box-author-profile .card-info p:last-child {
    font-size: 12px;
    color: var(--bs-neutral-600);
    margin: 0;
}

/* Anasayfa modül blokları: tutarlı üst/alt boşluk (main.css .py-96 ile aynı 96px ölçeği) */
.home-section-block {
    padding-top: 96px;
    padding-bottom: 96px;
}
@media (max-width: 991.98px) {
    .home-section-block {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}
@media (max-width: 575.98px) {
    .home-section-block {
        padding-top: 56px;
        padding-bottom: 56px;
    }
}
/* Hero slider kendi iç boşluğunu kullanır; dikey blok padding uygulanmaz */
section.rtm-home-slider.home-section-block {
    padding-top: 0;
    padding-bottom: 0;
}

/* Banner kartları: beyaz buton metni + ok (tema .btn.btn-white ile uyumlu) */
.section-home-banner .banner-button .btn svg path {
    stroke: currentColor;
}

/* ============================================================
   Harita il ismi tooltip (mouse takip)
   ============================================================ */
.il-isimleri {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    background: rgba(20, 20, 20, 0.88);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: opacity 0.1s ease;
}

.il-isimleri:empty {
    display: none;
}

/* ============================================================
   Page Header — Varyant 2: İnce breadcrumb çubuğu (site rengi)
   ============================================================ */
/* Page Header — Görsel varyant: tam genişlik override */
.page-header .custom-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page-header .custom-container .bg-overlay {
    border-radius: 0 !important;
}

.rtm-breadcrumb-bar {
    background: var(--bs-brand-2);
    padding: 14px 0;
}

.rtm-breadcrumb-bar a.rtm-breadcrumb-bar__item,
.rtm-breadcrumb-bar span.rtm-breadcrumb-bar__item {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85) !important;
    text-decoration: none;
    transition: color .2s;
    white-space: nowrap;
    line-height: 1;
}

.rtm-breadcrumb-bar a.rtm-breadcrumb-bar__item:hover {
    color: #fff !important;
}

.rtm-breadcrumb-bar .rtm-breadcrumb-bar__item.is-active {
    color: #fff !important;
    font-weight: 700;
}

.rtm-breadcrumb-bar__sep {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.rtm-breadcrumb-bar__sep img {
    width: 10px !important;
    height: 10px !important;
    opacity: .7;
    filter: brightness(0) invert(1);
    display: block;
}

/* ══════════════════════════════════════════════════
   RTM PLAY BUTTON — saf CSS, play.png bağımlılığı yok
══════════════════════════════════════════════════ */
.rtm-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bs-brand-2, #e42528);
    color: #fff;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 0 0 12px rgba(var(--bs-primary-rgb), .18);
}
.rtm-play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top:    11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left:   20px solid #fff;
    margin-left: 4px;
}
.rtm-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 0 18px rgba(var(--bs-primary-rgb), .12);
}

/* ══════════════════════════════════════════════════
   RTM HERO COMPONENT
══════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   RTM HERO COMPONENT
════════════════════════════════════════════════ */
.rtm-hero {
    background: #f8f9fb;
    overflow: hidden;
    padding: 80px 0 72px;
}

/* Ana grid: sol metin, sağ mozaik */
.rtm-hero__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .rtm-hero__main { grid-template-columns: 1fr; gap: 48px; }
}

/* Görsel yüklenmediyse mozaik gizlenir, içerik tam genişlik */
.rtm-hero__main--full {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.rtm-hero__main--full .rtm-hero__content { align-items: center; }
.rtm-hero__main--full .rtm-hero__title,
.rtm-hero__main--full .rtm-hero__subtitle { text-align: center; }
.rtm-hero__main--full .rtm-hero__stats { justify-content: center; }

/* ── Sol: İçerik ── */
.rtm-hero__content { display: flex; flex-direction: column; }

/* Eyebrow label */
.rtm-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bs-brand-2, #e42528);
    background: color-mix(in srgb, var(--bs-brand-2, #e42528) 10%, #fff);
    border-radius: 100px;
    padding: 6px 16px;
    width: fit-content;
    margin-bottom: 1.5rem;
}
.rtm-hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bs-brand-2, #e42528);
    flex-shrink: 0;
    animation: rtm-pulse 2s ease-in-out infinite;
}
@keyframes rtm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.75); }
}

/* Başlık */
.rtm-hero__title {
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--bs-neutral-1000, #0f0f10);
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
}

/* Başlıkta kırmızı aksanı destekle: <em> italic değil renkli */
.rtm-hero__title em {
    font-style: normal;
    color: var(--bs-brand-2, #e42528);
}

/* Alt başlık */
.rtm-hero__subtitle {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--bs-neutral-500, #666);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

/* İstatistikler */
.rtm-hero__stats {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.rtm-hero__stat-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.rtm-hero__stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    color: var(--bs-neutral-1000, #0f0f10);
    letter-spacing: -.03em;
}
.rtm-hero__stat-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--bs-neutral-400, #999);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.rtm-hero__stat-sep {
    width: 1px;
    height: 40px;
    background: var(--bs-neutral-200, #e0e0e0);
}

/* ── Sağ: Görsel Mozaik ── */
.rtm-hero__mosaic {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: auto;
    gap: 14px;
    align-items: stretch;
}
@media (max-width: 575px) {
    .rtm-hero__mosaic { grid-template-columns: 1fr; }
    .rtm-hero__mosaic-side { display: flex; gap: 14px; }
}

/* Ana büyük görsel */
.rtm-hero__mosaic-main {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.13);
    height: 460px;
}
.rtm-hero__mosaic-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s ease;
}
.rtm-hero__mosaic-main:hover img { transform: scale(1.04); }

/* Yan küçük görseller kolonu */
.rtm-hero__mosaic-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.rtm-hero__mosaic-sm {
    border-radius: 18px;
    overflow: hidden;
    flex: 1;
    min-height: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
}
.rtm-hero__mosaic-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}
.rtm-hero__mosaic-sm:hover img { transform: scale(1.06); }

.rtm-hero__mosaic-empty {
    background: linear-gradient(135deg, #eff1f4 0%, #e4e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rtm-hero__mosaic-empty svg { width: 40px; height: 40px; }

/* ── Feature kartları ── */
.rtm-hero__features-wrap { padding-top: 4rem; }
.rtm-hero__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 991px) { .rtm-hero__features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .rtm-hero__features { grid-template-columns: 1fr; } }
.rtm-hero__feat {
    background: var(--bs-neutral-100, #f4f5f7);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: transform .25s, box-shadow .25s;
    border: 1px solid transparent;
}
.rtm-hero__feat:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.08);
    border-color: color-mix(in srgb, var(--bs-brand-2, #e42528) 18%, transparent);
}
.rtm-hero__feat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--bs-brand-2, #e42528) 12%, #fff);
    color: var(--bs-brand-2, #e42528);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
}
.rtm-hero__feat-icon svg { width: 26px; height: 26px; }
.rtm-hero__feat-icon img { width: 28px; height: 28px; object-fit: contain; }
.rtm-hero__feat-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bs-color-1000, #111);
    margin-bottom: .35rem;
    line-height: 1.3;
}
.rtm-hero__feat-desc {
    font-size: .875rem;
    color: var(--bs-neutral-500, #888);
    margin: 0;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   RTM CTA COMPONENT  — Dikey Tab Paneli
══════════════════════════════════════════════════ */
.rtm-cta {
    position: relative;
    background: #0e1117;
    overflow: hidden;
    padding: 96px 0;
}

/* Dot grid pattern */
.rtm-cta__pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Sol-alt kırmızı ışıma */
.rtm-cta::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb),.18) 0%, transparent 70%);
    pointer-events: none;
}

.rtm-cta__inner { position: relative; z-index: 1; }

/* ── Üst: Başlık bloğu ── */
.rtm-cta__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.rtm-cta__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--bs-brand-2, #e42528);
    background: rgba(var(--bs-primary-rgb),.14);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 18px;
}
.rtm-cta__label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-brand-2, #e42528);
    flex-shrink: 0;
}

.rtm-cta__title {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: 16px;
}

.rtm-cta__desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,.5);
    margin: 0;
}

/* ── Tab kapsayıcı grid ── */
.rtm-cta__tabs {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: stretch;
    min-height: 400px;
}
@media (max-width: 991px) {
    .rtm-cta__tabs { grid-template-columns: 1fr; min-height: auto; }
}

/* ── Sol: Tab navigasyon ── */
.rtm-cta__tab-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rtm-cta__tab-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    text-align: left;
    transition: all .22s ease;
    position: relative;
    overflow: hidden;
}
.rtm-cta__tab-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 0 2px 2px 0;
    background: var(--bs-brand-2, #e42528);
    transform: scaleY(0);
    transition: transform .22s ease;
}
.rtm-cta__tab-btn:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
}
.rtm-cta__tab-btn.is-active {
    background: rgba(var(--bs-primary-rgb),.1);
    border-color: rgba(var(--bs-primary-rgb),.3);
}
.rtm-cta__tab-btn.is-active::before { transform: scaleY(1); }

.rtm-cta__tab-num {
    font-size: .7rem;
    font-weight: 800;
    color: var(--bs-brand-2, #e42528);
    letter-spacing: .05em;
    font-family: monospace;
    flex-shrink: 0;
    opacity: .7;
    transition: opacity .2s;
}
.rtm-cta__tab-btn.is-active .rtm-cta__tab-num { opacity: 1; }

.rtm-cta__tab-name {
    flex: 1;
    font-size: .95rem;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    transition: color .2s;
    line-height: 1.3;
}
.rtm-cta__tab-btn.is-active .rtm-cta__tab-name { color: #fff; }

.rtm-cta__tab-arrow {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,.2);
    flex-shrink: 0;
    transition: color .2s, transform .2s;
}
.rtm-cta__tab-btn.is-active .rtm-cta__tab-arrow {
    color: var(--bs-brand-2, #e42528);
    transform: translateX(3px);
}

/* CTA butonu — tab nav'ın en altında */
.rtm-cta__btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bs-brand-2, #e42528);
    color: #fff !important;
    font-weight: 700;
    font-size: .9rem;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 6px 24px rgba(var(--bs-primary-rgb),.35);
    margin-top: 8px;
    width: 100%;
}
.rtm-cta__btn-primary:hover {
    background: var(--bs-brand-2-darken, color-mix(in srgb, var(--bs-brand-2) 80%, #000));
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(var(--bs-primary-rgb),.45);
    color: #fff !important;
}
.rtm-cta__btn-primary:focus-visible {
    color: #fff !important;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb, 228, 37, 40), .45), 0 12px 32px rgba(var(--bs-primary-rgb),.45);
}
.rtm-cta__btn-primary svg { transition: transform .25s; }
.rtm-cta__btn-primary:hover svg { transform: translateX(4px); }

/* ── Sağ: Tab panel içerikleri ── */
.rtm-cta__tab-panels {
    position: relative;
}

.rtm-cta__tab-panel {
    display: none;
    flex-direction: column;
    height: 100%;
    animation: rtm-tab-in .3s ease;
}
.rtm-cta__tab-panel.is-active { display: flex; }

@keyframes rtm-tab-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.rtm-cta__panel-img {
    border-radius: 20px;
    overflow: hidden;
    height: 260px;
    margin-bottom: 28px;
    box-shadow: 0 20px 48px rgba(0,0,0,.4);
    flex-shrink: 0;
}
.rtm-cta__panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.rtm-cta__tab-panel.is-active .rtm-cta__panel-img img { transform: scale(1.03); }

.rtm-cta__panel-body {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 28px 30px;
    flex: 1;
}

.rtm-cta__panel-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -.015em;
}

.rtm-cta__panel-text {
    font-size: .97rem;
    line-height: 1.82;
    color: rgba(255,255,255,.6);
    margin: 0;
}
.rtm-cta__panel-text p { margin-bottom: .75rem; }
.rtm-cta__panel-text p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════════
   RTM STATS COMPONENT
══════════════════════════════════════════════════ */
.rtm-stats {
    padding: 80px 0;
    background: var(--bs-brand-2, #e42528);
    position: relative;
    overflow: hidden;
}
.rtm-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}
.rtm-stats__inner { position: relative; z-index: 1; }
.rtm-stats__section-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: .95;
}
.rtm-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}
@media (max-width: 575px) { .rtm-stats__grid { grid-template-columns: 1fr 1fr; } }
.rtm-stats__item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}
.rtm-stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%; right: 0;
    height: 60%; width: 1px;
    background: rgba(255,255,255,.25);
}
@media (max-width: 575px) {
    .rtm-stats__item:nth-child(2n)::after { display: none; }
    .rtm-stats__item:nth-child(2n+1):last-child::after { display: none; }
}
.rtm-stats__num-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: .15rem;
    margin-bottom: .6rem;
}
.rtm-stats__num {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -.02em;
}
.rtm-stats__suffix {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: rgba(255,255,255,.8);
    line-height: 1;
}
.rtm-stats__label {
    font-size: .95rem;
    font-weight: 500;
    color: rgba(255,255,255,.75);
    margin: 0;
    line-height: 1.4;
}

/* ─────────────────────────────────────────────
   RTM Video Component
───────────────────────────────────────────── */
.rtm-video {
    padding: 100px 0;
    background: var(--bs-background-body, #fff);
    overflow: hidden;
}
.rtm-video__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.rtm-video__grid--reverse { direction: rtl; }
.rtm-video__grid--reverse > * { direction: ltr; }
@media (max-width: 991px) {
    .rtm-video__grid { grid-template-columns: 1fr; gap: 48px; direction: ltr !important; }
}

/* Görsel/video yüklenmediyse tek kolon, tam genişlik */
.rtm-video__grid--full {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    direction: ltr !important;
}
.rtm-video__grid--full > * { direction: ltr; }

/* Media */
.rtm-video__media { position: relative; }

.rtm-video__img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(0,0,0,.12);
    z-index: 1;
}
.rtm-video__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.rtm-video__img-wrap:hover .rtm-video__img { transform: scale(1.04); }

.rtm-video__img-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #f0f2f4 0%, #e2e5e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rtm-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.rtm-video__thumb {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 160px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,.15);
    z-index: 2;
}
.rtm-video__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.rtm-video__deco-frame {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px solid var(--bs-brand-2, #e42528);
    opacity: .1;
    z-index: 0;
    pointer-events: none;
}

/* Body */
.rtm-video__body { padding: 8px 0; }

.rtm-video__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--bs-brand-2, #e42528);
    background: color-mix(in srgb, var(--bs-brand-2, #e42528) 10%, #fff);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
}
.rtm-video__label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-brand-2, #e42528);
    flex-shrink: 0;
}

.rtm-video__title {
    font-size: clamp(1.65rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--bs-neutral-1000, #111);
    margin-bottom: 12px;
}
.rtm-video__title-bar {
    width: 48px;
    height: 4px;
    background: var(--bs-brand-2, #e42528);
    border-radius: 2px;
    margin-bottom: 20px;
}
.rtm-video__content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--bs-neutral-500, #666);
    margin-bottom: 28px;
}

/* Feature listesi */
.rtm-video__feats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.rtm-video__feat {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #f8f9fb;
    border-radius: 14px;
    border: 1px solid #eef0f3;
    transition: all .22s ease;
}
.rtm-video__feat:hover {
    border-color: color-mix(in srgb, var(--bs-brand-2, #e42528) 25%, #fff);
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb),.08);
    transform: translateX(4px);
}
.rtm-video__feat-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--bs-brand-2, #e42528) 12%, #fff);
    color: var(--bs-brand-2, #e42528);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rtm-video__feat-icon svg { width: 20px; height: 20px; }
.rtm-video__feat-body { flex: 1; min-width: 0; }
.rtm-video__feat-title {
    display: block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--bs-neutral-900, #222);
    margin-bottom: 4px;
}
.rtm-video__feat-desc {
    font-size: .85rem;
    line-height: 1.6;
    color: var(--bs-neutral-500, #777);
    margin: 0;
}

/* CTA */
.rtm-video__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bs-brand-2, #e42528);
    color: #fff !important;
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb),.28);
}
.rtm-video__btn:hover {
    background: var(--bs-brand-2-darken, color-mix(in srgb, var(--bs-brand-2) 80%, #000));
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--bs-primary-rgb),.38);
    color: #fff !important;
}
.rtm-video__btn:focus-visible {
    color: #fff !important;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb, 228, 37, 40), .45), 0 10px 28px rgba(var(--bs-primary-rgb),.38);
}
.rtm-video__btn svg { transition: transform .25s; }
.rtm-video__btn:hover svg { transform: translateX(5px); }

/* ─────────────────────────────────────────────
   RTM About Component
───────────────────────────────────────────── */
.rtm-about {
    padding: 100px 0;
    background: #f8f9fb;
    overflow: visible;
}

/* Layout grid */
.rtm-about__grid {
    display: grid;
    grid-template-columns: 52% 1fr;
    gap: 64px;
    align-items: center;
}
@media (max-width: 991px) {
    .rtm-about__grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Görsel yüklenmediyse tek kolon, tam genişlik */
.rtm-about__grid--full {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
}
.rtm-about__grid--full .rtm-about__body {
    text-align: left;
}

/* ── Media side ── */
.rtm-about__media {
    position: relative;
    padding-bottom: 28px; /* room for bottom row */
}

/* Ana görsel */
.rtm-about__main-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 72px rgba(0,0,0,.13);
    z-index: 1;
}
.rtm-about__main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.rtm-about__main-img-wrap:hover .rtm-about__main-img { transform: scale(1.04); }

.rtm-about__img-placeholder {
    width: 100%;
    height: 420px;
    background: linear-gradient(135deg, #f0f2f4 0%, #e2e5e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Play butonu */
.rtm-about__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Alt satır: küçük görsel + badge */
.rtm-about__bottom-row {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    align-items: stretch;
}

.rtm-about__thumb-wrap {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    height: 160px;
}
.rtm-about__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.rtm-about__thumb-wrap:hover .rtm-about__thumb-img { transform: scale(1.06); }

/* Stat badge kutusu */
.rtm-about__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 120px;
    padding: 20px 16px;
    background: var(--bs-brand-2, #e42528);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(var(--bs-primary-rgb),.28);
    color: #fff;
}
.rtm-about__badge-num {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
}
.rtm-about__badge-label {
    font-size: .75rem;
    font-weight: 600;
    opacity: .85;
    text-align: center;
    line-height: 1.3;
}

/* Dot grid */
.rtm-about__dots {
    position: absolute;
    top: -20px;
    left: -20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    z-index: 0;
    pointer-events: none;
}
.rtm-about__dots span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-brand-2, #e42528);
    opacity: .15;
}
@media (max-width: 991px) { .rtm-about__dots { display: none; } }

/* ── Content side ── */
.rtm-about__body { padding: 8px 0; }

.rtm-about__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--bs-brand-2, #e42528);
    background: color-mix(in srgb, var(--bs-brand-2, #e42528) 10%, #fff);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
}
.rtm-about__label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bs-brand-2, #e42528);
    flex-shrink: 0;
}

.rtm-about__title {
    font-size: clamp(1.65rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--bs-neutral-1000, #111);
    margin-bottom: 12px;
}

/* Kırmızı alt çizgi aksanı */
.rtm-about__title-bar {
    width: 48px;
    height: 4px;
    background: var(--bs-brand-2, #e42528);
    border-radius: 2px;
    margin-bottom: 24px;
}

.rtm-about__content {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--bs-neutral-500, #666);
    margin-bottom: 32px;
}

/* Zengin metin (CKEditor) çıktıları için ortak stil.
   Temanın ul/ol list-style:none reset'ini ve başlık/p margin sıfırlamasını geri alır. */
.rtm-rich-content {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    word-break: break-word;
}
.rtm-rich-content > *:first-child { margin-top: 0; }
.rtm-rich-content > *:last-child { margin-bottom: 0; }
.rtm-rich-content p {
    margin: 0 0 14px;
}
.rtm-rich-content h1,
.rtm-rich-content h2,
.rtm-rich-content h3,
.rtm-rich-content h4,
.rtm-rich-content h5,
.rtm-rich-content h6 {
    margin: 22px 0 12px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--bs-neutral-1000, #111);
}
.rtm-rich-content h1 { font-size: 2rem; }
.rtm-rich-content h2 { font-size: 1.6rem; }
.rtm-rich-content h3 { font-size: 1.35rem; }
.rtm-rich-content h4 { font-size: 1.15rem; }
.rtm-rich-content h5 { font-size: 1rem; }
.rtm-rich-content h6 { font-size: .9rem; }
.rtm-rich-content ul,
.rtm-rich-content ol {
    margin: 0 0 14px;
    padding-left: 22px;
}
.rtm-rich-content ul { list-style: disc !important; }
.rtm-rich-content ol { list-style: decimal !important; }
.rtm-rich-content ul li,
.rtm-rich-content ol li {
    list-style: inherit !important;
    margin-bottom: 6px;
}
.rtm-rich-content ul ul,
.rtm-rich-content ol ol,
.rtm-rich-content ul ol,
.rtm-rich-content ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
}
.rtm-rich-content strong,
.rtm-rich-content b {
    font-weight: 700;
    color: inherit;
}
.rtm-rich-content em,
.rtm-rich-content i {
    font-style: italic;
}
.rtm-rich-content u { text-decoration: underline; }
.rtm-rich-content s,
.rtm-rich-content del { text-decoration: line-through; }
.rtm-rich-content a {
    color: var(--bs-brand-2, #e42528);
    text-decoration: underline;
    word-break: break-word;
}
.rtm-rich-content a:hover { opacity: .85; }
.rtm-rich-content blockquote {
    margin: 16px 0;
    padding: 10px 18px;
    border-left: 4px solid var(--bs-brand-2, #e42528);
    background: rgba(0,0,0,.03);
    font-style: italic;
    color: inherit;
}
.rtm-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}
.rtm-rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
}
.rtm-rich-content table th,
.rtm-rich-content table td {
    border: 1px solid #e5e7eb;
    padding: 8px 10px;
    text-align: left;
    vertical-align: top;
}
.rtm-rich-content table th {
    background: #f8f9fa;
    font-weight: 600;
}
.rtm-rich-content hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 18px 0;
}
.rtm-rich-content code {
    background: rgba(0,0,0,.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .92em;
}
.rtm-rich-content pre {
    background: #0f172a;
    color: #e2e8f0;
    padding: 14px 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 14px 0;
}
.rtm-rich-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Feature card grid */
.rtm-about__feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}
@media (max-width: 575px) { .rtm-about__feat-grid { grid-template-columns: 1fr; } }

.rtm-about__feat-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 14px;
    padding: 14px 16px;
    transition: all .22s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.rtm-about__feat-card:hover {
    border-color: color-mix(in srgb, var(--bs-brand-2, #e42528) 30%, #fff);
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb),.1);
    transform: translateY(-2px);
}
.rtm-about__feat-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--bs-brand-2, #e42528) 12%, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-brand-2, #e42528);
    margin-top: 1px;
}
.rtm-about__feat-icon svg { width: 14px; height: 14px; }

.rtm-about__feat-text {
    font-size: .88rem;
    font-weight: 600;
    color: var(--bs-neutral-700, #333);
    line-height: 1.45;
}

/* CTA button */
.rtm-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bs-brand-2, #e42528);
    color: #fff !important;
    font-weight: 600;
    font-size: .95rem;
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb),.28);
}
.rtm-about__btn:hover {
    background: var(--bs-brand-2-darken, color-mix(in srgb, var(--bs-brand-2) 80%, #000));
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--bs-primary-rgb),.38);
    color: #fff !important;
}
.rtm-about__btn:focus-visible {
    color: #fff !important;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb, 228, 37, 40), .45), 0 10px 28px rgba(var(--bs-primary-rgb),.38);
}
.rtm-about__btn svg { transition: transform .25s ease; }
.rtm-about__btn:hover svg { transform: translateX(5px); }

/* ── Ortak: page-meta-bar (tüm sayfalarda section başlığı tekrarı yerine kullanılır) ── */
.page-meta-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-meta-bar__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bs-brand-2);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
}

.page-meta-bar__count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-700, #374151);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
    margin-left: auto;
}

/* Trust items (KVKK sayfası) */
.page-meta-bar__trust {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.page-meta-bar__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bs-neutral-600, #4b5563);
}

.page-meta-bar__trust-item svg { color: var(--bs-brand-2); flex-shrink: 0; }

.page-meta-bar__trust-divider {
    width: 1px;
    height: 14px;
    background: var(--bs-neutral-300, #d1d5db);
    display: inline-block;
}

/* Sayfa içeriği açıklaması (başlık/subtitle olmadan) */
.page-content-intro {
    font-size: .95rem;
    line-height: 1.75;
    color: var(--bs-neutral-600, #4b5563);
    max-width: 100%;
    padding: 18px 22px;
    background: var(--bs-neutral-50, #f9fafb);
    border-left: 3px solid var(--bs-brand-2);
    border-radius: 0 10px 10px 0;
}

.page-content-intro p:last-child { margin-bottom: 0; }

@media (max-width: 575.98px) {
    .page-meta-bar__count { margin-left: 0; }
    .page-meta-bar__trust { display: none; }
}



/* ════════════════════════════════════════════════════════════
   PAGE COMPONENTS — belgeler / kataloglar / kvkk
   (view @section('css')'den taşındı)
════════════════════════════════════════════════════════════ */
/* == document == */
/* ── Document Section ─────────────────────────────────────── */
.doc-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bs-brand-2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

.doc-section__title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
}

.doc-section__sub {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.doc-count-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-700, #374151);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
}

/* ── Card ─────────────────────────────────────────────────── */
.doc-card {
    background: var(--bs-neutral-0, #fff);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--bs-neutral-200, #e9ecef);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: docFadeUp .5s ease both;
}

.doc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.10);
    border-color: var(--bs-brand-2);
}

.doc-card[data-index="0"] { animation-delay: .05s; }
.doc-card[data-index="1"] { animation-delay: .10s; }
.doc-card[data-index="2"] { animation-delay: .15s; }
.doc-card[data-index="3"] { animation-delay: .20s; }
.doc-card[data-index="4"] { animation-delay: .25s; }
.doc-card[data-index="5"] { animation-delay: .30s; }

@keyframes docFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Top image / icon area */
.doc-card__top {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.doc-card__thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.doc-card:hover .doc-card__thumbnail { transform: scale(1.04); }

.doc-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.doc-card:hover .doc-card__overlay { opacity: 1; }

.doc-card__overlay-icon {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.8);
    transition: transform .3s ease;
}

.doc-card:hover .doc-card__overlay-icon { transform: scale(1); }

/* Icon area (no image) — tek site rengi */
.doc-card__icon-area {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bs-brand-2) 0%, var(--bs-brand-2-darken, #b01c1e) 100%);
}

.doc-card__icon-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.18) 0%, transparent 60%);
}

.doc-card__icon-svg {
    color: rgba(255,255,255,.95);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}

.doc-card__number {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,.12);
    line-height: 1;
    letter-spacing: -2px;
    pointer-events: none;
}

/* Card body */
.doc-card__body {
    padding: 20px 22px 12px;
    flex: 1;
}

.doc-card__type-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--bs-brand-2);
    background: rgba(var(--bs-primary-rgb), .09);
    padding: 4px 10px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.doc-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
}

.doc-card__sub {
    font-size: .875rem;
    line-height: 1.5;
    margin: 0;
}

/* Card footer / button */
.doc-card__footer {
    padding: 12px 22px 20px;
    border-top: 1px solid var(--bs-neutral-100, #f3f4f6);
}

.doc-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .25s ease;
    border: none;
    cursor: pointer;
    line-height: 1.4;
}

.doc-card__btn--download {
    background: var(--bs-brand-2);
    color: #fff !important;
}

.doc-card__btn--download:hover {
    background: var(--bs-brand-2-darken, #b01c1e);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb),.35);
}

.doc-card__btn--view {
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-800, #1f2937) !important;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
}

.doc-card__btn--view:hover {
    background: var(--bs-brand-2);
    color: #fff !important;
    border-color: var(--bs-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb),.25);
}

.doc-card__btn--disabled {
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-400, #9ca3af) !important;
    border: 1px dashed var(--bs-neutral-300, #d1d5db);
    cursor: not-allowed;
    opacity: .7;
}

@media (max-width: 767.98px) {
    .doc-section__title { font-size: 1.5rem; }
    .doc-card__icon-area { height: 150px; }
}

/* == catalog == */
/* ── Catalog Section ──────────────────────────────────────── */
.catalog-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bs-brand-2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

.catalog-section__title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
}

.catalog-section__sub {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.catalog-count-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-700, #374151);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
}

/* ── Catalog Card ─────────────────────────────────────────── */
.catalog-card {
    background: var(--bs-neutral-0, #fff);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--bs-neutral-200, #e9ecef);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    animation: catalogFadeUp .5s ease both;
    margin-bottom: 8px;
}

.catalog-card[data-index="0"] { animation-delay: .05s; }
.catalog-card[data-index="1"] { animation-delay: .10s; }
.catalog-card[data-index="2"] { animation-delay: .15s; }
.catalog-card[data-index="3"] { animation-delay: .20s; }
.catalog-card[data-index="4"] { animation-delay: .25s; }
.catalog-card[data-index="5"] { animation-delay: .30s; }

@keyframes catalogFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.10);
    border-color: var(--bs-brand-2);
}

.catalog-card__visual {
    position: relative;
    overflow: hidden;
}

.catalog-card__img-wrap {
    display: block;
    overflow: hidden;
}

.catalog-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.catalog-card:hover .catalog-card__img { transform: scale(1.06); }

.catalog-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.catalog-card:hover .catalog-card__overlay { opacity: 1; }

.catalog-card__eye {
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255,255,255,.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.8);
    transition: transform .3s ease;
    text-decoration: none;
}

.catalog-card:hover .catalog-card__eye { transform: scale(1); }

.catalog-card__brand-chip {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--bs-brand-2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.catalog-card__body { padding: 18px 20px 0; }

.catalog-card__meta { margin-bottom: 8px; }

.catalog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--bs-neutral-500, #6b7280);
    font-weight: 500;
}

.catalog-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0;
}

.catalog-card__title a {
    text-decoration: none;
    transition: color .2s;
}

.catalog-card__title a:hover { color: var(--bs-brand-2) !important; }

.catalog-card__footer { padding: 14px 20px 18px; }

.catalog-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 18px;
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-800, #1f2937) !important;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
    border-radius: 10px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .25s ease;
}

.catalog-card__btn:hover {
    background: var(--bs-brand-2);
    color: #fff !important;
    border-color: var(--bs-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb),.25);
}

/* ── Pagination ───────────────────────────────────────────── */
.catalog-pagination { margin-top: 40px; }

.catalog-page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px !important;
    border: 1px solid var(--bs-neutral-200, #e9ecef) !important;
    color: var(--bs-neutral-700, #374151) !important;
    font-weight: 600;
    font-size: .875rem;
    transition: all .2s ease;
    background: var(--bs-neutral-0, #fff) !important;
}

.catalog-page-link:hover,
.catalog-page-link--active {
    background: var(--bs-brand-2) !important;
    border-color: var(--bs-brand-2) !important;
    color: #fff !important;
}

/* ── Site geneli pagination (haberler / fuarlar / foto-video galeri /
      urun kategorileri vb.): Bootstrap varsayilan mavi yerine site brand
      rengini kullan. ─────────────────────────────────────────────── */
.pagination {
    gap: 6px;
    margin: 24px 0 56px;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .pagination { margin: 20px 0 40px; }
}

.pagination .page-item { margin: 0; }

.pagination .page-link {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--bs-neutral-200, #e9ecef);
    color: var(--bs-neutral-700, #374151);
    background: var(--bs-neutral-0, #fff);
    font-weight: 600;
    font-size: .875rem;
    line-height: 1;
    margin: 0;
    transition: all .2s ease;
    box-shadow: none;
}

.pagination .page-link svg {
    width: 14px;
    height: 14px;
    transition: transform .2s ease;
}

.pagination .page-link svg path { stroke: currentColor; }

/* Aktif sayfa (Laravel'in :href="#"'li current-page <a>'leri): brand rengi. */
.pagination .page-link.active,
.pagination .page-item.active .page-link {
    background: var(--bs-brand-2);
    border-color: var(--bs-brand-2);
    color: #fff;
    cursor: default;
}

/* Disabled (prev/next ilk/son sayfada): Laravel "href=#" ile isaretliyor.
   Hover'da da gri kalsin, tiklanmasin, imlec de not-allowed olsun. */
.pagination .page-item.disabled .page-link,
.pagination .page-link.disabled,
.pagination .page-link[href="#"][aria-label="Previous"],
.pagination .page-link[href="#"][aria-label="Next"] {
    background: var(--bs-neutral-50, #f9fafb);
    color: var(--bs-neutral-500, #9ca3af);
    border-color: var(--bs-neutral-200, #e9ecef);
    cursor: not-allowed;
    opacity: .55;
    pointer-events: none;
}

/* Hover efekti sadece gercek pointer'li cihazlarda (desktop) — mobilde
   tap'ten sonra "sticky hover" kalmasin. Aktif ve disabled olanlar harictir. */
@media (hover: hover) and (pointer: fine) {
    .pagination .page-link:not(.active):not(.disabled):hover {
        background: var(--bs-brand-2);
        border-color: var(--bs-brand-2);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb, 228, 37, 40), .22);
    }

    /* Aktif sayfa hover'da biraz koyulasin (brand-2-darken) — goz icin geri-bildirim */
    .pagination .page-link.active:hover,
    .pagination .page-item.active .page-link:hover {
        background: var(--bs-brand-2-darken, var(--bs-brand-2));
        border-color: var(--bs-brand-2-darken, var(--bs-brand-2));
    }

    /* Prev/Next ok animasyonu: hover'da hafifce yon yonune kayar. */
    .pagination .page-link[aria-label="Previous"]:not(.disabled):hover svg { transform: translateX(-2px); }
    .pagination .page-link[aria-label="Next"]:not(.disabled):hover svg     { transform: translateX(2px); }
}

/* Aktif durum (tiklamada): kucuk "basma" geri bildirimi */
.pagination .page-link:not(.active):not(.disabled):active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(var(--bs-primary-rgb, 228, 37, 40), .18);
}

/* Klavye erisimi: focus halkasi brand renginde. */
.pagination .page-link:focus,
.pagination .page-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb, 228, 37, 40), .2);
    border-color: var(--bs-brand-2);
}

/* Katalog sayfasi kendi .catalog-page-link markup'i ile (zaten !important'li)
   ayrik kaliyor; yukaridaki kurallar onu override etmiyor. */

/* ── CTA Banner Cards ─────────────────────────────────────── */
.catalog-cta {
    background: var(--bs-neutral-50, #f9fafb);
    padding-bottom: 80px;
}

.catalog-cta-card {
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Her iki kart da site ana renginde — birincisi tam dolu, ikincisi koyu ton */
.catalog-cta-card--primary {
    background: linear-gradient(135deg, var(--bs-brand-2) 0%, var(--bs-brand-2-darken, #b01c1e) 100%);
    color: #fff;
}

.catalog-cta-card--secondary {
    background: linear-gradient(135deg, var(--bs-brand-2-darken, #b01c1e) 0%, #6b0e10 100%);
    color: #fff;
}

.catalog-cta-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,.18);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.catalog-cta-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.catalog-cta-card__text {
    font-size: .9rem;
    color: rgba(255,255,255,.82);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.catalog-cta-card__action { margin-top: auto; }

.catalog-cta-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(4px);
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,.45);
    border-radius: 10px;
    padding: 10px 22px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .25s ease;
}

.catalog-cta-card__btn:hover {
    background: rgba(255,255,255,.32);
    border-color: rgba(255,255,255,.75);
    color: #fff !important;
    transform: translateY(-2px);
}

.catalog-cta-card__deco {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    pointer-events: none;
}

.catalog-cta-card__deco::before {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.05);
}

@media (max-width: 991.98px) {
    .catalog-cta-card { padding: 28px 24px; }
}

/* == legal == */
/* ── Legal Section ────────────────────────────────────────── */
.legal-header__shield {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--bs-brand-2) 0%, var(--bs-brand-2-darken, #b01c1e) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin: 0 auto;
    box-shadow: 0 12px 32px rgba(var(--bs-primary-rgb),.28);
}

.legal-header__title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
}

.legal-header__sub {
    font-size: 1rem;
    max-width: 580px;
    margin: 0 auto;
}

/* Trust bar */
.legal-header__trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 0;
    background: var(--bs-neutral-50, #f9fafb);
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
    border-radius: 14px;
    padding: 16px 24px;
    max-width: 520px;
    margin: 0 auto;
}

.legal-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bs-neutral-700, #374151);
    padding: 0 16px;
}

.legal-trust-item svg {
    color: var(--bs-brand-2);
    flex-shrink: 0;
}

.legal-trust-divider {
    width: 1px;
    height: 20px;
    background: var(--bs-neutral-200, #e5e7eb);
}

/* ── Legal Card ───────────────────────────────────────────── */
.legal-card {
    background: var(--bs-neutral-0, #fff);
    border-radius: 16px;
    border: 1px solid var(--bs-neutral-200, #e9ecef);
    overflow: hidden;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
    animation: legalFadeUp .5s ease both;
}

.legal-card[data-index="0"] { animation-delay: .05s; }
.legal-card[data-index="1"] { animation-delay: .10s; }
.legal-card[data-index="2"] { animation-delay: .15s; }
.legal-card[data-index="3"] { animation-delay: .20s; }
.legal-card[data-index="4"] { animation-delay: .25s; }
.legal-card[data-index="5"] { animation-delay: .30s; }

@keyframes legalFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.legal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.09);
}

/* Left accent bar */
.legal-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--bs-neutral-200, #e5e7eb);
    transition: background .3s ease;
}

.legal-card:hover .legal-card__accent {
    background: var(--bs-brand-2);
}

.legal-card__inner {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 24px 24px 28px;
}

/* Icon — tek site rengi */
.legal-card__icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.legal-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--bs-brand-2) 0%, var(--bs-brand-2-darken, #b01c1e) 100%);
}

.legal-card__number {
    font-size: 11px;
    font-weight: 700;
    color: var(--bs-neutral-400, #9ca3af);
    letter-spacing: .5px;
}

/* Content */
.legal-card__content {
    flex: 1;
    min-width: 0;
}

.legal-card__type {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--bs-brand-2);
    background: rgba(var(--bs-primary-rgb), .09);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.legal-card__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 4px;
}

.legal-card__sub {
    font-size: .85rem;
    line-height: 1.5;
    margin: 0;
}

/* Actions */
.legal-card__actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.legal-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    transition: all .25s ease;
    line-height: 1.4;
}

.legal-card__btn--primary {
    background: var(--bs-brand-2);
    color: #fff !important;
}

.legal-card__btn--primary:hover {
    background: var(--bs-brand-2-darken, #b01c1e);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb),.35);
}

.legal-card__btn--outline {
    background: transparent;
    color: var(--bs-neutral-700, #374151) !important;
    border: 1.5px solid var(--bs-neutral-300, #d1d5db);
}

.legal-card__btn--outline:hover {
    background: var(--bs-brand-2);
    color: #fff !important;
    border-color: var(--bs-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb),.25);
}

/* ── Info Note ────────────────────────────────────────────── */
.legal-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(var(--bs-primary-rgb), .05);
    border: 1px solid rgba(var(--bs-primary-rgb), .18);
    border-radius: 12px;
    padding: 18px 22px;
}

.legal-note__icon {
    flex-shrink: 0;
    color: var(--bs-brand-2);
    margin-top: 2px;
}

.legal-note__text {
    font-size: .9rem;
    color: var(--bs-neutral-600, #4b5563);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 575.98px) {
    .legal-card__inner { flex-direction: column; gap: 14px; }
    .legal-card__icon-wrap { flex-direction: row; align-items: center; }
    .legal-card__actions { width: 100%; }
    .legal-card__btn { width: 100%; justify-content: center; }
    .legal-header__trust-bar { flex-direction: column; gap: 12px; }
    .legal-trust-divider { width: 40px; height: 1px; }
}


/* == faq == */
/* ── FAQ Header ───────────────────────────────────────────── */
.faq-header__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bs-brand-2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
}

.faq-header__title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
}

.faq-header__sub {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-count-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-700, #374151);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 50px;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
}

/* ── Search ───────────────────────────────────────────────── */
.faq-search { max-width: 620px; margin: 0 auto; }

.faq-search__inner {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-search__icon {
    position: absolute;
    left: 18px;
    color: var(--bs-neutral-400, #9ca3af);
    pointer-events: none;
}

.faq-search__input {
    width: 100%;
    padding: 14px 48px 14px 50px;
    border: 2px solid var(--bs-neutral-200, #e5e7eb);
    border-radius: 14px;
    font-size: .95rem;
    background: var(--bs-neutral-0, #fff);
    color: var(--bs-neutral-900, #111827);
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-search__input:focus {
    border-color: var(--bs-brand-2);
    box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb),.1);
}

.faq-search__input::placeholder { color: var(--bs-neutral-400, #9ca3af); }

.faq-search__clear {
    position: absolute;
    right: 14px;
    background: var(--bs-neutral-100, #f3f4f6);
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bs-neutral-500, #6b7280);
    transition: background .2s, color .2s;
}

.faq-search__clear:hover {
    background: var(--bs-brand-2);
    color: #fff;
}

/* ── FAQ Accordion Items ──────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--bs-neutral-0, #fff);
    border: 1px solid var(--bs-neutral-200, #e9ecef);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
    animation: faqFadeUp .45s ease both;
}

.faq-item:nth-child(1)  { animation-delay: .04s; }
.faq-item:nth-child(2)  { animation-delay: .08s; }
.faq-item:nth-child(3)  { animation-delay: .12s; }
.faq-item:nth-child(4)  { animation-delay: .16s; }
.faq-item:nth-child(5)  { animation-delay: .20s; }
.faq-item:nth-child(6)  { animation-delay: .24s; }
.faq-item:nth-child(7)  { animation-delay: .28s; }
.faq-item:nth-child(8)  { animation-delay: .32s; }

@keyframes faqFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.faq-item.is-open {
    border-color: var(--bs-brand-2);
    box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb),.1);
}

.faq-item__head {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    user-select: none;
    transition: background .2s ease;
}

.faq-item__head:hover { background: var(--bs-neutral-50, #f9fafb); }

.faq-item.is-open .faq-item__head { background: rgba(var(--bs-primary-rgb),.04); }

.faq-item__num {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--bs-brand-2);
    background: rgba(var(--bs-primary-rgb),.1);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    letter-spacing: .3px;
    transition: background .2s, color .2s;
}

.faq-item.is-open .faq-item__num {
    background: var(--bs-brand-2);
    color: #fff;
}

.faq-item__question {
    flex: 1;
    font-size: .975rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
    color: var(--bs-neutral-900, #111827);
    transition: color .2s;
}

.faq-item.is-open .faq-item__question { color: var(--bs-brand-2); }

.faq-item__toggle {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--bs-neutral-100, #f3f4f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s;
}

.faq-item.is-open .faq-item__toggle { background: var(--bs-brand-2); }

.faq-item__toggle-icon {
    color: var(--bs-neutral-500, #6b7280);
    transition: transform .3s ease, color .25s;
}

.faq-item.is-open .faq-item__toggle-icon {
    transform: rotate(180deg);
    color: #fff;
}

.faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.4,0,.2,1);
}

.faq-item__body.is-open { max-height: 1000px; }

.faq-item__answer {
    padding: 18px 22px 22px 70px;
    font-size: .9rem;
    line-height: 1.75;
    color: var(--bs-neutral-600, #4b5563);
    border-top: 1px solid var(--bs-neutral-100, #f3f4f6);
}

.faq-item__answer p { margin-bottom: .6em; }
.faq-item__answer p:last-child { margin-bottom: 0; }

/* ── No Result ────────────────────────────────────────────── */
.faq-no-result {
    text-align: center;
    padding: 60px 20px;
    color: var(--bs-neutral-400, #9ca3af);
    display: none;
    flex-direction: column;
    align-items: center;
}

.faq-no-result svg { margin-bottom: 16px; opacity: .6; }
.faq-no-result p { font-size: .95rem; margin: 0; }

/* ── Empty State ──────────────────────────────────────────── */
.faq-empty { max-width: 540px; margin: 0 auto; padding: 40px 0; }

.faq-empty__icon {
    width: 80px;
    height: 80px;
    background: var(--bs-neutral-100, #f3f4f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-neutral-400, #9ca3af);
    margin: 0 auto;
}

.faq-empty__title { font-size: 1.5rem; font-weight: 700; }
.faq-empty__sub   { font-size: .95rem; line-height: 1.6; }

.faq-empty__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.faq-empty__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-700, #374151) !important;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
    border-radius: 10px;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .25s ease;
}

.faq-empty__link:hover {
    background: var(--bs-brand-2);
    color: #fff !important;
    border-color: var(--bs-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(var(--bs-primary-rgb),.25);
}

@media (max-width: 575.98px) {
    .faq-item__head { padding: 16px; gap: 12px; }
    .faq-item__answer { padding: 14px 16px 16px; }
    .faq-item__num { width: 28px; height: 28px; font-size: 11px; }
}


/* == product_categories == */
.rtm-cat-grid { padding: 60px 0 80px; }
    .rtm-cat-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 4px 24px rgba(0,0,0,.08);
        transition: transform .3s ease, box-shadow .3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .rtm-cat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0,0,0,.14);
    }
    .rtm-cat-card__img-wrap {
        position: relative;
        width: 100%;
        padding-top: 60%;
        overflow: hidden;
        background: #f2f4f6;
    }
    .rtm-cat-card__img-wrap img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }
    .rtm-cat-card:hover .rtm-cat-card__img-wrap img { transform: scale(1.06); }
    .rtm-cat-card__badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--bs-brand-2, #e42528);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 20px;
        letter-spacing: .3px;
        box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb),.35);
        z-index: 2;
    }
    .rtm-cat-card__body {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 20px 22px 22px;
    }
    .rtm-cat-card__subtitle {
        font-size: 12px;
        font-weight: 600;
        color: var(--bs-brand-2, #e42528);
        text-transform: uppercase;
        letter-spacing: .6px;
        margin-bottom: 6px;
    }
    .rtm-cat-card__title {
        font-size: 18px;
        font-weight: 700;
        color: #1e1e1e;
        margin-bottom: 8px;
        line-height: 1.3;
        text-decoration: none;
        display: block;
        transition: color .2s;
    }
    .rtm-cat-card__title:hover { color: var(--bs-brand-2, #e42528); }
    /* Urun kart basligi: uzun isim alta gecsin, kesmesin */
    .rtm-card-title-wrap {
        display: block;
        white-space: normal !important;
        overflow-wrap: anywhere;
        word-break: break-word;
        line-height: 1.3;
        min-height: 2.6em;
    }
    .rtm-cat-card__desc {
        font-size: 14px;
        color: #6c757d;
        line-height: 1.55;
        margin-bottom: 14px;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .rtm-cat-card__subcats {
        margin-bottom: 16px;
    }
    .rtm-cat-card__subcats-label {
        font-size: 11px;
        font-weight: 700;
        color: #999;
        text-transform: uppercase;
        letter-spacing: .5px;
        margin-bottom: 6px;
    }
    .rtm-cat-card__subcats-list {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .rtm-cat-card__subcat-chip {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 500;
        color: #404040;
        text-decoration: none;
        padding: 5px 8px;
        border-radius: 8px;
        background: transparent;
        transition: background .18s, color .18s;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .rtm-cat-card__subcat-chip::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #d0d2d4;
        flex-shrink: 0;
        transition: background .18s;
    }
    .rtm-cat-card__subcat-chip:hover {
        background: rgba(var(--bs-primary-rgb),.08);
        color: var(--bs-brand-2, #e42528);
    }
    .rtm-cat-card__subcat-chip:hover::before {
        background: var(--bs-brand-2, #e42528);
    }
    .rtm-cat-card__subcat-chip--more {
        color: #aaa;
        font-size: 12px;
        padding-left: 22px;
        cursor: default;
    }
    .rtm-cat-card__subcat-chip--more:hover {
        background: transparent;
        color: #aaa;
    }
    .rtm-cat-card__subcat-chip--more::before { display: none; }
    .rtm-cat-card__footer {
        margin-top: auto;
        padding-top: 14px;
        border-top: 1px solid #f0f0f0;
    }
    .rtm-cat-card__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 10px 20px;
        background: var(--bs-brand-2, #e42528);
        color: #ffffff !important;
        font-size: 14px;
        font-weight: 700;
        border-radius: 10px;
        text-decoration: none;
        transition: opacity .2s, transform .15s;
    }
    .rtm-cat-card__btn:hover {
        opacity: .88;
        color: #ffffff !important;
        transform: translateY(-1px);
    }
    .rtm-cat-card__btn svg { flex-shrink: 0; fill: none; }

    /* ── Category Description Section ──────────────────────── */
    .cat-desc-section {
        background: var(--bs-neutral-0, #fff);
        border-top: 1px solid var(--bs-neutral-100, #f0f0f0);
    }
    .cat-desc-section__inner {
        padding: 80px 0;
        background: linear-gradient(180deg, var(--bs-neutral-50, #f9fafb) 0%, var(--bs-neutral-0, #fff) 100%);
    }
    .cat-desc-section__header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 56px;
        flex-wrap: wrap;
    }
    .cat-desc-section__eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--bs-brand-2);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .6px;
        padding: 5px 12px;
        border-radius: 50px;
        margin-bottom: 12px;
    }
    .cat-desc-section__title {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
        font-weight: 700;
        color: var(--bs-neutral-900, #111827);
        margin: 0;
        line-height: 1.25;
    }
    .cat-desc-section__sub {
        font-size: .95rem;
        color: var(--bs-neutral-500, #6b7280);
        line-height: 1.6;
        max-width: 440px;
        margin: 0;
        text-align: right;
    }

    /* Grid of description items */
    .cat-desc-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
        border: 1px solid var(--bs-neutral-100, #f0f0f0);
        border-radius: 20px;
        overflow: hidden;
    }
    @media (max-width: 767.98px) {
        .cat-desc-grid { grid-template-columns: 1fr; }
        .cat-desc-section__header { flex-direction: column; align-items: flex-start; }
        .cat-desc-section__sub { text-align: left; }
    }

    .cat-desc-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 32px 32px;
        background: var(--bs-neutral-0, #fff);
        position: relative;
        transition: background .25s ease;
    }
    .cat-desc-item:hover { background: var(--bs-neutral-50, #fafafa); }

    .cat-desc-item__num {
        flex-shrink: 0;
        font-size: 2rem;
        font-weight: 800;
        color: rgba(var(--bs-primary-rgb),.12);
        line-height: 1;
        letter-spacing: -1px;
        margin-top: 4px;
        min-width: 44px;
    }

    .cat-desc-item:hover .cat-desc-item__num {
        color: rgba(var(--bs-primary-rgb),.22);
    }

    .cat-desc-item__body { flex: 1; min-width: 0; }

    .cat-desc-item__title {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 4px;
    }
    .cat-desc-item__title a {
        color: var(--bs-neutral-900, #111827);
        text-decoration: none;
        transition: color .2s;
    }
    .cat-desc-item__title a:hover { color: var(--bs-brand-2); }

    .cat-desc-item__sub {
        font-size: .8rem;
        font-weight: 600;
        color: var(--bs-brand-2);
        text-transform: uppercase;
        letter-spacing: .4px;
        margin-bottom: 8px;
    }

    .cat-desc-item__desc {
        font-size: .875rem;
        color: var(--bs-neutral-500, #6b7280);
        line-height: 1.6;
        margin-bottom: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cat-desc-item__link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: .8rem;
        font-weight: 700;
        color: var(--bs-brand-2);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: .4px;
        transition: gap .2s;
    }
    .cat-desc-item__link:hover {
        color: var(--bs-brand-2);
        gap: 10px;
    }

    .cat-desc-item__img {
        flex-shrink: 0;
        width: 80px;
        height: 80px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--bs-neutral-100, #f0f0f0);
    }
    .cat-desc-item__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .3s ease;
    }
    .cat-desc-item:hover .cat-desc-item__img img { transform: scale(1.08); }

    @media (max-width: 575.98px) {
        .cat-desc-item { padding: 22px 20px; gap: 14px; }
        .cat-desc-item__img { width: 60px; height: 60px; }
    }



/* ════════════════════════════════════════════════════════════
   404 PAGE
════════════════════════════════════════════════════════════ */
.rtm-404-section {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0 28px;
    overflow: hidden;
    background: var(--bs-neutral-50, #f9fafb);
}
@media (min-width: 768px) {
    .rtm-404-section {
        padding: 36px 0 40px;
    }
}

.rtm-404-section__bg-deco {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--bs-primary-rgb),.07) 0%, transparent 70%);
    pointer-events: none;
}

.rtm-404-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    padding: 0 16px;
}

.rtm-404-num {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    line-height: .85;
    letter-spacing: -4px;
    color: var(--bs-brand-2);
    opacity: .08;
    pointer-events: none;
    user-select: none;
    margin-bottom: -18px;
}

.rtm-404-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bs-neutral-200, #e9ecef);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-brand-2);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.rtm-404-icon svg {
    width: 44px;
    height: 44px;
}

.rtm-404-title {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--bs-neutral-1000, #111827);
    margin-bottom: 8px;
}

.rtm-404-sub {
    font-size: .95rem;
    color: var(--bs-neutral-500, #6b7280);
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 18px;
}

.rtm-404-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 18px;
}

.rtm-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all .25s ease;
    border: none;
    cursor: pointer;
    line-height: 1.4;
}

.rtm-404-btn--primary {
    background: var(--bs-brand-2);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(var(--bs-primary-rgb),.3);
}

.rtm-404-btn--primary:hover {
    background: var(--bs-brand-2-darken, #b01c1e);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(var(--bs-primary-rgb),.35);
}

.rtm-404-btn--outline {
    background: transparent;
    color: var(--bs-neutral-700, #374151) !important;
    border: 1.5px solid var(--bs-neutral-300, #d1d5db);
}

.rtm-404-btn--outline:hover {
    border-color: var(--bs-brand-2);
    color: var(--bs-brand-2) !important;
    background: rgba(var(--bs-primary-rgb),.05);
}

.rtm-404-btn--ghost {
    background: transparent;
    color: var(--bs-neutral-500, #6b7280) !important;
    border: 1.5px solid transparent;
    padding-left: 8px;
    padding-right: 8px;
}

.rtm-404-btn--ghost:hover {
    color: var(--bs-neutral-900) !important;
    background: var(--bs-neutral-100, #f3f4f6);
}

.rtm-404-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rtm-404-links__label {
    font-size: .825rem;
    color: var(--bs-neutral-400, #9ca3af);
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
}

.rtm-404-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--bs-brand-2) !important;
    text-decoration: none !important;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(var(--bs-primary-rgb),.07);
    transition: background .2s, color .2s;
}

.rtm-404-link:hover {
    background: var(--bs-brand-2);
    color: #fff !important;
}

/* ════════════════════════════════════════════════════════════
   COMING SOON — modern yenileme
════════════════════════════════════════════════════════════ */
.rtm-coming-soon {
    padding: 0 0 72px;
}

.rtm-coming-soon__hero {
    position: relative;
    background: linear-gradient(135deg, var(--bs-brand-2) 0%, var(--bs-brand-2-darken, #b01c1e) 100%);
    padding: 80px 0 88px;
    overflow: hidden;
    margin-bottom: 56px;
}

.rtm-coming-soon__hero-deco {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.rtm-coming-soon__hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--bs-background-body, #fff);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.rtm-coming-soon__hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 0 16px;
}

.rtm-coming-soon__icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 20px;
}

.rtm-coming-soon__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.25);
    margin-bottom: 20px;
}

.rtm-coming-soon__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    animation: csPulse 1.6s ease-in-out infinite;
}

@keyframes csPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.75); }
}

.rtm-coming-soon__title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.25;
}

.rtm-coming-soon__sub {
    font-size: 1rem;
    color: rgba(255,255,255,.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.rtm-coming-soon__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.rtm-coming-soon__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    background: #fff;
    color: var(--bs-brand-2) !important;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 12px;
    text-decoration: none !important;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

.rtm-coming-soon__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
    color: var(--bs-brand-2-darken, #b01c1e) !important;
}

.rtm-coming-soon__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: #fff !important;
    font-weight: 600;
    font-size: .9rem;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,.5);
    text-decoration: none !important;
    transition: background .2s, border-color .2s;
}

.rtm-coming-soon__btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.8);
    color: #fff !important;
}

/* Contact cards grid */
.rtm-coming-soon__contact {
    margin-bottom: 40px;
}

.rtm-coming-soon__contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991.98px) { .rtm-coming-soon__contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .rtm-coming-soon__contact-grid { grid-template-columns: 1fr; } }

.rtm-cs-card {
    background: var(--bs-neutral-0, #fff);
    border: 1px solid var(--bs-neutral-200, #e9ecef);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow .25s, border-color .25s, transform .25s;
}

.rtm-cs-card:hover {
    border-color: var(--bs-brand-2);
    box-shadow: 0 8px 28px rgba(var(--bs-primary-rgb),.1);
    transform: translateY(-3px);
}

.rtm-cs-card__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--bs-primary-rgb),.08);
    color: var(--bs-brand-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rtm-cs-card__body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.rtm-cs-card__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--bs-neutral-400, #9ca3af);
}

.rtm-cs-card__value {
    font-size: .875rem;
    font-weight: 500;
    color: var(--bs-neutral-800, #1f2937);
    text-decoration: none !important;
    line-height: 1.45;
    overflow-wrap: break-word;
    word-break: break-all;
}

a.rtm-cs-card__value:hover {
    color: var(--bs-brand-2) !important;
}

/* Quick links */
.rtm-coming-soon__quick {
    text-align: center;
}

.rtm-coming-soon__quick-label {
    font-size: .825rem;
    font-weight: 600;
    color: var(--bs-neutral-400, #9ca3af);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.rtm-coming-soon__quick-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.rtm-coming-soon__quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 12px;
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-700, #374151) !important;
    font-size: .875rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
    transition: all .2s ease;
}

.rtm-coming-soon__quick-link:hover {
    background: var(--bs-brand-2);
    color: #fff !important;
    border-color: var(--bs-brand-2);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════
   EMPTY STATE — boş içerik durumu
════════════════════════════════════════════════════════════ */
.rtm-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 64px 24px;
}

.rtm-empty-state__icon-wrap {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: rgba(var(--bs-primary-rgb),.07);
    color: var(--bs-brand-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.rtm-empty-state__fa-icon {
    font-size: 2.5rem;
    color: var(--bs-brand-2);
}

.rtm-empty-state__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bs-neutral-800, #1f2937);
    margin-bottom: 10px;
}

.rtm-empty-state__message {
    font-size: .9375rem;
    color: var(--bs-neutral-500, #6b7280);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 28px;
}

.rtm-empty-state__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.rtm-empty-state__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 18px;
    border-radius: 10px;
    background: var(--bs-neutral-100, #f3f4f6);
    color: var(--bs-neutral-700, #374151) !important;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid var(--bs-neutral-200, #e5e7eb);
    transition: all .2s ease;
}

.rtm-empty-state__link:hover {
    background: var(--bs-brand-2);
    color: #fff !important;
    border-color: var(--bs-brand-2);
    transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════
   DEALERS — no-dealers-in-city partial
════════════════════════════════════════════════════════════ */
.no-dealers-message {
    max-width: 600px;
    margin: 0 auto;
}
.no-dealers-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bs-brand-2) 0%, var(--bs-brand-2-darken, #b01c1e) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}
.no-dealers-icon i {
    font-size: 2rem;
    color: #fff;
}
.no-dealers-title {
    color: var(--bs-brand-2);
    font-weight: 700;
    margin-bottom: 1rem;
}
.no-dealers-description {
    color: var(--bs-neutral-500, #6c757d);
    font-size: 1.1rem;
    line-height: 1.6;
}
.suggestion-list { text-align: left; }
.suggestion-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--bs-neutral-600, #495057);
}
.no-dealers-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .no-dealers-actions { flex-direction: column; align-items: center; }
    .no-dealers-actions .btn { width: 100%; max-width: 300px; }
}

/* ════════════════════════════════════════════════════════════
   SECTION STYLES — view'lardan taşındı (batch 2)
════════════════════════════════════════════════════════════ */
/* == product detail info modal (kompakt + premium) == */
.rtm-info-modal .modal-content {
    border-radius: 18px;
    overflow: hidden;
    border: 0 !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}
.rtm-info-modal .modal-header {
    padding: 20px 24px 10px;
    border-bottom: 0 !important;
    background: linear-gradient(180deg, color-mix(in srgb, var(--bs-brand-2) 6%, #fff) 0%, #ffffff 100%);
}
.rtm-info-modal .modal-body {
    padding: 8px 24px 22px;
}
.rtm-info-modal .modal-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}
.rtm-info-modal .btn-close {
    padding: 10px;
    border-radius: 10px;
    opacity: .55;
}
.rtm-info-modal .btn-close:hover {
    opacity: 1;
    background-color: #f1f5f9;
}
.rtm-info-modal__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bs-brand-2), color-mix(in srgb, var(--bs-brand-2) 65%, #000));
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--bs-brand-2) 35%, transparent);
}
.rtm-info-modal__icon svg {
    width: 22px;
    height: 22px;
}

/* form inputlari: iconlu + yumusak */
.rtm-info-form .rtm-info-field {
    position: relative;
}
.rtm-info-form .rtm-info-field > i.rtm-info-field__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 13px;
    pointer-events: none;
    transition: color .18s ease;
}
.rtm-info-form .rtm-info-field--textarea > i.rtm-info-field__icon {
    top: 14px;
    transform: none;
}
.rtm-info-form .form-control {
    border-radius: 10px;
    padding: 10px 12px 10px 34px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 14px;
    transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.rtm-info-form .form-control::placeholder {
    color: #94a3b8;
    font-size: 13px;
}
.rtm-info-form .form-control:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}
.rtm-info-form .form-control:focus {
    border-color: var(--bs-brand-2);
    background: #ffffff;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bs-brand-2) 15%, transparent);
}
.rtm-info-form .rtm-info-field:focus-within > i.rtm-info-field__icon {
    color: var(--bs-brand-2);
}
.rtm-info-form textarea.form-control {
    min-height: 84px;
    resize: vertical;
}
.rtm-info-form__kvkk {
    color: #64748b;
    line-height: 1.5;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 4px !important;
}
.rtm-info-form__kvkk .form-check-input {
    margin-top: 2px !important;
    cursor: pointer;
}
.rtm-info-form__kvkk .form-check-input:checked {
    background-color: var(--bs-brand-2);
    border-color: var(--bs-brand-2);
}
.rtm-info-form__submit {
    background: var(--bs-brand-2) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 8px;
    padding: 7px 14px !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 6px 16px color-mix(in srgb, var(--bs-brand-2) 28%, transparent);
    transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
}
.rtm-info-form__submit:hover {
    background: color-mix(in srgb, var(--bs-brand-2) 85%, #000) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px color-mix(in srgb, var(--bs-brand-2) 35%, transparent);
}
.rtm-info-form__submit:active {
    transform: translateY(0);
}
.rtm-info-modal .btn-light {
    border-radius: 8px;
    background: #f1f5f9;
    border: 0;
    color: #475569;
    padding: 7px 12px !important;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    transition: background .18s ease, color .18s ease;
}
.rtm-info-modal .btn-light:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* == dealers filters: clear button == */
.rtm-dealers-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    height: 38px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    border-radius: 10px;
    background: color-mix(in srgb, var(--bs-brand-2) 8%, #fff);
    color: var(--bs-brand-2);
    border: 1px solid color-mix(in srgb, var(--bs-brand-2) 25%, transparent);
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}
.rtm-dealers-clear-btn i {
    font-size: 11px;
    line-height: 1;
}
.rtm-dealers-clear-btn:hover,
.rtm-dealers-clear-btn:focus-visible {
    background: var(--bs-brand-2);
    color: #fff !important;
    border-color: var(--bs-brand-2);
    box-shadow: 0 6px 14px color-mix(in srgb, var(--bs-brand-2) 28%, transparent);
    transform: translateY(-1px);
    outline: none;
}
.rtm-dealers-clear-btn:active {
    transform: translateY(0);
}
@media (max-width: 575.98px) {
    .rtm-dealers-clear-btn {
        padding: 8px 10px;
    }
    .rtm-dealers-clear-btn__text {
        display: none;
    }
}

/* == faq.blade.php == */
.section-faqs-2 .faq-arrow-icon { transition: transform .25s ease; color: #6c757d; }
.section-faqs-2 .card-header a:not(.collapsed) .faq-arrow-icon { transform: rotate(180deg); color: var(--bs-brand-2, #e42528); }
.section-faqs-2 .card { border-color: #eef0f2 !important; transition: box-shadow .2s; }
.section-faqs-2 .card:has(.show) { box-shadow: 0 4px 16px rgba(0,0,0,.06); }

/* == index.blade.php == */
/* SVG Icon Styles */
        .svg-icon {
            width: 1em;
            height: 1em;
            display: inline-block;
            vertical-align: middle;
            fill: currentColor;
        }

        .svg-icon-sm { width: 0.875em; height: 0.875em; }
        .svg-icon-lg { width: 1.5em; height: 1.5em; }
        .svg-icon-xl { width: 2em; height: 2em; }
        .svg-icon-2xl { width: 3em; height: 3em; }

        /* Contact item icon alignment */
        .contact-item .svg-icon {
            vertical-align: text-top;
            margin-top: 2px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .contact-item .svg-icon {
            flex-shrink: 0;
            margin-top: 0;
        }

        .svg-turkiye-haritasi {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
  vertical-align: top;
}
/* aakutlu TR-adm1: kökte whitesmoke; gri alanı kaldır */
#svg-turkiye-haritasi {
  background: transparent !important;
}
#svg-turkiye-haritasi #features > g {
  cursor: pointer;
}
.tr-adm2-district-map-host {
  position: relative;
  z-index: 2;
}
.tr-adm2-district-map-host svg {
  width: 100%;
  height: auto;
  max-height: 380px;
  display: block;
}
.il-isimleri {
  position: fixed;
  z-index: 10050;
  pointer-events: none;
}
.il-isimleri div {
  font-family: 'Open Sans';
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 8px 16px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

#svg-turkiye-haritasi path {
  cursor: pointer;
  pointer-events: auto;
  /* fill icin transition YOK — interpolasyon esnasinda silver->brand arasi ara tonlarin "kirmizi flash" gibi algilanmasini onler. */
  transition: opacity 0.2s ease;
}
/* SVG path uzerinde transform tiklama/hit-test bozuyor; kaldirildi */
#svg-turkiye-haritasi path:hover {
  fill: var(--bs-brand-2) !important;
  opacity: 0.95;
}
/* Secili il: CSS uzerinden brand rengi uygulansin; JS inline style.fill kullanmaz. */
#svg-turkiye-haritasi #features > g.is-selected-city path,
#svg-turkiye-haritasi #features > g.is-selected-city:hover path {
  fill: var(--bs-brand-2) !important;
  opacity: 1 !important;
  transition: none !important;
}
.dealers-map-stage.is-province-focus .svg-turkiye-haritasi svg {
  min-height: 260px;
  transition: min-height 0.25s ease;
}
#bolge-1 g path{
  fill:#87cdde
}
#bolge-2 g path{
  fill:#ac93a7
}
#bolge-3 g path{
  fill:#ffb380
}
#bolge-4 g path{
  fill:#cccccc
}
#bolge-5 g path{
  fill:#decd87
}
#bolge-6 g path{
  fill:#de8787
}
#bolge-7 g path{
  fill:#aade87
}

/* Liste alanı — çerçeve/kutu yok, düz akış */
.dealers-results-area {
    margin-top: 2rem;
}
.dealers-results-inner {
    min-height: 120px;
}

.territory-contact-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.territory-contact-card__scope {
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.territory-contact-card__body {
    background: #fff;
}
@media (min-width: 768px) {
    .territory-role-divider {
        border-left: 1px solid #eceeef;
    }
}
.territory-role-block__label {
    letter-spacing: 0.04em;
}

.dealers-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.dealers-table thead {
    background: linear-gradient(135deg, var(--bs-brand-2) 0%, var(--bs-brand-2-darken, color-mix(in srgb, var(--bs-brand-2) 80%, #000)) 100%);
    color: white;
}

.dealers-table thead th {
    padding: 1.5rem 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border: none;
    text-align: left;
}

.dealers-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.dealers-table tbody tr:hover {
    background: #f8f9fa;
}

.dealers-table tbody tr:last-child {
    border-bottom: none;
}

.dealers-table td {
    padding: 1.5rem 1rem;
    vertical-align: top;
    border: none;
}

@media (min-width: 768px) {
    .territory-split-left {
        border-right: 1px solid #e9ecef;
    }
}

.dealer-mini-card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.dealer-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* İl / ilçe (saha personeli mini kartlar): daha belirgin konum satırı */
.dealer-mini-card__location {
    font-size: 0.9375rem;
    line-height: 1.4;
}
.dealer-mini-card__province {
    font-weight: 700;
    color: var(--bs-neutral-1000, #1f2937);
    letter-spacing: 0.02em;
}
.dealer-mini-card__sep {
    color: var(--bs-neutral-400, #9ca3af);
    margin: 0 0.2rem;
    font-weight: 500;
}
.dealer-mini-card__district {
    font-weight: 700;
    color: var(--bs-brand-2);
}

/* Type Cell */
.dealer-type-cell {
    width: 200px;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.type-badge:hover {
    opacity: 0.9;
}

.type-badge.type-bayi {
    background: linear-gradient(135deg, var(--bs-brand-2) 0%, var(--bs-brand-2-darken, color-mix(in srgb, var(--bs-brand-2) 80%, #000)) 100%);
    color: white;
}

.type-badge.type-servis {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.type-badge.type-both {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    color: #333;
}

.type-badge i {
    font-size: 1rem;
}

/* Info Cell */
.dealer-info-cell {
    width: 300px;
}

.dealer-main-info {
    padding: 0.5rem 0;
}

.dealer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.dealer-firm {
    font-size: 1rem;
    color: #6c757d;
    margin: 0 0 0.75rem 0;
    font-weight: 500;
}

.dealer-person {
    font-size: 0.9rem;
    color: #495057;
    margin: 0;
    display: flex;
    align-items: center;
}

/* Location Cell */
.dealer-location-cell {
    width: 250px;
}

.dealer-location {
    padding: 0.5rem 0;
}

.location-main {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    display: flex;
    align-items: center;
}

.location-address {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

/* Contact Cell */
.dealer-contact-cell {
    width: 200px;
}

.dealer-contacts {
    padding: 0.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 5px;
}

.contact-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.contact-item .svg-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--bs-brand-2);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1200px) {
    .dealers-table thead th,
    .dealers-table td {
        padding: 1rem 0.75rem;
    }

    .dealer-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .dealers-results-area {
        margin-top: 1rem;
    }

    .dealers-table thead th,
    .dealers-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .dealer-title {
        font-size: 1rem;
    }

    .type-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }
}

/* Loading Animation */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .dealer-header-elegant {
        padding: 1rem;
    }

    .dealer-title {
        font-size: 1.1rem;
    }

    .info-item {
        padding: 0.5rem;
        gap: 0.75rem;
    }

    .info-icon {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }

    .contact-item {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }

    .contact-item .svg-icon {
        width: 18px;
        height: 18px;
    }
}

/* == mission_cta.blade.php ==
   4 hucreli grid. Her hucrenin kendi icinde:
   - Tum hucreyi kaplayan gri dekoratif katman (shape), arkada kalir.
   - Gorsel (img), hafif sol-ust tarafta yerlesir; sag-alt koseden shape
     1 karelik seritte disari tasmis gibi gorunur. */
    .rtm-mission-cta__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 1.25rem;
        width: 100%;
        aspect-ratio: 1 / 1;
        max-width: min(100%, 560px);
        margin-inline: auto;
    }
    .rtm-mission-cta__cell {
        position: relative;
        min-height: 0;
        overflow: hidden;
        border-radius: 12px;
        background: transparent;
    }
    /* Gri dekoratif zemin: hucrenin tamamini kapla, arkada kal. */
    .rtm-mission-cta__cell-shape {
        position: absolute;
        inset: 0;
        background: var(--bs-neutral-200, #e9ecef);
        border-radius: 12px;
        z-index: 0;
        pointer-events: none;
    }
    /* Gorsel: hucre icinde ortali; shape her yonden esit seritte gorunur. */
    .rtm-mission-cta__cell img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 14px);
        height: calc(100% - 14px);
        object-fit: cover;
        display: block;
        z-index: 1;
        border-radius: 10px;
    }
    .rtm-mission-cta__cell--empty {
        background: transparent;
        min-height: 0;
    }
    @media (max-width: 575.98px) {
        .rtm-mission-cta__cell img {
            width: calc(100% - 10px);
            height: calc(100% - 10px);
            border-radius: 8px;
        }
    }

/* == countries_ticker.blade.php == */
/* Bayrak: marka ikonundan farklı; renk ters çevirme yok */
    .section-countries-ticker .item-brand-2 .country-flag-img {
        max-height: 28px;
        width: auto;
        object-fit: contain;
        border-radius: 4px;
    }
    .section-countries-ticker .item-brand-2 a.d-flex,
    .section-countries-ticker .item-brand-2.d-flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

/* == other_brands.blade.php == */
.other-brand-card.transition-hover:hover {
        box-shadow: 0 8px 24px rgba(16, 16, 16, 0.08);
        border-color: var(--bs-border-color, #dde1de) !important;
    }


/* == category-detail-content.blade.php == */
/* ===== Sidebar Kategori Menüsü ===== */
.rtm-sidebar-cat {
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: box-shadow .2s;
}
.rtm-sidebar-cat:hover { box-shadow: 0 4px 20px rgba(0,0,0,.09); }
.rtm-sidebar-cat__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: border-color .2s, background .2s;
    text-decoration: none;
    background: transparent;
}
.rtm-sidebar-cat.is-active .rtm-sidebar-cat__header {
    border-bottom-color: #eef0f2;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb),.04) 0%, rgba(var(--bs-primary-rgb),.01) 100%);
}
.rtm-sidebar-cat__title {
    font-size: 14px;
    font-weight: 700;
    color: #1e1e1e;
    margin: 0;
    transition: color .2s;
}
.rtm-sidebar-cat.is-active .rtm-sidebar-cat__title,
.rtm-sidebar-cat__header:hover .rtm-sidebar-cat__title {
    color: var(--bs-brand-2, #e42528);
}
.rtm-sidebar-cat__arrow {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f2f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .25s;
}
.rtm-sidebar-cat.is-active .rtm-sidebar-cat__arrow {
    background: var(--bs-brand-2, #e42528);
    transform: rotate(90deg);
}
.rtm-sidebar-cat__arrow svg path {
    stroke: #404040;
    transition: stroke .2s;
}
.rtm-sidebar-cat.is-active .rtm-sidebar-cat__arrow svg path { stroke: #fff; }
.rtm-sidebar-cat__body { padding: 8px 0; }
.rtm-sidebar-cat__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #404040;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
}
.rtm-sidebar-cat__item:hover {
    background: #fafafa;
    color: var(--bs-brand-2, #e42528);
    border-left-color: var(--bs-brand-2, #e42528);
}
.rtm-sidebar-cat__item.is-active {
    background: rgba(var(--bs-primary-rgb),.06);
    color: var(--bs-brand-2, #e42528);
    border-left-color: var(--bs-brand-2, #e42528);
    font-weight: 700;
}
.rtm-sidebar-cat__item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d6d7d8;
    flex-shrink: 0;
    transition: background .15s;
}
.rtm-sidebar-cat__item:hover .rtm-sidebar-cat__item-dot,
.rtm-sidebar-cat__item.is-active .rtm-sidebar-cat__item-dot {
    background: var(--bs-brand-2, #e42528);
}
.rtm-sidebar-cat__item-all {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    padding-top: 6px;
    padding-bottom: 10px;
    border-top: 1px dashed #eee;
    margin-top: 4px;
}
.rtm-sidebar-cat__item-all:hover { color: var(--bs-brand-2, #e42528); background: transparent; border-left-color: transparent; }
.rtm-sidebar-cat__item-all.is-active { color: var(--bs-brand-2, #e42528); font-weight: 700; }

.rtm-sidebar-cat__item--nested {
    padding-left: 12px;
}
.rtm-sidebar-cat__item-text {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
    text-align: left;
}
.rtm-sidebar-cat__item-branch {
    width: 2px;
    align-self: stretch;
    min-height: 14px;
    margin-right: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(228, 37, 40, 0.35), rgba(200, 200, 200, 0.5));
}
.rtm-sidebar-cat__item--lvl2 { font-size: 12.75px; padding-left: 10px; }
.rtm-sidebar-cat__item--lvl3 { font-size: 12.25px; color: #4a4a4a; }
.rtm-sidebar-cat__item--lvl4,
.rtm-sidebar-cat__item--lvl5 { font-size: 12px; color: #5c5c5c; padding-left: 8px; }

/* Ağaç satırları: nokta yok, metin ok/spacer sonrası sola yasalı */
.rtm-sidebar-cat__row--tree {
    align-items: center;
    gap: 0;
}
.rtm-sidebar-cat__row {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.rtm-sidebar-cat__row--tree .rtm-sidebar-cat__item {
    align-items: center;
}
.rtm-sidebar-cat__row .rtm-sidebar-cat__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}
.rtm-sidebar-cat__row--tree .rtm-sidebar-cat__item--tree-line {
    padding-left: 4px;
    padding-right: 12px;
    gap: 0;
    border-left: 3px solid transparent;
}
.rtm-sidebar-cat__row--tree .rtm-sidebar-cat__item--lvl2 { font-size: 12.85px; padding-left: 4px; }
.rtm-sidebar-cat__row--tree .rtm-sidebar-cat__item--lvl3 { font-size: 12.35px; padding-left: 2px; }
.rtm-sidebar-cat__row--tree .rtm-sidebar-cat__item--lvl4,
.rtm-sidebar-cat__row--tree .rtm-sidebar-cat__item--lvl5 { font-size: 12.15px; padding-left: 0; color: #4f4f4f; }
.rtm-sidebar-cat__body > .rtm-sidebar-cat__row--tree .rtm-sidebar-cat__item-all {
    flex: 1 1 auto;
    min-width: 0;
}
.rtm-sidebar-cat__twist-spacer {
    flex: 0 0 28px;
    width: 28px;
    min-width: 28px;
    flex-shrink: 0;
}
.rtm-sidebar-cat__twist {
    flex: 0 0 28px;
    width: 28px;
    min-width: 28px;
    min-height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    color: #7a828a;
    border-radius: 6px;
    transition: color .15s, background .15s;
    -webkit-appearance: none;
    appearance: none;
    line-height: 0;
}
.rtm-sidebar-cat__twist:hover,
.rtm-sidebar-cat__branch--expandable.is-expanded > .rtm-sidebar-cat__row .rtm-sidebar-cat__twist {
    color: var(--bs-brand-2, #e42528);
}
.rtm-sidebar-cat__twist:focus-visible {
    outline: 2px solid rgba(228, 37, 40, 0.35);
    outline-offset: 1px;
}
.rtm-sidebar-cat__twist-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}
.rtm-sidebar-cat__twist-icon svg {
    display: block;
    flex-shrink: 0;
}
.rtm-sidebar-cat__branch--expandable.is-expanded > .rtm-sidebar-cat__row .rtm-sidebar-cat__twist-icon {
    transform: rotate(90deg);
}
.rtm-sidebar-cat__nest {
    padding-left: 0.65rem;
    margin: 4px 0 6px 0;
    border-left: 1px solid rgba(228, 37, 40, 0.2);
}
.rtm-sidebar-cat__nest .rtm-sidebar-cat__nest {
    margin-left: 0;
    padding-left: 0.75rem;
}
.rtm-sidebar-cat__body,
.rtm-sidebar-cat__nest {
    list-style: none;
}
.rtm-sidebar-cat__nest--collapsible.is-collapsed {
    display: none !important;
}

/* Ana sayfa modülü — iç içe ağaç */
.rtm-home-cat-tree {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 4px 2px;
}
.rtm-home-cat-tree__node {
    display: flex;
    flex-direction: column;
}
.rtm-home-cat-tree__node--d0 > .rtm-home-cat-tree__link.sub-category-item {
    font-weight: 600;
}
.rtm-home-cat-tree__children {
    margin: 6px 0 10px 10px;
    padding-left: 12px;
    border-left: 2px solid rgba(228, 37, 40, 0.12);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.rtm-home-cat-tree__link.sub-category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px !important;
    margin: 2px 0;
    border-radius: 8px !important;
    transition: background .15s;
}
.rtm-home-cat-tree__link.sub-category-item:hover {
    background: rgba(228, 37, 40, 0.05);
    padding: 10px 14px !important;
}
.rtm-home-cat-tree__label {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.rtm-home-cat-tree__node--d1 .rtm-home-cat-tree__label {
    font-size: 13.5px;
    font-weight: 500;
}
.rtm-home-cat-tree__node--d2 .rtm-home-cat-tree__label,
.rtm-home-cat-tree__node--d3 .rtm-home-cat-tree__label {
    font-size: 13px;
    opacity: 0.95;
}
.rtm-home-cat-tree__chev {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    border-left: 2px solid #d5d9de;
    border-bottom: 2px solid #d5d9de;
    margin-right: 2px;
    transform: rotate(45deg) translate(-1px, 1px);
    opacity: 0.7;
}

.sub-categories-list--nested {
    max-height: 360px;
    overflow-y: auto;
    scrollbar-width: thin;
}

/* Hub marka kartı — iç içe kategori linkleri */
.rtm-hub-cat-tree--root > .rtm-hub-cat-tree__item:first-child > .rtm-hub-cat-tree__link {
    padding-top: 2px;
}
.rtm-hub-cat-tree--child {
    margin-top: 6px !important;
    padding-left: 14px !important;
    border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.rtm-hub-cat-tree__item {
    margin-bottom: 6px;
}
.rtm-hub-cat-tree__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #454f5b !important;
    text-decoration: none !important;
    transition: color .15s;
    line-height: 1.3;
}
.rtm-hub-cat-tree__link:hover {
    color: var(--bs-brand-2, #e42528) !important;
}
.rtm-hub-cat-tree__bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(228, 37, 40, 0.45);
    flex-shrink: 0;
}


/* == contact-turkey-map.blade.php == */
.contact-map-section .svg-turkiye-haritasi-contact {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.contact-map-section .svg-turkiye-haritasi-contact svg {
    width: 100%;
    height: auto;
    display: block;
    background: transparent !important;
}
#contact-svg-turkiye-haritasi path {
    cursor: pointer;
    transition: filter 0.2s ease, opacity 0.2s ease;
}
/* Tüm illeri markaya boyama — yalnızca hafif parlaklık */
#contact-svg-turkiye-haritasi path:hover {
    filter: brightness(0.94);
}

/* == hub-turkey-map-dealers.blade.php == */
/* Harita üstte kalsın; path’ler tıklanabilir olsun */
.hub-dealers-map-section {
    position: relative;
    z-index: 2;
    isolation: isolate;
}
/* Harita wrapper'in kendi beyaz arka planini (urun detay vb. sayfalarda) kaldir;
   section tasarimi korunur, sadece haritanin kutusal beyaz plakasi transparanlasir. */
.hub-dealers-map-section .svg-turkiye-haritasi {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
}
.hub-dealers-map-section .svg-turkiye-haritasi svg,
.hub-dealers-map-section #svg-turkiye-haritasi,
.hub-dealers-map-section #trAdm1MapMount {
    background: transparent !important;
}
.hub-dealers-map-section .turkey-map-section {
    position: relative;
    z-index: 3;
}
.hub-dealers-map-section .svg-turkiye-haritasi {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 4;
}
.hub-dealers-map-section .svg-turkiye-haritasi svg {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 4;
    pointer-events: auto;
}
/* İl adı balonu: sayfa kaydığında doğru yerde dursun (absolute+pageX hatalı) */
.hub-dealers-map-section .il-isimleri {
    position: fixed;
    z-index: 10050;
    pointer-events: none;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
}
.hub-dealers-map-section .il-isimleri div {
    font-family: 'Open Sans', system-ui, sans-serif;
    display: inline-block;
    background: #222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
}
.hub-dealers-map-section #svg-turkiye-haritasi path {
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}
.hub-dealers-map-section #svg-turkiye-haritasi path:hover {
    filter: brightness(0.92);
}
/* JS yüklenmeden önce: tek nötr zemin (bölge pastelleri kaldırıldı; saha personeli olan iller script ile marka rengi alır) */
.hub-dealers-map-section #svg-turkiye-haritasi #features > g path {
    fill: #e4e9ef;
}

/* == hub-brands-pricing.blade.php == */
/* Arka plandaki süs ovaları haritaya veya sonraki bölümlere tıklamayı engellemesin */
.hub-brands-pricing-block.section-pricing-1 { overflow: hidden; }
.hub-brands-pricing-block .ellipse-rotate-success,
.hub-brands-pricing-block .ellipse-rotate-primary {
    pointer-events: none;
    z-index: 0;
}

/* Hub alt marka kartı: ürün kategori sayfası ile aynı yan menü ağacı (dar sütun) */
.hub-brand-card__categories .hub-brand-cat-stack .rtm-sidebar-cat__header {
    padding: 0.5rem 0.35rem;
    font-size: 0.8125rem;
}
.hub-brand-card__categories .hub-brand-cat-stack .rtm-sidebar-cat__title {
    font-size: 0.8125rem;
    line-height: 1.35;
}
.hub-brand-card__categories .hub-brand-cat-stack .rtm-sidebar-cat__body {
    padding: 4px 0 6px;
}

/* ════════════════════════════════════════════════════════════
   CATEGORY DETAIL — SEO İçerik (sadece content alanı tipografisi)
════════════════════════════════════════════════════════════ */
.rtm-cat-seo-content {
    font-size: .9375rem;
    line-height: 1.8;
    color: var(--bs-neutral-700, #374151);
}

.rtm-cat-seo-content h2,
.rtm-cat-seo-content h3,
.rtm-cat-seo-content h4 {
    font-weight: 700;
    color: var(--bs-neutral-900, #111827);
    margin-top: 1.5rem;
    margin-bottom: .75rem;
}

.rtm-cat-seo-content h2 { font-size: 1.35rem; }
.rtm-cat-seo-content h3 { font-size: 1.15rem; }
.rtm-cat-seo-content h4 { font-size: 1rem; }

.rtm-cat-seo-content p { margin-bottom: 1rem; }
.rtm-cat-seo-content p:last-child { margin-bottom: 0; }

.rtm-cat-seo-content ul,
.rtm-cat-seo-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.rtm-cat-seo-content li { margin-bottom: .4rem; }

.rtm-cat-seo-content a {
    color: var(--bs-brand-2);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.rtm-cat-seo-content strong { color: var(--bs-neutral-900, #111827); }

.rtm-cat-seo-desc {
    font-size: .9375rem;
    line-height: 1.8;
    color: var(--bs-neutral-600, #4b5563);
    margin: 0;
}

/* ============================================================
   Anasayfa modülleri — tema uyumu
   ============================================================ */

/* list-ticks-green tick ikonları marka rengini takip etsin.
   Orijinal SVG'de yeşil daire gömülü olduğu için asset yerine
   pseudo-element ile marka renkli daire + unicode tick çiziyoruz. */
.list-ticks-green li,
.list-ticks-green.list-ticks-green-2 li {
    background-image: none !important;
    position: relative;
    padding-left: 36px !important;
}
.list-ticks-green li::before,
.list-ticks-green.list-ticks-green-2 li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--bs-brand-2);
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(var(--bs-primary-rgb), .25);
}
/* list-ticks-green-2 için açık tonlu (pastel) varyant */
.list-ticks-green.list-ticks-green-2 li::before {
    background-color: color-mix(in srgb, var(--bs-brand-2) 18%, #fff);
    color: var(--bs-brand-2);
    box-shadow: none;
}

/* Banner modülü — "white" buton varyantı:
   Beyaz arka plan üzerine beyaz yazı görünmüyordu.
   Marka renginde metin ve ince çerçeveli outline görünüm. */
.section-box-banner-2 .btn.btn-primary.bg-white,
.btn.btn-primary.bg-white {
    color: var(--bs-brand-2) !important;
    border: 2px solid var(--bs-brand-2);
    transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.section-box-banner-2 .btn.btn-primary.bg-white:hover,
.btn.btn-primary.bg-white:hover {
    background: var(--bs-brand-2) !important;
    color: #ffffff !important;
    border-color: var(--bs-brand-2);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(var(--bs-primary-rgb, 228, 37, 40), .28);
}

/* Banner modülü — "brand" buton varyantı (background-brand-2):
   Marka kirmizisi dolgulu butona da hover efekti ekleyelim ki "ölü" durmasın.
   Hafif yukari kalkma + koyulastirma + derin golge ile his verir. */
.btn.btn-primary.background-brand-2,
.section-box-banner-2 .btn.btn-primary.background-brand-2 {
    transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn.btn-primary.background-brand-2:hover,
.section-box-banner-2 .btn.btn-primary.background-brand-2:hover,
.btn.btn-primary.background-brand-2:focus-visible {
    background-color: var(--bs-brand-2) !important;
    color: #ffffff !important;
    filter: brightness(0.92);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(var(--bs-primary-rgb, 228, 37, 40), .28);
}
.btn.btn-primary.background-brand-2:active,
.section-box-banner-2 .btn.btn-primary.background-brand-2:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(var(--bs-primary-rgb, 228, 37, 40), .22);
}

/* ── Saha personeli / bayiler haritasi "All Turkey" geri donus butonu ─────
   - Marka rengiyle uyumlu, pill-tarzi ozel gorunum
   - Mobilde (767.98px alti) ilce listesi/haritasiyla cakismamasi icin
     absolute konum yerine harita ustunde kendi satirinda gosterilir.  */
#dealersMapBackNational.btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .95rem;
    border-radius: 999px;
    background: #fff;
    color: var(--bs-brand-2);
    border: 1px solid var(--bs-brand-2);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .2px;
    box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb, 228, 37, 40), .15);
    transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
#dealersMapBackNational.btn:focus,
#dealersMapBackNational.btn:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(var(--bs-primary-rgb, 228, 37, 40), .28);
}
#dealersMapBackNational.btn > span[aria-hidden="true"] {
    display: inline-block;
    font-size: 1.05em;
    line-height: 1;
    transition: transform .2s ease;
}
@media (hover: hover) and (pointer: fine) {
    #dealersMapBackNational.btn:hover {
        background: var(--bs-brand-2);
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(var(--bs-primary-rgb, 228, 37, 40), .28);
    }
    #dealersMapBackNational.btn:hover > span[aria-hidden="true"] {
        transform: translateX(-3px);
    }
}

/* Mobilde: absolute konumu kaldirip harita ustunde kendi satirinda goster.
   Boylece sehir/ilce haritasinin ust kisimlarina binmez. */
@media (max-width: 767.98px) {
    .dealers-map-stage #dealersMapBackNational.btn,
    .turkey-map-section #dealersMapBackNational.btn {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        margin: 0 auto 10px;
        padding: .45rem 1rem;
        font-size: 12.5px;
        z-index: auto;
    }
    /* Butonun ust kismi haritaya cok yapisik olmasin diye stage'e ufak
       bir ust bosluk verelim (yalnizca il-focus modunda). */
    .dealers-map-stage.is-province-focus {
        padding-top: .25rem;
    }
}

/* ── Form checkbox / radio: Bootstrap varsayilan mavi yerine site marka rengi.
   Cerez banner'i, KVKK formlari, iletisim formu vb. her yerde tutarli gorunum. */
.form-check-input:checked {
    background-color: var(--bs-brand-2);
    border-color: var(--bs-brand-2);
}
.form-check-input:focus {
    border-color: var(--bs-brand-2);
    box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb, 228, 37, 40), .25);
}
.form-check-input:focus-visible {
    outline: 0;
}
.form-check-input:active {
    filter: brightness(95%);
}
/* Form-switch (toggle) disable/enable: indicator renklerini de marka ile uyumla */
.form-switch .form-check-input:checked {
    background-color: var(--bs-brand-2);
    border-color: var(--bs-brand-2);
}

/* ── "Nasil Calisir" (why_book) bolumu: panelden yuklenen gorsel ikonlar icin
   tutarli boyut / kutu. SVG default ikonlarla ayni gorsel agirligi verir. */
.box-why-book-22 .card-why .card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
}
.box-why-book-22 .card-why .card-image .rtm-why-book-icon {
    display: block;
    width: auto;
    height: 64px;
    max-width: 100%;
    object-fit: contain;
}
@media (max-width: 575.98px) {
    .box-why-book-22 .card-why .card-image {
        min-height: 60px;
    }
    .box-why-book-22 .card-why .card-image .rtm-why-book-icon {
        height: 54px;
    }
}

/* ── Mobil menü (hamburger) içindeki CTA butonları: masaüstünde gizlenen
   header CTA butonlarını mobil açılan menüde tam genişlik/dikey göster. */
.mobile-header-cta {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.mobile-header-cta .btn-signin {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}
