/* ─── Apple-style Design System ─────────────────────────────────────── */

:root {
    --bg: #fbfbfd;
    --surface: #fff;
    --text: #1d1d1f;
    --muted: #86868b;
    --accent: #2caae2;
    --border: rgba(0, 0, 0, .08);
    --radius: 8px;
    --shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .06);
    --bs-primary: var(--accent);
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
    --bs-font-sans-serif: "Montserrat", sans-serif;
    --bs-border-radius: var(--radius);
    --bs-card-border-color: var(--border);
    --bs-card-bg: var(--surface);
}

[data-theme="dark"] {
    --bg: #000;
    --surface: #1d1d1f;
    --text: #f5f5f7;
    --muted: #a1a1a6;
    --accent: #2997ff;
    --border: rgba(255, 255, 255, .1);
    --shadow: 0 1px 3px rgba(0, 0, 0, .5);

    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
}

/* ─── Base ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--bs-font-sans-serif);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background .3s cubic-bezier(.4, 0, .2, 1), color .3s cubic-bezier(.4, 0, .2, 1);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .25s cubic-bezier(.4, 0, .2, 1);
}

a:hover { color: var(--accent); opacity: .8; }

img { max-width: 100%; display: block; }
.benzer-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 2.4vw, 32px);
    margin: 0 0 6px;
    color: #1c1c1c;
}
/* ─── Glass effect ───────────────────────────────────────────────────── */
.glass {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
}

[data-theme="dark"] .glass {
    background: rgba(0, 0, 0, .6);
}

/* ─── Bootstrap overrides ────────────────────────────────────────────── */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

[data-theme="dark"] .card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .6), 0 16px 40px rgba(0, 0, 0, .7);
}

.card-body { padding: 1.75rem; }

.btn {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: -.01em;
    padding: .55rem 1.4rem;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1), background .2s, border-color .2s;
}

.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(.98); }

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    opacity: .88;
    box-shadow: 0 4px 16px rgba(0, 113, 227, .35);
}

[data-theme="dark"] .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(41, 151, 255, .4);
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
}

.btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.02);
}

.btn-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    border-radius: 999px;
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--muted);
    color: var(--text);
    transform: scale(1.02);
}

/* ─── Form controls ──────────────────────────────────────────────────── */

.form-control,
.form-select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    transition: border-color .25s, box-shadow .25s;
}

.form-control:focus,
.form-select:focus {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, .15);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    box-shadow: 0 0 0 3px rgba(41, 151, 255, .2);
}

.form-control::placeholder { color: var(--muted); }

/* ─── Navbar ─────────────────────────────────────────────────────────── */

.navbar {
    background: rgba(255, 255, 255, .8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

[data-theme="dark"] .navbar {
    background: rgba(0, 0, 0, .75) !important;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text) !important;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 400;
    opacity: .85;
    transition: opacity .2s;
    border-radius: 8px;
    padding: .4rem .75rem !important;
}

.nav-link:hover { opacity: 1; background: var(--border); }
.nav-link.active { opacity: 1; font-weight: 600; }

/* ─── Dropdown ───────────────────────────────────────────────────────── */

.dropdown-menu {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: .5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.dropdown-item {
    color: var(--text);
    border-radius: 8px;
    padding: .45rem .85rem;
    font-size: .9375rem;
    transition: background .15s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--bg);
    color: var(--text);
}

/* ─── Section / Container helpers ───────────────────────────────────── */

.section-sm { padding: 3rem 0; }
.section-lg { padding: 8rem 0; }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── Typography ─────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.375rem, 2.5vw, 2rem); }
h4 { font-size: 1.375rem; }

p { line-height: 1.75; }

.text-muted { color: var(--muted) !important; }

/* ─── Hero (default_video + hero overlay) ────────────────────────────── */

.default_video {
    position: relative;
    margin: 0;
    width: 100%;
    height: 100vh !important;
    padding: 0;
}

.default_video > .default_video_in {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.default_video > .default_video_in > .image_caption {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    overflow: hidden;
}

.default_video > .default_video_in > .image_caption::before {
    content: "";
    background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.4) 100%);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    z-index: 2;
}

.default_video > .default_video_in > .video_caption {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
    object-fit: cover;
}

.hero {
    position: absolute;
    z-index: 3;
    height: 100%;
    display: flex;
    width: 100%;
    padding: 0 5rem 11rem 5rem;
    align-items: flex-end;
}

.hero .welcome-txt {
    position: relative;
    width: 38%;
}

.hero .welcome-txt h1.title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-align: left;
    margin: 40px 0;
    color: #fff;
    padding-left: 5%;
}

    .hero .welcome-txt h2 {
        font-size: 42px;
        font-weight: 500;
        letter-spacing: 0px;
        text-align: left;
        margin: 40px 0;
        color: #fff;
        padding-left: 4%;
    }

.hero .welcome-txt .text {
    text-align: left;
    max-width: 100%;
    margin: initial;
    margin-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    padding-left: 5%;
    line-height: 30px;
}

.hero .welcome-txt .text bold,
.hero .welcome-txt .text strong { color: #2caae2; }

.hero .ct.ct--ButtonPrimary {
    --button-primary-color: #fff;
    --button-secondary-color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 15px 10px 20px;
    text-decoration: none;
    width: max-content;
    background-color: var(--button-primary-color);
    transition: 0.3s ease-out background;
    border: none;
    max-width: 100%;
}

.hero .ct.ct--ButtonPrimary .linkTitle {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -0.1px;
    font-size: 14px;
    color: var(--button-secondary-color);
    transition: 0.3s ease-out color;
}

.hero .ct.ct--ButtonPrimary .linkCircle {
    position: relative;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
}

.hero .ct.ct--ButtonPrimary .circlePin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--button-secondary-color);
    transition: 0.3s ease;
    transition-property: transform, background;
}

.hero .ct.ct--ButtonPrimary .circleBorder {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(0deg, rgba(255,255,255,0) 50%, var(--button-secondary-color) 100%);
    transform: rotate(85.5729deg);
}

.hero .ct.ct--ButtonPrimary .circleBorder .circleBackground {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 50%;
    background: var(--button-primary-color);
}

.hero .ct.ct--ButtonPrimary:hover { background-color: rgba(255,255,255,0); }
.hero .ct.ct--ButtonPrimary:hover .linkTitle { color: #2caae2; }
.hero .ct.ct--ButtonPrimary:hover .circleBorder { background: #2caae2; }
.hero .ct.ct--ButtonPrimary:hover .circlePin { background: #2caae2; transform: translate(27px, -50%); }
.hero .ct.ct--ButtonPrimary:hover .circleBorder .circleBackground { background: #2caae2; }

    .hero .content-wrapper {
        background-color: hsl(60deg 4% 11% / 50%);
        backdrop-filter: blur(1rem);
        width: 100%;
        max-width: 28rem;
        padding: 15px 25px;
        border-radius: 12px;
        position: absolute;
        right: 2.5%;
        bottom: 5%;
    }

.hero .content-wrapper .text {
    display: flex;
    align-items: self-end;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

    .hero .content-wrapper .text h1 {
        font-family: "Montserrat", sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #fff;
        margin-bottom: 10px;
    }

.hero .content-wrapper .text h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    line-height: 140%;
    font-size: 16px;
    color: #fff;
    margin: 0;
}

        .hero .content-wrapper img.one {
            width: 60px;
            height: 60px;
            border-radius: 4px;
            object-fit: cover;
        }

        .hero .content-wrapper img.two {
            width: 110px;
            height: 110px;
            border-radius: 4px;
            object-fit: cover;
        }

.ikili-btns {
    display: flex;
    align-items: center;
    padding-left: 5%;
    gap: 25px;
}

.ikili-btns .cts {
    color: #fff;
    text-decoration: underline;
    font-size: 16px;
}

.block__decoration {
    display: block;
    height: 15px;
    position: relative;
    width: 15px;
}

.block__decoration:after,
.block__decoration:before { background: #fff; content: ""; display: block; }
.block__decoration:before { height: 1px; width: 15px; }
.block__decoration:after  { height: 15px; width: 1px; }

.anchor-scroll {
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: -0.5rem;
    transform: translateX(-50%);
    color: hsla(0,0%,94%,.502);
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    display: none;
}

@media (min-width: 992px) { .anchor-scroll { display: block; } }

.anchor-scroll .anchor-scroll-anim { position: relative; }

.anchor-scroll .anchor-scroll-bar {
    background: hsla(0,0%,94%,.502);
    width: 0.0625rem;
    height: 3.4375rem;
    display: inline-block;
}

.anchor-scroll .anchor-scroll-circle {
    background: hsla(0,0%,94%,.502);
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 0.3125rem;
    margin-left: -0.25rem;
    animation: anchor-scroll-animation 2s infinite linear alternate;
}

@keyframes anchor-scroll-animation {
    0%   { transform: translateY(0); }
    100% { transform: translateY(2.0625rem); }
}

@media (max-width: 1199.98px) {
    .hero { padding: 0 4rem 15vh; }
    .hero .welcome-txt { width: 50%; }
    .hero .content-wrapper { max-width: 32rem; }
}

@media (max-width: 991.98px) {
    .hero { padding: 0 1.5rem 12vh; }
    .hero .welcome-txt { width: 100%; }
    .hero .content-wrapper { display: none; }
}

@media (max-width: 575.98px) {
    .hero .welcome-txt h2 { font-size: 28px; }
    .hero .welcome-txt .text { font-size: 15px; }
}

/* ─── Product card ───────────────────────────────────────────────────── */

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .12) !important;
    transform: translateY(-4px);
}

.product-card img {
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover img { transform: scale(1.04); }

/* ─── Devlet Teşvikleri kartları ─────────────────────────────────── */
.tesvik-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tesvik-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .12) !important;
}
.tesvik-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f6f8fb;
    overflow: hidden;
    position: relative;
}
.tesvik-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.tesvik-card:hover .tesvik-card__media img { transform: scale(1.05); }
.tesvik-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4cad1;
    font-size: 2.5rem;
    background: #f6f8fb;
}

.tesvik-detay__icerik { font-size: 15px; line-height: 1.8; color: #1f2937; }
.tesvik-detay__icerik img { max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; }
.tesvik-detay__icerik h2,
.tesvik-detay__icerik h3 { margin-top: 28px; margin-bottom: 12px; font-weight: 700; }
.tesvik-detay__icerik table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.tesvik-detay__icerik th,
.tesvik-detay__icerik td { padding: 10px 14px; border: 1px solid #e5e7eb; }
.tesvik-detay__icerik th { background: #f6f9fc; font-weight: 600; }

/* ─── Tour-item-style (Devlet Teşvikleri / Blog listeleme kartı) ─────── */
.tour-item-style {
    margin-bottom: 30px;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    display: inline-block;
}
.tour-item-style .inner {
    width: 100%;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
}
.tour-item-style .tour-image {
    overflow: hidden;
    position: relative !important;
    width: 50%;
    float: left;
}
.tour-item-style .tour-image a {
    box-shadow: none;
    text-decoration: none;
    position: relative !important;
    display: block !important;
    outline: 0 !important;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.tour-item-style .tour-content {
    color: #000;
    padding: 20px;
    position: relative !important;
    width: 50%;
    height: 25vh;
    float: left;
}
.tour-item-style:hover .direction {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%,-50%) scale(1);
    -ms-transform: translate(-50%,-50%) scale(1);
    -o-transform: translate(-50%,-50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}
.tour-item-style .direction {
    width: auto;
    height: 130px;
    min-width: 130px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(18, 34, 35, .5);
    color: #fff;
    font-weight: 500;
    border-radius: 50%;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    padding: 0 3px;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -moz-transform: translate(-50%,-50%) scale(0);
    -ms-transform: translate(-50%,-50%) scale(0);
    -o-transform: translate(-50%,-50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
    align-items: center !important;
    justify-content: center !important;
    display: inline-flex !important;
}
.tour-item-style .image-wrapper {
    outline: rgba(255, 255, 255, .2) solid 1px;
    outline-offset: -20px;
    transition: .2s ease-in-out;
}
    .tour-item-style .image-wrapper img {
        display: block;
        max-width: 100%;
        height: 25vh;
        border: none;
        border-radius: 0.75rem;
        box-shadow: none;
        object-fit: cover;
        width: 100%;
    }
.tour-item-style .tour-content .align-items-center {
    align-items: center !important;
    display: flex !important;
}
.tour-item-style .title {
    margin: 0;
    color: #000000;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 18px;
    line-height: 24px;
    font-family: "Montserrat", sans-serif;
}
.tour-item-style .info-detail-room {
    display: block;
    line-height: 1.375;
    font-size: 15px;
    margin: 15px auto;
}
.tour-item-style .tour-content > a.tour-content-href {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
}
.tour-item-style .tour-content > a.tour-content-href:before {
    content: "";
    background-image: url(/themes/default/img/arrow-down-right.svg);
    font-size: 18px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(0deg);
    width: 42px;
    height: 25px;
    background-repeat: no-repeat;
}

.tesvik-yan-ana {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f6f8fb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.tesvik-yan-ana:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
}
.tesvik-yan-ana img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.tesvik-galeri__item {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f6f8fb;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tesvik-galeri__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}
.tesvik-galeri__item img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── /urunler üst araç çubuğu (sıralama + boyut) ────────────────── */
.urunler-toolbar {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 14px;
}

.urunler-toolbar__sayac {
    font-size: 13px;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.urunler-toolbar__sec { align-items: center; }

.urun-sec {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0 10px 0 36px;
    transition: border-color .2s, box-shadow .2s;
    min-height: 38px;
}

.urun-sec:focus-within {
    border-color: #2caae2;
    box-shadow: 0 0 0 3px rgba(44, 170, 226, .15);
}

.urun-sec__ikon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
    pointer-events: none;
}

.urun-sec__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: none;
    outline: none;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 32px 8px 0;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3E%3Cpath d='M3.5 6l4.5 5 4.5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px 14px;
}

/* Özel custom select (native değil, kendi UI) */
.urun-sec--custom { padding: 0 4px 0 36px; }

.urun-sec--custom .urun-sec__select-hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.urun-sec__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    outline: none;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px 8px 0;
    cursor: pointer;
    min-height: 38px;
    white-space: nowrap;
}

.urun-sec__btn-arrow {
    color: #6b7280;
    font-size: 13px;
    transition: transform .2s ease;
}

.urun-sec--custom.open .urun-sec__btn-arrow {
    transform: rotate(180deg);
}

.urun-sec--custom.open {
    border-color: #2caae2;
    box-shadow: 0 0 0 3px rgba(44, 170, 226, .15);
}

.urun-sec__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    max-width: min(320px, 90vw);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
    padding: 6px;
    margin: 0;
    list-style: none;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.urun-sec--custom.open .urun-sec__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.urun-sec__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    color: #1f2937;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
    user-select: none;
    outline: none;
}

.urun-sec__option:hover,
.urun-sec__option:focus {
    background: #f3f8fc;
    color: #2caae2;
}

.urun-sec__option.is-active {
    background: rgba(44, 170, 226, .1);
    color: #2caae2;
    font-weight: 600;
}

.urun-sec__option-check {
    color: #2caae2;
    font-size: 16px;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .urunler-toolbar { padding: 10px; }
    .urunler-toolbar__sec { width: 100%; justify-content: space-between; }
    .urun-sec { flex: 1; min-width: 0; }
    .urun-sec__select { width: 100%; padding-right: 28px; }
    .urun-sec__btn { width: 100%; justify-content: space-between; padding-right: 8px; }
    .urun-sec__menu { right: auto; left: 0; min-width: 100%; }
}

/* Ürün görseli — kırpılmayan, ortalı, sabit yükseklik */
.product-card__media {
    position: relative;
    display: block;
    width: 100%;
    height: 325px;
    aspect-ratio: 4 / 3;
    background: #f6f8fb;
    overflow: hidden;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
    background: #ffffff;
}

.product-card__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4cad1;
    font-size: 2.5rem;
    background: #f6f8fb;
}

.product-card__badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

/* ─── Category card ──────────────────────────────────────────────────── */

.category-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1);
}

.category-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14) !important;
}

/* ─── Badge ──────────────────────────────────────────────────────────── */

.badge {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: .01em;
    padding: .35em .75em;
}

.badge-accent {
    background: rgba(0, 113, 227, .1);
    color: var(--accent);
}

[data-theme="dark"] .badge-accent {
    background: rgba(41, 151, 255, .15);
}

/* ─── Blog ───────────────────────────────────────────────────────────── */

.blog-content h1,
.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.blog-content p { line-height: 1.85; }

.blog-content img { border-radius: 14px; margin: 1.5rem 0; }

.blog-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Prose ──────────────────────────────────────────────────────────── */

.prose img { border-radius: 14px; }

/* ─── Footer ─────────────────────────────────────────────────────────── */

footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3.5rem 0 2rem;
    color: var(--muted);
    font-size: .9375rem;
}

footer a { color: var(--muted); transition: color .2s; }
footer a:hover { color: var(--text); }

/* ─── Divider ────────────────────────────────────────────────────────── */

hr {
    border: none;
    border-top: 1px solid var(--border);
    opacity: 1;
}

/* ─── Scrollbar (webkit) ─────────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ─── Utilities ──────────────────────────────────────────────────────── */

.surface { background: var(--surface); }
.bg-surface { background: var(--surface) !important; }
.text-accent { color: var(--accent) !important; }
.border-subtle { border-color: var(--border) !important; }
.radius { border-radius: var(--radius) !important; }
.radius-sm { border-radius: 10px !important; }
.radius-xs { border-radius: 6px !important; }
.shadow-card { box-shadow: var(--shadow) !important; }

/* ─── Alert ──────────────────────────────────────────────────────────── */

.alert {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
}

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

.table {
    color: var(--text);
}

.table > :not(caption) > * > * {
    background-color: transparent;
    border-bottom-color: var(--border);
    color: var(--text);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(0, 0, 0, .02);
    color: var(--text);
}

[data-theme="dark"] .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255, 255, 255, .03);
}

/* ─── Modal ──────────────────────────────────────────────────────────── */

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.modal-header {
    border-bottom-color: var(--border);
}

.modal-footer {
    border-top-color: var(--border);
}

/* ─── Pagination ─────────────────────────────────────────────────────── */

.page-link {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    border-radius: 8px !important;
    margin: 0 2px;
    transition: background .2s, color .2s;
}

.page-link:hover {
    background: var(--bg);
    border-color: var(--accent);
    color: var(--accent);
}

.page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
}

/* ─── Responsive grid helpers ────────────────────────────────────────── */

@media (max-width: 575.98px) {
    .card-body { padding: 1.25rem; }
    h1 { letter-spacing: -.03em; }
}

@media (max-width: 767.98px) {
    .section-lg { padding: 5rem 0; }
    .navbar .btn { display: none; }
}


/* ─── Smooth page transition ─────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* ─── Sitewide Header ────────────────────────────────────────────────── */

header.siteheader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    transition: background-color .3s;
}

/* ── Üst bar ── */
.m-header-bar {
    width: 100%;
    background: #091d26;
    color: white;
    position: relative;
    z-index: 2;
}

.m-header-bar .mdl-container {
    width: 100%;
    max-width: 168rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.m-header-bar .m-menu-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 2.4rem;
    min-height: 42px;
    height: 100%;
}

    .m-header-bar .m-menu-bar .m-bar-link {
        position: relative;
        min-height: 42px;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-right: 1rem;
        font-size: 13px;
        line-height: 1.8rem;
        letter-spacing: .2rem;
        font-weight: 400;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
    }

    .m-header-bar .m-menu-bar .m-bar-link .m-icon {
        overflow: hidden;
        display: flex;
        margin-right: .8rem;
        width: 20px;
        height: 20px;
    }

.m-header-bar .m-menu-bar .m-bar-link .m-icon img {
    height: 100%;
    transition: all .3s ease-in;
    filter: invert(1);
}

.m-header-bar .m-menu-bar .m-bar-link:hover .m-icon img:first-child {
    margin-left: -1.2rem;
}

.m-header-bar .m-marqueex {
    height: 100%;
    width: 56vw;
    max-width: 91.4rem;
    overflow: hidden;
    position: relative;
    min-height: 42px;
    display: flex;
    align-items: center;
}

.m-header-bar .m-marqueex::before {
    content: "";
    background: linear-gradient(90deg, #091d26 0%, rgba(9,29,38,0) 100%);
    width: 10.7rem;
    height: 100%;
    position: absolute;
    left: 0; top: 0; z-index: 1;
    pointer-events: none;
}

.m-header-bar .m-marqueex::after {
    content: "";
    background: linear-gradient(-90deg, #091d26 0%, rgba(9,29,38,0) 100%);
    width: 10.7rem;
    height: 100%;
    position: absolute;
    right: 0; top: 0; z-index: 1;
    pointer-events: none;
}

.m-header-bar .m-marqueex .marquee-inner {
    display: flex;
    position: relative;
    animation: marquee-hdr 30s linear infinite;
    z-index: 0;
    cursor: pointer;
}

.m-header-bar .m-marqueex .marquee-inner:hover { animation-play-state: paused; }

.m-header-bar .m-marqueex .m-marquee-text {
    display: flex;
    padding: 0 1rem;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
}

@keyframes marquee-hdr {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Dil seçici */
.m-language {
    min-height: 42px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.8rem;
    letter-spacing: .2rem;
    font-weight: 350;
    text-transform: uppercase;
    color: #fff;
    padding: 0 1.5rem;
}

.m-language .m-row {
    display: flex;
    align-items: center;
}

.m-language .m-row img {
    height: 1.6rem;
    margin-left: .4rem;
    filter: brightness(0) grayscale(1) invert(1);
}

.m-language .lang-submenu {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0;
    max-height: 0;
    overflow: hidden;
    transform: translate(-50%, 100%);
    opacity: 0;
    z-index: -50;
    background: white;
    color: #091d26;
    text-transform: uppercase;
    padding: 0 1rem;
    transition: all .3s ease-in, box-shadow .2s ease-in .2s;
    border-radius: .8rem;
    box-shadow: .5rem .5rem .5rem rgba(9,29,38,.2);
    pointer-events: none;
}

    .m-language:hover .lang-submenu {
        opacity: 1;
        max-height: 100rem;
        z-index: 999;
        pointer-events: unset;
        padding: 0 1rem;
    }

    .m-language .lang-submenu .lang-item {
        display: block;
        margin: .5rem 0;
        cursor: pointer;
        color: #091d26;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color .15s;
    }

.m-language .lang-submenu .lang-item:hover { color: #2caae2; }
.m-language .lang-submenu .lang-item.active { color: #2caae2; font-weight: 600; }

/* ── Ana navigasyon ── */
header.siteheader > .header-navigation {
    overflow: visible;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
}

header.siteheader > .header-navigation > .container {
    width: 100%;
    max-width: 92%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    padding: 0;
    position: relative;
    gap: 1rem;
}

header.siteheader > .header-navigation > .container .logo {
    display: block;
    position: relative;
    text-align: left;
    flex-shrink: 0;
    margin-right: auto;
}

header.siteheader > .header-navigation > .container .logo a {
    display: block;
    text-decoration: none;
}

header.siteheader > .header-navigation > .container .navbar-header {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

header.siteheader > .header-navigation > .container .navbar-header > .utility-nav {
    position: relative;
    padding: 0;
}

header.siteheader > .header-navigation > .container a.nav-link {
    position: relative;
    color: #fff !important;
    display: inline-block;
    line-height: 1.5;
    padding: 1rem;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none !important;
    white-space: nowrap;
}

header.siteheader > .header-navigation > .container li:hover > a.nav-link::before {
    width: 100%;
}

    header.siteheader > .header-navigation > .container a.nav-link::before {
        bottom: .2rem;
        left: 0;
        right: 0;
        height: .15rem;
        content: "";
        background: #2caae2;
        position: absolute;
        transition: width .5s;
        width: 0;
    }

.navbar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.navigation-item { position: relative; }

/* ─── Ürünler hover dropdown ─────────────────────────────────────── */
.navigation-item.has-dropdown > .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    max-width: 360px;
    background: #fff;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 1050;
}

.navigation-item.has-dropdown:hover > .nav-dropdown,
.navigation-item.has-dropdown:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.navigation-item.has-dropdown > .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.navigation-item.has-dropdown > .nav-dropdown li { padding: 0; }

.navigation-item.has-dropdown > .nav-dropdown li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #1c1c1c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background .15s, color .15s;
    line-height: 1.2;
}

.navigation-item.has-dropdown > .nav-dropdown li > a:hover {
    background: #f5f8fb;
    color: #2caae2;
}

.navigation-item.has-dropdown > .nav-dropdown li > a img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background: #f4f6f8;
}

/* Mobile sub-menu */
.mobile-nav-list li.has-sub { position: relative; }
.mobile-nav-list .mobile-sub-toggle {
    position: absolute;
    right: 6px;
    top: 4px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s;
}
.mobile-nav-list .mobile-sub-toggle[aria-expanded="true"] { transform: rotate(180deg); }
.mobile-nav-list .mobile-sub-list {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0 0 0 18px;
}
.mobile-nav-list li.has-sub.open > .mobile-sub-list { display: block; }
.mobile-nav-list .mobile-sub-list a { font-size: 14px; opacity: .85; }


/* Talep Formu sağ butonlar */
.m-item {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.m-item.sag .butn {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: .4rem .8rem;
    border-radius: .4rem;
    transition: background .2s;
}

.m-item.sag .butn:hover { background: rgba(255,255,255,.1); }

    .m-item.sag .cJOpfm {
        align-items: center;
        background: rgb(255, 255, 255);
        border-radius: 50%;
        border: 0px;
        cursor: pointer;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        padding: 5px;
        position: relative;
        text-align: center;
        width: 100%;
    }

.m-item.sag .cJOpfm svg,
.m-item.sag .butn svg {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

    .m-item.sag .cJOpfm svg *,
    .m-item.sag .butn svg * {
        fill: #000000 !important;
    }

    .m-item.m-friends {
        display: flex;
        position: relative;
        align-items: center;
        min-height: 4rem;
        color: #fff;
        text-transform: uppercase;
        font-size: 16px;
        -webkit-transition: all .25s cubic-bezier(.3, .3, 0, .8);
        -o-transition: all .25s cubic-bezier(.3, .3, 0, .8);
        transition: all .25s cubic-bezier(.3, .3, 0, .8);
    }

.m-item.m-friends:hover { color: #2caae2; }

        .m-item.m-friends .m-logo {
            transition: opacity .2s;
            height: 15px;
            filter: brightness(0) grayscale(1) invert(1);
            width: auto;
            object-fit: contain;
            position: absolute;
            bottom: 0;
            right: 0;
        }

.m-item.m-friends:hover .m-logo { opacity: 1; }

/* Hamburger */
.header-hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    padding: .2rem;
    line-height: 1;
    margin-left: auto;
}

/* Mobil panel — fullscreen overlay drawer */
.mobile-nav-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: linear-gradient(180deg, #091d26 0%, #336e8c 100%);
    z-index: 1090;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    visibility: hidden;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav-panel.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,.4);
}

body.mobile-nav-open { overflow: hidden; }

/* Sağ üst kapatma */
.mobile-nav-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .25s;
    z-index: 5;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.18); transform: rotate(90deg); }

/* Üstte logo */
.mobile-nav-brand {
    flex: 0 0 auto;
    padding: 28px 24px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.mobile-nav-brand img {
    max-height: 56px;
    max-width: 70%;
    object-fit: contain;
}

/* Ortada menü — flex:1 ile orta alanı kaplar */
.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 24px 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
}

.mobile-nav-list > li {
    position: relative;
    width: 100%;
    text-align: center;
}

.mobile-nav-link {
    display: inline-block;
    color: rgba(255,255,255,.92);
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .85rem 1.25rem;
    transition: color .2s, transform .2s;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: #2caae2;
    transform: translateY(-1px);
}

.mobile-sub-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s, background .2s, color .2s;
}
.mobile-sub-toggle:hover { background: rgba(44,170,226,.18); color: #2caae2; }

.mobile-nav-list .has-sub.open > .mobile-sub-toggle {
    transform: translateY(-50%) rotate(180deg);
    color: #2caae2;
}

.mobile-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.mobile-nav-list .has-sub.open > .mobile-sub-list {
    max-height: 1200px;
}

.mobile-sub-list .mobile-nav-link {
    font-size: 13.5px;
    font-weight: 500;
    padding: .55rem 1rem;
    text-transform: none;
    letter-spacing: .04em;
    color: rgba(255,255,255,.78);
}

/* Altta iletişim + sosyal */
.mobile-nav-footer {
    flex: 0 0 auto;
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255,255,255,.10);
    background: rgba(0,0,0,.18);
}

.mobile-nav-contact {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-nav-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.88);
    text-decoration: none;
    font-size: 14.5px;
    transition: color .2s;
}
.mobile-nav-contact a:hover { color: #2caae2; }
.mobile-nav-contact i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(44,170,226,.18);
    color: #2caae2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.mobile-nav-social {
    list-style: none;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.mobile-nav-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
}
.mobile-nav-social a:hover {
    background: #2caae2;
    color: #fff;
    transform: translateY(-2px);
}

/* Hamburger butonu — mobil panel açıkken gizlenir, .mobile-nav-close ön planda */
header.siteheader .header-hamburger {
    position: relative;
    z-index: 1100;
    transition: opacity .2s;
}
body.mobile-nav-open header.siteheader .header-hamburger {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* ── Responsive ── */
@media (max-width: 1199.98px) {
    header.siteheader > .header-navigation > .container a.nav-link { padding: .8rem .6rem; font-size: 13px; }
}

@media (max-width: 991.98px) {
    .m-header-bar .m-marqueex { max-width: 40vw; }
    .m-header-bar .m-menu-bar .m-bar-link > div:last-child { display: none; }
    .m-header-bar .m-menu-bar .m-bar-link { margin-right: 0; padding: 0 .8rem; min-height: 3.6rem; }
    .m-header-bar .m-menu-bar { margin-right: 0; }

    header.siteheader > .header-navigation > .container { max-width: 100%; padding: 0 1.2rem; }
    header.siteheader > .header-navigation > .container .logo { width: auto; }
    .header-hamburger { display: block; }
}

@media (max-width: 575.98px) {
    .m-header-bar .m-marqueex { max-width: 30vw; }
}

/* Logo alanı örneğe benzer şekilde sol tarafa yaslı */

header.siteheader .header-navigation .logo img {
    width: 100% !important;
    max-height: none !important;
}

header.siteheader .header-navigation .navbar-header {
    width: auto !important;
    flex: 0 1 auto !important;
}

header.siteheader .header-navigation .navbar-header .utility-nav {
    padding: 0 1rem !important;
}

header.siteheader .header-navigation .navbar-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0 !important;
}

header.siteheader .header-navigation .navigation-item {
    display: block !important;
}

/* REQUEST FORM (tasarımda yok) pasif */



/* ─── Hakkımızda Bölümü (Anasayfa About) ─────────────────────────────── */

.inner {
    width: 100%;
    position: relative;
    padding: 3rem 0;
    box-sizing: border-box;
    margin: 0 auto;
}

.inner.producte .container > .row {
    align-items: stretch;
}

.inner.producte .col-lg-4 > img,
.inner.producte .col-lg-4 .img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}
.ia-title {text-align:center;}
.ia-title__heading {
    border-bottom: 0.3rem solid transparent;
    line-height: 1;
    padding: 0.9rem 0 1.2rem;
    position: relative;
    color: #000;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0;
}

.producte .solution__heading {
    text-align: left;
}

.solution__heading {
    margin-bottom: 40px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.3px;
    font-size: 16px;
}

.h8-about-item-wrapper {
    display: flex;
    border: 1px dashed #c9d1d1;
    border-inline-start: 0;
    border-inline-end: 0;
    flex-wrap: wrap;
}

.h8-about-item-counter {
    width: 310px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-inline-end: 40px;
    border-inline-end: 1px dashed #c9d1d1;
    flex-shrink: 0;
}

.h8-about-item-desc {
    flex: 1;
    min-width: 280px;
    padding-top: 60px;
    padding-inline-start: 60px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.3px;
    font-size: 16px;
}

.h8-about-item-counter .countup-item.style-2 { padding: 0; }

.countup-item.style-2 {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 28px 30px;
    align-items: flex-start;
    text-align: start;
}

.countup-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.h8-about-item-counter .countup-item.style-2 .count-inner { padding: 0; }

.h8-about-item-counter .countup-item.style-2 .inline-content {
    font-size: 130px;
    font-weight: 600;
    margin: 11px 0 10px;
    color: #0c1e21;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    letter-spacing: -1.48px;
}

.h8-about-item-counter .countup-item.style-2 .inline-content .odometer {
    margin-inline-start: -6px;
    color: #0c1e21;
    font-weight: 500;
    display: inline-flex;
}

.h8-about-item-counter .countup-item.style-2 .inline-content sup {
    font-weight: 500;
    font-size: 0.57em;
    top: -.5em;
    vertical-align: super;
}

.h8-about-item-counter .countup-item.style-2 .count-text {
    font-weight: 600;
    font-size: 18px;
    max-width: 195px;
    line-height: 1.44;
    color: #2caae2;
    display: block;
}

.producte .ct.ct--ButtonPrimary {
    --button-primary-color: #000;
    --button-secondary-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 15px 10px 20px;
    text-decoration: none;
    width: max-content;
    background-color: var(--button-primary-color);
    transition: background .3s ease-out;
    border: none;
    max-width: 100%;
    margin: 25px 0 0;
}

.producte .ct.ct--ButtonPrimary .linkTitle {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -0.1px;
    font-size: 14px;
    color: var(--button-secondary-color);
    transition: color .3s ease-out;
}

.producte .ct.ct--ButtonPrimary .linkCircle {
    position: relative;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
}

.producte .ct.ct--ButtonPrimary .circlePin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--button-secondary-color);
    transition: transform .3s ease, background .3s ease;
}

.producte .ct.ct--ButtonPrimary .circleBorder {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(0deg, rgba(255,255,255,0) 50%, var(--button-secondary-color) 100%);
    transform: rotate(85.5729deg);
}

.producte .ct.ct--ButtonPrimary .circleBorder .circleBackground {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 50%;
    background: var(--button-primary-color);
}

.producte .ct.ct--ButtonPrimary:hover {
    background-color: #fff;
}

.producte .ct.ct--ButtonPrimary:hover .linkTitle {
    color: var(--button-primary-color);
}

.producte .ct.ct--ButtonPrimary:hover .circleBorder {
    background: rgba(255,255,255,0);
}

.producte .ct.ct--ButtonPrimary:hover .circlePin {
    background: var(--button-primary-color);
    transform: translate(27px, -50%);
}

@media (max-width: 991px) {
    .h8-about-item-counter,
    .h8-about-item-desc {
        width: 100%;
        padding-inline-start: 0;
        padding-inline-end: 0;
        border-inline-end: 0;
    }
    .h8-about-item-desc { padding-top: 30px; }
    .h8-about-item-counter .countup-item.style-2 .inline-content { font-size: 90px; }
    .ia-title__heading { font-size: 32px; }
}

/* ─── Banner Kategori Bölümü (Section 3) ─────────────────────────────── */

.mdl-gridHotelesDestinos {
    width: 100%;
    position: relative;
}

.mdl-gridHotelesDestinos .container {
    background: #000;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
}

.mdl-gridHotelesDestinos .card-title {
    width: 25%;
    height: 30rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mdl-gridHotelesDestinos .card-title > img {
    width: 225px;
    position: relative;
}

.mdl-gridHotelesDestinos .card-destino {
    width: 25%;
    height: 30rem;
    position: relative;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
}

.mdl-gridHotelesDestinos .card-destino.big { width: 50%; }
.mdl-gridHotelesDestinos .card-destino.bighalf { width: 37.5%; }

.mdl-gridHotelesDestinos .m-main-card {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 2.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
}

.mdl-gridHotelesDestinos .m-hover-card {
    transition: .3s ease-in;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    box-sizing: border-box;
    padding: 3.8rem 3.5rem .6rem;
    background: linear-gradient(0deg, hsl(199deg 62% 9% / 80%) 0, #091d26 100%);
    flex-direction: column;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:1;
}

.mdl-gridHotelesDestinos .card-destino:hover .m-hover-card { opacity: 1; }

.mdl-gridHotelesDestinos .m-main-card .m-bg,
.mdl-gridHotelesDestinos .m-main-card .m-video {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
}

@keyframes kenBurns {
    0%   { transform: scale(1) translate(0,0); }
    50%  { transform: scale(1.08) translate(-1%,-1%); }
    100% { transform: scale(1) translate(0,0); }
}

.mdl-gridHotelesDestinos .card-destino:hover .m-main-card .m-bg {
    animation: 7s infinite kenBurns;
}

.mdl-gridHotelesDestinos .m-main-card .m-bg:after,
.mdl-gridHotelesDestinos .m-main-card .m-video:after {
    content: "";
    background: linear-gradient(360deg, rgba(9,29,38,.5) 0, rgba(9,29,38,0) 50%);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.mdl-gridHotelesDestinos .m-num {
    font-size: 14px;
    font-weight: 300;
}

.mdl-gridHotelesDestinos .m-main-card .m-num,
.mdl-gridHotelesDestinos .m-main-card .m-title {
    position: relative;
    z-index: 1;
    transition: .3s ease-in;
}

.mdl-gridHotelesDestinos .m-title {
    margin-top: 5px;
    font-size: 21px;
    font-weight: 300;
    line-height: normal;
    color: #fff;
}

.mdl-gridHotelesDestinos .m-title p { margin: 0; color: #fff; }

.mdl-gridHotelesDestinos .m-generic-link {
    display: flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
    z-index: 3;
    font-size: 16px;
    font-weight: 500;
    line-height: 2.8rem;
    letter-spacing: .2rem;
    color: #fff;
    transition: .3s ease-in;
    margin-top: 1rem;
    text-decoration: none;
}

.mdl-gridHotelesDestinos .m-generic-link:hover { opacity: .85; }

    .mdl-gridHotelesDestinos .m-generic-link img {
        filter: brightness(0) grayscale(1) invert(1);
        width: 32px;
        height: auto;
    }

.mdl-gridHotelesDestinos .m-generic-link img + span { margin-left: .8rem; }

@media (max-width: 991px) {
    .mdl-gridHotelesDestinos .card-title,
    .mdl-gridHotelesDestinos .card-destino,
    .mdl-gridHotelesDestinos .card-destino.big,
    .mdl-gridHotelesDestinos .card-destino.bighalf {
        width: 50%;
        height: 35rem;
    }
}

@media (max-width: 575px) {
    .mdl-gridHotelesDestinos .card-title,
    .mdl-gridHotelesDestinos .card-destino,
    .mdl-gridHotelesDestinos .card-destino.big,
    .mdl-gridHotelesDestinos .card-destino.bighalf {
        width: 100%;
        height: 30rem;
    }
    .mdl-gridHotelesDestinos .m-hover-card { opacity: 1; background: linear-gradient(0deg, hsl(199deg 62% 9% / 60%) 0, rgba(9,29,38,.4) 100%); }
}

/* ─── Banner Ürünler Bölümü (Section 4) ────────────────────────────── */

.solution {
    position: relative;
    overflow: hidden;
    margin: 60px auto;
}


.solution.producte .ia-title {
    margin: 0 0 2rem;
    text-align: left;
    width: 100%;
    max-width: 760px;
    position: relative;
}

/* Kategori şeridi */
#upKategorileri { padding: 10px 0 24px; }

#upKategorileri .kategoriler-sirali {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#upKategorileri .category-link {
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    background-color: #f4f6f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all .3s ease;
    cursor: pointer;
    white-space: nowrap;
}

#upKategorileri .category-link:hover {
    background-color: #2caae2;
    color: #fff;
    border-color: #2caae2;
    transform: translateY(-2px);
}

#upKategorileri .category-link:active { transform: scale(.95); }

#upKategorileri .category-link.active {
    background-color: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
}

@media (max-width: 768px) {
    #upKategorileri .category-link { display: block; width: 100%; text-align: center; }
}

/* Ürün slider */
.urun-slide-wrapper { position: relative; }

.urun-slide-panel { position: relative; }

.urun-slide {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 -55px;
}

.urun-slide-nav {
    flex: 0 0 44px;
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    z-index: 2;
}

.urun-slide-nav:hover {
    background: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
}

.urun-slide-track {
    display: flex;
    flex: 1;
    overflow: hidden;
    transition: transform .5s ease;
    will-change: transform;
}

.urun-slide-item {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.urun-slide-item .blog-item-post {
    display: block;
    text-decoration: none;
    color: inherit;
}

.urun-slide-item .lp-blog-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    height: 100%;
}

.urun-slide-item .lp-blog-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.urun-slide-item .lp-blog__image {
    aspect-ratio: 4 / 4;
    overflow: hidden;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.urun-slide-item .lp-blog__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .5s ease;
}

.urun-slide-item .lp-blog-item:hover .lp-blog__image img {
    transform: scale(1.05);
}

.urun-slide-item .lp-blog-text {
    padding: 18px 20px 22px;
    text-align: left;
}

.urun-slide-item .lp-blog-title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0 0 12px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -.1px;
}

.urun-slide-item .btn-arrowx {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: #2caae2;
    text-transform: uppercase;
    letter-spacing: .5px;
    position: relative;
    padding-right: 22px;
}

.urun-slide-item .btn-arrowx::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 0;
    transition: transform .3s;
}

.urun-slide-item .lp-blog-item:hover .btn-arrowx::after {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .urun-slide-item { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 575px) {
    .urun-slide-item { flex: 0 0 100%; max-width: 100%; }
    .urun-slide-nav { flex: 0 0 36px; width: 36px; height: 36px; }
}

/* ─── Banner Referanslar Bölümü (Section 5) ────────────────────────── */

.logo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin: 30px auto 120px;
    text-align: center;
}

.logo-marquee {
    overflow: hidden;
    border-top: 1px solid #e0e0e0;
}

.logo-marquee:last-of-type {
    border-bottom: 1px solid #e0e0e0;
}

.logo-marquee.marquee-right { border-bottom: 1px solid #e0e0e0; }

.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    will-change: transform;
}

.logo-item {
    flex: 0 0 250px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
    box-sizing: border-box;
    padding: 15px;
}

.logo-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.logo-item img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform .3s ease, filter .3s ease;
}

.logo-item:hover img {
    filter: grayscale(100%);
    transform: scale(1.1);
}

.marquee-left .logo-track  { animation: scrollLeft  60s linear infinite; }
.marquee-right .logo-track { animation: scrollRight 60s linear infinite; }

.logo-marquee:hover .logo-track { animation-play-state: paused; }

@keyframes scrollLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.logo-marquee-wrapper .ct.ct--ButtonPrimary {
    margin: 40px auto 0;
}

@media (max-width: 768px) {
    .logo-item { flex: 0 0 180px; height: 140px; }
    .logo-marquee-wrapper { margin-bottom: 60px; }
}

@media (max-width: 480px) {
    .logo-item { flex: 0 0 140px; height: 110px; padding: 10px; }
}

/* ─── Banner Müşteri Yorumları Bölümü (Section 6) ───────────────────── */

.yorum-section .block-area.yorum {
    position: relative;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 7em;
    background-color: #fff;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    background-repeat: no-repeat;
    margin: 0;
}

.yorum-section .block-area .layer {
    position: relative;
    z-index: 1;
    padding: 0;
}

.yorum-section .block-area .layer .dt { position: relative; }

.yorum-section .block-area .layer .dt .dtc {
    position: relative;
    display: block;
}

.yorum-section .title-wrapper {
    text-align: center;
    margin: 0 auto;
    padding-top: 60px;
}

.yorum-section .title-wrapper.center .square-coklu {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.44;
    color: #2caae2;
    position: relative;
    display: inline-block;
}

.yorum-section .title-wrapper.center h1 {
    text-align: center;
    padding: 0.9rem 0 1.2rem;
    border-bottom: 0.3rem solid transparent;
    line-height: 1;
    position: relative;
    color: #000;
    font-size: 42px;
    font-weight: 500;
    letter-spacing: 0;
    margin: 25px auto;
    font-style: normal;
}

.yorum-section .top-info__callback {
    display: inline-block;
    vertical-align: 0;
    line-height: 1;
    text-decoration: none;
    outline: none;
    font-weight: 700;
    text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
    padding: 1.1em 2.4em 0.9em;
    text-transform: uppercase;
    border-radius: 3px;
    letter-spacing: .025em;
    box-shadow: 0 2px 1px rgb(0 0 0 / 20%);
    transition: box-shadow .25s ease, border .25s ease, background-color .25s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 10px;
    background-color: #2caae2;
    border-top: 1px solid #ffd633;
    border-bottom: 1px dashed #ffd633;
    color: #fff;
    margin-bottom: 25px;
}

.yorum-section .top-info__callback:hover {
    border-top: 1px solid hsla(48, 3%, 39%, .15);
    border-bottom: 1px solid hsla(48, 3%, 39%, .15);
    background-color: #000;
    color: #fff;
}

/* Slider yapısı */
.yorum-section .yorum-slide {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 30px 0 10px;
}

.yorum-section .yorum-slide-nav {
    display:none !important;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    z-index: 3;
}

.yorum-section .yorum-slide-nav:hover {
    background: #2caae2;
    color: #fff;
    border-color: #2caae2;
}

.yorum-section .yorum-slide-viewport {
    flex: 1;
    overflow: hidden;
}

.yorum-section .yorum-slide-track {
    display: flex;
    transition: transform .5s ease;
    will-change: transform;
}

.yorum-section .yorum-slide-item {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Customer card */
.yorum-section .customer-card {
    padding: 0;
    text-align: center;
}

.yorum-section .customer-card img.g-user,
.yorum-section .customer-card .g-user-placeholder {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    margin: 0 auto;
    object-fit: cover;
}

.yorum-section .customer-card .g-user-placeholder {
    background: #e7eaef;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.yorum-section .customer-card h1 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.43;
    color: #000;
    margin: 15px 0;
}

.yorum-section .customer-card h2 {
    font-size: 14px;
    line-height: 1.43;
    color: rgb(128, 126, 121);
    margin-top: 1.66665em;
    margin-bottom: 1.66665em;
    font-weight: 400;
}

.yorum-section .customer-card p {
    font-size: 14px;
    line-height: 1.43;
    color: rgb(128, 126, 121);
    margin: 15px 0;
}

/* Stars */
.yorum-section .customer-card .star {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 8px 0;
}

.yorum-section .customer-card .star .dib {
    display: inline-block;
    width: 18px;
    height: 18px;
}

.yorum-section .customer-card .star .dib img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.yorum-section .customer-card .star .dib.off img {
    filter: grayscale(100%) opacity(.35);
}

/* Floating images */
.yorum-section .testimonial-floatingimg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.yorum-section .testimonial-floatingimg ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
}

.yorum-section .testimonial-floatingimg li {
    height: 80px;
    width: 80px;
    position: absolute;
    overflow: hidden;
    border-radius: 100%;
    border: 10px solid #e7eaef;
    opacity: .5;
    animation: yorumScale 1.5s infinite alternate;
    list-style-type: none;
}

.yorum-section .testimonial-floatingimg li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yorum-section .testimonial-float-img1 li:nth-child(1) { top: 90px;  left: 215px; }
.yorum-section .testimonial-float-img1 li:nth-child(2) { top: 198px; left: 108px; }
.yorum-section .testimonial-float-img1 li:nth-child(3) { top: 30%;   left: 20%; }
.yorum-section .testimonial-float-img1 li:nth-child(4) { top: 360px; left: 140px; }

.yorum-section .testimonial-float-img2 li:nth-child(1) { bottom: 90px;  right: 215px; }
.yorum-section .testimonial-float-img2 li:nth-child(2) { bottom: 198px; right: 50px; }
.yorum-section .testimonial-float-img2 li:nth-child(3) { bottom: 30%;   right: 15%; }
.yorum-section .testimonial-float-img2 li:nth-child(4) { bottom: 360px; right: 140px; }

@keyframes yorumScale {
    from { transform: scale(.9); }
    to   { transform: scale(1.08); }
}

.yorum-section .yorum-slide-item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
}

.yorum-section .customer-card {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .yorum-section .testimonial-floatingimg { display: none; }
    .yorum-section .title-wrapper.center h1 { font-size: 32px; }
}

/* ─── Dots (ortak carousel dots) ─────────────────────────────────────── */
.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.dot {
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 5px;
    border-radius: 50%;
    border: 1px solid transparent;
    padding: 9px;
    background: transparent;
}

.dot.active::before {
    border-color: #122223;
    transform: rotate(45deg);
}

.dot::before {
    transition: all 0.3s ease-in-out 0s;
    content: '';
    border: 1px solid transparent;
    border-left-color: transparent !important;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    position: absolute;
    border-radius: 50%;
    top: -1px;
    left: -1px;
}

.dot.active span { background: #122223; }

.dot span {
    border: none;
    display: block;
    text-indent: -9999em;
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(18, 34, 35, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease-in-out 0s;
}

/* ─── Banner Blog Bölümü (Section 7) ────────────────────────────────── */

.blog-section .ia-title { width: 100%; max-width: 760px; margin: 0 0 2rem; }


.blog-ekip-slide {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0 -55px;
}

.blog-slide-nav {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    z-index: 3;
}

.blog-slide-nav:hover {
    background: #122223;
    color: #fff;
    border-color: #122223;
}

.blog-slide-viewport {
    flex: 1;
    overflow: hidden;
}

.blog-slide-track {
    display: flex;
    transition: transform .5s ease;
    will-change: transform;
}

.blog-slide-item {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    padding: 0 14px;
    box-sizing: border-box;
}

.custom-card {
    position: relative;
    display: grid;
    border-radius: 24px;
    box-shadow: 0 0 30px rgba(16, 12, 42, .08);
    overflow: hidden;
    background: #fff;
}

.custom-card .custom-card-link {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
}

.custom-card .card-img-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
}

    .custom-card .card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transition: transform 2s cubic-bezier(.19, 1, .22, 1);
        will-change: transform;
        background-size: cover;
    }

.custom-card:hover .card-img { transform: scale(1.05); }

.custom-card .card-content { padding: 20px 30px; }

.custom-card .card-content .date {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    display: block;
    color: #001233;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.custom-card .card-content .title {
    color: #011a24;
    letter-spacing: .5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    min-height: 50px;
}

.custom-card .card-content .content {
    font-weight: 400;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #5e566a;
    margin-top: 8px;
}

.custom-card .btn-arrowx {
    text-transform: uppercase;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    padding: 0 30px 25px;
    color: #2caae2;
    text-decoration: none;
    transition: color .2s;
}

.custom-card .btn-arrowx::after {
    content: "→";
    transition: transform .3s;
}

.custom-card:hover .btn-arrowx::after {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .blog-slide-item { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 575px) {
    .blog-slide-item { flex: 0 0 100%; max-width: 100%; }
    .blog-slide-nav { flex: 0 0 36px; width: 36px; height: 36px; }
    .custom-card .card-img-container { height: 220px; }
}

/* ─── Section 8 — Footer Üstü Form Bölümü ───────────────────────────── */

.advantages {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    display: grid;
}

.advantages .wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    .advantages .wrapper > .container {
        padding: 3rem 2rem;
        flex: 1 1 480px;
        margin: 60px 0;
        position: relative;
        z-index: 2;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(149, 157, 165, .15);
        max-width: 40%;
    }

    .advantages .field-block-image {
        flex: 1 1 360px;
        overflow: hidden;
        border-radius: 16px;
        min-height: 480px;
        background: #2caae2;
        position: absolute;
        width: 65%;
        right: 0;
        z-index: 0;
        top: 0;
    }

        .advantages .field-block-image picture {
            display: block;
            height: 100%;
            position: relative;
            inset: 0;
        }

.advantages .field-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages .field-block-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    background: #2caae2;
    z-index: 2;
    pointer-events: none;
}

.book-appointment {
    position: relative;
    padding: 0 !important;
    z-index: 4;
    text-align: left;
}

.book-appointment h1 {
    font-size: 16px;
    line-height: normal;
    font-weight: bold;
    color: #000;
    padding: 1em 0;
    margin: 0;
}

.book-appointment h2 {
    font-size: 38px;
    font-weight: 200;
    letter-spacing: 0;
    color: #000;
    margin-bottom: 25px;
}

.book-appointment label,
.book-appointment label p {
    margin: 0;
    color: #000;
    cursor: pointer;
    font-size: 13px;
}

.book-appointment .form-group {
    margin-bottom: 14px;
    position: relative;
}

    .book-appointment .form-group .form-control {
        font-size: 14px;
        padding: 12px 16px;
        border-radius: 5px;
        border: 1px solid rgb(0 0 0 / 10%);
        box-shadow: 0 16px 32px 0 rgb(32 85 125 / 8%);
        display: block;
        font-weight: 500;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        width: 100%;
        background: #f1f1f1;
    }

.book-appointment .form-group .form-control:focus {
    border-color: #121212 !important;
    color: #555;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgb(0 123 255 / 25%);
}

.book-appointment .form-group .form-control::placeholder { color: #777; opacity: 1; }

.book-appointment textarea.form-control { height: 100px !important; }

.book-appointment .tus {
    overflow: hidden;
    max-width: 100%;
    display: inline-block;
    color: #000;
    text-transform: uppercase;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3em;
    text-decoration: none;
    transition: color .3s, border-color .3s;
    background: transparent;
    border: none;
    border-bottom: 2px solid #2caae2;
    margin: 15px 0 0;
    padding: 8px 0;
    cursor: pointer;
}

.book-appointment .tus:hover { color: #2caae2; }

/* Counter — overlapping circles */
.counter__area {
    overflow: hidden;
    background-color: var(--bg);
}
.counter__area .pt-150 { padding-top: 50px; }

.counter__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.counter__item {
    width: 28%;
    min-width: 240px;
    height: 240px;
    border: 1px solid #e6e6e6;
    border-radius: 100%;
    margin-left: -10px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.counter__item:first-child { margin-left: 0; }

.counter__number {
    margin: 0;
    z-index: 1;
    position: relative;
    font-weight: 300;
    font-size: 48px;
    line-height: 1.1;
    color: #000;
    padding: 0;
    display: inline-block;
}

.counter__item p {
    margin: 0;
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 0 10px;
    line-height: 1.5;
    font-weight: 300;
    font-size: 15px;
    color: #000;
}

@media (max-width: 991px) {
    .counter__item { margin-left: 0; margin-top: -20px; min-width: 160px; height: 160px; }
    .counter__item:first-child { margin-top: 0; }
    .counter__number { font-size: 36px; }
}

@media (max-width: 991px) {
    .advantages { padding: 2rem 0; }
    .advantages .wrapper {
        flex-direction: column-reverse;
        gap: 18px;
    }
    .advantages .wrapper > .container {
        max-width: 100%;
        margin: 0;
        padding: 1.75rem 1.25rem;
        flex: 1 1 auto;
    }
    .advantages .field-block-image {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        min-height: 220px;
        border-radius: 12px;
    }
    .advantages .field-block-image::before { display: none; }
    .book-appointment h1 { font-size: 14px; padding: .25em 0 .75em; }
    .book-appointment h2 { font-size: 26px; line-height: 1.2; margin-bottom: 18px; }
    .book-appointment .form-group { margin-bottom: 12px; }
    .book-appointment .form-group .form-control { font-size: 14px; padding: 11px 14px; }
}

@media (max-width: 575px) {
    .advantages .wrapper > .container { padding: 1.25rem 1rem; }
    .advantages .field-block-image { min-height: 180px; }
    .book-appointment h2 { font-size: 22px; }
    .counter__wrapper { gap: 12px; }
    .counter__item { width: 100%; min-width: 0; max-width: 220px; }
}

/* ─── Footer ────────────────────────────────────────────────────────── */

.site-footer {
    position: relative;
    background-color: #1D1D1B;
    max-width: 100vw;
    overflow: hidden;
    padding: 5rem 4rem 2rem;
    border-radius: 3rem 3rem 0 0;
    margin-top: 60px;
    width: 100%;
    color: #fff;
}

.site-footer .container { position: relative; margin: 0 auto; padding: 0; max-width: 1320px; }

.site-footer .footer_top img.logo { max-width: 160px; margin-bottom: 60px; }

    .site-footer .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
    }

.site-footer .footer-col-left h4.ust-baslik {
    text-transform: uppercase;
    margin: 0 0 14px;
    color: #fff;
    line-height: 1.05;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 0;
}

.site-footer .footer-col-left .alt-baslik {
    display: block;
    margin-bottom: 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    max-width: 420px;
}

.site-footer .footer_top .widget-wraps,
.site-footer .footer_top .widget-wraps * {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 1.4;
    font-family: "Montserrat", sans-serif;
}

.site-footer .footer_top .widget-wraps h1 {
    margin: 22px 0 6px;
    color: rgba(240,240,240,.45) !important;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.site-footer .footer_top .widget-wraps a {
    margin-bottom: 0;
    display: block;
    color: #fff;
    transition: color .25s;
}

.site-footer .footer_top .widget-wraps a:hover { color: #2caae2; }

.site-footer .footer-katalog { margin-top: 30px; }

.site-footer .footer_top .text-katalog {
    border-radius: 12px;
    width: 150px;
    height: auto;
    margin: 15px 0;
}

/* Orta + Sağ kolon menü listeleri */
.site-footer .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .menu li { display: block; margin-bottom: 14px; }

.site-footer .menu a {
    text-decoration: none;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    transition: color .25s, opacity .25s;
}

.site-footer .menu a:hover { color: #2caae2; }

.site-footer .menu-categories a { text-transform: uppercase; letter-spacing: .5px; }

/* Footer toggle (mobilde açılır/kapanır) */
.site-footer .footer-toggle { margin-bottom: 20px; }

.site-footer .toggle-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    background: transparent;
    border: none;
    border-top: 1.5px solid rgba(255,255,255,.55);
    color: rgba(240,240,240,.55);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    text-align: left;
}

.site-footer .toggle-button .toggle-chevron {
    display: none;
    transition: transform .25s;
    font-size: 14px;
}

/* Desktop (>991px): liste her zaman açık, chevron gizli */
.site-footer .footer-toggle.desktop .menu,
.site-footer .footer-toggle.desktop .sosyal-list {
    display: block;
    max-height: none;
}

/* Mobil (≤991px): liste kapalı başlar, toggle ile açılır */
@media (max-width: 991px) {
    .site-footer .toggle-button .toggle-chevron { display: inline-block; }
    .site-footer .footer-toggle .menu,
    .site-footer .footer-toggle .sosyal-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        margin: 0;
    }
    .site-footer .footer-toggle.open .menu,
    .site-footer .footer-toggle.open .sosyal-list {
        max-height: 1000px;
        padding-top: 12px;
    }
    .site-footer .footer-toggle.open .toggle-chevron {
        transform: rotate(180deg);
    }
}

/* Sertifika strip / carousel (orta kolonda) */
.site-footer .sertifika-strip {
    margin: 30px 0 22px;
}

.site-footer .sertifika-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 240px;
}

.site-footer .sertifika-track {
    display: flex;
    will-change: transform;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}

.site-footer .sertifika-item {
    flex: 0 0 calc(100% / 3);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0 7px;
    box-sizing: border-box;
}

@media (max-width: 575px) {
    .site-footer .sertifika-strip { margin: 24px auto 18px; }
    .site-footer .sertifika-carousel { max-width: 280px; margin: 0 auto; }
    .site-footer .sertifika-item { flex: 0 0 calc(100% / 3); height: 56px; padding: 0 6px; }
}

.site-footer .sertifika-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .9;
}

/* Dil seçici */
.site-footer .language-switcher-container { margin: 20px 0 0; }

.site-footer .language-switcher {
    display: inline-flex;
    list-style: none;
    padding: 5px;
    background-color: #8e8e8e;
    border-radius: 50px;
    margin: 0;
}

.site-footer .language-switcher li {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    border-radius: 50px;
    margin: 0;
}

.site-footer .language-switcher li a {
    text-decoration: none;
    color: #333;
    padding: 10px 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: block;
    font-size: 15px;
}

.site-footer .language-switcher li.active { background-color: #1a1a1a; }
.site-footer .language-switcher li.active a { color: #fff !important; }
.site-footer .language-switcher li:not(.active):hover { background-color: rgba(0,0,0,.12); }

/* Sosyal medya listesi (sağ kolon) */
.site-footer .sosyal-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.site-footer .sosyal-list li { margin-bottom: 14px; }

.site-footer .sosyal-list a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color .25s;
}

.site-footer .sosyal-list a i { font-size: 18px; }

.site-footer .sosyal-list a:hover { color: #2caae2; }

/* Copy area */
.site-footer .site-copy {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding-top: 22px;
}

.site-footer .site-copy .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer .copyriht {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    font-weight: 400;
}

.site-footer .footer__copyright { display: flex; flex-wrap: wrap; gap: 22px; }

.site-footer .footer__copyright a {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s;
}

.site-footer .footer__copyright a:hover { color: #fff; }

@media (max-width: 991px) {
    .site-footer { padding: 3rem 1.5rem 1.5rem; }
    .site-footer .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .site-footer .footer-col-left h4.ust-baslik { font-size: 26px; }
}

/* ─── Ürün Detay ──────────────────────────────────────────────────── */
.tour-detail-content { position: relative; padding: 30px 0; }
.content-room {
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1320px;
}

.product-names {
    border-bottom: 0.3rem solid transparent;
    padding: 0.9rem 0 1.2rem;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.2;
    position: relative;
    color: #000;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    letter-spacing: 0;
}

.product-content-short {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.room-content {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    color: #000;
    margin: 15px 0 25px;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
}

.urun-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: #4b5563;
}
.urun-meta .urun-meta-item { display: inline-flex; align-items: center; gap: 4px; }
.urun-meta .urun-meta-sep {
    display: inline-block;
    margin: 0 10px;
    color: #d1d5db;
    font-weight: 400;
    user-select: none;
}

.urun-fiyat { padding: 12px 0; border-block: 1px solid var(--border, #e5e7eb); }

/* ─── Ürün Detay-içeriği tablosu (tab içeriği — responsive) ──────── */
.urun-detay-icerik {
    background: #fff;
    border-radius: 8px;
}

.urun-detay-html {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.urun-detay-html table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    background: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.urun-detay-html thead th,
.urun-detay-html tr:first-child td:first-child,
.urun-detay-html tr:first-child td {
    background: #f6f9fc;
}

.urun-detay-html th,
.urun-detay-html td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
    color: #1c1c1c;
    vertical-align: middle;
}

.urun-detay-html th {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: #f6f9fc;
    color: #1c1c1c;
}

.urun-detay-html th:last-child,
.urun-detay-html td:last-child { border-right: none; }
.urun-detay-html tr:last-child td { border-bottom: none; }

.urun-detay-html tbody tr:hover td { background: #f9fbfd; }

@media (max-width: 575px) {
    .urun-detay-html th, .urun-detay-html td { padding: 10px 12px; font-size: 12px; }
}

/* Gömme div veya paragraf */
.urun-detay-html > p,
.urun-detay-html > div { line-height: 1.7; color: #1c1c1c; }
.urun-detay-html img { max-width: 100%; height: auto; border-radius: 6px; }

/* ─── Sağ-Fixed Aksiyon Bar (Yazdır / Teklif İste) ───────────────── */
.urun-aksiyon-fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1040;
    pointer-events: none;
}

.urun-aksiyon-btn {
    pointer-events: auto;
    display: flex;
    align-items: center;
    background: #1f2937;
    color: #fff;
    border: none;
    border-radius: 28px 0 0 28px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
    cursor: pointer;
    transition: transform .25s cubic-bezier(.4, 0, .2, 1), background .2s;
    transform: translateX(calc(100% - 56px));
    max-width: 280px;
    height: 52px;
}

.urun-aksiyon-btn:hover,
.urun-aksiyon-btn:focus-visible { transform: translateX(0); background: #111827; outline: none; }

.urun-aksiyon-btn--success { background: #16a34a; }
.urun-aksiyon-btn--success:hover,
.urun-aksiyon-btn--success:focus-visible { background: #128a3d; }

.urun-aksiyon-ikon {
    width: 56px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.urun-aksiyon-yazi {
    padding: 0 18px 0 4px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: .04em;
    text-transform: uppercase;
}

@media (max-width: 575px) {
    .urun-aksiyon-fixed { bottom: 80px; top: auto; transform: none; }
    .urun-aksiyon-btn { height: 44px; }
    .urun-aksiyon-ikon { width: 44px; height: 44px; font-size: 16px; }
    .urun-aksiyon-btn { transform: translateX(calc(100% - 44px)); }
}

@media print {
    .urun-aksiyon-fixed { display: none !important; }
}

.urun-doc-row .product-pdf {
    position: relative;
    color: #000;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 20px;
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
    border: 1px solid #ccc;
    border-radius: 24px;
    background: #fff;
    transition: background .2s, border-color .2s;
}

.urun-doc-row .product-pdf:hover {
    background: #f7fbff;
    border-color: #2caae2;
}

.urun-doc-row .product-pdf a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
}

.urun-doc-row .product-pdf img {
    width: 24px;
    height: auto;
}

.content-room .producte {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
}

.content-room .producte .ct.ct--ButtonPrimary {
    background-color: #25d366;
    color: #fff;
    border: 1px solid #25d366;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.content-room .producte .ct.ct--ButtonPrimary:hover {
    background-color: #fff;
    color: #25d366;
    border-color: #25d366;
}

.content-room .producte .linkCircle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Ürün galerisi: vertical thumb + main */
.product-gallery-wrapper { position: relative; }

.urun-galeri {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: stretch;
}

@media (max-width: 575px) {
    .urun-galeri { grid-template-columns: 1fr; }
    .urun-galeri-thumbs { flex-direction: row !important; max-height: none !important; }
}

.urun-galeri-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /*overflow-y: auto;*/
    padding-right: 2px;
}

.urun-thumb {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    width: 96px;
    height: 84px;
    transition: border-color .2s;
}

.urun-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.urun-thumb.active {
    border-color: #2caae2;
    box-shadow: 0 4px 12px rgba(44, 170, 226, .25);
}

.urun-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 22px;
}

.urun-galeri-main {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    min-height: 400px;
}

.urun-galeri-main .carousel-inner,
.urun-galeri-main .carousel-item {
    height: 540px;
}

@media (max-width: 991px) {
    .urun-galeri-main .carousel-inner,
    .urun-galeri-main .carousel-item { height: 420px; }
}

.urun-galeri-main .carousel-item a,
.urun-galeri-main .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.urun-galeri-main .carousel-item img {
    object-fit: contain;
    background: #fff;
}

.urun-video-cover {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.urun-video-cover img { width: 100%; height: 100%; object-fit: contain; }

/* ─── İletişim Sayfası / Footer Form (paylaşımlı tasarım) ────────────── */
.iletisim-page {
    --ip-blue: #29a8e0;
    --ip-input-bg: #f0eeeb;
}
.iletisim-page .ip-container {
    margin: 0 auto;
    padding: 56px 24px;
}
.iletisim-page .contact-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: start;
}
.iletisim-page .pretitle {
    font-size: 13.5px;
    color: #6b6b6b;
    font-weight: 400;
    letter-spacing: .2px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.iletisim-page .contact-info h2,
.iletisim-page .contact-form h2 {
    font-size: 25px;
    font-weight: 800;
    color: #000;
    margin-bottom: 18px;
    letter-spacing: -.2px;
}
.iletisim-page .contact-info .desc {
    color: #4e4e4e;
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 42px;
    max-width: 520px;
}
.iletisim-page .info-block h3,
.iletisim-page .info-grid h3 {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #000;
}
.iletisim-page .address {
    display: flex;
    gap: 7px;
    color: #3d3d3d;
    font-size: 15.3px;
    margin-bottom: 44px;
    align-items: flex-start;
}
.iletisim-page .address i {
    color: var(--ip-blue);
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}
.iletisim-page .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
}
.iletisim-page .info-grid p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15.2px;
    color: #2f2f2f;
    margin-bottom: 4px;
}
.iletisim-page .info-grid a {
    color: inherit;
    text-decoration: none;
}
.iletisim-page .info-grid a:hover {
    color: var(--ip-blue);
}
.iletisim-page .info-grid i {
    color: var(--ip-blue);
    font-size: 17px;
    width: 20px;
    text-align: center;
}
.iletisim-page .contact-form { padding-top: 2px; }

.iletisim-page .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.iletisim-page .form-group {
    position: relative;
    margin-bottom: 0;
}
.iletisim-page .form-group input,
.iletisim-page .form-group textarea {
    width: 100%;
    background: var(--ip-input-bg);
    border: none;
    border-radius: 5px;
    padding: 15px 42px 15px 16px;
    font-size: 14.5px;
    font-family: inherit;
    color: #222;
    outline: none;
    transition: box-shadow .2s;
}
.iletisim-page .form-group input:focus,
.iletisim-page .form-group textarea:focus {
    box-shadow: 0 0 0 2px rgba(41,168,224,.25);
}
.iletisim-page .form-group input::placeholder,
.iletisim-page .form-group textarea::placeholder {
    color: #444;
    font-weight: 400;
}
.iletisim-page .form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ip-blue);
    font-size: 14px;
    pointer-events: none;
}
.iletisim-page .form-group.full {
    margin-bottom: 18px;
}
.iletisim-page .form-group textarea {
    min-height: 168px;
    resize: vertical;
    padding-top: 14px;
    line-height: 1.5;
}
.iletisim-page .form-group.full i {
    top: 16px;
    transform: none;
    font-size: 15px;
}
.iletisim-page .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0 14px;
}
.iletisim-page .checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 15px;
    height: 15px;
    accent-color: var(--ip-blue);
    cursor: pointer;
    flex-shrink: 0;
}
.iletisim-page .checkbox label {
    font-size: 14.3px;
    color: #111;
    cursor: pointer;
    line-height: 1.4;
}
.iletisim-page button[type="submit"] {
    width: 100%;
    background: var(--ip-blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .05s;
    margin-top: 4px;
}
.iletisim-page button[type="submit"]:hover { background: #2395c7; }
.iletisim-page button[type="submit"]:active { transform: translateY(1px); }

.iletisim-page .ip-alert {
    padding: 14px 18px;
    border-radius: 5px;
    margin-bottom: 18px;
    font-size: 14.5px;
}
.iletisim-page .ip-alert i { margin-right: 6px; }
.iletisim-page .ip-alert-success { background: #e6f6ed; color: #1a7f3e; }
.iletisim-page .ip-alert-danger  { background: #fdecec; color: #b02a37; }

.iletisim-page .map-section {
    width: 100%;
    height: 520px;
    margin-top: 22px;
    position: relative;
    overflow: hidden;
}
.iletisim-page .map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 1024px) {
    .iletisim-page .contact-wrapper { gap: 48px; }
}
@media (max-width: 900px) {
    .iletisim-page .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .iletisim-page .contact-info .desc { max-width: none; }
}
@media (max-width: 600px) {
    .iletisim-page .ip-container { padding: 28px 18px 40px; }
    .iletisim-page .contact-info h2,
    .iletisim-page .contact-form h2 { font-size: 22px; }
    .iletisim-page .form-row,
    .iletisim-page .info-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .iletisim-page .info-grid { gap: 28px; }
    .iletisim-page .map-section { height: 420px; }
}

.urun-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    font-size: 64px;
    transition: background .2s;
}

.urun-video-cover:hover .urun-video-play { background: rgba(0, 0, 0, .55); }

.urun-galeri-main .carousel-control-prev,
.urun-galeri-main .carousel-control-next {
    width: 40px;
    /*    background: rgba(0, 0, 0, .35);
    opacity: .8;
    border-radius: 0;*/
    background: transparent;
    opacity: 1;
    border-radius: 0;
}
    .urun-galeri-main .carousel-control-prev .carousel-control-prev-icon,
    .urun-galeri-main .carousel-control-next .carousel-control-next-icon {
        filter: invert(1);
    }
/* Ürün Tab Strip */
.urun-tab-section { background: #fff; }

.tab-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--border, #e5e7eb);
    position: relative;
    margin-bottom: -2px;
    padding: 0;
    list-style: none;
}

.tab-btn {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #000;
    background: none;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
    outline: none;
}

.tab-btn.active {
    color: #fff;
    font-weight: bold;
    background-color: var(--accent, #2caae2);
    border-radius: 12px 12px 0 0;
}

.tab-btn .tab-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--border, #e5e7eb);
    color: #1c1c1c;
    font-size: 0.65rem;
    font-weight: 700;
    margin-right: 8px;
    transition: background 0.25s, color 0.25s;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent, #2caae2);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn.active .tab-num {
    background: #fff;
    color: var(--accent, #2caae2);
}

.tab-btn.active::after { transform: scaleX(1); }

.urun-tab-content { background: #fff; }

/* SSS / FAQ Bölümü */
.urun-sss-section .detay-title { margin-bottom: 25px; }
.urun-sss-section .detay-title h1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(22px, 2.4vw, 32px);
    margin: 0 0 6px;
    color: #1c1c1c;
}

.urun-sss-section .detay-title h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #6b7280;
    margin: 0;
}

.productAccordian .accordian-wrapper {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s;
}

.productAccordian .accordian-wrapper.open {
    border-color: #2caae2;
}

.productAccordian .accordion-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1c1c1c;
    background: #fff;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.productAccordian .accordion-toggle:hover { background: #f5f8fb; }

.productAccordian .accordion-toggle.active {
    background: #2caae2;
    color: #fff;
}

.productAccordian .accordion-toggle .icon-toggle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .08);
    color: #1c1c1c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.productAccordian .accordion-toggle .icon-toggle::before { content: '+'; }

.productAccordian .accordion-toggle.active .icon-toggle {
    background: rgba(255, 255, 255, .25);
    color: #fff;
}

.productAccordian .accordion-toggle.active .icon-toggle::before { content: '×'; font-size: 18px; }

.productAccordian .accordion-content {
    padding: 18px 22px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.productAccordian .accordion-content .custom-tab {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.7;
}

/* SSS sağ banner kutusu */
.urun-sss-section .sag-cont {
    position: relative;
    border-radius: 12px;
    padding: 30px 30px 60px;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-color: #1c1c1c;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    text-align: center;
}

.urun-sss-section .sag-cont::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .65) 100%);
}

.urun-sss-section .sag-cont > * { position: relative; z-index: 1; }

.urun-sss-section .sag-cont h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.urun-sss-section .sag-cont p {
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 14px;
}

.urun-sss-section .sag-cont .op-primary-button {
    display: inline-block;
    background: #2caae2;
    color: #fff;
    padding: 8px 22px;
    border-radius: 22px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background .2s;
}

.urun-sss-section .sag-cont .op-primary-button:hover { background: #1f8fc2; }

/* ─── Hakkımızda Sayfa Hero ───────────────────────────────────────── */
.mdl-textoseofoto .mdl-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 11.5rem;
    position: relative;
    box-sizing: border-box;
    padding: 6rem 1rem;
    z-index: 1;
}

@media (max-width: 991px) {
    .mdl-textoseofoto .mdl-container { gap: 3rem; padding: 4rem 1rem; flex-direction: column; }
}

.mdl-textoseofoto .mdl-container .m-content { max-width: 66.6rem; width: 100%; }

.mdl-textoseofoto .mdl-container .m-content .m-title {
    font-family: "Montserrat", sans-serif;
    margin: 0 0 20px;
    line-height: 1.1;
    position: relative;
    color: #000;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: 0;
}

.mdl-textoseofoto .mdl-container .m-content .m-text {
    max-width: 80rem;
    width: 100%;
    color: #000;
    line-height: 1.75;
    font-size: 18px;
    font-weight: 300;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0;
}

.mdl-textoseofoto .mdl-container .m-imagenes {
    max-width: 35em;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.mdl-textoseofoto .mdl-container .m-imagenes .m-main,
.mdl-textoseofoto .mdl-container .m-imagenes .m-little {
    position: relative;
    overflow: hidden;
    border-radius: .8rem;
}

.mdl-textoseofoto .mdl-container .m-imagenes .m-main {
    max-width: 39rem;
    width: calc(100% - 14rem);
    height: 24.4vw;
    min-height: 240px;
    z-index: 1;
}

.mdl-textoseofoto .mdl-container .m-imagenes .m-little {
    max-width: 20rem;
    width: 100%;
    height: 15.5vw;
    min-height: 160px;
    align-self: flex-end;
    margin-top: -11rem;
    z-index: 2;
}

@media (max-width: 575px) {
    .mdl-textoseofoto .mdl-container .m-imagenes .m-main,
    .mdl-textoseofoto .mdl-container .m-imagenes .m-little {
        max-width: 100%; width: 100%; height: auto; min-height: 200px;
    }
    .mdl-textoseofoto .mdl-container .m-imagenes .m-little { margin-top: 1rem; align-self: stretch; }
}

.mdl-textoseofoto .mdl-container .m-imagenes .m-main .img,
.mdl-textoseofoto .mdl-container .m-imagenes .m-little .img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border-radius: .8rem;
    transition: transform 3s;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.mdl-textoseofoto .mdl-container .m-imagenes .m-main:hover .img,
.mdl-textoseofoto .mdl-container .m-imagenes .m-little:hover .img {
    transform: scale(1.05);
}

/* contentbx dark */
section.contentbx.dark {
    position: relative;
    padding: 90px 0;
    background-color: #f4f8fe;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.contentbx h2 {
    text-align: left;
    margin-bottom: 40px;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    position: relative;
    color: #000;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: 0;
}

section.contentbx h2 span {
    display: block;
    color: #000;
    max-width: 100%;
    margin-bottom: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -.3px;
    font-size: 16px;
}

.latestwrap {
    display: flex;
    width: 100%;
    height: 500px;
    overflow: hidden;
    gap: 2px;
}

@media (max-width: 991px) {
    .latestwrap { flex-direction: column; height: auto; gap: 14px; }
}

.latestwrap .latestbx {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: flex 0.5s ease-in-out;
}

.latestwrap .latestbx.active,
.latestwrap .latestbx:hover {
    flex: 2;
}

.latestwrap .latestbx .imgbx {
    display: block;
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.latestwrap .imgbx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.latestbx .roungimage { border-radius: 8px; }

.latestbx .textbx {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 1;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .25s ease-in-out;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 60%, rgba(0,0,0,.75) 100%);
}

.latestbx .textbx h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #EFEDE8;
    text-transform: none;
    line-height: 1.1;
    margin: 0 0 15px;
    font-size: 28px;
}

.latestbx .textbx p,
.latestbx .textbx a {
    color: #EFEDE8;
    text-align: left;
}

.latestbx .descnbx {
    display: none;
    transition: all .25s ease-in-out;
    color: #EFEDE8;
}

.latestbx .descnbx p { margin: 0 0 15px; line-height: 1.5; font-size: 14px; }

.latestbx.active .descnbx,
.latestbx:hover .descnbx { display: block; }

@media (max-width: 991px) {
    .latestwrap .latestbx {
        flex: 0 0 auto;
        height: 460px;
        transition: height .4s ease-in-out;
    }
    .latestwrap .latestbx.active,
    .latestwrap .latestbx:hover {
        flex: 0 0 auto;
        height: 460px;
    }
    .latestbx .descnbx { display: block; }
}

.arrowlink {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px auto;
    padding-right: 20px;
    transition: all .25s ease-in-out;
    color: #2e2e2e;
    background-image: url('/themes/default/img/arrow-down-right.svg');
}

.arrowlink.whitearrow {
    color: #EFEDE8;
    background-image: url('/themes/default/img/arrow-right.svg');
}

.arrowlink:hover { padding-right: 26px; }

/* ─── Breadcrumb Hero ─────────────────────────────────────────────── */
.breadcrumb-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    padding: 180px 0 60px;
    overflow: hidden;
    background-color: #0a1f44;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 991px) {
    .breadcrumb-hero { padding: 180px 0 40px; min-height: 260px; }
}

@media (max-width: 575px) {
    .breadcrumb-hero { padding: 210px  0 30px; min-height: 220px; }
}

.breadcrumb-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.breadcrumb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 60%, rgba(0,0,0,.55) 100%);
    z-index: 1;
}

.breadcrumb-hero__inner {
    position: relative;
    z-index: 2;
}

.breadcrumb-hero__title {
    font-weight: 700;
    font-size: clamp(1.6rem, 2.4vw, 2.4rem);
    margin: 0 0 .5rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.breadcrumb-hero__trail {
    background: transparent;
    padding: 0;
}

.breadcrumb-hero__trail .breadcrumb-item,
.breadcrumb-hero__trail .breadcrumb-item a {
    color: rgba(255,255,255,.85);
}

.breadcrumb-hero__trail .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-hero__trail .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.55);
}

/* ─── WhatsApp floating button — pulse rings ─────────────────────── */
@keyframes whatsappPulse {
    0%   { transform: scale(1);   opacity: .55; }
    70%  { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes whatsappPulse2 {
    0%   { transform: scale(1);   opacity: .35; }
    70%  { transform: scale(2.8); opacity: 0; }
    100% { transform: scale(2.8); opacity: 0; }
}

a[href*="wa.me"][class*="rounded-circle"] {
    position: fixed;
    overflow: visible;
    transition: transform .25s ease;
}

a[href*="wa.me"][class*="rounded-circle"]::before,
a[href*="wa.me"][class*="rounded-circle"]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    pointer-events: none;
}

a[href*="wa.me"][class*="rounded-circle"]::before {
    animation: whatsappPulse 2s infinite cubic-bezier(.4, 0, .2, 1);
}

a[href*="wa.me"][class*="rounded-circle"]::after {
    animation: whatsappPulse2 2s infinite cubic-bezier(.4, 0, .2, 1);
    animation-delay: .4s;
}

a[href*="wa.me"][class*="rounded-circle"]:hover {
    transform: scale(1.08);
}

a[href*="wa.me"][class*="rounded-circle"]:hover::before,
a[href*="wa.me"][class*="rounded-circle"]:hover::after {
    animation-duration: 1.2s;
}

