@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&display=swap');

/* —— Global: mobil yatay kayma önleme —— */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

/* —— Site header (referans görsel) —— */
.site-header {
    background-color: #fff;
}

/* Menü sabitlendiğinde yer tutucu (layout zıplamasın) */
.site-header-nav-spacer {
    width: 100%;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Kaydırınca JS ile .is-fixed eklenir — sticky’den daha güvenilir (IIS/WebForms) */
.site-header-nav-sticky {
    background-color: #fff;
    transition: box-shadow 0.2s ease;
}

.site-header-nav-sticky.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.site-header .header-contact {
    color: #4a4a4a;
    font-size: 0.8125rem;
}

.site-header .header-contact-link,
.site-header .header-contact-link:visited {
    color: #4a4a4a;
    text-decoration: none;
}

.site-header .header-contact-link:hover,
.site-header .header-contact-link:focus {
    color: #222;
    text-decoration: none;
}

.site-header .logo-wordmark {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.02em;
}

.site-header .logo-du {
    color: #e37222;
}

.site-header .logo-ka {
    color: #333333;
}

.site-header .logo-tagline {
    font-family: "Montserrat", sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #333333;
    margin-top: 0.2rem;
    letter-spacing: 0.01em;
}

/* Mobil: kompakt logo (+ dil/arama araçları; menü alta sarılacak şekilde wrap) */
@media (max-width: 991.98px) {
    .site-header-nav-sticky .navbar > .container-fluid {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.35rem;
    }

    .site-header .navbar-brand {
        max-width: min(54vw, 190px);
        min-width: 0;
        flex: 1 1 auto;
        margin-right: 0.25rem !important;
        overflow: hidden;
    }

    .site-header .navbar-brand .logo-wordmark {
        display: block;
        width: 100%;
    }

    .site-header .navbar-brand .logo-wordmark svg {
        width: auto !important;
        max-width: 100%;
        height: auto;
        max-height: 40px;
        display: block;
    }

    .site-header .header-navbar-toolbar {
        flex-shrink: 0;
    }

    /* Hamburger yanındaki dil: yuvarlak globe ikon */
    .site-header .lang-dropdown-toolbar .lang-dropdown-btn--icon {
        min-width: 2.5rem;
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
    }

    .site-header .lang-dropdown-toolbar .header-lang-globe-svg {
        flex-shrink: 0;
        width: 21px;
        height: 21px;
        stroke: currentColor;
    }

}

/* Mobil: menü Bootstrap collapse ile açılır/kapanır (yalnızca .show iken görünür) */
@media (max-width: 991.98px) {
    .site-header .site-header-navbar-toggler.navbar-toggler {
        width: 2.5rem;
        height: 2.5rem;
        box-shadow: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header .site-header-navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(227, 114, 34, 0.25);
    }

    .site-header-nav-sticky #navbarMain.navbar-collapse-stack.collapse.show {
        flex-basis: 100%;
        width: 100%;
        max-width: 100%;
        order: 10;
        margin-top: 0.5rem;
        padding-top: 0.65rem;
        border-top: 1px solid rgba(0, 0, 0, 0.07);
        display: flex !important;
        flex-wrap: wrap;
        align-items: stretch !important;
        flex-direction: column;
    }

    .site-header-nav-sticky #navbarMain.navbar-collapse-stack.collapse.show .navbar-nav {
        width: 100%;
        margin-bottom: 0 !important;
    }

    .site-header-nav-sticky .navbar > .container-fluid > .navbar-collapse-stack {
        align-self: stretch;
    }
}

@media (min-width: 992px) {
    .site-header-nav-sticky .navbar > .container-fluid {
        flex-wrap: nowrap !important;
    }

    .site-header-nav-sticky #navbarMain.navbar-collapse-stack.collapse:not(.show) {
        display: flex !important;
        flex-direction: row;
        flex-wrap: nowrap;
        height: auto !important;
    }

    .site-header-nav-sticky #navbarMain.navbar-collapse-stack {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
        order: 0;
        flex-grow: 1;
        flex-basis: auto;
        width: auto;
        max-width: none;
    }
}

.site-header .navbar-brand:focus-visible {
    outline: 2px solid rgba(227, 114, 34, 0.45);
    outline-offset: 2px;
}

/* Menü maddeleri arası boşluk */
.site-header ul.header-nav {
    gap: 0.35rem;
}

@media (min-width: 992px) {
    .site-header ul.header-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
}

.site-header .header-nav .header-nav-link {
    color: #333333 !important;
    font-size: 0.9375rem;
    font-weight: 700;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.site-header .header-nav .header-nav-link:hover,
.site-header .header-nav .header-nav-link:focus {
    color: #e37222 !important;
}

.site-header .header-nav .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.15em;
}

.site-header .header-icon-btn {
    color: #3d3d3d;
    line-height: 1;
}

.site-header .header-icon-btn:hover,
.site-header .header-icon-btn:focus {
    color: #e37222;
}

.site-header .lang-select,
.site-header .lang-dropdown-btn.lang-select {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.35rem;
    border: 1px solid #333333;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #333333;
    background: transparent;
    line-height: 1;
}

.site-header .lang-select:hover,
.site-header .lang-dropdown-btn.lang-select:hover,
.site-header .lang-dropdown-btn.lang-select:focus,
.site-header .lang-dropdown-btn.lang-select.show {
    border-color: #e37222;
    color: #e37222;
}

.site-header .lang-dropdown-btn.dropdown-toggle::after {
    display: none;
}

/* Dil menüsü (koyu panel, Google Çeviri tetikleyici) */
.site-header .lang-dropdown-menu {
    background-color: #1a1a1a;
    min-width: 12rem;
    padding: 0.4rem 0;
    margin-top: 0.45rem !important;
    border: none;
    border-radius: 0;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.25);
}

.site-header .lang-dropdown-header {
    color: rgba(255, 255, 255, 0.55);
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.5rem 1.15rem 0.35rem;
    margin-bottom: 0;
    text-transform: none;
}

.site-header .lang-dropdown-item {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.7rem 1.15rem;
}

.site-header .lang-dropdown-item:hover,
.site-header .lang-dropdown-item:focus {
    background-color: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.site-header .lang-dropdown-item.active,
.site-header .lang-dropdown-item:active {
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Google Çeviri widget — sağ altta neredeyse görünmez; banner iframe’lerini öldürmedik (çeviri zinciri kırılıyordu) */
#google_translate_element {
    position: fixed;
    right: 8px;
    bottom: 8px;
    width: auto;
    min-width: 120px;
    min-height: 32px;
    z-index: 99997;
    opacity: 0.05;
    overflow: visible;
    pointer-events: auto;
}

/* Gizlenmesi gereken öğeler: class="skiptranslate" */
.skiptranslate {
    display: none !important;
}

/* Banner iframe — dokunma: display:none / pointer-events:none çeviri zincirini bozabiliyordu; yalnızca üst boşluğu sıfırla */
.goog-te-menu-frame,
.goog-te-balloon-frame {
    max-height: none;
}

/* Google’ın sayfayı aşağı itmesini iptal et */
html.translated-ltr,
html.translated-rtl,
body {
    top: 0 !important;
    margin-top: 0 !important;
    position: static !important;
}

body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
    margin-top: 0 !important;
}

/* Tüm carousel geçişlerini daha akıcı yap */
.carousel-item {
    transition: transform 0.9s ease-in-out;
}

/* —— Ana sayfa: marka metni + ürün karuseli (Figma) —— */
.home-brand-section {
    background-color: #f5f5f5;
}

.home-brand-copy {
    text-align: center;
    max-width: 75.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* Başlık: Montserrat SemiBold 75px, #42474C */
.home-brand-title {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: clamp(2.25rem, 8vw, 4.6875rem);
    line-height: 1.1;
    color: #42474c;
    letter-spacing: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(1rem, 2vw, 1.75rem);
    max-width: none;
    text-align: center;
    white-space: nowrap;
}

/* Paragraf: Montserrat Medium 25px, #3E4649 */
.home-brand-intro {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.0625rem, 2.8vw, 1.5625rem);
    line-height: 1.45;
    font-weight: 500;
    color: #3e4649;
    letter-spacing: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    text-align: center;
}

.home-product-wrap {
    position: relative;
    padding-left: 2.75rem;
    padding-right: 2.75rem;
}

@media (min-width: 768px) {
    .home-product-wrap {
        padding-left: 3.25rem;
        padding-right: 3.25rem;
    }
}

.home-product-carousel-ctrl {
    width: 2.25rem;
    opacity: 0.9;
}

.home-product-carousel-ctrl .carousel-control-prev-icon,
.home-product-carousel-ctrl .carousel-control-next-icon {
    width: 1.65rem;
    height: 1.65rem;
    filter: brightness(0) saturate(100%) invert(0.32);
}

.home-product-card-img {
    overflow: hidden;
    background-color: #e8e8e8;
}

.home-product-card-img img {
    width: 100%;
    height: 100%;
}

.home-product-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #2b2b2b;
    margin-top: 0.9rem;
    text-align: left;
}

.home-product-card-code {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #777;
    text-align: left;
}

/* —— Tasarım bölümü: görsel ile birebir hizaya yakın —— */
.home-design-section {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
    padding-top: 4.25rem;
    padding-bottom: 5rem;
}

.home-design-section > .container {
    position: relative;
    z-index: 2;
}

.home-design-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-design-bg-inner {
    position: absolute;
    left: 50%;
    top: 1.55rem;
    transform: translateX(-50%);
    width: min(100%, 1240px);
    text-align: center;
}

.home-design-bg-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 56%;
    height: 1px;
    background-color: #6a6d72;
    opacity: 0.7;
    z-index: 1;
}

.home-design-bg-word {
    position: relative;
    z-index: 2;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: clamp(3.2rem, 11.5vw, 7.2rem);
    line-height: 0.92;
    letter-spacing: 0;
    white-space: nowrap;
    height: 1em;
}

.home-design-bg-part--light {
    display: block;
    color: #dfe1e4;
}

.home-design-bg-part--dark {
    position: absolute;
    left: 59%;
    top: -0.11em;
    transform: translateX(-50%);
    color: #42474c;
}

.home-design-collage {
    position: relative;
    min-height: 24rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.home-design-collage-card {
    position: absolute;
    width: 165px;
    height: 235px;
    overflow: hidden;
    background-color: #ddd;
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.18);
}

.home-design-collage-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-design-collage-img--warm {
    filter: sepia(0.16) saturate(0.9) brightness(1.06);
}

.home-design-collage-img--dark {
    filter: grayscale(1) brightness(0.42) contrast(1.08);
}

.home-design-collage-card--1 {
    left: 0;
    top: 0;
    z-index: 1;
}

.home-design-collage-card--2 {
    left: 78px;
    top: 44px;
    z-index: 2;
}

.home-design-collage-card--3 {
    left: 156px;
    top: 98px;
    z-index: 3;
}

.home-design-copy {
    text-align: left;
    max-width: 33rem;
}

.home-design-text {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.125rem);
    line-height: 1.38;
    font-weight: 400;
    color: #555b60;
    margin-bottom: 2rem;
}

.home-design-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 264px;
    height: 54px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 0.9375rem;
    color: #42474c;
    background-color: transparent;
    border: 1px solid #72767a;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.home-design-btn:hover {
    color: #fff;
    background-color: #42474c;
    border-color: #42474c;
}

.home-design-btn:focus-visible {
    outline: 2px solid rgba(66, 71, 76, 0.45);
    outline-offset: 3px;
}

@media (min-width: 992px) {
    .home-design-section .row {
        margin-top: 8.5rem;
    }

    .home-design-collage {
        margin-left: 1.5rem;
        margin-right: auto;
    }

    .home-design-copy {
        margin-left: auto;
        margin-right: 1rem;
    }
}

@media (max-width: 991.98px) {
    .home-design-bg-inner {
        top: 1.1rem;
    }

    .home-design-bg-line {
        top: 60%;
    }

    .home-design-collage {
        min-height: 22rem;
    }

    .home-design-copy {
        max-width: 100%;
    }

    .home-design-text {
        font-size: clamp(1rem, 2.1vw, 1.125rem);
    }

    .home-design-btn {
        width: 100%;
        max-width: 360px;
    }
}

/* —— Koleksiyon bölümü (Tasarım altı) —— */
.home-collection-section {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4.5rem;
}

.home-collection-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-collection-bg-inner {
    position: absolute;
    left: 50%;
    top: 1.2rem;
    transform: translateX(-50%);
    width: min(100%, 1240px);
    text-align: center;
}

.home-collection-bg-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 56%;
    height: 1px;
    background-color: #6d7075;
    opacity: 0.72;
    z-index: 1;
}

.home-collection-bg-word {
    position: relative;
    z-index: 2;
    height: 1em;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.2rem, 11.2vw, 6.7rem);
    line-height: 0.92;
    letter-spacing: 0;
    white-space: nowrap;
}

.home-collection-bg-light {
    display: block;
    font-weight: 500;
    color: #dee0e3;
}

.home-collection-bg-dark {
    position: absolute;
    left: 57.7%;
    top: -0.1em;
    transform: translateX(-50%);
    font-weight: 600;
    color: #41474d;
}

.home-collection-section > .container {
    position: relative;
    z-index: 2;
}

.home-collection-topline {
    margin-top: 5.4rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #70757a;
    padding-bottom: 0.45rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.05rem, 2vw, 2.05rem);
    font-weight: 700;
    color: #3f454c;
}

.home-collection-text {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.98rem, 1.1vw, 1.08rem);
    line-height: 1.45;
    color: #3f454c;
    max-width: 21rem;
}

.home-collection-carousel-wrap {
    position: relative;
    padding-left: 2rem;
    padding-right: 2rem;
}

.home-collection-ctrl {
    width: 1.8rem;
    opacity: 0.9;
}

.home-collection-ctrl-prev {
    left: -0.55rem;
}

.home-collection-ctrl-next {
    right: -0.55rem;
}

.home-collection-ctrl .carousel-control-prev-icon,
.home-collection-ctrl .carousel-control-next-icon {
    width: 1.35rem;
    height: 1.35rem;
    filter: brightness(0) saturate(100%) invert(0.35);
}

.home-collection-card {
    width: 100%;
    aspect-ratio: 3 / 4.2;
    overflow: hidden;
    background-color: #2f363d;
    position: relative;
}

.home-collection-card img {
    filter: grayscale(0.95) brightness(0.35) contrast(1.1);
}

.home-collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(44, 50, 58, 0.28), rgba(44, 50, 58, 0.42));
    pointer-events: none;
}

/* Tek katalog görseli (10-secret.jpg): tüm kartlarda aynı ton */
.home-collection-card--cover1 img,
.home-collection-card--cover2 img,
.home-collection-card--cover3 img {
    filter: grayscale(0.65) brightness(0.3) contrast(1.1);
}

.home-collection-card-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.1rem;
    z-index: 3;
    box-sizing: border-box;
    padding: 0 clamp(0.75rem, 4vw, 1.25rem);
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: clamp(0.78rem, 1.1vw, 1.85rem);
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.92);
    pointer-events: none;
    text-transform: uppercase;
}

.home-collection-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.8rem;
}

.home-collection-footer-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.9rem);
    font-weight: 700;
    color: #3f454c;
}

.home-collection-indicators {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
}

.home-collection-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: #8a8e93;
    opacity: 0.8;
}

.home-collection-dot.is-active {
    background-color: #585d63;
}

@media (max-width: 991.98px) {
    .home-collection-bg-inner {
        top: 0.8rem;
    }

    .home-collection-bg-word {
        font-size: clamp(2.5rem, 11vw, 5.2rem);
    }

    .home-collection-bg-dark {
        left: 59%;
    }

    .home-collection-topline {
        margin-top: 4.25rem;
        font-size: clamp(1rem, 4.3vw, 1.45rem);
    }

    .home-collection-text {
        max-width: 100%;
        margin-bottom: 0.8rem;
    }

    .home-collection-carousel-wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* —— Projeler bölümü (Koleksiyon altı) —— */
.home-projects-section {
    position: relative;
    background: linear-gradient(110deg, #66686b 0%, #5f6165 38%, #57595e 100%);
    overflow: hidden;
    padding-top: 4.25rem;
    padding-bottom: 3.8rem;
}

.home-projects-section > .container {
    position: relative;
    z-index: 2;
}

.home-projects-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-projects-bg-inner {
    position: absolute;
    left: 50%;
    top: 1.15rem;
    transform: translateX(-50%);
    width: min(100%, 1240px);
    text-align: center;
}

.home-projects-bg-word {
    position: relative;
    height: 1em;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 11vw, 6.45rem);
    line-height: 0.92;
    letter-spacing: 0;
    white-space: nowrap;
}

.home-projects-bg-light {
    display: block;
    color: rgba(255, 255, 255, 0.17);
    font-weight: 500;
}

.home-projects-bg-dark {
    position: absolute;
    left: 58%;
    top: -0.11em;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.home-projects-copy {
    position: relative;
    z-index: 3;
    color: #f4f4f4;
    padding-top: 5.3rem;
}

.home-projects-kicker {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.4rem, 2vw, 2.05rem);
    font-weight: 400;
    line-height: 1.2;
    color: #f2f2f2;
}

.home-projects-text,
.home-projects-list {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.95rem, 1.15vw, 1.125rem);
    line-height: 1.4;
    color: #f2f2f2;
}

.home-projects-link {
    display: inline-block;
    position: relative;
    z-index: 4;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.92rem, 1vw, 1rem);
    font-weight: 400;
    color: #f2f2f2;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    padding-top: 0.45rem;
    cursor: pointer;
}

.home-projects-link:hover {
    color: #ffffff;
}

.home-projects-grid {
    padding-top: 5.1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 0.98fr;
    grid-template-rows: 278px 278px;
    gap: 1.3rem;
}

.home-projects-card {
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.08);
    position: relative;
    min-height: 0;
}

.home-projects-card > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-projects-card-lg {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.home-projects-card-mosaic {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    position: relative;
}

.home-projects-card-mosaic > img {
    z-index: 0;
    filter: sepia(0.45) saturate(1.05) brightness(0.9);
}

.home-projects-card-mosaic::before,
.home-projects-card-mosaic::after {
    content: "";
    position: absolute;
    z-index: 1;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.72);
}

.home-projects-card-mosaic::before {
    left: 0;
    right: 0;
    top: 55%;
    height: 3px;
}

.home-projects-card-mosaic::after {
    top: 0;
    bottom: 0;
    right: 0px;
    width: 0px;
}

.home-projects-card-palette {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: transparent;
}

.home-projects-color {
    width: 100%;
}

.home-projects-color-1 {
    background: #c8c4ba;
}

.home-projects-color-2 {
    background: #b8762f;
}

.home-projects-color-3 {
    background: #b44a0f;
}

.home-projects-color-4 {
    background: #d19b3b;
}

.home-projects-card-wide {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.home-projects-card-empty {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    background: #f3f3f3;
}

@media (max-width: 1199.98px) {
    .home-projects-grid {
        grid-template-rows: 245px 245px;
    }
}

@media (max-width: 991.98px) {
    .home-projects-copy,
    .home-projects-grid {
        padding-top: 3.65rem;
    }

    .home-projects-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
    }

    /* Satır yüksekliği auto iken % yükseklik çalışmaz: görseller absolute + aspect-ratio */
    .home-projects-card > img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .home-projects-card-lg {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .home-projects-card-mosaic {
        grid-column: 1 / 2;
        grid-row: auto;
        aspect-ratio: 1;
        min-height: 0;
    }

    .home-projects-card-palette {
        grid-column: 2 / 3;
        grid-row: auto;
        aspect-ratio: 1;
        min-height: 0;
    }

    .home-projects-card-wide {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .home-projects-card-empty {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 21 / 9;
        min-height: 0;
    }
}

/* —— Du&Ka Dünyası bölümü —— */
.home-world-section {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
    padding-top: 4.1rem;
    padding-bottom: 4.3rem;
}

.home-world-section > .container {
    position: relative;
    z-index: 2;
}

.home-world-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-world-bg-inner {
    position: absolute;
    left: 50%;
    top: 1.05rem;
    transform: translateX(-50%);
    width: min(100%, 1240px);
    text-align: center;
}

.home-world-bg-word {
    position: relative;
    height: 1em;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.8rem, 10vw, 6.15rem);
    line-height: 0.92;
    letter-spacing: 0;
    white-space: nowrap;
}

.home-world-bg-light {
    display: block;
    font-weight: 500;
    color: #e0e1e3;
}

.home-world-bg-dark {
    position: absolute;
    left: 50%;
    top: -0.1em;
    transform: translateX(-50%);
    font-weight: 600;
    color: #3f454c;
}

.home-world-bg-line {
    margin-top: 0.42rem;
    height: 1px;
    background-color: #6f7479;
    opacity: 0.7;
}

.home-world-stats {
    margin-top: 7.7rem;
    margin-bottom: 3.1rem;
}

.home-world-stat {
    color: #434950;
}

.home-world-icon {
    width: 2.2rem;
    height: 2.2rem;
    color: #50565d;
    margin-bottom: 0.5rem;
}

.home-world-number {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.7rem, 2.2vw, 2.4rem);
    line-height: 1.1;
    font-weight: 700;
    color: #434950;
}

.home-world-label {
    margin-top: 0.45rem;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.82rem, 0.95vw, 1.02rem);
    font-weight: 500;
    color: #434950;
}

.home-world-features {
    margin-top: 3.2rem;
}

.home-world-feature {
    color: #434950;
}

.home-world-feature-icon {
    width: 2rem;
    height: 2rem;
    color: #50565d;
    margin-bottom: 0.6rem;
}

.home-world-feature-label {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.98rem, 1vw, 1.12rem);
    line-height: 1.2;
    font-weight: 600;
    color: #434950;
}

@media (max-width: 991.98px) {
    .home-world-bg-word {
        font-size: clamp(2.2rem, 10.5vw, 4.8rem);
    }

    .home-world-stats {
        margin-top: 6rem;
        margin-bottom: 2.1rem;
    }

    .home-world-features {
        margin-top: 2.1rem;
    }
}

/* —— Blog bölümü —— */
.home-blog-section {
    position: relative;
    background: linear-gradient(to bottom, #f5f5f5 0 43%, #1e1f23 43% 100%);
    overflow: hidden;
    padding-top: 3.95rem;
    padding-bottom: 4.75rem;
}

.home-blog-section > .container {
    position: relative;
    z-index: 2;
}

.home-blog-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.home-blog-bg-inner {
    position: absolute;
    left: 50%;
    top: 1.1rem;
    transform: translateX(-50%);
    width: min(100%, 1240px);
    text-align: left;
}

.home-blog-bg-word {
    position: relative;
    height: 1em;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 10.8vw, 6.15rem);
    line-height: 0.92;
    letter-spacing: 0;
    white-space: nowrap;
    margin-left: clamp(1rem, 3.5vw, 4.2rem);
}

.home-blog-bg-light {
    display: block;
    color: #dcdee1;
    font-weight: 500;
}

.home-blog-bg-dark {
    position: absolute;
    left: 14.8%;
    top: -0.12em;
    transform: translateX(0);
    color: #3f454c;
    font-weight: 500;
}

.home-blog-bg-line {
    margin-top: 0.5rem;
    margin-left: clamp(1rem, 3.5vw, 4.2rem);
    margin-right: 0;
    height: 1px;
    background-color: #7a7f84;
    opacity: 0.58;
}

.home-blog-cards-row {
    margin-top: 8.35rem;
}

.home-blog-card {
    display: flex;
    flex-direction: column;
    background-color: #595b5f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-height: 100%;
}

.home-blog-card-image {
    flex: 0 0 auto;
    height: 172px;
    box-sizing: border-box;
    background-color: #e6e6e6;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.35);
    border-bottom: 0;
}

.home-blog-card-image img {
    display: block;
    filter: saturate(0.88) brightness(0.92);
}

.home-blog-card-image-dark {
    background-color: #3f4146;
    background-image: none;
}

.home-blog-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 0.85rem 0.75rem 0.95rem;
}

.home-blog-card-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1rem, 1.04vw, 1.25rem);
    font-weight: 500;
    line-height: 1.22;
    color: #f2f2f2;
    min-height: 3.25rem;
    margin-bottom: auto;
}

.home-blog-card-link {
    display: block;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-top: 0.55rem;
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.home-blog-all-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.55rem 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 25px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s;
}
.home-blog-all-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .home-blog-section {
        background: linear-gradient(to bottom, #f5f5f5 0 32%, #1e1f23 32% 100%);
    }

    .home-blog-bg-word {
        margin-left: 0;
        text-align: center;
    }

    .home-blog-bg-dark {
        left: 18%;
    }

    .home-blog-bg-line {
        margin-left: 0;
    }

    .home-blog-cards-row {
        margin-top: 6.4rem;
    }

    .home-blog-card {
        min-height: auto;
    }
}

/* —— Footer (görsel referans: #212121, punto ölçüleri) —— */
.site-footer {
    background-color: #212121;
    color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 1.75rem;
    position: relative;
    font-family: "Montserrat", sans-serif;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
}

.site-footer-top {
    margin-bottom: 2.5rem;
}

.site-footer-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.75rem;
}

.site-footer-logo-word {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.site-footer-logo-du,
.site-footer-logo-ka {
    color: #ffffff;
}

.site-footer-logo-tagline {
    margin-top: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}

.site-footer-newsletter {
    max-width: 520px;
}

.site-footer-newsletter-title {
    margin: 0 0 14px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
    text-transform: uppercase;
}

.site-footer-newsletter-group {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: none;
}

.site-footer-newsletter-group .form-control {
    height: 44px;
    border: 0;
    border-radius: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    background-color: #ffffff;
    color: #333333;
}

.site-footer-newsletter-group .form-control::placeholder {
    color: #9a9a9a;
}

.site-footer-newsletter-submit {
    min-width: 48px;
    border: 0;
    border-radius: 0;
    background-color: #ffffff;
    color: #1a1a1a;
    font-size: 18px;
    line-height: 1;
    padding: 0 12px;
}

.site-footer-newsletter-note {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
    color: #ffffff;
}

.site-footer-columns {
    margin-bottom: 2rem;
}

.site-footer-addresses {
    text-align: left;
}

.site-footer-address-item {
    margin-bottom: 14px;
}

.site-footer-address-heading {
    margin: 0 0 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.site-footer-address-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
    color: #cfcfcf;
}

.site-footer-contact {
    margin: 18px 0 0;
    font-size: 12px;
    line-height: 1.55;
    color: #ffffff;
}

.site-footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.site-footer-contact a:hover {
    color: #a0a0a0;
}

.site-footer-nav-col {
    text-align: center;
}

.site-footer-nav-title {
    margin: 0 0 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #ffffff;
}

.site-footer-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    display: inline-block;
}

.site-footer-nav-list li {
    margin-bottom: 6px;
}

.site-footer-nav-list a {
    font-size: 16px;
    font-weight: 500;
    color: #a0a0a0;
}

.site-footer-nav-list a:hover {
    color: #ffffff;
}

.site-footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.1rem;
    margin-top: 0.25rem;
}

.site-footer-policies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: flex-start;
}

.site-footer-policies a {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

.site-footer-policies a:hover {
    color: #a0a0a0;
}

.site-footer-social {
    display: inline-flex;
    gap: 10px;
    justify-self: center;
}

.site-footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.site-footer-social a:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.site-footer-social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.site-footer-copyright {
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
}

.site-footer-backtop {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.35);
    color: #a0a0a0;
    font-size: 22px;
    line-height: 1;
}

.site-footer-backtop:hover {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.55);
}

@media (max-width: 991.98px) {
    .site-footer-logo-word {
        font-size: 40px;
    }

    .site-footer-nav-col {
        text-align: left;
    }

    .site-footer-nav-list {
        display: block;
    }

    .site-footer-bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .site-footer-social {
        justify-self: start;
    }

    .site-footer-copyright {
        text-align: left;
    }

    .site-footer-backtop {
        top: auto;
        bottom: 16px;
        transform: none;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

/* —— /s/urunler_hepsi/ —— */
.page-urunler-hepsi {
    padding-bottom: 3rem;
}

.page-urunler-hepsi .main_katalog {
    /* Bootstrap .container sınıfı eklendi; max-width ve margin Bootstrap tarafından yönetilir */
}

.page-urunler-hepsi .urun-hepsi-hero.main_top {
    width: 100%;
    min-height: auto;
    height: auto;
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    padding: 2rem 2rem 2.25rem;
    background: linear-gradient(145deg, #faf6ef 0%, #f0e8d5 45%, #ebe4d6 100%);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(50, 62, 74, 0.08);
    border: 1px solid rgba(50, 62, 74, 0.06);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}

.page-urunler-hepsi .main_top_left {
    float: none;
    display: block;
    width: min(100%, 280px);
    padding: 0;
    margin: 0;
}

.page-urunler-hepsi .main_baslik {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #323e4a;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-urunler-hepsi .main_metin {
    color: #4a5568;
}

.page-urunler-hepsi .main_metin p {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0 0 0.85rem;
}

.page-urunler-hepsi .main_top_right {
    float: none;
    flex: 1;
    min-width: 0;
    margin: 0;
    margin-top: 0 !important;
    margin-right: 0 !important;
}

.page-urunler-hepsi .urun-hepsi-slider-wrap.slider {
    float: none;
    width: 100%;
    max-width: 820px;
    margin-left: auto;
}

.page-urunler-hepsi .katalog_urunler_kutucuk {
    width: 200px !important;
    padding-right: 0;
    margin-right: 0 !important;
}

.page-urunler-hepsi .urun-hepsi-card-link {
    display: block;
    color: #323e4a !important;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(50, 62, 74, 0.1);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-urunler-hepsi .urun-hepsi-card-link:hover {
    box-shadow: 0 10px 28px rgba(50, 62, 74, 0.14);
    transform: translateY(-3px);
}

.page-urunler-hepsi .urun-hepsi-card-img {
    overflow: hidden;
    background: #f0f0f0;
}

.page-urunler-hepsi .urun-hepsi-card-img img,
.page-urunler-hepsi .slider img.urun_kataloglar_list {
    width: 200px;
    height: 200px;
    max-width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.page-urunler-hepsi .urun-hepsi-card-link:hover .urun-hepsi-card-img img {
    transform: scale(1.04);
}

.page-urunler-hepsi .slider_bottom_bg {
    width: 100%;
    min-height: 44px;
    height: auto;
    padding: 0.5rem 0.65rem 0.65rem;
    background: #fff;
    color: #323e4a;
    border-top: 1px solid rgba(50, 62, 74, 0.06);
}

.page-urunler-hepsi .hr1 {
    width: 100%;
    max-width: 135px;
    height: 2px;
    background-color: #e8e0d0;
    margin-left: 0;
    margin-bottom: 0.35rem;
}

.page-urunler-hepsi .hr2 {
    width: 48px;
    height: 2px;
    background-color: #e37222;
    margin-left: 0;
}

.page-urunler-hepsi .slider_bottom_bg .oda_adi {
    margin-left: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
}

.page-urunler-hepsi .bx-wrapper {
    margin-bottom: 0 !important;
}

.page-urunler-hepsi .bx-wrapper .bx-prev,
.page-urunler-hepsi .bx-wrapper .bx-next {
    background: rgba(50, 62, 74, 0.85);
    border-radius: 50%;
    width: 36px;
    height: 36px;
}

.page-urunler-hepsi .bx-wrapper .bx-prev:hover,
.page-urunler-hepsi .bx-wrapper .bx-next:hover {
    background: #e37222;
}

.page-urunler-hepsi .main_mid1.urun-hepsi-colors {
    margin-bottom: 2rem;
}

.page-urunler-hepsi .mid1_baslik {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #323e4a;
    text-align: center;
    margin: 0 0 1.25rem;
}

.page-urunler-hepsi .mid1_table {
    display: block;
    width: 100%;
    height: auto;
    min-height: auto;
    margin: 0 auto;
    padding: 1.75rem 1.25rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(50, 62, 74, 0.07);
    border: 1px solid rgba(50, 62, 74, 0.06);
}

.page-urunler-hepsi .mid1_table_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
    width: 100%;
    margin: 0;
}

.page-urunler-hepsi .mid1_table_cell {
    margin: 0;
}

.page-urunler-hepsi .urun-hepsi-renk-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #323e4a !important;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 12px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.page-urunler-hepsi .urun-hepsi-renk-tile:hover {
    background: rgba(227, 114, 34, 0.08);
    transform: translateY(-2px);
}

.page-urunler-hepsi .mid1_table_cell img {
    width: 140px;
    height: 70px;
    object-fit: contain;
}

@media (min-width: 992px) {
    .page-urunler-hepsi .mid1_table_cell img {
        width: 156px;
        height: 78px;
    }
}

.page-urunler-hepsi .mid1_img_baslik {
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.page-urunler-hepsi .main_mid2.urun-hepsi-patterns {
    width: 100%;
    min-height: auto;
    height: auto;
    margin: 0 auto 2rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.5rem;
    background: transparent;
}

.page-urunler-hepsi .mid2_left {
    float: none;
    width: min(100%, 300px);
    height: auto;
    min-height: 200px;
    padding: 2rem 1.75rem;
    margin: 0;
    background: linear-gradient(160deg, #323e4a 0%, #2a3440 100%);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(50, 62, 74, 0.2);
}

.page-urunler-hepsi .mid2_yazi {
    margin: 0;
}

.page-urunler-hepsi .mid2_baslik {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.35;
}

.page-urunler-hepsi .mid2_metin {
    color: rgba(255, 255, 255, 0.88);
}

.page-urunler-hepsi .mid2_metin p {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
}

.page-urunler-hepsi .mid2_right {
    float: none;
    flex: 1;
    min-width: 0;
    width: auto !important;
    margin: 0 !important;
}

@media (min-width: 992px) {
    .page-urunler-hepsi .main_top {
        flex-wrap: nowrap;
        align-items: center;
    }

    .page-urunler-hepsi .main_top_left {
        flex: 0 0 260px;
    }
}

/* İkinci slider: metin kart dışında — tek kart görünümü */
.page-urunler-hepsi .urun-hepsi-patterns .katalog_urunler_kutucuk {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(50, 62, 74, 0.1);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-urunler-hepsi .urun-hepsi-patterns .katalog_urunler_kutucuk:hover {
    box-shadow: 0 10px 28px rgba(50, 62, 74, 0.14);
    transform: translateY(-3px);
}

.page-urunler-hepsi .urun-hepsi-patterns .urun-hepsi-card-link {
    box-shadow: none;
    border-radius: 0;
}

.page-urunler-hepsi .urun-hepsi-patterns .urun-hepsi-card-link:hover {
    transform: none;
    box-shadow: none;
}

.page-urunler-hepsi .urun-hepsi-patterns .slider_bottom_bg {
    border-top: 1px solid rgba(50, 62, 74, 0.06);
}

/* —— /urunlers ürün listesi —— */
.page-urunler-list {
    background-color: #f8f8f8;
    padding-bottom: 2.5rem;
}

.page-urunler-list .container {
    /* Bootstrap varsayılan container genişliği kullanılır */
}

.page-urunler-list .urunlers-breadcrumb {
    font-size: 0.8125rem;
    color: #8a9099;
}

.page-urunler-list .urunlers-breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.page-urunler-list .urunlers-breadcrumb a:hover {
    color: #323e4a;
}

.page-urunler-list .urunlers-breadcrumb-sep {
    margin: 0 0.35rem;
    color: #c4c9cf;
}

.page-urunler-list .urunlers-breadcrumb-current {
    color: #4a5568;
}

.page-urunler-list .urunlers-filters-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 1rem;
}

.page-urunler-list .urunlers-filters-sidebar {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Mobil: üstteki “Filtreler” düğmesi ile sol çekmece (masaüstü değişmez) */
@media (max-width: 991.98px) {
    .page-urunler-list .urunlers-filters-column {
        height: 0;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .page-urunler-list .urunlers-filters-backdrop[hidden] {
        display: none !important;
    }

    .page-urunler-list .urunlers-filters-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1055;
        background: rgba(15, 23, 42, 0.45);
        backdrop-filter: blur(1px);
        -webkit-backdrop-filter: blur(1px);
    }

    .page-urunler-list #urunlersFiltersSidebarInner.urunlers-filters-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: min(100% - 2.5rem, 28rem);
        max-width: calc(100vw - 1.5rem);
        z-index: 1060;
        margin: 0;
        border-radius: 0 12px 12px 0;
        transform: translateX(-104%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        box-shadow: 6px 0 32px rgba(0, 0, 0, 0.18);
    }

    body.urunlers-mobile-filters-open .page-urunler-list #urunlersFiltersSidebarInner.urunlers-filters-sidebar {
        transform: translateX(0);
    }

    .page-urunler-list .urunlers-mobile-filters-trigger {
        font-weight: 600;
        border-color: #c8cfd6;
        color: #323e4a;
    }

    .page-urunler-list .urunlers-filters-mobile-head .urunlers-filters-title {
        margin-bottom: 0;
    }
}

.page-urunler-list .urunler-filter-block {
    margin-bottom: 1.1rem;
}

.page-urunler-list .urunlers-filter-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #323e4a;
    margin-bottom: 0.4rem;
}

.page-urunler-list .urunlers-filter-panel {
    position: relative;
}

.page-urunler-list .urunlers-filter-toggle {
    display: block;
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.875rem;
    color: #323e4a;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-height: 2.55rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    background-size: 12px;
}

.page-urunler-list .urunlers-filter-toggle:hover {
    border-color: #c4c4c4;
}

.page-urunler-list .urunlers-filter-table {
    margin-top: 0.35rem;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.5rem 0.65rem;
    background: #fafafa;
    font-size: 0.8125rem;
}

.page-urunler-list .urunlers-filter-table table {
    width: 100%;
}

.page-urunler-list .urunlers-filter-table td {
    padding: 0.2rem 0;
}

/* CheckBoxList (Flow): her satırda kutu ile yazı yan yana */
.page-urunler-list .urunlers-filter-cblist span {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.4rem;
    width: 100%;
}

.page-urunler-list .urunlers-filter-cblist span > input[type="checkbox"] {
    flex-shrink: 0;
    margin: 0.18rem 0.5rem 0 0;
    accent-color: #e37222;
}

.page-urunler-list .urunlers-filter-cblist span > label {
    display: inline;
    flex: 1;
    min-width: 0;
    cursor: pointer;
    font-weight: 400;
    margin: 0;
    line-height: 1.35;
    word-break: break-word;
}

.page-urunler-list .urunlers-filter-table input[type="checkbox"] {
    accent-color: #e37222;
}

.page-urunler-list .urunlers-filter-select-disabled {
    font-size: 0.875rem;
    color: #9ca3af;
    border-radius: 8px;
}

.page-urunler-list .urunlers-filter-actions {
    margin-bottom: 0;
}

.page-urunler-list .urunlers-filter-clear {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid #eee;
}

.page-urunler-list .urunlers-btn-clear {
    border-radius: 8px;
    font-size: 0.8125rem;
}

.page-urunler-list .urunlers-page-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #323e4a;
    letter-spacing: -0.02em;
}

.page-urunler-list .urunlers-kat-line {
    min-height: 1.25rem;
}

.page-urunler-list .urunlers-kat-adi {
    font-size: 0.9375rem;
    color: #4a5568;
}

.page-urunler-list .urunlers-katalog-indir {
    margin-left: 0.35rem;
    color: #e37222 !important;
}

.page-urunler-list .urunlers-title-rule {
    border: none;
    border-top: 1px solid #ddd;
    margin: 0.75rem 0 0;
    opacity: 1;
}

.page-urunler-list .urunlers-main-head {
    align-items: flex-start !important;
}

.page-urunler-list .urunlers-pagination-top .urunlers-pag {
    justify-content: flex-end;
}

.page-urunler-list .urunlers-search-row {
    max-width: 100%;
}

.page-urunler-list .urunlers-search-input {
    border-radius: 8px 0 0 8px;
    border-color: #ddd;
    font-size: 0.9375rem;
}

.page-urunler-list .urunlers-search-input:focus {
    border-color: #e37222;
    box-shadow: 0 0 0 0.2rem rgba(227, 114, 34, 0.15);
}

.page-urunler-list .urunlers-search-btn {
    border-radius: 0 8px 8px 0;
    border-color: #ddd;
    border-left: 0;
    background: #fff;
    min-width: 3rem;
    position: relative;
    color: transparent;
    overflow: hidden;
}

.page-urunler-list .urunlers-search-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%236c757d' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E")
        center/1.1rem no-repeat;
}

.page-urunler-list .urunlers-search-btn:hover {
    background-color: #f8f9fa;
}

.page-urunler-list .urunlers-active-filters {
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.page-urunler-list .urunlers-active-filters-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.55rem;
}

.page-urunler-list .urunlers-active-filters-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6c757d;
    margin: 0;
}

.page-urunler-list .urunlers-active-filters-clear {
    font-size: 0.8125rem;
    color: #323e4a;
    text-decoration: none;
    white-space: nowrap;
}

.page-urunler-list .urunlers-active-filters-clear:hover {
    text-decoration: underline;
    color: #e37222;
}

.page-urunler-list .urunlers-active-filters-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.55rem;
}

.page-urunler-list .urunlers-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.5rem 0.25rem 0.65rem;
    background: #f0f3f6;
    border: 1px solid #dde3e9;
    border-radius: 999px;
    font-size: 0.8125rem;
    color: #323e4a;
    max-width: 100%;
}

.page-urunler-list .urunlers-filter-chip-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(100%, 18rem);
}

.page-urunler-list .urunlers-filter-chip-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    margin-right: -0.15rem;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1;
    color: #64748b;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.page-urunler-list .urunlers-filter-chip-remove:hover {
    background: rgba(227, 114, 34, 0.12);
    color: #c45a12;
}

.page-urunler-list .urunlers-product-card {
    border-radius: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.page-urunler-list .urunlers-product-card:hover {
    box-shadow: 0 0.5rem 1.25rem rgba(50, 62, 74, 0.12) !important;
    transform: translateY(-2px);
}

.page-urunler-list .urunlers-card-img-wrap {
    background: #f0f0f0;
}

.page-urunler-list .urunlers-card-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.page-urunler-list .urunlers-card-name {
    font-size: 0.9375rem;
    line-height: 1.35;
    color: #323e4a;
}

.page-urunler-list .urunlers-card-code {
    font-size: 0.8125rem;
    color: #8a9099 !important;
}

.page-urunler-list .urunlers-pag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.page-urunler-list .urunlers-pag-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    font-size: 1.1rem;
    line-height: 1;
    color: #323e4a;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: background 0.15s ease, color 0.15s ease;
}

.page-urunler-list .urunlers-pag-nav:hover:not(.is-disabled) {
    background: #323e4a;
    color: #fff;
    border-color: #323e4a;
}

.page-urunler-list .urunlers-pag-nav.is-disabled {
    opacity: 0.35;
    cursor: default;
    border-color: #eee;
    background: #fafafa;
}

.page-urunler-list .urunlers-pag-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.4rem;
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4a5568;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: background 0.15s ease, color 0.15s ease;
}

.page-urunler-list .urunlers-pag-num:hover {
    background: #f0f0f0;
    color: #323e4a;
}

.page-urunler-list .urunlers-pag-num.is-active {
    background: #323e4a;
    color: #fff;
    border-color: #323e4a;
    cursor: default;
}

.page-urunler-list .urunlers-pag-ellipsis {
    padding: 0 0.25rem;
    color: #9ca3af;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .page-urunler-list .urunlers-pagination-top {
        width: 100%;
        order: 3;
    }

    .page-urunler-list .urunlers-pagination-top .urunlers-pag {
        justify-content: center;
    }
}

/* —— Ürün detay /d/... —— */
.page-urun-detay {
    background-color: #f8f8f8;
}

.page-urun-detay .ud-breadcrumb {
    font-size: 0.8125rem;
    color: #8a9099;
}

.page-urun-detay .ud-breadcrumb a {
    color: #6c757d;
    text-decoration: none;
}

.page-urun-detay .ud-breadcrumb a:hover {
    color: #323e4a;
}

.page-urun-detay .ud-breadcrumb-sep {
    margin: 0 0.35rem;
    color: #c4c9cf;
}

.page-urun-detay .ud-breadcrumb-current {
    color: #4a5568;
}

.page-urun-detay .ud-gallery-wrap {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.page-urun-detay .ud-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-urun-detay .ud-gallery-prev,
.page-urun-detay .ud-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    z-index: 2;
    cursor: pointer;
    border: none;
    background-repeat: no-repeat;
    background-position: center;
}

.page-urun-detay .ud-gallery-prev {
    left: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23323e4a' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.page-urun-detay .ud-gallery-next {
    right: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23323e4a' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.page-urun-detay .ud-thumb-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.page-urun-detay .ud-thumb-img:hover,
.page-urun-detay .ud-thumb-img.active {
    border-color: #e37222;
}

.page-urun-detay .ud-social-link {
    color: #323e4a;
    font-size: 1.15rem;
    text-decoration: none;
}

.page-urun-detay .ud-social-link:hover {
    color: #e37222;
}

.page-urun-detay .ud-product-title {
    font-family: "Playfair Display", Georgia, serif;
    color: #323e4a;
}

.page-urun-detay .ud-section-title {
    letter-spacing: 0.06em;
    color: #323e4a;
}

.page-urun-detay .ud-rule {
    border: none;
    border-top: 1px solid #ddd;
    opacity: 1;
}

.page-urun-detay .ud-spec-list .ud-spec-row {
    display: grid;
    grid-template-columns: minmax(0, 38%) 1fr;
    gap: 0.75rem 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
}

.page-urun-detay .ud-spec-list dt {
    margin: 0;
    font-weight: 600;
    color: #4a5568;
}

.page-urun-detay .ud-spec-list dd {
    margin: 0;
    color: #323e4a;
}

.page-urun-detay .ud-variant-thumb {
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #eee;
    transition: border-color 0.2s ease;
}

.page-urun-detay .ud-variant-thumb:hover {
    border-color: #e37222;
}

.page-urun-detay .ud-variant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-urun-detay .ud-features-bar .ud-feature-icon {
    max-height: 48px;
    width: auto;
}

.page-urun-detay .ud-feature-label {
    color: #4a5568;
    line-height: 1.3;
}

.page-urun-detay .ud-calc-section {
    background: #f0f0f0;
}

.page-urun-detay .ud-calc-kicker {
    letter-spacing: 0.12em;
}

.page-urun-detay .ud-calc-heading {
    color: #323e4a;
    line-height: 1.35;
}

.page-urun-detay .ud-calc-input,
.page-urun-detay .ud-calc-result {
    border-radius: 8px;
    border-color: #ddd;
}

.page-urun-detay .ud-add-wall {
    width: 40px;
    height: 40px;
    line-height: 1;
    padding: 0;
}

.page-urun-detay .ud-desc-title {
    font-family: "Playfair Display", Georgia, serif;
    color: #323e4a;
}

.page-urun-detay .ud-desc-rule {
    border: none;
    border-top: 3px solid #e37222;
    max-width: 120px;
    margin-left: 0;
    opacity: 1;
}

.page-urun-detay .ud-hashtags {
    color: #e37222;
}

.page-urun-detay .ud-cert-img {
    max-width: 100%;
    border-radius: 8px;
}

.page-urun-detay .ud-similar-card .object-fit-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-urun-detay .mySlides {
    display: none;
}

.page-urun-detay .mySlides:first-of-type {
    display: block;
}

/* —— /s/kataloglar/ — www.dukaduvarkagidi.com ile aynı işaretleme (main_katalog / main_mid3) —— */
.main_katalog {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px 2rem;
    box-sizing: border-box;
}

.main_katalog .main_mid3 {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 16px;
}

.main_katalog .main_mid3 img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

.main_katalog .mid3_baslik {
    font-size: 16px;
    font-weight: 700;
    color: #323e4a;
    text-align: center;
    margin-top: 25px !important;
    margin-bottom: 50px;
    font-family: "Montserrat", sans-serif;
}

.main_katalog .mid3_icerik {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.main_katalog .mid3_left {
    width: 100%;
    margin-bottom: 25px;
}

.main_katalog .mid3_left a {
    display: block;
    text-decoration: none;
}

.main_katalog .main_mid3 a {
    color: #c1aca1;
    text-transform: uppercase;
}

.main_katalog .main_mid4 {
    width: 100%;
    max-width: 1080px;
    min-height: auto;
    text-align: center;
    margin: 90px auto 0;
    font-size: 14px;
    line-height: 1.65;
    color: #333;
    font-family: "Montserrat", sans-serif;
}

.main_katalog .main_mid4 p {
    margin-bottom: 1rem;
}

.main_katalog .main_mid4 b {
    font-weight: 700;
    color: #323e4a;
}

.main_katalog .main_mid4 .main_mid4-stil {
    font-weight: 700;
    color: #323e4a;
    text-decoration: none;
}

.main_katalog .main_mid4 .main_mid4-stil:hover {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .main_katalog .mid3_baslik {
        margin-bottom: 32px;
    }

    .main_katalog .main_mid4 {
        margin-top: 48px;
        font-size: 13px;
    }
}

/* Kataloglar sayfası — sağ alt sabit iletişim formu */
.page-kataloglar {
    position: relative;
}

.page-kataloglar-kfab {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 9980;
    font-family: "Montserrat", sans-serif;
}

.page-kataloglar-kfab-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #e37222;
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.page-kataloglar-kfab-trigger:hover {
    background: #cf6418;
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.page-kataloglar-kfab-trigger:focus-visible {
    outline: 2px solid #323e4a;
    outline-offset: 2px;
}

.page-kataloglar-kfab-sheet {
    display: block;
    position: absolute;
    right: 0;
    bottom: calc(100% + 10px);
    width: min(calc(100vw - 24px), 360px);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 18px, 0);
    pointer-events: none;
    transition:
        opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.42s;
    will-change: opacity, transform;
}

.page-kataloglar-kfab-sheet.is-open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .page-kataloglar-kfab-sheet {
        transition-duration: 0.01ms;
        transform: none;
    }

    .page-kataloglar-kfab-sheet.is-open {
        transform: none;
    }
}

.page-kataloglar-kfab-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(50, 62, 74, 0.08);
    background: linear-gradient(165deg, #fffdfa 0%, #ffffff 48%, #faf8f5 100%);
    box-shadow:
        0 4px 6px -1px rgba(50, 62, 74, 0.06),
        0 22px 45px -12px rgba(50, 62, 74, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.page-kataloglar-kfab-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e37222 0%, #f4a06a 45%, #e37222 100%);
    opacity: 0.95;
}

.page-kataloglar-kfab-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem 0.85rem;
    border-bottom: 1px solid rgba(50, 62, 74, 0.07);
}

.page-kataloglar-kfab-head-text {
    min-width: 0;
    flex: 1;
}

.page-kataloglar-kfab-eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #e37222;
}

.page-kataloglar-kfab-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: #323e4a;
}

.page-kataloglar-kfab-sub {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #6b7280;
    font-weight: 400;
}

.page-kataloglar-kfab-dismiss {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: -0.15rem -0.15rem 0 0;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #9ca3af;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition:
        background 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.page-kataloglar-kfab-dismiss:hover {
    background: rgba(50, 62, 74, 0.06);
    color: #323e4a;
}

.page-kataloglar-kfab-dismiss:focus-visible {
    outline: 2px solid #e37222;
    outline-offset: 2px;
}

.page-kataloglar-kfab-body {
    padding: 1rem 1.25rem 1.35rem;
}

.page-kataloglar-kfab-body .alert {
    font-size: 0.8125rem;
    line-height: 1.45;
    border-radius: 10px;
    margin-bottom: 0.85rem !important;
}

.page-kataloglar-kfab-field {
    margin-bottom: 0.85rem;
}

.page-kataloglar-kfab-field--message {
    margin-bottom: 1.1rem;
}

.page-kataloglar-kfab-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}

.page-kataloglar-kfab-input {
    display: block;
    width: 100%;
    padding: 0.55rem 0.85rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #323e4a;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(50, 62, 74, 0.12);
    border-radius: 10px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.page-kataloglar-kfab-input::placeholder {
    color: #b0b8c2;
}

.page-kataloglar-kfab-input:hover {
    border-color: rgba(227, 114, 34, 0.35);
}

.page-kataloglar-kfab-input:focus {
    outline: none;
    border-color: #e37222;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(227, 114, 34, 0.15);
}

.page-kataloglar-kfab-textarea {
    min-height: 96px;
    resize: vertical;
    line-height: 1.5;
}

input.page-kataloglar-kfab-submit,
button.page-kataloglar-kfab-submit {
    display: block;
    width: 100%;
    margin-top: 0.15rem;
    padding: 0.65rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, #ea8338 0%, #e37222 55%, #d8681a 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow:
        0 2px 4px rgba(227, 114, 34, 0.25),
        0 8px 20px -6px rgba(227, 114, 34, 0.45);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        filter 0.18s ease;
}

input.page-kataloglar-kfab-submit:hover,
button.page-kataloglar-kfab-submit:hover {
    filter: brightness(1.04);
    box-shadow:
        0 4px 8px rgba(227, 114, 34, 0.3),
        0 12px 28px -8px rgba(227, 114, 34, 0.5);
    transform: translateY(-1px);
}

input.page-kataloglar-kfab-submit:active,
button.page-kataloglar-kfab-submit:active {
    transform: translateY(0);
    filter: brightness(0.98);
}

input.page-kataloglar-kfab-submit:focus-visible,
button.page-kataloglar-kfab-submit:focus-visible {
    outline: 2px solid #323e4a;
    outline-offset: 2px;
}

@media (max-width: 575.98px) {
    .page-kataloglar-kfab-sheet {
        right: 0;
        left: auto;
        width: min(calc(100vw - 72px), 360px);
    }
}

/* —— /s/iletisim/ —— */
.page-iletisim {
    background-color: #fff;
}

.page-iletisim .iletisim-banner {
    width: 100%;
    background: linear-gradient(165deg, #e6e6e6 0%, #d8d8d8 45%, #cfcfcf 100%);
    border-bottom: 1px solid #c4c4c4;
}

.page-iletisim .iletisim-banner-inner {
    padding: 2.75rem 1rem 3rem;
    text-align: center;
}

.page-iletisim .iletisim-banner-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.15rem);
    font-weight: 700;
    color: #141414;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

@media (min-width: 992px) {
    .page-iletisim .iletisim-banner-inner {
        padding: 3.25rem 1rem 3.5rem;
    }
}

.page-iletisim .iletisim-loc-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #323e4a;
    margin-bottom: 0.35rem;
}

.page-iletisim .iletisim-loc-text {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #4a5568;
}

.page-iletisim .iletisim-contact-lines {
    border-color: #e5e5e5 !important;
}

.page-iletisim .iletisim-clabel {
    font-weight: 600;
    color: #323e4a;
    margin-right: 0.35rem;
}

.page-iletisim .iletisim-clink {
    color: #4a5568;
    text-decoration: none;
}

.page-iletisim .iletisim-clink:hover {
    color: #e37222;
}

.page-iletisim .iletisim-map-wrap {
    min-height: 320px;
}

.page-iletisim .iletisim-map-iframe {
    display: block;
    width: 100%;
    height: min(420px, 55vw);
    min-height: 320px;
    border: 0;
}

.page-iletisim .iletisim-form-heading {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #323e4a;
}

.page-iletisim .iletisim-field-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 0.35rem;
}

.page-iletisim .iletisim-input,
.page-iletisim .iletisim-textarea {
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9375rem;
    padding: 0.65rem 0.85rem;
    color: #323e4a;
}

.page-iletisim .iletisim-input:focus,
.page-iletisim .iletisim-textarea:focus {
    border-color: #323e4a;
    box-shadow: 0 0 0 0.15rem rgba(50, 62, 74, 0.12);
}

.page-iletisim .iletisim-submit-btn {
    background-color: #3d4854;
    border: none;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
    border-radius: 2px;
}

.page-iletisim .iletisim-submit-btn:hover {
    background-color: #323e4a;
    color: #fff;
}

.page-iletisim .iletisim-extra-sum {
    cursor: pointer;
    color: #6c757d;
}

.page-iletisim details[open] .iletisim-extra-sum {
    color: #323e4a;
}

/* —— /s/bayilik_basvuru/ —— */
.page-bayilik {
    background-color: #fff;
}

.page-bayilik .bayilik-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: min(420px, 42vw);
    background: #2a2a2a;
}

.page-bayilik .bayilik-hero-img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 420px;
    object-fit: cover;
    object-position: center 35%;
}

.page-bayilik .bayilik-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.12) 45%,
        rgba(255, 210, 160, 0.22) 100%
    );
}

.page-bayilik .bayilik-intro {
    max-width: 920px;
}

.page-bayilik .bayilik-heading {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.page-bayilik .bayilik-lead {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.75;
    margin: 0;
    max-width: 52rem;
}

.page-bayilik .bayilik-form-wrap {
    max-width: 920px;
}

.page-bayilik .bayilik-input,
.page-bayilik .bayilik-textarea {
    font-family: "Montserrat", sans-serif;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 1rem;
    color: #323e4a;
    background: #fff;
}

.page-bayilik .bayilik-input::placeholder,
.page-bayilik .bayilik-textarea::placeholder {
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.page-bayilik .bayilik-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

.page-bayilik .bayilik-input:focus,
.page-bayilik .bayilik-textarea:focus {
    border-color: #9ca3af;
    box-shadow: none;
    outline: none;
}

.page-bayilik .bayilik-submit-btn {
    font-family: "Montserrat", sans-serif;
    background-color: #2f3338;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
    padding: 0.85rem 2.5rem;
    border-radius: 2px;
    margin-top: 0.25rem;
}

.page-bayilik .bayilik-submit-btn:hover {
    background-color: #1f2327;
    color: #fff;
}

@media (max-width: 767.98px) {
    .page-bayilik .bayilik-hero {
        max-height: none;
    }

    .page-bayilik .bayilik-hero-img {
        max-height: 260px;
        min-height: 180px;
    }
}

/* —— /s/kurumsal/ —— */
.page-kurumsal {
    background-color: #fff;
    color: #3a3a3a;
}

.page-kurumsal .kurumsal-hikaye {
    padding: 3.5rem 0 4rem;
}

.page-kurumsal .kurumsal-hikaye-inner {
    margin: 0 auto;
    text-align: center;
}

.page-kurumsal .kurumsal-hikaye-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.75rem, 4.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #2a2a2a;
    margin: 0 0 1.75rem;
    line-height: 1.2;
}

.page-kurumsal .kurumsal-hikaye-line {
    width: 100%;
    height: 1px;
    margin: 0 auto 2.25rem;
    background: #d8d8d8;
    border: none;
}

.page-kurumsal .kurumsal-hikaye-text {
    margin: 0 auto;
    text-align: center;
}

.page-kurumsal .kurumsal-hikaye-text p {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.85;
    color: #5c5c5c;
    margin: 0;
}

.page-kurumsal .kurumsal-son-urunler {
    background: #f9f9f9;
    padding: 3.5rem 0 4.5rem;
    border-top: 1px solid #eee;
}

.page-kurumsal .kurumsal-son-title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: #2f3338;
    text-align: center;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.page-kurumsal .kurumsal-son-lead {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    font-weight: 400;
    line-height: 1.8;
    color: #6b6b6b;
    text-align: center;
    margin: 0 auto 2.5rem;
}

.page-kurumsal .kurumsal-slider-outer {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 auto;
}

.page-kurumsal .kurumsal-slider-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.page-kurumsal .kurumsal-slider-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    padding: 0.25rem 0 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.page-kurumsal .kurumsal-slider-track::-webkit-scrollbar {
    height: 6px;
}

.page-kurumsal .kurumsal-slider-track::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.page-kurumsal .kurumsal-urun-kart {
    flex: 0 0 auto;
    width: 220px;
    scroll-snap-align: start;
}

.page-kurumsal .kurumsal-urun-kart-link {
    display: block;
    color: inherit;
}

.page-kurumsal .kurumsal-urun-kart-link:hover .kurumsal-urun-kart-name {
    color: #e37222;
}

.page-kurumsal .kurumsal-urun-kart-img-wrap {
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.page-kurumsal .kurumsal-urun-kart-img-wrap.ratio > .kurumsal-urun-kart-img {
    position: absolute;
    inset: 0;
}

.page-kurumsal .kurumsal-urun-kart-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-kurumsal .kurumsal-urun-kart-name {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: left;
    line-height: 1.35;
    margin: 0 0 0.35rem;
    transition: color 0.2s ease;
}

.page-kurumsal .kurumsal-urun-kart-code {
    font-family: "Montserrat", sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #8a8a8a;
    text-align: left;
    margin: 0;
}

.page-kurumsal .kurumsal-slider-nav {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    background: transparent;
    color: #4a4a4a;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease, color 0.2s ease;
}

.page-kurumsal .kurumsal-slider-nav:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #1a1a1a;
}

@media (max-width: 575.98px) {
    .page-kurumsal .kurumsal-urun-kart {
        width: 70vw;
        max-width: 240px;
    }

    .page-kurumsal .kurumsal-slider-nav {
        width: 1.75rem;
        font-size: 1.5rem;
    }
}

/* Ana sayfa: tüm düz metin ve başlıklar çift taraflı (justified) */
.home-page .home-brand-copy {
    text-align: justify;
}

.home-page .home-brand-title {
    text-align: justify;
    white-space: normal;
}

.home-page .home-brand-intro {
    text-align: justify;
}

.home-page .carousel-caption h5 {
    text-align: justify;
}

.home-page .home-design-text {
    text-align: justify;
}

.home-page .home-collection-topline {
    text-align: justify;
}

.home-page .home-collection-text {
    text-align: justify;
}

.home-page .home-collection-footer-title {
    text-align: justify;
}

.home-page .home-collection-card-label {
    text-align: center;
}

.home-page .home-projects-kicker,
.home-page .home-projects-text,
.home-page .home-projects-list {
    text-align: justify;
}

.home-page .home-product-card-title,
.home-page .home-product-card-code {
    text-align: justify;
}

.home-page .home-blog-card-title {
    text-align: justify;
}

.home-page .home-brand-title,
.home-page .home-brand-intro,
.home-page .carousel-caption h5,
.home-page .home-design-text,
.home-page .home-collection-topline,
.home-page .home-collection-text,
.home-page .home-collection-footer-title,
.home-page .home-projects-kicker,
.home-page .home-projects-text,
.home-page .home-projects-list,
.home-page .home-product-card-title,
.home-page .home-product-card-code,
.home-page .home-blog-card-title {
    text-justify: inter-word;
}

/* İstatistik / ikon satıları ve üst dekoratif kelimeler ortalı kalır */
.home-page .home-design-bg-word,
.home-page .home-collection-bg-word,
.home-page .home-projects-bg-word,
.home-page .home-world-bg-word,
.home-page .home-blog-bg-word,
.home-page .home-world-stat,
.home-page .home-world-number,
.home-page .home-world-label,
.home-page .home-world-feature-label {
    text-align: center !important;
}

