/* Mevakoltuk — Turco-style minimal theme (loads after Contrive base) */
:root {
    --tm-black: #111111;
    --tm-charcoal: #1a1a1a;
    --tm-muted: #6b6b6b;
    --tm-line: #e8e8e8;
    --tm-card-bg: #f4f4f4;
    --tm-white: #ffffff;
    --tm-wa: #25d366;
    --tm-font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
    --tm-font-serif: "Cormorant Garamond", "Times New Roman", serif;
}

body.theme-minimal {
    font-family: var(--tm-font-sans);
    color: var(--tm-black);
    background: var(--tm-white);
    padding-top: 0;
}

body.theme-minimal.drawer-open {
    overflow: hidden;
}

.theme-minimal #button {
    background: var(--tm-black);
}

/* Hide Contrive decorative blobs */
.theme-minimal .banner-leftimage,
.theme-minimal .banner-rightimage,
.theme-minimal .subbanner-leftimage,
.theme-minimal .subbanner-rightimage,
.theme-minimal .about-leftimage,
.theme-minimal .about-rightimage {
    display: none !important;
}

.theme-minimal .loader-mask {
    display: none !important;
}

/* —— Top bar —— */
.site-topbar {
    position: relative;
    z-index: 1100;
    background: var(--tm-charcoal);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.site-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-topbar a {
    color: #fff;
    text-decoration: none;
}

.site-topbar a:hover {
    opacity: 0.85;
}

.site-topbar__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-topbar__hours {
    flex: 1;
    text-align: center;
    opacity: 0.92;
    min-width: 0;
}

@media (max-width: 991px) {
    .site-topbar__inner {
        justify-content: center;
        text-align: center;
    }

    .site-topbar__hours {
        display: none;
    }

    .site-topbar__phone {
        flex: 1 1 100%;
        justify-content: center;
    }
}

/* —— Main header —— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: var(--tm-white);
    border-bottom: 1px solid var(--tm-line);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.site-header__burger {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.site-header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--tm-black);
}

.site-brand {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-brand__logo {
    display: block;
    width: 200px;
    height: auto;
    max-width: 100%;
}

.site-brand__main {
    font-family: var(--tm-font-serif);
    font-weight: 700;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-brand__sub {
    font-family: var(--tm-font-sans);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--tm-muted);
    margin-top: 4px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: var(--tm-black);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
    opacity: 0.55;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header__icon {
    color: var(--tm-black);
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-header__icon:hover {
    opacity: 0.6;
}

.site-btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: var(--tm-black);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 0;
}

.site-btn-quote:hover {
    background: #333;
    color: #fff;
}

/* Lang dropdown (Contrive hook) */
.theme-minimal .country-selector.lang-dropdown {
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.theme-minimal .site-header .country-selector.lang-dropdown {
    color: var(--tm-black);
    padding: 4px 8px;
    border: 1px solid var(--tm-line);
    border-radius: 2px;
}

.theme-minimal .country-selector.lang-dropdown .caption,
.theme-minimal .country-selector.lang-dropdown .lang-dropdown__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    user-select: none;
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.theme-minimal .site-header .country-selector.lang-dropdown .lang-dropdown__toggle {
    color: var(--tm-black);
}

.theme-minimal .country-selector.lang-dropdown .lang-dropdown__caret {
    width: 10px;
    height: auto;
    opacity: 0.6;
}

.theme-minimal .country-selector.lang-dropdown .list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    min-width: 120px;
    background: #fff;
    border: 1px solid var(--tm-line);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    z-index: 1200;
    padding: 6px 0;
}

.theme-minimal .site-topbar .country-selector.lang-dropdown .list {
    right: 0;
    left: auto;
}

.theme-minimal .country-selector.lang-dropdown .item,
.theme-minimal .country-selector.lang-dropdown .lang-dropdown__option {
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tm-black) !important;
    font-weight: 500;
    text-decoration: none;
}

.theme-minimal .country-selector.lang-dropdown .lang-dropdown__option:hover {
    background: #f5f5f5;
}

.theme-minimal .country-selector.lang-dropdown .lang-dropdown__option.is-current {
    background: #f0f0f0;
    font-weight: 700;
}

@media (max-width: 991px) {
    .site-header__burger {
        display: flex;
        order: -1;
    }

    .site-nav,
    .site-header__actions .site-btn-quote {
        display: none;
    }

    .site-header__inner {
        flex-wrap: nowrap;
        min-height: 92px;
        padding-top: 16px;
        padding-bottom: 20px;
    }

    .site-brand {
        margin: 0;
        text-align: center;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 4px 0;
    }

    .site-brand__logo {
        width: 160px;
        margin: 0;
    }

    .site-header__actions {
        margin-left: auto;
    }
}

@media (max-width: 575.98px) {
    .site-header__inner {
        min-height: 84px;
        padding-top: 14px;
        padding-bottom: 18px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-brand {
        padding: 6px 0;
    }

    .site-brand__logo {
        width: 138px;
    }
}

/* —— Mobile drawer —— */
.site-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.site-drawer-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.site-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 92vw);
    height: 100%;
    background: #fff;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
}

.site-drawer.is-open {
    transform: translateX(0);
}

.site-drawer__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 20px 12px;
    border-bottom: 1px solid var(--tm-line);
}

.site-drawer__close {
    background: none;
    border: 0;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    color: var(--tm-black);
}

.site-drawer__nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 100px;
}

.site-drawer__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    color: var(--tm-black);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
}

.site-drawer__link i {
    font-size: 11px;
    opacity: 0.35;
}

.site-drawer__meta {
    padding: 18px 22px;
    border-top: 1px solid var(--tm-line);
    font-size: 14px;
}

.site-drawer__meta a {
    color: var(--tm-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-drawer__langs {
    display: flex;
    gap: 16px;
    padding: 0 22px 16px;
}

.site-drawer__langs a {
    text-decoration: none;
    color: var(--tm-black);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    opacity: 0.55;
}

.site-drawer__langs a.is-current {
    opacity: 1;
}

.site-drawer__foot {
    padding: 16px 20px 24px;
    border-top: 1px solid var(--tm-line);
    margin-top: auto;
    background: #fff;
}

.site-drawer__foot .site-btn-quote {
    width: 100%;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 992px) {
    .site-drawer,
    .site-drawer-overlay {
        display: none !important;
    }
}

/* —— Hero (home) —— */
.tm-hero {
    position: relative;
    background: var(--tm-white);
    padding: 0 0 48px;
}

.tm-hero .carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.tm-hero .carousel-inner {
    border-radius: 0;
}

.tm-hero .carousel-item .row {
    min-height: clamp(320px, 52vh, 560px);
    align-items: center;
}

.tm-hero .banner_content h2,
.tm-hero .banner_content h1,
.tm-hero .banner_content h6 {
    font-family: var(--tm-font-serif);
    color: var(--tm-black);
}

.tm-hero .banner_content h2,
.tm-hero .banner_content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tm-hero .banner_content h6 {
    font-family: var(--tm-font-sans);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tm-muted);
    font-weight: 500;
}

.tm-hero .primary_btn {
    background: var(--tm-black);
    border-color: var(--tm-black);
    color: #fff !important;
    border-radius: 0;
    padding: 14px 28px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tm-hero__zoom {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: zoom-in;
}

.tm-hero__zoom:hover .banner-image img {
    opacity: 0.92;
}

.tm-hero .banner-image {
    width: 100% !important;
    height: auto !important;
    max-height: 480px;
    border-radius: 0 !important;
    overflow: hidden !important;
    background: var(--tm-card-bg);
}

.tm-hero .banner-image img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: contain;
    border-radius: 0 !important;
    transition: opacity 0.2s ease;
}

.tm-hero .carousel-indicators {
    bottom: -36px;
}

.tm-hero .carousel-indicators li {
    background-color: var(--tm-black);
    opacity: 0.2;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tm-hero .carousel-indicators li.active {
    opacity: 1;
}

.tm-hero .pagination-outer .carousel-control-prev,
.tm-hero .pagination-outer .carousel-control-next {
    filter: brightness(0);
    opacity: 0.4;
}

/* —— Collection rail —— */
.tm-collection {
    padding: 56px 0 72px;
    background: var(--tm-white);
}

.tm-collection__head {
    max-width: 1200px;
    margin: 0 auto 28px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.tm-collection__titles h2 {
    font-family: var(--tm-font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--tm-black);
}

.tm-collection__titles p {
    margin: 0;
    color: var(--tm-muted);
    font-size: 15px;
    max-width: 520px;
    line-height: 1.55;
}

.tm-collection__see {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tm-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.tm-collection__see:hover {
    opacity: 0.55;
}

.tm-collection__rail-wrap {
    padding: 0 0 8px;
}

.tm-collection__rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px 12px;
    max-width: 1200px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}

.tm-collection__rail::-webkit-scrollbar {
    height: 4px;
}

.tm-collection__rail::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.tm-collection__card {
    flex: 0 0 clamp(160px, 42vw, 220px);
    scroll-snap-align: start;
    position: relative;
    background: var(--tm-card-bg);
    text-decoration: none;
    color: #fff;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.tm-collection__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent 55%);
    pointer-events: none;
}

.tm-collection__card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tm-collection__card span {
    position: relative;
    z-index: 1;
    padding: 18px 16px;
    font-family: var(--tm-font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
}

.tm-collection__hint {
    text-align: center;
    font-size: 12px;
    color: var(--tm-muted);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* —— 404 —— */
.tm-error-hero {
    background: #141414;
    color: #fff;
    text-align: center;
    padding: clamp(56px, 12vw, 96px) max(20px, env(safe-area-inset-right, 0px)) clamp(48px, 8vw, 72px) max(20px, env(safe-area-inset-left, 0px));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tm-error-hero__inner {
    max-width: 640px;
    margin: 0 auto;
}

.tm-error-hero__code {
    font-family: var(--tm-font-serif);
    font-size: clamp(4.5rem, 18vw, 8rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0 0 clamp(16px, 3vw, 24px);
    color: #fff;
    opacity: 0.92;
}

.tm-error-hero__title {
    font-family: var(--tm-font-serif);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    margin: 0 0 16px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.tm-error-hero__lead {
    font-family: var(--tm-font-sans);
    font-size: clamp(0.95rem, 2vw, 1.0625rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.tm-error-page {
    background: #fafafa;
    padding: clamp(40px, 7vw, 64px) 0 clamp(72px, 10vw, 96px);
}

.tm-error-page__inner {
    max-width: 720px;
    margin: 0 auto;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    text-align: center;
}

.tm-error-page__lead {
    font-family: var(--tm-font-sans);
    font-size: 14px;
    color: #666;
    margin: 0 0 24px;
    letter-spacing: 0.02em;
}

.tm-error-page__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
}

.tm-error-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 20px;
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tm-error-btn--primary {
    background: var(--tm-black);
    color: #fff;
    border-color: var(--tm-black);
}

.tm-error-btn--primary:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.tm-error-btn--outline {
    background: #fff;
    color: var(--tm-black);
    border-color: rgba(0, 0, 0, 0.14);
}

.tm-error-btn--outline:hover {
    border-color: var(--tm-black);
    color: var(--tm-black);
}

.tm-error-btn--dark {
    background: transparent;
    color: var(--tm-black);
    border-color: var(--tm-black);
}

.tm-error-btn--dark:hover {
    background: var(--tm-black);
    color: #fff;
}

@media (max-width: 575px) {
    .tm-error-page__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tm-error-btn {
        width: 100%;
    }
}

/* —— Anasayfa: iskelet → son hali (scroll) —— */
.tm-build-reveal {
    --reveal-progress: 0;
    --reveal-speed: 1.3;
    position: relative;
    height: 165vh;
    background: #fff;
    border-top: 1px solid var(--tm-line);
}

.tm-build-reveal__pin {
    position: sticky;
    top: 0;
    z-index: 2;
    height: 100vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(72px, 12vh, 100px) max(16px, env(safe-area-inset-right, 0px)) clamp(24px, 4vh, 40px) max(16px, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
    overflow: hidden;
}

.tm-build-reveal__inner {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
}

.tm-build-reveal__head {
    margin-bottom: clamp(20px, 3vh, 32px);
}

.tm-build-reveal__kicker {
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 8px;
}

.tm-build-reveal__title {
    font-family: var(--tm-font-serif);
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    font-weight: 600;
    color: var(--tm-black);
    margin: 0;
    letter-spacing: -0.02em;
}

.tm-build-reveal__stage {
    position: relative;
    width: min(100%, 920px);
    margin: 0 auto;
    aspect-ratio: 3 / 2;
    max-height: min(52vh, 520px);
}

.tm-build-reveal__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.tm-build-reveal__img--final {
    z-index: 1;
    opacity: var(--reveal-progress);
}

.tm-build-reveal__img--skeleton {
    z-index: 2;
    opacity: calc(1 - var(--reveal-progress));
}

.tm-build-reveal__labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: min(100%, 920px);
    margin: 14px auto 0;
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tm-build-reveal__label--from {
    color: #999;
    opacity: calc(1 - var(--reveal-progress));
}

.tm-build-reveal__label--to {
    color: var(--tm-black);
    opacity: var(--reveal-progress);
}

.tm-build-reveal__hint {
    margin: clamp(16px, 2.5vh, 24px) 0 0;
    font-family: var(--tm-font-sans);
    font-size: 12px;
    color: #aaa;
    letter-spacing: 0.06em;
    transition: opacity 0.3s ease;
}

.tm-build-reveal.is-complete .tm-build-reveal__hint {
    opacity: 0;
    visibility: hidden;
}

.tm-build-reveal__progress {
    width: min(100%, 200px);
    height: 2px;
    margin: 18px auto 0;
    background: #ececec;
    overflow: hidden;
}

.tm-build-reveal__progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--tm-black);
    transform: scaleX(var(--reveal-progress));
    transform-origin: left center;
    will-change: transform;
}

@media (max-width: 767px) {
    .tm-build-reveal {
        height: 140vh;
    }

    .tm-build-reveal__pin {
        min-height: 420px;
        padding-top: clamp(64px, 10vh, 88px);
    }

    .tm-build-reveal__stage {
        max-height: min(42vh, 360px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tm-build-reveal {
        height: auto;
    }

    .tm-build-reveal__pin {
        position: relative;
        height: auto;
        min-height: 0;
        padding: 48px 16px;
    }

    .tm-build-reveal__img--skeleton {
        display: none;
    }

    .tm-build-reveal__img--final {
        position: relative;
        opacity: 1;
    }

    .tm-build-reveal__stage {
        max-height: none;
    }

    .tm-build-reveal__hint,
    .tm-build-reveal__progress,
    .tm-build-reveal__labels {
        display: none;
    }
}

/* —— Products grid —— */
.tm-products {
    padding: 0 0 80px;
    background: #fafafa;
    border-top: 1px solid var(--tm-line);
}

.tm-products__head {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px 24px;
    text-align: center;
}

.tm-products__head h2 {
    font-family: var(--tm-font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin: 0;
}

.tm-products .feature-box {
    background: #fff;
    border: 1px solid var(--tm-line);
    transition: box-shadow 0.2s ease;
}

.tm-products .feature-box:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.tm-products .lower_content h4 {
    font-family: var(--tm-font-serif);
    font-size: 1.15rem;
}

/* —— Ürün vitrini (anasayfa + kategori) —— */
.tm-products--showcase {
    padding: clamp(48px, 8vw, 72px) 0 clamp(64px, 10vw, 96px);
    background: linear-gradient(180deg, #f7f7f7 0%, #fafafa 40%, #fff 100%);
    overflow-x: hidden;
}

.tm-products--showcase .tm-products__container {
    max-width: 1200px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
}

@media (min-width: 576px) {
    .tm-products--showcase .tm-products__container {
        padding-left: max(20px, env(safe-area-inset-left, 0px));
        padding-right: max(20px, env(safe-area-inset-right, 0px));
    }
}

.tm-products--showcase .tm-products__head {
    padding: 0 0 clamp(28px, 5vw, 40px);
    text-align: center;
}

.tm-products--showcase .tm-products__kicker {
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 10px;
}

.tm-products--showcase .tm-products__head h2 {
    font-size: clamp(1.65rem, 4.5vw, 2.35rem);
    letter-spacing: -0.02em;
}

.tm-products--showcase .tm-products__grid {
    margin-left: -6px;
    margin-right: -6px;
}

.tm-products--showcase .tm-products__grid > [class*="col-"] {
    min-width: 0;
    display: flex;
    padding-left: 6px;
    padding-right: 6px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .tm-products--showcase .tm-products__grid {
        margin-left: -10px;
        margin-right: -10px;
    }

    .tm-products--showcase .tm-products__grid > [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .tm-products--showcase .tm-products__grid {
        margin-left: -12px;
        margin-right: -12px;
    }

    .tm-products--showcase .tm-products__grid > [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
        margin-bottom: 24px;
    }
}

.tm-products--showcase .tm-product-card--showcase {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-bottom: 0 !important;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tm-products--showcase .tm-product-card--showcase:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.14);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
}

.tm-products--showcase .tm-product-card__media {
    margin-bottom: 0 !important;
    min-height: 0 !important;
    background: #f0f0f0;
}

.tm-products--showcase .tm-product-card__figure {
    aspect-ratio: 4 / 3;
    width: 100%;
    margin: 0;
    overflow: hidden;
    display: block;
}

.tm-products--showcase .tm-product-card__img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.tm-products--showcase .tm-product-card--showcase:hover .tm-product-card__img {
    transform: scale(1.04);
}

.tm-products--showcase .tm-product-card__view {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--tm-black);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    opacity: 1;
    transform: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tm-products--showcase .tm-product-card__view:hover {
    background: var(--tm-black);
    color: #fff;
    border-color: var(--tm-black);
}

.tm-products--showcase .tm-product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 14px 16px;
}

@media (min-width: 768px) {
    .tm-products--showcase .tm-product-card__body {
        padding: 16px 18px 18px;
    }
}

.tm-products--showcase .tm-product-card__title {
    font-family: var(--tm-font-sans);
    font-size: clamp(0.8rem, 2.6vw, 1rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--tm-black);
    margin: 0;
    padding-right: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tm-products--showcase .tm-product-swatches {
    margin-top: auto;
    padding-top: 10px;
}

.tm-products--showcase .tm-products__empty {
    text-align: center;
    color: #888;
    font-family: var(--tm-font-sans);
    font-size: 15px;
    margin: 24px 0 0;
}

/* Vitrin dışı kartlar (eski grid) */
.tm-product-card__view {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #fff;
    color: var(--tm-black);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    text-decoration: none;
    font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease;
}

.tm-product-card__view:hover {
    background: var(--tm-black);
    color: #fff;
}

.feature-con .tm-product-card .image ul {
    display: none !important;
}

/* —— Sub pages banner —— */
.theme-minimal .sub_banner_con {
    padding: 72px 0 56px;
    background: var(--tm-white);
    border-bottom: 1px solid var(--tm-line);
}

.theme-minimal .sub_banner_content h1 {
    font-family: var(--tm-font-serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--tm-black);
}

.theme-minimal .sub_banner_content .text-size-18 {
    color: var(--tm-muted);
}

/* —— Footer —— */
.tm-footer {
    background: var(--tm-charcoal);
    color: #e5e5e5;
    padding: 56px 0 0;
}

.tm-footer a {
    color: #fff;
    text-decoration: none;
}

.tm-footer a:hover {
    opacity: 0.75;
}

.tm-footer__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 767px) {
    .tm-footer__grid {
        grid-template-columns: 1fr;
    }
}

.tm-footer__brand {
    font-family: var(--tm-font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    display: inline-block;
}

.tm-footer__tag {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 16px;
}

.tm-footer__social a {
    font-size: 22px;
    margin-right: 12px;
}

.tm-footer h3 {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #999;
    margin: 0 0 16px;
    font-weight: 600;
}

.tm-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tm-footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.tm-footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px;
    font-size: 12px;
    opacity: 0.7;
    text-align: center;
}

.tm-footer__copy img {
    display: none;
}

/* —— WhatsApp FAB —— */
.tm-wa-fab {
    position: fixed;
    left: max(12px, env(safe-area-inset-left, 0px));
    /* Sol alt köşeye yakın */
    bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 16px));
    z-index: 950;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tm-wa-fab__bubble {
    position: relative;
    background: #fff;
    color: var(--tm-black);
    font-size: 12px;
    padding: 9px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    max-width: min(220px, calc(100vw - 48px));
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
}

/* Balon → buton hizası (ortada ince ok) */
.tm-wa-fab__bubble::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid #fff;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

.tm-wa-fab__btn {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: var(--tm-wa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.tm-wa-fab__btn:hover {
    color: #fff;
    filter: brightness(1.05);
}

@media (max-width: 575px) {
    .tm-wa-fab {
        left: max(10px, env(safe-area-inset-left, 0px));
        bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 12px));
    }

    .tm-wa-fab__bubble {
        display: none;
    }
}

/* —— Search overlay —— */
.theme-minimal #search.tm-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 40px);
    background: rgba(17, 17, 17, 0.9) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none !important;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.theme-minimal #search.tm-search-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.tm-search-open {
    overflow: hidden;
}

.tm-search-overlay__inner {
    width: min(720px, 100%);
    text-align: center;
}

.tm-search-form__field {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.tm-search-form__icon {
    flex-shrink: 0;
    color: #9ca3af;
    font-size: 1.15rem;
    line-height: 1;
}

.tm-search-form__field input[type="search"] {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    border: 0 !important;
    background: transparent !important;
    color: #111827 !important;
    font-family: var(--tm-font-sans);
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    font-weight: 400;
    text-align: left;
    outline: none;
    box-shadow: none;
}

.tm-search-form__field input[type="search"]::placeholder {
    color: #9ca3af;
}

.tm-search-form__field input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.tm-search-form__close {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #9ca3af;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
}

.tm-search-form__close:hover {
    color: #374151;
    background: #f3f4f6;
}

.tm-search-overlay__hint {
    margin: 18px 0 0;
    font-family: var(--tm-font-sans);
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.01em;
}

@media (max-width: 575.98px) {
    .tm-search-form__field {
        padding: 14px 16px;
        gap: 10px;
    }

    .tm-search-overlay__hint {
        font-size: 0.75rem;
        margin-top: 14px;
        padding: 0 4px;
    }
}

/* —— Kurumsal / Hakkımızda —— */
.tm-about-hero {
    background: #141414;
    color: #fff;
    text-align: center;
    padding: clamp(56px, 12vw, 100px) 24px;
}

.tm-about-hero__inner {
    max-width: 880px;
    margin: 0 auto;
}

.tm-about-hero__title {
    font-family: var(--tm-font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 20px;
    line-height: 1.15;
}

.tm-about-hero__lead {
    font-family: var(--tm-font-sans);
    font-size: clamp(0.95rem, 2vw, 1.125rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    font-weight: 400;
}

.tm-category-hero .tm-about-hero__lead {
    margin-bottom: 0;
}

.tm-category-hero__crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 8px;
    margin-top: clamp(20px, 4vw, 28px);
    font-family: var(--tm-font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tm-category-hero__crumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tm-category-hero__crumb a:hover {
    color: #fff;
}

.tm-category-hero__slash {
    color: rgba(255, 255, 255, 0.35);
}

.tm-category-hero__current {
    color: rgba(255, 255, 255, 0.92);
}

.tm-about-story {
    background: #fff;
    padding: clamp(56px, 8vw, 96px) 0;
}

.tm-about-story__row {
    gap: 0;
}

.tm-about-story__figure {
    background: #fafafa;
    padding: clamp(16px, 3vw, 32px);
    text-align: center;
}

.tm-about-story__figure img {
    max-height: 520px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.tm-about-kicker {
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tm-black);
    margin: 0 0 12px;
}

.tm-about-kicker--center {
    text-align: center;
}

.tm-about-heading {
    font-family: var(--tm-font-serif);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--tm-black);
    margin: 0 0 24px;
    line-height: 1.2;
}

.tm-about-heading--center {
    text-align: center;
    margin-bottom: 48px;
}

.tm-about-body {
    font-family: var(--tm-font-sans);
    font-size: 15px;
    line-height: 1.75;
    color: #5a5a5a;
    margin-bottom: 28px;
}

.tm-about-body p {
    margin-bottom: 1rem;
}

.tm-about-body p:last-child {
    margin-bottom: 0;
}

.tm-about-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border: 1px solid var(--tm-black);
    color: var(--tm-black);
    text-decoration: none;
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tm-about-cta:hover {
    background: var(--tm-black);
    color: #fff;
}

.tm-about-ref-anchor {
    height: 0;
    scroll-margin-top: 100px;
}

.tm-about-diff {
    background: #f4f4f4;
    padding: clamp(56px, 8vw, 88px) 0 clamp(64px, 10vw, 100px);
}

.tm-about-cards {
    margin-bottom: clamp(40px, 6vw, 64px);
}

.tm-about-card {
    background: #fff;
    padding: 28px 22px;
    height: 100%;
    text-align: center;
    border: 1px solid var(--tm-line);
}

.tm-about-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    font-size: 22px;
    color: var(--tm-black);
}

.tm-about-card__title {
    font-family: var(--tm-font-sans);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: var(--tm-black);
}

.tm-about-card__text {
    font-family: var(--tm-font-sans);
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.tm-about-stats {
    text-align: center;
    padding-top: 8px;
}

.tm-about-stat {
    padding: 20px 12px;
}

.tm-about-stat__num {
    display: block;
    font-family: var(--tm-font-serif);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--tm-black);
    line-height: 1.1;
    margin-bottom: 8px;
}

.tm-about-stat__label {
    font-family: var(--tm-font-sans);
    font-size: 12px;
    color: #666;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* —— İletişim —— */
.tm-contact-hero.tm-about-hero {
    padding: clamp(48px, 10vw, 80px) 24px;
}

.tm-contact-page {
    background: #fff;
    overflow-x: hidden;
    overflow-x: clip;
}

.tm-contact-page__inner {
    padding: clamp(40px, 6vw, 72px) max(16px, env(safe-area-inset-right, 0px)) clamp(56px, 8vw, 88px) max(16px, env(safe-area-inset-left, 0px));
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 576px) {
    .tm-contact-page__inner {
        padding-left: max(20px, env(safe-area-inset-left, 0px));
        padding-right: max(20px, env(safe-area-inset-right, 0px));
    }
}

.tm-contact-page .row > [class*="col-"] {
    min-width: 0;
}

.tm-contact-atelier,
.tm-contact-form-card {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 575px) {
    .tm-contact-page .tm-contact-atelier {
        padding: 22px 18px 20px;
    }

    .tm-contact-page .tm-contact-form-card {
        padding: 22px 18px 28px;
    }

    .tm-contact-dept__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .tm-contact-dept__tel {
        white-space: normal;
        word-break: break-word;
    }
}

.tm-contact-atelier {
    background: #f4f4f4;
    border: 1px solid var(--tm-line);
    padding: 28px 24px 24px;
}

.tm-contact-atelier__title {
    font-family: var(--tm-font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--tm-black);
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tm-contact-atelier__title i {
    font-size: 1.1rem;
    opacity: 0.85;
}

.tm-contact-atelier__list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-family: var(--tm-font-sans);
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin-bottom: 14px;
}

.tm-contact-atelier__list li:last-of-type {
    margin-bottom: 20px;
}

.tm-contact-atelier__list i {
    margin-top: 3px;
    width: 18px;
    text-align: center;
    color: var(--tm-black);
    flex-shrink: 0;
}

.tm-contact-atelier__list a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tm-contact-map-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--tm-black);
    text-decoration: none;
    border: 1px solid var(--tm-black);
    padding: 10px 18px;
    margin-top: 4px;
}

.tm-contact-map-link:hover {
    background: var(--tm-black);
    color: #fff;
}

.tm-contact-dept {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--tm-line);
}

.tm-contact-dept__kicker {
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 14px;
}

.tm-contact-dept__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-family: var(--tm-font-sans);
    font-size: 15px;
    color: var(--tm-black);
}

.tm-contact-dept__name {
    font-weight: 600;
}

.tm-contact-dept__tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tm-black);
    text-decoration: none;
    font-weight: 500;
}

.tm-contact-dept__tel:hover {
    opacity: 0.65;
}

.tm-contact-form-card {
    background: #fff;
    border: 1px solid var(--tm-line);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    padding: clamp(28px, 4vw, 40px);
}

.tm-contact-form-card__head {
    margin-bottom: 8px;
}

.tm-contact-form-card__title {
    font-family: var(--tm-font-serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--tm-black);
}

.tm-contact-form-card__lead {
    font-family: var(--tm-font-sans);
    font-size: 14px;
    line-height: 1.65;
    color: #666;
    margin: 0;
}

.tm-contact-form-card__sub {
    font-family: var(--tm-font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 28px 0 20px;
    color: var(--tm-black);
}

.tm-form-minimal__field {
    margin-bottom: 4px;
}

.tm-form-minimal input,
.tm-form-minimal textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    padding: 14px 0;
    font-family: var(--tm-font-sans);
    font-size: 15px;
    color: var(--tm-black);
    background: transparent;
    outline: none;
}

.tm-form-minimal input::placeholder,
.tm-form-minimal textarea::placeholder {
    color: #999;
}

.tm-form-minimal input:focus,
.tm-form-minimal textarea:focus {
    border-bottom-color: var(--tm-black);
}

.tm-form-minimal__field--textarea textarea {
    min-height: 140px;
    resize: vertical;
}

.tm-form-minimal__submit {
    width: 100%;
    margin-top: 28px;
    padding: 16px 24px;
    background: var(--tm-black);
    color: #fff;
    border: 0;
    font-family: var(--tm-font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
}

.tm-form-minimal__submit:hover {
    background: #333;
    color: #fff;
}

.tm-form-minimal__wa-note {
    margin: 18px 0 0;
    font-family: var(--tm-font-sans);
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tm-form-minimal__wa-note i {
    color: var(--tm-wa);
    font-size: 18px;
    margin-top: 2px;
}

.tm-form-minimal__wa-note a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* —— Ürün kartı renk swatch —— */
.tm-product-card .lower_content h4,
.tm-product-card .tm-product-card__title {
    margin-bottom: 0;
    padding-right: 0 !important;
}

.tm-product-swatches {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.tm-product-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.tm-product-swatch:hover {
    transform: scale(1.08);
}

.tm-product-swatch.is-selected {
    box-shadow: 0 0 0 2px var(--tm-black);
}

.tm-product-swatch--plain {
    background: #e8e8e8;
    font-size: 9px;
    font-weight: 700;
    color: #444;
}

.tm-product-swatch__abbr {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

/* Kategori ürün listesi: kart görselini biraz küçült */
.tm-product-card--compact-img .feature-image {
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tm-product-card--compact-img .tm-category-product-img {
    max-height: 240px !important;
    width: auto !important;
    max-width: 82% !important;
    height: auto !important;
    object-fit: contain !important;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@media (max-width: 991px) {
    .tm-product-card--compact-img .tm-category-product-img {
        max-height: 200px !important;
        max-width: 88% !important;
    }
}

@media (max-width: 575px) {
    .tm-product-card--compact-img .tm-category-product-img {
        max-height: 180px !important;
        max-width: 92% !important;
    }
}
