@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --tk3-ink: #2d1a10;
    --tk3-brown: #5b3420;
    --tk3-brown-2: #7a4b2c;
    --tk3-green: #244d27;
    --tk3-green-soft: #456d37;
    --tk3-gold: #f7c85f;
    --tk3-gold-2: #ffe095;
    --tk3-cream: #fff6e6;
    --tk3-cream-2: #f6ead6;
    --tk3-card: rgba(255,255,255,.82);
    --tk3-border: rgba(91,52,32,.14);
    --tk3-shadow: 0 26px 80px rgba(64, 34, 14, .16);
    --tk3-dark-shadow: 0 32px 90px rgba(0,0,0,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.tk3-body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, sans-serif !important;
    color: var(--tk3-ink);
    background:
        radial-gradient(circle at 14% 8%, rgba(247,200,95,.22), transparent 26%),
        radial-gradient(circle at 92% 18%, rgba(36,77,39,.13), transparent 30%),
        linear-gradient(180deg, #fff8eb 0%, #f6ead6 42%, #fff8ed 100%);
    line-height: 1.65;
}
body.tk3-body a { text-decoration: none; }
body.tk3-body img { max-width: 100%; }
.container { max-width: 1320px; }

.tk3-topline {
    background: #20120b;
    color: rgba(255,246,230,.82);
    font-size: 14px;
    position: relative;
    z-index: 30;
}
.tk3-topline__inner,
.tk3-topline__left,
.tk3-topline__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 42px;
}
.tk3-topline a,
.tk3-topline span { color: rgba(255,246,230,.82); }
.tk3-topline a:hover { color: var(--tk3-gold); }
.tk3-topline i { color: var(--tk3-gold); margin-right: 6px; }

.tk3-header {
    position: sticky;
    top: 0;
    z-index: 29;
    padding: 16px 0;
    background: linear-gradient(180deg, rgba(255,248,235,.94), rgba(255,248,235,.75));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(91,52,32,.09);
}
.tk3-header__bar {
    min-height: 76px;
    border-radius: 999px;
    padding: 12px 14px 12px 24px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(91,52,32,.13);
    box-shadow: 0 20px 70px rgba(59,31,12,.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.tk3-brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.tk3-brand img { display: block; width: 146px; height: auto; }
.tk3-nav { align-items: center; justify-content: center; gap: 5px; flex: 1; }
.tk3-nav a {
    color: var(--tk3-brown);
    font-weight: 800;
    font-size: 15px;
    padding: 13px 17px;
    border-radius: 999px;
    transition: .22s ease;
}
.tk3-nav a:hover,
.tk3-nav a.is-active {
    background: #f8ecd8;
    color: var(--tk3-green);
}
.tk3-header__actions { align-items: center; gap: 10px; }
.tk3-mini-link { font-weight: 800; color: var(--tk3-green); font-size: 14px; white-space: nowrap; }
.tk3-menu-toggle {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    border: 0;
    background: var(--tk3-green);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.tk3-menu-toggle span { width: 21px; height: 2px; background: #fff; border-radius: 99px; transition: .2s ease; }
.tk3-mobile-panel { display: none; padding: 0 16px 16px; }
.tk3-mobile-panel.is-open { display: block; }
.tk3-mobile-panel__inner {
    margin: 8px auto 0;
    max-width: 1320px;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--tk3-shadow);
    display: grid;
    gap: 8px;
}
.tk3-mobile-panel__inner a {
    color: var(--tk3-brown);
    font-weight: 800;
    padding: 12px 14px;
    border-radius: 16px;
}
.tk3-mobile-panel__inner a:hover { background: #fff0d3; }

.tk3-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: -.01em;
    border: 1px solid transparent;
    transition: .2s ease;
    white-space: nowrap;
}
.tk3-btn--gold {
    color: #2c170d !important;
    background: linear-gradient(135deg, var(--tk3-gold), #ffd978);
    box-shadow: 0 16px 42px rgba(247,200,95,.28);
}
.tk3-btn--dark {
    color: #fff !important;
    background: linear-gradient(135deg, #2b160d, #5a321d);
    box-shadow: 0 16px 36px rgba(45,26,16,.22);
}
.tk3-btn--ghost {
    color: #fff !important;
    background: rgba(255,255,255,.09);
    border-color: rgba(255,255,255,.22);
}
.tk3-btn:hover { transform: translateY(-2px); }

.tk3-main { overflow: hidden; }
.tk3-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--tk3-brown-2);
    background: rgba(247,200,95,.18);
    border: 1px solid rgba(247,200,95,.36);
    border-radius: 999px;
    padding: 10px 18px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
}
.tk3-section { padding: clamp(64px, 7vw, 110px) 0; position: relative; }
.tk3-section--cream { background: linear-gradient(180deg, #fff8eb, #f9ecd8); }
.tk3-section--green { background: linear-gradient(135deg, #173819, #315b2c); color: #fff6e6; }
.tk3-section--brown { background: radial-gradient(circle at 15% 0%, rgba(247,200,95,.15), transparent 24%), linear-gradient(135deg, #28160e, #5a321d); color: #fff6e6; }
.tk3-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}
.tk3-section__head h2,
.tk3-section__center h2 {
    margin: 14px 0 0;
    font-size: clamp(36px, 4.5vw, 70px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 900;
    max-width: 820px;
}
.tk3-section__head p,
.tk3-section__center p { max-width: 570px; margin: 16px 0 0; color: rgba(91,52,32,.75); font-weight: 650; }
.tk3-section--green .tk3-section__head p,
.tk3-section--brown .tk3-section__head p,
.tk3-section--brown .tk3-section__center p { color: rgba(255,246,230,.74); }
.tk3-section__center { text-align: center; max-width: 820px; margin: 0 auto 42px; }
.tk3-section__center h2 { margin-left: auto; margin-right: auto; }

.tk3-hero {
    position: relative;
    min-height: calc(100vh - 118px);
    background: #160c07;
    color: #fff6e6;
}
.tk3-hero-slide {
    min-height: calc(100vh - 118px);
    display: flex !important;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}
.tk3-hero-slide__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transform: scale(1.03);
}
.tk3-hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 76% 24%, rgba(247,200,95,.16), transparent 34%),
        linear-gradient(90deg, rgba(22,12,7,.94) 0%, rgba(22,12,7,.72) 36%, rgba(22,12,7,.18) 70%, rgba(22,12,7,.62) 100%);
    z-index: 1;
}
.tk3-hero-slide .container { position: relative; z-index: 2; display: flex; align-items: center; }
.tk3-hero__content { width: min(680px, 100%); padding: clamp(80px, 9vw, 145px) 0; }
.tk3-hero__content h1 {
    margin: 22px 0 22px;
    font-size: clamp(54px, 8vw, 118px);
    line-height: .88;
    letter-spacing: -.07em;
    font-weight: 900;
}
.tk3-hero__content p { font-size: clamp(18px, 1.6vw, 24px); max-width: 610px; color: rgba(255,246,230,.82); font-weight: 600; }
.tk3-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.tk3-hero__stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }
.tk3-hero-stat {
    min-width: 132px;
    padding: 18px 22px;
    border-radius: 28px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(14px);
}
.tk3-hero-stat strong { display: block; color: var(--tk3-gold); font-size: 30px; line-height: 1; font-weight: 900; }
.tk3-hero-stat span { display: block; color: rgba(255,246,230,.72); font-size: 13px; font-weight: 800; margin-top: 7px; }
.tk3-hero__floating-card {
    position: absolute;
    z-index: 3;
    right: clamp(24px, 6vw, 90px);
    bottom: 86px;
    width: min(390px, calc(100vw - 48px));
    padding: 20px;
    border-radius: 34px;
    background: rgba(255,248,235,.88);
    color: var(--tk3-ink);
    border: 1px solid rgba(255,255,255,.38);
    box-shadow: var(--tk3-dark-shadow);
    backdrop-filter: blur(18px);
}
.tk3-hero__floating-card img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 24px;
    float: left;
    margin-right: 18px;
}
.tk3-hero__floating-card strong { display: block; font-size: 20px; font-weight: 900; margin-top: 5px; }
.tk3-hero__floating-card span { color: rgba(91,52,32,.74); font-weight: 700; }
.tk3-hero__controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    transform: translateX(-50%);
    bottom: 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255,248,235,.92);
    box-shadow: 0 20px 70px rgba(0,0,0,.24);
    border: 1px solid rgba(255,255,255,.55);
}
.tk3-hero__count { min-width: 74px; color: var(--tk3-ink); font-weight: 900; letter-spacing: .1em; }
.tk3-hero__dots { display: flex; align-items: center; gap: 8px; }
.tk3-hero__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(45,26,16,.22);
    transition: .2s ease;
    font-size: 0;
}
.tk3-hero__dots button.is-active { width: 42px; background: linear-gradient(135deg, var(--tk3-gold), #ffd978); }
.tk3-hero .slick-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,248,235,.92);
    color: var(--tk3-ink);
    font-size: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
}
.tk3-hero .slick-prev { left: 28px; }
.tk3-hero .slick-next { right: 28px; }
.tk3-hero .slick-arrow::before {
    font-family: IcoFont;
    font-size: 27px;
    color: var(--tk3-ink);
}
.tk3-hero .slick-prev::before { content: '\ea9d'; }
.tk3-hero .slick-next::before { content: '\eaa0'; }

.tk3-category-rail { margin-top: -46px; position: relative; z-index: 5; }
.tk3-category-rail__inner {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(91,52,32,.12);
    border-radius: 36px;
    padding: 18px;
    box-shadow: var(--tk3-shadow);
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}
.tk3-quick-category {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 86px;
    padding: 10px 14px;
    border-radius: 26px;
    color: var(--tk3-brown);
    background: #fffaf0;
    border: 1px solid rgba(91,52,32,.08);
    font-weight: 900;
    transition: .2s ease;
}
.tk3-quick-category:hover { transform: translateY(-3px); color: var(--tk3-green); box-shadow: 0 16px 40px rgba(91,52,32,.12); }
.tk3-quick-category img { width: 54px; height: 54px; border-radius: 18px; object-fit: cover; }

.tk3-branches {
    display: grid;
    grid-template-columns: .95fr 1.25fr;
    gap: 28px;
    align-items: stretch;
}
.tk3-branch-panel {
    border-radius: 46px;
    padding: clamp(30px, 4vw, 54px);
    background: #fff8ea;
    color: var(--tk3-ink);
    box-shadow: var(--tk3-shadow);
    border: 1px solid rgba(91,52,32,.12);
    min-height: 100%;
}
.tk3-branch-panel h2 { font-size: clamp(40px, 5vw, 78px); line-height: .94; letter-spacing: -.06em; font-weight: 900; margin: 20px 0 22px; }
.tk3-branch-map {
    margin-top: 34px;
    min-height: 280px;
    border-radius: 36px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255,248,234,.75), rgba(255,248,234,.1)),
        url('../images/003.jpeg') center/cover;
    position: relative;
}
.tk3-branch-map::after {
    content: '38 şube';
    position: absolute;
    right: 22px;
    bottom: 22px;
    border-radius: 999px;
    padding: 12px 18px;
    background: rgba(36,77,39,.92);
    color: #fff;
    font-weight: 900;
}
.tk3-branch-list { display: grid; gap: 14px; }
.tk3-branch-card {
    display: grid;
    grid-template-columns: 82px 1fr auto;
    gap: 20px;
    align-items: center;
    border-radius: 34px;
    padding: 20px;
    background: rgba(255,248,234,.14);
    border: 1px solid rgba(255,246,230,.18);
    color: #fff6e6;
    transition: .2s ease;
}
.tk3-branch-card:hover { transform: translateX(6px); background: rgba(255,248,234,.2); }
.tk3-branch-card__code {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    background: rgba(247,200,95,.92);
    color: #2a160d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
}
.tk3-branch-card h3 { margin: 0; color: #fff; font-size: 24px; font-weight: 900; }
.tk3-branch-card p { margin: 6px 0 0; color: rgba(255,246,230,.72); font-weight: 650; }
.tk3-branch-card a { color: var(--tk3-gold); font-weight: 900; white-space: nowrap; }

.tk3-product-showcase { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.tk3-product-card {
    min-height: 360px;
    border-radius: 42px;
    overflow: hidden;
    position: relative;
    background: #000;
    display: flex;
    align-items: end;
    padding: 24px;
    box-shadow: var(--tk3-shadow);
    isolation: isolate;
}
.tk3-product-card:nth-child(1) { grid-column: span 5; min-height: 500px; }
.tk3-product-card:nth-child(2) { grid-column: span 4; }
.tk3-product-card:nth-child(3) { grid-column: span 3; }
.tk3-product-card:nth-child(4) { grid-column: span 3; }
.tk3-product-card:nth-child(5) { grid-column: span 5; }
.tk3-product-card:nth-child(6) { grid-column: span 4; }
.tk3-product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    z-index: -2;
}
.tk3-product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.78));
    z-index: -1;
}
.tk3-product-card:hover img { transform: scale(1.07); }
.tk3-product-card__body { color: #fff; }
.tk3-product-card__body span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    color: #fff6e6;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .09em;
}
.tk3-product-card__body h3 { margin: 13px 0 8px; color: #fff; font-size: clamp(28px, 3vw, 44px); font-weight: 900; line-height: 1; letter-spacing: -.045em; }
.tk3-product-card__body p { color: rgba(255,255,255,.78); margin: 0; max-width: 380px; font-weight: 650; }

.tk3-campaign-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.tk3-campaign-card {
    border-radius: 42px;
    padding: 30px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(91,52,32,.12);
    box-shadow: var(--tk3-shadow);
    position: relative;
    overflow: hidden;
    min-height: 290px;
}
.tk3-campaign-card::before {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(247,200,95,.32);
}
.tk3-campaign-card .num { width: 56px; height: 56px; border-radius: 19px; display: inline-flex; align-items:center; justify-content:center; background: var(--tk3-green); color:#fff; font-weight:900; }
.tk3-campaign-card h3 { margin: 25px 0 12px; font-size: 30px; line-height: 1.05; font-weight: 900; letter-spacing: -.04em; }
.tk3-campaign-card p { color: rgba(91,52,32,.72); font-weight: 650; }

.tk3-mosaic { display: grid; grid-template-columns: 1.1fr .9fr 1fr; grid-auto-rows: 210px; gap: 18px; }
.tk3-mosaic figure { margin: 0; border-radius: 36px; overflow: hidden; position: relative; box-shadow: var(--tk3-shadow); }
.tk3-mosaic figure:nth-child(1) { grid-row: span 2; }
.tk3-mosaic figure:nth-child(4) { grid-column: span 2; }
.tk3-mosaic img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.tk3-mosaic figure:hover img { transform: scale(1.08); }
.tk3-mosaic figcaption {
    position: absolute;
    left: 18px;
    bottom: 18px;
    border-radius: 999px;
    padding: 10px 15px;
    background: rgba(255,248,235,.86);
    color: var(--tk3-ink);
    font-weight: 900;
}

.tk3-review-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.tk3-review {
    border-radius: 38px;
    padding: 28px;
    background: rgba(255,248,234,.13);
    border: 1px solid rgba(255,246,230,.17);
}
.tk3-review__stars { color: var(--tk3-gold); letter-spacing: .08em; margin-bottom: 18px; }
.tk3-review p { color: rgba(255,246,230,.78); font-size: 18px; font-weight: 650; }
.tk3-review strong { display:block; color:#fff; margin-top: 20px; }
.tk3-review span { color: rgba(255,246,230,.58); font-size: 14px; }

.tk3-contact-band {
    border-radius: 54px;
    padding: clamp(34px, 5vw, 70px);
    background:
        radial-gradient(circle at 88% 18%, rgba(247,200,95,.22), transparent 30%),
        linear-gradient(135deg, #fff8ea, #f2dfbd);
    box-shadow: var(--tk3-shadow);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
    border: 1px solid rgba(91,52,32,.12);
}
.tk3-contact-band h2 { margin: 0; font-size: clamp(36px, 5vw, 72px); line-height: .96; letter-spacing: -.055em; font-weight: 900; }
.tk3-contact-band p { color: rgba(91,52,32,.72); font-weight: 700; margin: 16px 0 0; max-width: 700px; }
.tk3-contact-band__actions { display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end; }

.tk3-footer {
    padding: 36px 0 26px;
    background:
        radial-gradient(circle at 12% 0%, rgba(247,200,95,.12), transparent 28%),
        linear-gradient(180deg, #183819, #0d200e);
    color: rgba(255,246,230,.8);
}
.tk3-footer__cta {
    border-radius: 42px;
    padding: 34px;
    background: rgba(255,248,234,.1);
    border: 1px solid rgba(255,246,230,.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}
.tk3-footer__cta h2 { color:#fff; margin: 10px 0 0; font-size: clamp(34px, 4vw, 60px); line-height: .98; letter-spacing: -.05em; font-weight: 900; }
.tk3-footer__grid { display:grid; grid-template-columns: 1.25fr .7fr 1.05fr 1fr; gap: 18px; }
.tk3-footer__brand,
.tk3-footer__block,
.tk3-footer__contact {
    border-radius: 38px;
    padding: 30px;
    background: rgba(255,248,234,.08);
    border: 1px solid rgba(255,246,230,.13);
    min-height: 100%;
}
.tk3-footer__brand img { width: 150px; background:#fff8ea; border-radius: 24px; padding: 16px; }
.tk3-footer__brand p { margin: 28px 0; color: rgba(255,246,230,.74); font-weight: 650; }
.tk3-socials { display:flex; gap:10px; }
.tk3-socials a { width: 46px; height: 46px; border-radius: 50%; display:inline-flex; align-items:center; justify-content:center; background:rgba(255,255,255,.1); color:#fff; }
.tk3-footer h3 { color:#fff6e6; margin:0 0 18px; font-size:24px; font-weight:900; }
.tk3-footer__block { display:flex; flex-direction:column; gap:11px; }
.tk3-footer__block--two { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); align-content:start; }
.tk3-footer__block--two h3 { grid-column: 1 / -1; }
.tk3-footer__block a,
.tk3-footer__contact a,
.tk3-footer__contact span { color: rgba(255,246,230,.76); font-weight: 750; }
.tk3-footer__block a:hover,
.tk3-footer__contact a:hover { color: var(--tk3-gold); }
.tk3-footer__contact { display:flex; flex-direction:column; gap:13px; }
.tk3-footer__contact i { color: var(--tk3-gold); margin-right: 8px; }
.tk3-footer__pill {
    margin-top: 10px;
    border-radius: 999px;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--tk3-gold), #ffd978);
    color:#241209 !important;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
.tk3-footer__bottom {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,246,230,.13);
    display:flex;
    justify-content:space-between;
    gap: 18px;
    flex-wrap:wrap;
}
.tk3-footer__bottom a { color: rgba(255,246,230,.68); margin-left: 14px; font-weight: 700; }

@media (max-width: 1199px) {
    .tk3-category-rail__inner { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .tk3-branches { grid-template-columns: 1fr; }
    .tk3-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 991px) {
    .tk3-topline__inner { flex-direction: column; align-items: flex-start; padding: 9px 0; }
    .tk3-topline__left, .tk3-topline__right { flex-wrap: wrap; min-height: 0; }
    .tk3-header { padding: 10px 0; }
    .tk3-header__bar { border-radius: 28px; padding: 10px 12px 10px 18px; }
    .tk3-hero, .tk3-hero-slide { min-height: auto; }
    .tk3-hero__floating-card { position: relative; right: auto; bottom: auto; margin: -45px 20px 90px auto; }
    .tk3-hero .slick-arrow { top: auto; bottom: 114px; }
    .tk3-category-rail { margin-top: -24px; }
    .tk3-product-showcase { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .tk3-product-card, .tk3-product-card:nth-child(n) { grid-column: auto; min-height: 350px; }
    .tk3-campaign-grid, .tk3-review-grid { grid-template-columns: 1fr; }
    .tk3-mosaic { grid-template-columns: 1fr 1fr; }
    .tk3-contact-band { grid-template-columns: 1fr; }
    .tk3-contact-band__actions { justify-content: flex-start; }
}
@media (max-width: 767px) {
    .tk3-brand img { width: 128px; }
    .tk3-section { padding: 56px 0; }
    .tk3-section__head { display:block; }
    .tk3-hero__content { padding: 68px 0 44px; }
    .tk3-hero__stats { gap: 10px; }
    .tk3-hero-stat { flex: 1 1 120px; padding: 15px; }
    .tk3-hero__floating-card { margin: 0 15px 96px; width: calc(100% - 30px); }
    .tk3-hero .slick-arrow { display:none !important; }
    .tk3-hero__controls { width: calc(100% - 36px); justify-content:center; }
    .tk3-category-rail__inner { grid-template-columns: 1fr; border-radius: 28px; }
    .tk3-branches, .tk3-product-showcase { display:block; }
    .tk3-branch-panel, .tk3-branch-card, .tk3-product-card, .tk3-campaign-card, .tk3-contact-band { margin-bottom: 16px; border-radius: 30px; }
    .tk3-branch-card { grid-template-columns: 62px 1fr; }
    .tk3-branch-card a { grid-column: 2; }
    .tk3-branch-card__code { width: 58px; height: 58px; border-radius: 19px; font-size: 18px; }
    .tk3-mosaic { grid-template-columns: 1fr; grid-auto-rows: 230px; }
    .tk3-mosaic figure:nth-child(n) { grid-row: auto; grid-column: auto; }
    .tk3-footer__cta, .tk3-footer__grid, .tk3-footer__bottom { display:block; }
    .tk3-footer__cta .tk3-btn { margin-top: 20px; }
    .tk3-footer__brand, .tk3-footer__block, .tk3-footer__contact { margin-bottom: 16px; }
    .tk3-footer__block--two { display:flex; }
    .tk3-footer__bottom a { display:inline-block; margin: 8px 10px 0 0; }
}
