﻿/**
 * Ön yüz site özelleştirmeleri — müşteri kurulumları (tüm sektörler)
 * Yazı tipleri yönetim panelinden (--bs-body-font-family / --bs-headings-font-family).
 */

/* ═══════════════════════════════════════
   Design tokens
   ═══════════════════════════════════════ */
body.theme-kobi {
    --dk-font-body: var(--bs-body-font-family, var(--bs-font-sans-serif));
    --dk-font-display: var(--bs-headings-font-family, var(--dk-font-body));
    --dk-ink: #1c1917;
    --dk-ink-soft: #57534e;
    --dk-ink-muted: #78716c;
    --dk-surface: #fafaf9;
    --dk-surface-alt: #f5f5f4;
    --dk-surface-card: #ffffff;
    --dk-border: rgba(28, 25, 23, 0.08);
    --dk-border-strong: rgba(28, 25, 23, 0.14);
    --dk-radius: 1rem;
    --dk-radius-lg: 1.25rem;
    --dk-radius-pill: 999px;
    --dk-shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06), 0 4px 16px rgba(28, 25, 23, 0.04);
    --dk-shadow-md: 0 8px 32px rgba(28, 25, 23, 0.08);
    --dk-shadow-lg: 0 18px 48px rgba(28, 25, 23, 0.12);
    --dk-gradient-warm: linear-gradient(
        135deg,
        color-mix(in srgb, var(--bs-primary) 85%, #1c1917) 0%,
        color-mix(in srgb, var(--bs-primary) 50%, #292524) 50%,
        #1c1917 100%
    );
    --dk-section-gap: clamp(3.5rem, 6vw, 5rem);
    --dk-ease: cubic-bezier(0.22, 1, 0.36, 1);
    /* Bridge cool kobi-theme tokens → warm stone commerce tokens */
    --kobi-surface: var(--dk-surface-card);
    --kobi-surface-alt: var(--dk-surface-alt);
    --kobi-surface-muted: var(--dk-surface);
    --kobi-ink: var(--dk-ink);
    --kobi-ink-soft: var(--dk-ink-soft);
    --kobi-ink-muted: var(--dk-ink-muted);
    --kobi-border: var(--dk-border-strong);
    --kobi-border-soft: var(--dk-border);
    --kobi-radius: var(--dk-radius);
    --kobi-radius-lg: var(--dk-radius-lg);
    --kobi-shadow-sm: var(--dk-shadow-sm);
    --kobi-shadow-md: var(--dk-shadow-md);
    --kobi-shadow-lg: var(--dk-shadow-lg);
    --kobi-section-gap: var(--dk-section-gap);
    font-family: var(--dk-font-body);
    background-color: var(--dk-surface);
    color: var(--dk-ink);
    -webkit-font-smoothing: antialiased;
}

body.theme-kobi h1,
body.theme-kobi h2,
body.theme-kobi h3,
body.theme-kobi h4,
body.theme-kobi h5,
body.theme-kobi h6,
body.theme-kobi .kobi-section-head__title,
body.theme-kobi .kobi-page-hero .bg-header-page-title {
    font-family: var(--dk-font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

body.theme-kobi .btn,
body.theme-kobi .navbar-nav .nav-link,
body.theme-kobi .form-control {
    font-family: var(--dk-font-body);
}

/* ═══════════════════════════════════════
   Scroll progress
   ═══════════════════════════════════════ */
.dk-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0;
    z-index: 9999;
    background: var(--bs-primary);
    pointer-events: none;
}

/* ═══════════════════════════════════════
   Header
   ═══════════════════════════════════════ */
body.theme-kobi.dk-scrolled .theme-premium-header-shell {
    box-shadow: var(--dk-shadow-sm);
}

body.theme-kobi.dk-scrolled .theme-premium .sticky-top.navbar-dark {
    background: rgba(250, 250, 249, 0.94) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dk-border) !important;
}

body.theme-kobi .theme-premium .navbar-dark .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s var(--dk-ease);
}

body.theme-kobi .theme-premium .navbar-dark .navbar-nav .nav-link:hover,
body.theme-kobi .theme-premium .navbar-dark .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

body.theme-kobi .theme-premium .header-theme-nav-cta {
    background: var(--bs-primary) !important;
    border: none !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--dk-radius-pill) !important;
    box-shadow: var(--dk-shadow-sm) !important;
    transition: transform 0.2s var(--dk-ease), box-shadow 0.2s !important;
}

body.theme-kobi .theme-premium .header-theme-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--dk-shadow-md) !important;
}

/* ═══════════════════════════════════════
   Section headings
   ═══════════════════════════════════════ */
body.theme-kobi .kobi-section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
    position: relative;
}

body.theme-kobi .kobi-section-head.section-title,
body.theme-kobi .kobi-section-head.section-title-plain {
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.theme-kobi .kobi-section-head__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bs-primary);
    background: color-mix(in srgb, var(--bs-primary) 9%, var(--dk-surface-card));
    border: 1px solid color-mix(in srgb, var(--bs-primary) 18%, transparent);
    border-radius: var(--dk-radius-pill);
    padding: 0.38rem 0.95rem;
    margin: 0 auto 0.9rem;
    line-height: 1;
    width: fit-content;
    max-width: 100%;
    flex: 0 0 auto;
}

body.theme-kobi .kobi-home-section--alt .kobi-section-head__eyebrow {
    background: color-mix(in srgb, var(--bs-primary) 10%, var(--dk-surface-alt));
}

body.theme-kobi .kobi-section-head__eyebrow::before {
    display: block;
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--bs-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bs-primary) 20%, transparent);
    flex-shrink: 0;
}

body.theme-kobi .kobi-section-head__eyebrow::after {
    display: none;
    content: none;
}

body.theme-kobi .kobi-section-head__title {
    font-size: clamp(1.75rem, 3.8vw, 2.35rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--dk-ink);
    margin: 0;
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    align-self: stretch;
}

body.theme-kobi .kobi-section-head__lead {
    font-size: 1.02rem;
    color: var(--dk-ink-muted);
    line-height: 1.7;
    margin: 1rem auto 0;
    max-width: 38rem;
    width: 100%;
    flex: 0 0 100%;
    align-self: stretch;
}

/* Başlık reveal — kademeli giriş */
body.theme-kobi .kobi-section-head.dk-reveal {
    opacity: 1;
    transform: none;
}

body.theme-kobi .kobi-section-head.dk-reveal > .kobi-section-head__eyebrow,
body.theme-kobi .kobi-section-head.dk-reveal > .kobi-section-head__title,
body.theme-kobi .kobi-section-head.dk-reveal > .kobi-section-head__lead {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s var(--dk-ease), transform 0.55s var(--dk-ease);
}

body.theme-kobi .kobi-section-head.dk-reveal.dk-revealed > .kobi-section-head__eyebrow {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.04s;
}

body.theme-kobi .kobi-section-head.dk-reveal.dk-revealed > .kobi-section-head__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.12s;
}

body.theme-kobi .kobi-section-head.dk-reveal.dk-revealed > .kobi-section-head__lead {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
}

/* ═══════════════════════════════════════
   Home sections — düzenli ritim
   ═══════════════════════════════════════ */
body.theme-kobi .kobi-home-section {
    padding-top: var(--dk-section-gap) !important;
    padding-bottom: var(--dk-section-gap) !important;
}

body.theme-kobi .kobi-home-section--alt {
    position: relative;
    background:
        radial-gradient(
            120% 80% at 12% 0%,
            color-mix(in srgb, var(--bs-primary) 10%, transparent) 0%,
            transparent 55%
        ),
        radial-gradient(
            90% 70% at 100% 100%,
            color-mix(in srgb, var(--bs-primary) 6%, transparent) 0%,
            transparent 50%
        ),
        var(--dk-surface-alt);
    overflow: hidden;
}

body.theme-kobi .kobi-home-section--alt::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background-image: radial-gradient(circle at 1px 1px, rgba(28, 25, 23, 0.08) 1px, transparent 0);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 85%);
}

/* Scroll reveal — sade fade */
body.theme-kobi .dk-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--dk-ease), transform 0.5s var(--dk-ease);
}

body.theme-kobi .dk-reveal.dk-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   Hero / Carousel
   ═══════════════════════════════════════ */
body.theme-kobi #header-carousel .carousel-item::after {
    background: linear-gradient(
        to top,
        rgba(28, 25, 23, 0.75) 0%,
        rgba(28, 25, 23, 0.25) 50%,
        rgba(28, 25, 23, 0.4) 100%
    );
}

body.theme-kobi #header-carousel .carousel-caption > .p-3 {
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    padding: 1rem !important;
}

body.theme-kobi #header-carousel .carousel-caption h5.text-uppercase {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.theme-kobi #header-carousel .carousel-caption h1.display-1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
}

body.theme-kobi #header-carousel .carousel-caption .btn-primary {
    border-radius: var(--dk-radius-pill) !important;
    padding: 0.75rem 1.75rem !important;
    font-weight: 600;
}

body.theme-kobi #header-carousel .carousel-indicators [data-bs-target] {
    width: 2rem;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
}

body.theme-kobi #header-carousel .carousel-indicators .active {
    background: var(--bs-primary);
}

/* ═══════════════════════════════════════
   Uniform grid cards — tüm bölümler eşit
   ═══════════════════════════════════════ */
body.theme-kobi .team-item,
body.theme-kobi .home-pages .bg-light.rounded,
body.theme-kobi .home-references .bg-light.rounded,
body.theme-kobi .home-contact .bg-light.rounded {
    border: 1px solid var(--dk-border) !important;
    border-radius: var(--dk-radius-lg) !important;
    background: var(--dk-surface-card) !important;
    box-shadow: var(--dk-shadow-sm) !important;
    transition: transform 0.25s var(--dk-ease), box-shadow 0.25s var(--dk-ease), border-color 0.25s !important;
}

body.theme-kobi .team-item:hover,
body.theme-kobi .home-pages .bg-light.rounded:hover,
body.theme-kobi .home-references .bg-light.rounded:hover,
body.theme-kobi .home-contact .bg-light.rounded:hover {
    transform: translateY(-4px);
    box-shadow: var(--dk-shadow-md) !important;
    border-color: color-mix(in srgb, var(--bs-primary) 20%, var(--dk-border)) !important;
}

body.theme-kobi .team-item .ratio,
body.theme-kobi .team-item .service-grid-thumb {
    overflow: hidden;
}

body.theme-kobi .team-item .ratio img,
body.theme-kobi .team-item .service-grid-thumb img {
    transition: transform 0.4s var(--dk-ease);
}

body.theme-kobi .team-item:hover .ratio img,
body.theme-kobi .team-item:hover .service-grid-thumb img {
    transform: scale(1.04);
}

@media (max-width: 767.98px) {
    body.theme-kobi .service-grid-thumb > .d-flex {
        justify-content: center !important;
        text-align: center;
    }

    body.theme-kobi .service-grid-thumb > .d-flex > i,
    body.theme-kobi .service-grid-thumb > .d-flex > div > i {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

body.theme-kobi .team-item .p-4 h2,
body.theme-kobi .team-item .p-4 .h5 {
    font-family: var(--dk-font-display);
    font-size: 1.2rem !important;
    font-weight: 600;
}

/* Kart CTA — İncele / Oku / Detaylar */
body.theme-kobi .team-item span.text-primary.small.fw-semibold,
body.theme-kobi .team-item span.small.text-muted,
body.theme-kobi .home-pages .bg-light.rounded span.text-primary.small.fw-semibold {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.85rem !important;
    padding: 0.52rem 1.2rem;
    font-size: 0.82rem !important;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--dk-radius-pill);
    box-shadow: var(--dk-shadow-sm);
    transition:
        color 0.22s var(--dk-ease),
        background 0.22s var(--dk-ease),
        border-color 0.22s var(--dk-ease),
        transform 0.22s var(--dk-ease),
        box-shadow 0.22s var(--dk-ease);
}

/* Blog kartı — Oku düğmesi (430. satır kuralından ayrı; daha yüksek özgüllük) */
body.theme-kobi .team-item .p-4.d-flex span.text-primary.small.fw-semibold.kobi-blog-card-cta {
    margin-top: 1.5rem !important;
    padding-top: 0.52rem;
    align-self: center;
}

body.theme-kobi .team-item span.text-primary.small.fw-semibold,
body.theme-kobi .home-pages .bg-light.rounded span.text-primary.small.fw-semibold {
    color: var(--bs-primary) !important;
    background: color-mix(in srgb, var(--bs-primary) 10%, var(--dk-surface-card));
    border: 1.5px solid color-mix(in srgb, var(--bs-primary) 30%, transparent);
}

body.theme-kobi .team-item span.small.text-muted {
    color: var(--dk-ink-soft) !important;
    background: var(--dk-surface);
    border: 1.5px solid var(--dk-border-strong);
}

body.theme-kobi .team-item span.text-primary.small.fw-semibold i,
body.theme-kobi .team-item span.small.text-muted i,
body.theme-kobi .home-pages .bg-light.rounded span.text-primary.small.fw-semibold i {
    color: inherit;
    font-size: 0.9em;
    transition: transform 0.22s var(--dk-ease);
}

body.theme-kobi .team-item:hover span.text-primary.small.fw-semibold,
body.theme-kobi .home-pages .bg-light.rounded:hover span.text-primary.small.fw-semibold {
    color: #fff !important;
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: translateY(-1px);
    box-shadow: var(--dk-shadow-md);
}

body.theme-kobi .team-item:hover span.small.text-muted {
    color: var(--bs-primary) !important;
    background: color-mix(in srgb, var(--bs-primary) 8%, var(--dk-surface-card));
    border-color: color-mix(in srgb, var(--bs-primary) 28%, transparent);
    transform: translateY(-1px);
    box-shadow: var(--dk-shadow-sm);
}

body.theme-kobi .team-item:hover span.text-primary.small.fw-semibold i,
body.theme-kobi .team-item:hover span.small.text-muted i,
body.theme-kobi .home-pages .bg-light.rounded:hover span.text-primary.small.fw-semibold i {
    transform: translateX(3px);
}

/* Kart CTA — flex içinde alta (blog Oku düğmesi hariç) */
body.theme-kobi .team-item .p-4.d-flex span.text-primary.small.fw-semibold:not(.kobi-blog-card-cta) {
    margin-top: auto !important;
    padding-top: 0.52rem;
}

/* Grid satırları — Bootstrap düzenini koru, müdahale yok */
body.theme-kobi .home-section .row.g-4,
body.theme-kobi .home-section .row.g-3 {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
}

/* Hakkımızda kartı — diğer kartlarla aynı stil */
body.theme-kobi .home-pages .bg-light.rounded {
    min-height: 200px;
}

body.theme-kobi .home-pages .bg-primary.rounded {
    background: var(--bs-primary) !important;
    border-radius: var(--dk-radius) !important;
}

/* Referans logoları */
body.theme-kobi .home-references .bg-light.rounded img {
    filter: grayscale(30%);
    transition: filter 0.3s var(--dk-ease);
}

body.theme-kobi .home-references .bg-light.rounded:hover img {
    filter: grayscale(0%);
}

/* ═══════════════════════════════════════
   Testimonials — kartlar arası boşluk
   ═══════════════════════════════════════ */
body.theme-kobi .home-testimonials .testimonial-carousel,
body.theme-kobi .testimonial-carousel {
    overflow: visible;
}

body.theme-kobi .testimonial-carousel .owl-stage-outer {
    overflow: visible;
    padding: 0.25rem 0 0.5rem;
}

body.theme-kobi .testimonial-carousel .owl-item {
    padding: 0 0.65rem;
}

body.theme-kobi .testimonial-carousel .testimonial-item {
    margin: 0 !important;
    height: 100%;
    background: var(--dk-surface-card) !important;
    border: 1px solid var(--dk-border) !important;
    border-radius: var(--dk-radius-lg) !important;
    box-shadow: var(--dk-shadow-sm) !important;
}

body.theme-kobi .testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: var(--dk-shadow-md) !important;
    border-color: color-mix(in srgb, var(--bs-primary) 15%, var(--dk-border)) !important;
}

body.theme-kobi .testimonial-carousel .testimonial-item h4 {
    font-family: var(--dk-font-display);
    font-size: 1.15rem;
}

body.theme-kobi .testimonial-carousel .owl-dots {
    margin-top: 1.25rem;
}

@media (min-width: 768px) {
    body.theme-kobi .testimonial-carousel .owl-item {
        padding: 0 0.75rem;
    }
}

@media (min-width: 992px) {
    body.theme-kobi .testimonial-carousel .owl-item {
        padding: 0 0.85rem;
    }
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
body.theme-kobi .kobi-faq-accordion {
    border-radius: var(--dk-radius-lg);
    border: 1px solid var(--dk-border);
    box-shadow: var(--dk-shadow-sm);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

body.theme-kobi .kobi-faq-accordion .accordion-button {
    font-weight: 600;
    padding: 1rem 1.25rem;
}

body.theme-kobi .kobi-faq-accordion .accordion-button:not(.collapsed) {
    background: color-mix(in srgb, var(--bs-primary) 6%, var(--dk-surface));
    color: var(--bs-primary);
}

/* ═══════════════════════════════════════
   Contact
   ═══════════════════════════════════════ */
body.theme-kobi .kobi-contact-icon-badge {
    background: var(--bs-primary) !important;
    border-radius: var(--dk-radius) !important;
}

body.theme-kobi .home-contact h3.h5 {
    font-family: var(--dk-font-display);
    font-size: 1.2rem !important;
}

/* ═══════════════════════════════════════
   Buttons
   ═══════════════════════════════════════ */
body.theme-kobi .btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    border-radius: var(--dk-radius-pill) !important;
    font-weight: 600;
    box-shadow: var(--dk-shadow-sm);
    transition: transform 0.2s var(--dk-ease), box-shadow 0.2s !important;
}

body.theme-kobi .btn-primary:hover,
body.theme-kobi .btn-primary:focus-visible {
    transform: translateY(-2px);
    box-shadow: var(--dk-shadow-md);
}

body.theme-kobi .home-section .text-center .btn-primary {
    padding: 0.65rem 2rem !important;
}

body.theme-kobi .btn-outline-primary {
    border-radius: var(--dk-radius-pill) !important;
    font-weight: 600;
}

/* ═══════════════════════════════════════
   Inner pages
   ═══════════════════════════════════════ */
body.theme-kobi .kobi-page-hero.bg-header-page-hero {
    background: var(--dk-gradient-warm) !important;
    position: relative;
    overflow: hidden;
}

body.theme-kobi .kobi-page-hero .kobi-page-hero__pattern {
    opacity: 0.55;
}

body.theme-kobi .kobi-page-hero .bg-header-page-inner {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}

body.theme-kobi .kobi-page-hero .bg-header-breadcrumb-band {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--dk-radius-pill);
    padding: 0.5rem 1.15rem;
    margin-top: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

body.theme-kobi .kobi-page-hero .bg-header-breadcrumb {
    font-size: 0.85rem;
    gap: 0.15rem;
}

body.theme-kobi .kobi-page-hero .bg-header-crumb {
    transition: opacity 0.2s var(--dk-ease);
}

body.theme-kobi .kobi-page-hero a.bg-header-crumb:hover {
    opacity: 0.85;
    text-decoration: underline !important;
    text-underline-offset: 0.15em;
}

body.theme-kobi .kobi-page-hero .bg-header-crumb--current {
    font-weight: 600;
}

body.theme-kobi .kobi-page-hero .bg-header-page-title {
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.22);
    line-height: 1.15;
    position: relative;
    display: inline-block;
    width: 100%;
}

body.theme-kobi .container-fluid.py-5.wow.fadeInUp:not(.kobi-home-section) > .container,
body.theme-kobi .container-fluid.py-4.wow.fadeInUp:not(.kobi-home-section) > .container {
    background: var(--dk-surface-card);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg);
    box-shadow: var(--dk-shadow-md);
    margin-top: 1.25rem;
    padding: clamp(1.5rem, 3vw, 2.25rem) !important;
}

@media (min-width: 992px) {
    body.theme-kobi .container-fluid.py-5.wow.fadeInUp:not(.kobi-home-section) > .container,
    body.theme-kobi .container-fluid.py-4.wow.fadeInUp:not(.kobi-home-section) > .container {
        margin-top: 1.75rem;
    }
}

body.theme-kobi .container-fluid.py-5.wow.fadeInUp:not(.kobi-home-section) .kobi-section-head {
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 992px) {
    body.theme-kobi .archive-products-layout--with-cats .archive-products-cats {
        position: sticky;
        top: calc(var(--header-sticky-offset, 18px) + 1rem);
        align-self: flex-start;
    }
}

body.theme-kobi .content-body img,
body.theme-kobi .blog-post-content img {
    border-radius: var(--dk-radius);
    max-width: 100%;
    height: auto;
}

body.theme-kobi .content-body blockquote,
body.theme-kobi .blog-post-content blockquote {
    border-left: 3px solid var(--bs-primary);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: color-mix(in srgb, var(--bs-primary) 5%, var(--dk-surface));
    border-radius: 0 var(--dk-radius) var(--dk-radius) 0;
    color: var(--dk-ink-soft);
    font-style: italic;
}

body.theme-kobi .content-body,
body.theme-kobi .blog-post-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dk-ink-soft);
}

/* ═══════════════════════════════════════
   Forms
   ═══════════════════════════════════════ */
body.theme-kobi .form-control,
body.theme-kobi .form-select {
    border-radius: 0.65rem;
    border-color: var(--dk-border-strong);
    padding: 0.7rem 1rem;
}

body.theme-kobi .form-control:focus,
body.theme-kobi .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bs-primary) 12%, transparent);
}

/* ═══════════════════════════════════════
   Footer
   ═══════════════════════════════════════ */
body.theme-kobi .theme-premium-footer.site-footer {
    position: relative;
    margin-top: 3rem !important;
    overflow: hidden;
    isolation: isolate;
}

body.theme-kobi .dk-pre-footer-cta + .theme-premium-footer.site-footer {
    margin-top: 0 !important;
}

/* Üst accent çizgisi + hafif ışık efekti (panel arka plan rengi korunur) */
body.theme-kobi .theme-premium-footer.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        color-mix(in srgb, var(--bs-primary) 70%, #fff) 35%,
        var(--bs-primary) 50%,
        color-mix(in srgb, var(--bs-primary) 70%, #fff) 65%,
        transparent 100%
    );
    z-index: 2;
}

body.theme-kobi .theme-premium-footer.site-footer::after {
    content: "";
    position: absolute;
    top: 0;
    right: -5%;
    width: min(42vw, 480px);
    height: min(42vw, 480px);
    background: radial-gradient(
        circle at center,
        color-mix(in srgb, var(--bs-primary) 14%, transparent) 0%,
        transparent 68%
    );
    pointer-events: none;
    z-index: 0;
}

body.theme-kobi .theme-premium-footer > .container {
    position: relative;
    z-index: 1;
    padding-top: clamp(2.5rem, 5vw, 3.5rem) !important;
    padding-bottom: clamp(2rem, 4vw, 3rem) !important;
}

body.theme-kobi .theme-premium-footer > .container > .row {
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 2rem;
}

/* Sütun başlıkları */
body.theme-kobi .footer-widget-heading {
    margin-bottom: 1.25rem !important;
}

body.theme-kobi .footer-widget-heading h3 {
    font-family: var(--dk-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.75rem;
    color: var(--sf-title, inherit) !important;
}

body.theme-kobi .footer-widget-heading h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.25rem;
    height: 2px;
    background: var(--bs-primary);
    border-radius: 2px;
}

body.theme-kobi .footer-widget {
    line-height: 1.65;
}

/* Footer linkleri — panel yazı rengi; hover'da renk değişmez */
body.theme-kobi .theme-premium-footer a,
body.theme-kobi .theme-premium-footer a.text-light {
    color: var(--sf-text, inherit) !important;
}

body.theme-kobi .theme-premium-footer a:hover,
body.theme-kobi .theme-premium-footer a:focus-visible,
body.theme-kobi .theme-premium-footer a.text-light:hover,
body.theme-kobi .theme-premium-footer a.text-light:focus-visible {
    color: var(--sf-text, inherit) !important;
}

body.theme-kobi .footer-widget-about p.small {
    line-height: 1.75;
    opacity: 0.92 !important;
    max-width: 22rem;
}

/* Sosyal medya ikonları */
body.theme-kobi .footer-widget-about .list-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

body.theme-kobi .footer-widget-about .list-inline-item {
    margin: 0 !important;
}

body.theme-kobi .footer-widget-about .list-inline-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: color-mix(in srgb, var(--sf-text, currentColor) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--sf-text, currentColor) 22%, transparent);
    color: var(--sf-text, inherit) !important;
    transition: background 0.25s var(--dk-ease), border-color 0.25s var(--dk-ease), transform 0.25s var(--dk-ease), opacity 0.25s;
}

body.theme-kobi .footer-widget-about .list-inline-item a i {
    color: inherit;
}

body.theme-kobi .footer-widget-about .list-inline-item a:hover {
    background: color-mix(in srgb, var(--sf-text, currentColor) 18%, transparent);
    border-color: color-mix(in srgb, var(--sf-text, currentColor) 38%, transparent);
    color: var(--sf-text, inherit) !important;
    opacity: 1;
    transform: translateY(-2px);
}

/* Menü & blog linkleri */
body.theme-kobi .footer-widget-menu nav ul,
body.theme-kobi .footer-widget-posts ul {
    gap: 0.15rem;
}

body.theme-kobi .footer-widget-menu li,
body.theme-kobi .footer-widget-posts li {
    margin-bottom: 0.55rem !important;
}

body.theme-kobi .footer-widget-menu a,
body.theme-kobi .footer-widget-posts a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.92rem;
    opacity: 0.88;
    transition: opacity 0.2s var(--dk-ease), transform 0.2s var(--dk-ease);
}

body.theme-kobi .footer-widget-menu a::before,
body.theme-kobi .footer-widget-posts a::before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--sf-text, currentColor);
    opacity: 0.65;
    border-radius: 1px;
    transition: width 0.2s var(--dk-ease);
    flex-shrink: 0;
}

body.theme-kobi .footer-widget-menu a:hover,
body.theme-kobi .footer-widget-posts a:hover,
body.theme-kobi .footer-widget-menu a:focus-visible,
body.theme-kobi .footer-widget-posts a:focus-visible {
    opacity: 1;
    transform: translateX(3px);
}

body.theme-kobi .footer-widget-menu a:hover::before,
body.theme-kobi .footer-widget-posts a:hover::before {
    width: 0.65rem;
}

/* İletişim sütunu */
body.theme-kobi .footer-widget-contact .fw-semibold {
    font-family: var(--dk-font-display);
    font-size: 1.05rem;
    margin-bottom: 0.85rem !important;
}

body.theme-kobi .footer-widget-contact .footer-contact-icon {
    flex-shrink: 0;
    width: 1.85rem;
    height: 1.85rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: color-mix(in srgb, var(--sf-text, currentColor) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--sf-text, currentColor) 20%, transparent);
    color: var(--sf-text, inherit) !important;
    font-size: 0.85rem;
}

body.theme-kobi .footer-widget-contact p.small {
    margin-bottom: 0.65rem !important;
}

body.theme-kobi .footer-widget-contact a {
    transition: opacity 0.2s var(--dk-ease);
}

body.theme-kobi .footer-widget-contact a:hover,
body.theme-kobi .footer-widget-contact a:focus-visible {
    opacity: 1;
}

/* Alt bant */
body.theme-kobi .site-footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 1.15rem !important;
    padding-bottom: 1.15rem !important;
}

body.theme-kobi .site-footer-bottom .footer-legal-nav {
    border-bottom-color: rgba(255, 255, 255, 0.12) !important;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem !important;
}

body.theme-kobi .site-footer-bottom .footer-legal-links {
    gap: 0.5rem 1rem;
}

body.theme-kobi .site-footer-bottom .footer-legal-link {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.85;
    padding: 0.2rem 0;
    transition: opacity 0.2s var(--dk-ease);
}

body.theme-kobi .site-footer-bottom .footer-legal-link:hover,
body.theme-kobi .site-footer-bottom .footer-legal-link:focus-visible {
    opacity: 1;
    text-decoration: underline !important;
    text-underline-offset: 0.2em;
}

body.theme-kobi .site-footer-bottom .footer-bottom-copy {
    font-size: 0.85rem;
    opacity: 0.88;
    line-height: 1.5;
}

body.theme-kobi .site-footer-bottom .footer-bottom-right {
    font-size: 0.82rem;
    opacity: 0.75;
}

body.theme-kobi .site-footer-bottom .footer-bottom-right a {
    transition: opacity 0.2s var(--dk-ease);
}

body.theme-kobi .site-footer-bottom .footer-bottom-right a:hover,
body.theme-kobi .site-footer-bottom .footer-bottom-right a:focus-visible {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

@media (max-width: 767.98px) {
    body.theme-kobi .footer-widget-heading h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    body.theme-kobi .footer-widget-about p.small {
        max-width: none;
    }

    body.theme-kobi .footer-widget-about .list-inline {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    body.theme-kobi .theme-premium-footer > .container > .row > [class*="col-"]:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 1.5rem;
    }
}

/* ═══════════════════════════════════════
   Misc
   ═══════════════════════════════════════ */
body.theme-kobi .pagination .page-link {
    border-radius: 0.4rem !important;
}

body.theme-kobi .pagination .page-item.active .page-link {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

body.theme-kobi .archive-category-card {
    border-radius: var(--dk-radius-lg) !important;
}

body.theme-kobi .archive-category-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--dk-shadow-md) !important;
}

body.theme-kobi .archive-category-card[aria-current="page"] {
    border-color: color-mix(in srgb, var(--bs-primary) 35%, var(--dk-border)) !important;
    box-shadow: var(--dk-shadow-md) !important;
}

body.theme-kobi .kobi-cat-nav__panel {
    background: var(--dk-surface-card, #fff);
}
body.theme-kobi .kobi-cat-nav__heading {
    color: var(--dk-ink-muted, #78716c);
}
body.theme-kobi .kobi-cat-nav__link:hover {
    background: color-mix(in srgb, var(--bs-primary) 8%, transparent);
    color: var(--bs-primary);
}
body.theme-kobi .kobi-cat-nav__link.is-active {
    background: color-mix(in srgb, var(--bs-primary) 12%, #fff);
    color: var(--bs-primary);
}
body.theme-kobi .kobi-cat-nav__chevron:hover,
body.theme-kobi .kobi-cat-nav__item.is-open > .kobi-cat-nav__row > .kobi-cat-nav__chevron {
    color: var(--bs-primary);
}
body.theme-kobi .kobi-cat-nav__children {
    border-left-color: color-mix(in srgb, var(--bs-primary) 22%, var(--dk-border, #e7e5e4));
}
body.theme-kobi .kobi-cat-nav__toggle {
    border-radius: var(--dk-radius-pill) !important;
    border-color: var(--dk-border-strong, #d6d3d1);
}
@media (max-width: 991.98px) {
    body.theme-kobi .kobi-cat-nav__panel {
        border-color: var(--dk-border, #e7e5e4);
        border-radius: var(--dk-radius-lg);
        box-shadow: var(--dk-shadow-sm);
    }
}

/* ═══════════════════════════════════════
   İletişim sayfası
   ═══════════════════════════════════════ */
body.theme-kobi .theme-contact-page .theme-contact-form-box {
    border: 1px solid var(--dk-border) !important;
    border-radius: var(--dk-radius-lg) !important;
    background: var(--dk-surface-card) !important;
    padding: clamp(1.25rem, 3vw, 1.75rem) !important;
    box-shadow: var(--dk-shadow-sm);
}

body.theme-kobi .theme-contact-page .theme-contact-branch-card {
    border: 1px solid var(--dk-border) !important;
    border-radius: var(--dk-radius-lg) !important;
    background: var(--dk-surface-card) !important;
    box-shadow: var(--dk-shadow-sm);
    transition: box-shadow 0.25s var(--dk-ease), border-color 0.25s;
}

body.theme-kobi .theme-contact-page .theme-contact-branch-card:hover {
    box-shadow: var(--dk-shadow-md);
    border-color: color-mix(in srgb, var(--bs-primary) 18%, var(--dk-border)) !important;
}

body.theme-kobi .theme-contact-page .theme-contact-map,
body.theme-kobi .theme-contact-page .theme-contact-branch-map {
    border-radius: var(--dk-radius-lg);
    overflow: hidden;
    border: 1px solid var(--dk-border);
}

body.theme-kobi .theme-contact-page .theme-contact-section-title {
    font-family: var(--dk-font-display);
    font-weight: 600;
    font-size: 1.12rem;
    color: var(--dk-ink);
    margin-bottom: 1rem !important;
    letter-spacing: -0.01em;
}

body.theme-kobi .theme-contact-page .alert {
    border-radius: var(--dk-radius);
    border: none;
}

/* ═══════════════════════════════════════
   Üst şerit (topbar)
   ═══════════════════════════════════════ */
body.theme-kobi .header-theme-topbar {
    font-size: 0.82rem;
    border-bottom: 1px solid var(--dk-border) !important;
}

body.theme-kobi .header-theme-topbar a {
    transition: opacity 0.2s var(--dk-ease);
}

body.theme-kobi .header-theme-topbar a:hover {
    opacity: 0.8;
}

/* ═══════════════════════════════════════
   Mobil menü
   ═══════════════════════════════════════ */
body.theme-kobi .kobicms-nav-offcanvas {
    border-right: none !important;
    box-shadow: var(--dk-shadow-lg) !important;
}

body.theme-kobi .kobicms-nav-offcanvas .offcanvas-header {
    background: var(--dk-surface);
    border-bottom: 1px solid var(--dk-border) !important;
}

body.theme-kobi .kobi-mnav-shop {
    border-top-color: var(--dk-border, rgba(15, 23, 42, 0.08));
    background: linear-gradient(180deg, var(--dk-surface, #f8fafc) 0%, #fff 100%);
}
body.theme-kobi .kobi-mnav-shop__icon {
    background: color-mix(in srgb, var(--bs-primary) 88%, #000);
}

body.theme-kobi .kobicms-mnav-link--active {
    border-left: 3px solid var(--bs-primary);
    background: color-mix(in srgb, var(--bs-primary) 8%, transparent);
}

body.theme-kobi .kobicms-mnav-link:hover,
body.theme-kobi .kobicms-mnav-link:focus-visible {
    background: color-mix(in srgb, var(--bs-primary) 6%, transparent);
}

/* ═══════════════════════════════════════
   Footer öncesi CTA bandı (JS enjekte)
   ═══════════════════════════════════════ */
body.theme-kobi .dk-pre-footer-cta {
    position: relative;
    margin-top: 2rem;
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: var(--dk-gradient-warm);
    overflow: hidden;
}

body.theme-kobi .dk-pre-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 50%, rgba(255, 255, 255, 0.08), transparent 45%),
        radial-gradient(circle at 85% 30%, color-mix(in srgb, var(--bs-primary) 25%, transparent), transparent 50%);
    pointer-events: none;
}

body.theme-kobi .dk-pre-footer-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--dk-radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body.theme-kobi .dk-pre-footer-cta__title {
    font-family: var(--dk-font-display);
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.35rem;
    line-height: 1.25;
}

body.theme-kobi .dk-pre-footer-cta__lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 36rem;
}

body.theme-kobi .dk-pre-footer-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    flex-shrink: 0;
}

body.theme-kobi .dk-pre-footer-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.35rem;
    border-radius: var(--dk-radius-pill);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: transform 0.2s var(--dk-ease), box-shadow 0.2s, background 0.2s;
}

body.theme-kobi .dk-pre-footer-cta__btn--primary {
    background: #fff;
    color: var(--dk-ink);
    box-shadow: var(--dk-shadow-sm);
}

body.theme-kobi .dk-pre-footer-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--dk-shadow-md);
    color: var(--dk-ink);
}

body.theme-kobi .dk-pre-footer-cta__btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}

body.theme-kobi .dk-pre-footer-cta__btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    body.theme-kobi .dk-pre-footer-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    body.theme-kobi .dk-pre-footer-cta__actions {
        justify-content: center;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.theme-kobi .kobi-section-head.dk-reveal > .kobi-section-head__eyebrow,
    body.theme-kobi .kobi-section-head.dk-reveal > .kobi-section-head__title,
    body.theme-kobi .kobi-section-head.dk-reveal > .kobi-section-head__lead {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    body.theme-kobi .dk-reveal,
    body.theme-kobi .team-item,
    body.theme-kobi .team-item .ratio img {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}
/* ═══════════════════════════════════════
   E-ticaret: ürün kartı, hesap, anasayfa
   ═══════════════════════════════════════ */

/* —— Header shop toolbar —— */
body.theme-kobi .kobi-shop-toolbar,
.kobi-shop-toolbar {
    --kobi-shop-control-size: 2.4rem;
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 0.55rem;
    margin-left: 0.85rem;
    flex-shrink: 0;
    max-width: 100%;
    line-height: 1;
}

body.theme-kobi .kobi-shop-search,
.kobi-shop-search {
    display: none;
    align-items: center;
    align-self: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    height: var(--kobi-shop-control-size);
}

@media (min-width: 768px) {
    body.theme-kobi .kobi-shop-search,
    .kobi-shop-search {
        display: inline-flex;
    }
}

body.theme-kobi .kobi-shop-search__field,
.kobi-shop-search__field {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: var(--kobi-shop-control-size);
    width: min(13.5rem, 24vw);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 1200px) {
    body.theme-kobi .kobi-shop-search__field,
    .kobi-shop-search__field {
        width: 16rem;
    }
}

body.theme-kobi .kobi-shop-search__field:focus-within,
.kobi-shop-search__field:focus-within {
    border-color: color-mix(in srgb, var(--bs-primary) 45%, #cbd5e1);
    box-shadow:
        0 0 0 3px color-mix(in srgb, var(--bs-primary) 16%, transparent),
        0 4px 14px color-mix(in srgb, var(--bs-primary) 12%, transparent);
}

body.theme-kobi .kobi-shop-search__input,
.kobi-shop-search__input {
    box-sizing: border-box;
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 2.65rem 0 1rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #0f172a;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    line-height: 1;
    outline: none;
    box-shadow: none;
}

body.theme-kobi .kobi-shop-search__input::placeholder,
.kobi-shop-search__input::placeholder {
    color: #94a3b8;
    font-weight: 450;
}

body.theme-kobi .kobi-shop-search__input::-webkit-search-cancel-button,
.kobi-shop-search__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

body.theme-kobi .kobi-shop-search__submit,
.kobi-shop-search__submit {
    position: absolute;
    right: 0.28rem;
    top: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
    display: inline-grid;
    place-items: center;
    width: 1.9rem;
    height: 1.9rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--bs-primary) 92%, #fff) 0%, var(--bs-primary) 55%, color-mix(in srgb, var(--bs-primary) 78%, #000) 100%);
    color: #fff;
    cursor: pointer;
    line-height: 1;
    box-shadow: 0 2px 6px color-mix(in srgb, var(--bs-primary) 35%, transparent);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

body.theme-kobi .kobi-shop-search__submit > i,
.kobi-shop-search__submit > i {
    display: block;
    font-size: 0.82rem;
    line-height: 1;
    transform: translateY(0.04em);
}

body.theme-kobi .kobi-shop-search__submit:hover,
body.theme-kobi .kobi-shop-search__submit:focus-visible,
.kobi-shop-search__submit:hover,
.kobi-shop-search__submit:focus-visible {
    filter: brightness(1.06);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--bs-primary) 40%, transparent);
    transform: translateY(-50%) scale(1.04);
}

body.theme-kobi .kobi-shop-search__submit:active,
.kobi-shop-search__submit:active {
    transform: translateY(-50%) scale(0.96);
}

body.theme-kobi .kobi-shop-actions,
.kobi-shop-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    height: var(--kobi-shop-control-size);
    line-height: 1;
}

/* Mobil üst bar: sepet / hesap / favori / hamburger aynı boyut (40×40) */
#kobicms-main-compact {
    --kobi-shop-control-size: 2.5rem;
}
#kobicms-main-compact .kobi-shop-toolbar {
    --kobi-shop-control-size: 2.5rem;
    margin-left: 0.25rem;
    margin-right: 0.15rem;
    gap: 0.35rem;
}
#kobicms-main-compact .kobi-shop-search {
    display: none !important;
}
#kobicms-main-compact .kobi-shop-actions {
    gap: 0.25rem;
}
#kobicms-main-compact .kobi-shop-action,
#kobicms-main-compact .kobi-shop-action--menu {
    width: 2.5rem !important;
    height: 2.5rem !important;
    min-width: 2.5rem !important;
    min-height: 2.5rem !important;
    flex-shrink: 0;
}
#kobicms-main-compact .kobi-shop-action i,
#kobicms-main-compact .kobi-shop-action--menu i {
    font-size: 1.05rem;
    transform: translateY(0.06em);
}
#kobicms-main-compact .kobi-shop-action__badge {
    font-size: 0.65rem;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 0.25rem;
}

@media (max-width: 379.98px) {
    #kobicms-main-compact,
    #kobicms-main-compact .kobi-shop-toolbar {
        --kobi-shop-control-size: 2.25rem;
    }
    #kobicms-main-compact .kobi-shop-action,
    #kobicms-main-compact .kobi-shop-action--menu {
        width: 2.25rem !important;
        height: 2.25rem !important;
        min-width: 2.25rem !important;
        min-height: 2.25rem !important;
    }
    #kobicms-main-compact .kobi-shop-toolbar {
        gap: 0.2rem;
    }
    #kobicms-main-compact .kobi-shop-actions {
        gap: 0.15rem;
    }
}

body.theme-kobi .kobi-shop-action,
.kobi-shop-action {
    position: relative;
    box-sizing: border-box;
    display: inline-grid;
    place-items: center;
    width: var(--kobi-shop-control-size);
    height: var(--kobi-shop-control-size);
    min-width: var(--kobi-shop-control-size);
    min-height: var(--kobi-shop-control-size);
    margin: 0;
    padding: 0;
    border-radius: 999px;
    color: #334155 !important;
    text-decoration: none !important;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    line-height: 1;
    vertical-align: middle;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

body.theme-kobi .kobi-shop-action > i,
.kobi-shop-action > i {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0;
    padding: 0;
    font-size: 1.05rem;
    line-height: 1;
    transform: translateY(0.06em);
}

body.theme-kobi .kobi-shop-action > i::before,
.kobi-shop-action > i::before {
    display: block;
    line-height: 1;
}

body.theme-kobi .kobi-shop-action:hover,
body.theme-kobi .kobi-shop-action:focus-visible,
.kobi-shop-action:hover,
.kobi-shop-action:focus-visible {
    background: linear-gradient(145deg, color-mix(in srgb, var(--bs-primary) 92%, #fff) 0%, var(--bs-primary) 100%);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--bs-primary) 28%, transparent);
    transform: translateY(-1px);
    filter: none;
}

body.theme-kobi .kobi-shop-action__badge,
.kobi-shop-action__badge {
    position: absolute;
    top: -0.15rem;
    right: -0.15rem;
    box-sizing: border-box;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 0.28rem;
    border-radius: 999px;
    background: var(--bs-primary);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px color-mix(in srgb, var(--bs-primary) 35%, transparent);
}

body.theme-kobi.dk-scrolled .theme-premium .sticky-top.navbar-dark .kobi-shop-search__submit,
body.theme-kobi .theme-premium .sticky-top.navbar-dark .kobi-shop-search__submit {
    background: color-mix(in srgb, var(--bs-primary) 90%, #000);
}


@media (prefers-reduced-motion: reduce) {
    body.theme-kobi .kobi-shop-action,
    body.theme-kobi .kobi-shop-search__submit,
    .kobi-shop-action,
    .kobi-shop-search__submit {
        transition: none !important;
        transform: none !important;
    }
}
body.theme-kobi .kobi-product-card {
    display: flex;
    flex-direction: column;
    background: var(--dk-surface-card, #fff);
    border: 1px solid var(--dk-border, rgba(0,0,0,.08));
    border-radius: var(--dk-radius, 1rem);
    overflow: hidden;
    box-shadow: var(--dk-shadow-sm);
    transition: transform .35s var(--dk-ease, ease), box-shadow .35s var(--dk-ease, ease), border-color .35s ease;
}
body.theme-kobi .kobi-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dk-shadow-lg);
    border-color: color-mix(in srgb, var(--bs-primary) 22%, var(--dk-border));
}
body.theme-kobi .kobi-product-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: color-mix(in srgb, var(--bs-primary) 8%, #fff);
    overflow: hidden;
}
body.theme-kobi .kobi-product-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(28, 25, 23, 0.08) 100%);
    opacity: 0;
    transition: opacity .35s var(--dk-ease);
}
body.theme-kobi .kobi-product-card:hover .kobi-product-card__media::after {
    opacity: 1;
}
body.theme-kobi .kobi-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--dk-ease, ease);
}
body.theme-kobi .kobi-product-card:hover .kobi-product-card__img {
    transform: scale(1.05);
}
body.theme-kobi .kobi-product-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--bs-primary);
}
body.theme-kobi .kobi-product-card__badges {
    position: absolute;
    top: .65rem;
    left: .65rem;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    z-index: 2;
}
body.theme-kobi .kobi-product-card__badges .badge {
    border-radius: var(--dk-radius-pill);
    font-weight: 650;
    font-size: .72rem;
    letter-spacing: .02em;
    padding: .4rem .65rem;
    border: 1px solid transparent;
    box-shadow: var(--dk-shadow-sm);
}
body.theme-kobi .kobi-product-card__badges .badge.text-bg-primary {
    background: color-mix(in srgb, var(--bs-primary) 92%, #000) !important;
}
body.theme-kobi .kobi-product-card__badges .badge.text-bg-danger {
    background: color-mix(in srgb, #b91c1c 88%, #000) !important;
}
body.theme-kobi .kobi-product-card__badges .badge.text-bg-secondary {
    background: color-mix(in srgb, var(--dk-ink) 72%, #fff) !important;
}
body.theme-kobi .kobi-product-card__wish {
    position: absolute;
    top: .55rem;
    right: .55rem;
    z-index: 3;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    line-height: 0;
}
body.theme-kobi .kobi-product-card__wish-btn {
    box-sizing: border-box;
    width: 2.25rem;
    height: 2.25rem;
    margin: 0;
    padding: 0;
    border-radius: 999px;
    border: 1px solid rgba(28, 25, 23, 0.08);
    background: rgba(255, 255, 255, 0.94);
    color: var(--dk-ink);
    box-shadow: var(--dk-shadow-sm);
    backdrop-filter: blur(8px);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 0;
    text-decoration: none !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: transform .2s var(--dk-ease), box-shadow .2s ease;
}
body.theme-kobi a.kobi-product-card__wish.kobi-product-card__wish-btn {
    /* logged-out: link itself is the button */
}
body.theme-kobi .kobi-product-card__wish-btn:hover {
    transform: scale(1.06);
    box-shadow: var(--dk-shadow-md);
    color: var(--dk-ink);
}
body.theme-kobi .kobi-product-card__wish-btn i {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    line-height: 1;
}
body.theme-kobi .kobi-product-card__wish.is-active .kobi-product-card__wish-btn,
body.theme-kobi .kobi-product-card__wish-btn[aria-pressed="true"] {
    color: #e11d48;
    border-color: color-mix(in srgb, #e11d48 28%, transparent);
    background: color-mix(in srgb, #e11d48 8%, #fff);
}
body.theme-kobi .kobi-product-card__wish.is-active .kobi-product-card__wish-btn i,
body.theme-kobi .kobi-product-card__wish-btn[aria-pressed="true"] i {
    color: #e11d48;
}
body.theme-kobi .kobi-wish-form.is-active .kobi-wish-btn i {
    color: #e11d48;
}
/* —— Flash toast (favori vb.) —— */
.kobi-flash-stack {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1080;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    width: min(420px, calc(100vw - 1.5rem));
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
}
.kobi-flash-stack[hidden] {
    display: none !important;
}
.kobi-flash-stack.is-hiding {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
}
.kobi-flash {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .85rem 1rem;
    border-radius: var(--dk-radius, 1rem);
    background: #fff;
    border: 1px solid var(--dk-border, rgba(28, 25, 23, .08));
    box-shadow: var(--dk-shadow-md, 0 8px 32px rgba(28, 25, 23, .1));
    font-size: .92rem;
    font-weight: 600;
    color: var(--dk-ink, #1c1917);
    animation: kobi-flash-in .35s var(--dk-ease, ease);
}
.kobi-flash--ok {
    border-color: color-mix(in srgb, #16a34a 35%, transparent);
}
.kobi-flash--ok > i {
    color: #16a34a;
    font-size: 1.15rem;
    flex: 0 0 auto;
}
.kobi-flash--err {
    border-color: color-mix(in srgb, #dc2626 35%, transparent);
}
.kobi-flash--err > i {
    color: #dc2626;
    font-size: 1.15rem;
    flex: 0 0 auto;
}
.kobi-flash > span {
    flex: 1 1 auto;
    line-height: 1.35;
}
.kobi-flash__close {
    flex: 0 0 auto;
    width: 1.75rem;
    height: 1.75rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--dk-ink-muted, #78716c);
    font-size: 1.35rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.kobi-flash__close:hover {
    background: var(--dk-surface-alt, #f5f5f4);
    color: var(--dk-ink, #1c1917);
}
@keyframes kobi-flash-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

body.theme-kobi .kobi-product-card__body {
    padding: 1.05rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}
body.theme-kobi .kobi-product-card__title {
    font-size: 1.05rem;
    margin: 0 0 .35rem;
    letter-spacing: -.01em;
}
body.theme-kobi .kobi-product-card__title a {
    color: inherit;
    text-decoration: none;
}
body.theme-kobi .kobi-product-card__title a:hover {
    color: var(--bs-primary);
}
body.theme-kobi .kobi-product-card__excerpt {
    font-size: .85rem;
    color: var(--dk-ink-muted, #78716c);
    margin: 0 0 .5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
body.theme-kobi .kobi-product-card__price {
    margin-top: auto;
    margin-bottom: .65rem;
}
body.theme-kobi .kobi-product-card__compare {
    display: block;
    font-size: .8rem;
    text-decoration: line-through;
    color: var(--dk-ink-muted, #78716c);
}
body.theme-kobi .kobi-product-card__amount {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--bs-primary);
    letter-spacing: -.01em;
}
body.theme-kobi .kobi-product-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem .75rem;
    margin-top: .15rem;
}
body.theme-kobi .kobi-product-card__cart-form {
    display: inline;
    margin: 0;
}
body.theme-kobi .kobi-product-card__cart-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-weight: 650;
    border-radius: var(--dk-radius-pill) !important;
    padding: .5rem 1.15rem;
    min-width: 8.75rem;
    justify-content: center;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--bs-primary) 28%, transparent);
}

body.theme-kobi .kobi-catalog-toolbar {
    background: var(--dk-surface-card, #fff);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius, 1rem);
    padding: 1rem 1.2rem;
    box-shadow: var(--dk-shadow-sm);
    margin-bottom: 1.75rem;
}
body.theme-kobi .kobi-catalog-toolbar .form-control,
body.theme-kobi .kobi-catalog-toolbar .form-select {
    border-radius: .85rem;
    border-color: var(--dk-border-strong);
    min-height: 2.5rem;
}
body.theme-kobi .kobi-catalog-toolbar .form-control:focus,
body.theme-kobi .kobi-catalog-toolbar .form-select:focus {
    border-color: color-mix(in srgb, var(--bs-primary) 45%, var(--dk-border-strong));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--bs-primary) 18%, transparent);
}
body.theme-kobi .kobi-catalog-toolbar__primary {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.75rem;
}
body.theme-kobi .kobi-catalog-toolbar__search {
    position: relative;
    flex: 1 1 220px;
    min-width: 180px;
}
body.theme-kobi .kobi-catalog-toolbar__search > i {
    position: absolute;
    left: 0.85rem;
    top: 0;
    bottom: 0;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dk-ink-muted, #78716c);
    pointer-events: none;
    z-index: 1;
}
body.theme-kobi .kobi-catalog-toolbar__search .form-control {
    padding-left: 2.35rem;
}
body.theme-kobi .kobi-catalog-toolbar__sort-wrap {
    flex: 0 1 220px;
    min-width: 180px;
}
body.theme-kobi .kobi-catalog-toolbar__label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--dk-ink-muted, #78716c);
}
body.theme-kobi .kobi-catalog-toolbar__submit {
    flex: 0 0 auto;
    min-height: 2.5rem;
    padding-inline: 1.15rem;
    white-space: nowrap;
}
body.theme-kobi .kobi-catalog-toolbar__secondary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--dk-border);
}
body.theme-kobi .kobi-catalog-toolbar__price {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.4rem 0.5rem;
}
body.theme-kobi .kobi-catalog-toolbar__price > .kobi-catalog-toolbar__label {
    margin-bottom: 0;
    margin-right: 0.15rem;
}
body.theme-kobi .kobi-catalog-toolbar__price .form-control {
    width: 5.75rem;
}
body.theme-kobi .kobi-catalog-toolbar__sep {
    color: var(--dk-ink-muted, #78716c);
    line-height: 1;
}
body.theme-kobi .kobi-catalog-toolbar__currency {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dk-ink-soft, #57534e);
}
body.theme-kobi .kobi-catalog-toolbar__checks {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
}
body.theme-kobi .kobi-catalog-toolbar__check {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--dk-ink-soft, #57534e);
    cursor: pointer;
    user-select: none;
}
body.theme-kobi .kobi-catalog-toolbar__check input {
    margin: 0;
    width: 1rem;
    height: 1rem;
    accent-color: var(--bs-primary);
}
body.theme-kobi .kobi-catalog-toolbar__clear {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
    white-space: nowrap;
    color: var(--kobi-ink-soft, #57534e);
    border-color: var(--kobi-border, #d6d3d1);
    background: transparent;
}
body.theme-kobi .kobi-catalog-toolbar__clear:hover,
body.theme-kobi .kobi-catalog-toolbar__clear:focus-visible {
    color: var(--bs-primary) !important;
    background: color-mix(in srgb, var(--bs-primary) 10%, #fff) !important;
    border-color: color-mix(in srgb, var(--bs-primary) 45%, #fff) !important;
}
body.theme-kobi .kobi-catalog-toolbar .form-control,
body.theme-kobi .kobi-catalog-toolbar .form-select {
    min-height: 2.5rem;
    font-size: 0.925rem;
}
@media (max-width: 767.98px) {
    body.theme-kobi .kobi-catalog-toolbar__submit {
        width: 100%;
    }
    body.theme-kobi .kobi-catalog-toolbar__clear {
        margin-left: 0;
    }
}

body.theme-kobi .kobi-account-nav__link {
    color: var(--dk-ink-soft, #57534e);
    border-radius: .65rem;
    padding: .55rem .85rem;
}
body.theme-kobi .kobi-account-nav__link:hover,
body.theme-kobi .kobi-account-nav__link.active {
    background: color-mix(in srgb, var(--bs-primary) 12%, #fff);
    color: var(--bs-primary);
}
body.theme-kobi .kobi-account-panel {
    background: var(--dk-surface-card, #fff);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius);
    padding: 1.35rem 1.5rem;
    box-shadow: var(--dk-shadow-sm);
}
body.theme-kobi .kobi-account-stat {
    background: color-mix(in srgb, var(--bs-primary) 8%, #fff);
    border-radius: var(--dk-radius);
    padding: 1rem 1.15rem;
    text-align: center;
}
body.theme-kobi .kobi-account-stat__value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1.1;
}
body.theme-kobi .kobi-account-stat__label {
    font-size: .85rem;
    color: var(--dk-ink-muted);
}

body.theme-kobi .kobi-home-categories .row {
    --kobi-cat-gap: 1rem;
}
body.theme-kobi .kobi-cat-tile {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: var(--dk-surface-card, #fff);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg, 1.25rem);
    box-shadow: var(--dk-shadow-sm);
    overflow: hidden;
    transition: transform .3s var(--dk-ease, ease), border-color .3s ease, box-shadow .3s ease;
}
body.theme-kobi .kobi-cat-tile:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--bs-primary) 40%, transparent);
    box-shadow: var(--dk-shadow-md);
    color: inherit;
}
body.theme-kobi .kobi-cat-tile__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 5;
    min-height: 11rem;
    background: color-mix(in srgb, var(--bs-primary) 10%, #f5f5f4);
    color: var(--bs-primary);
    font-size: 2rem;
    overflow: hidden;
}
body.theme-kobi .kobi-cat-tile__media--img {
    padding: 0;
    background: #e7e5e4;
}
body.theme-kobi .kobi-cat-tile__media--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s var(--dk-ease, ease);
}
body.theme-kobi .kobi-cat-tile:hover .kobi-cat-tile__media--img img {
    transform: scale(1.04);
}
body.theme-kobi .kobi-cat-tile__body {
    display: flex;
    flex-direction: column;
    gap: .25rem;
    padding: 1rem 1.05rem 1.15rem;
    flex: 1;
}
body.theme-kobi .kobi-cat-tile__title {
    font-weight: 650;
    font-size: 1.05rem;
    line-height: 1.3;
}
body.theme-kobi .kobi-cat-tile__cta {
    margin-top: auto;
    font-size: .85rem;
    color: var(--bs-primary);
    font-weight: 600;
}
@media (min-width: 768px) {
    body.theme-kobi .kobi-cat-tile__media {
        aspect-ratio: 3 / 4;
        min-height: 14rem;
    }
}
@media (min-width: 992px) {
    body.theme-kobi .kobi-cat-tile__media {
        min-height: 16rem;
    }
}

body.theme-kobi .kobi-home-search-cta__inner {
    text-align: center;
    padding: clamp(2.25rem, 4vw, 3.25rem) 1.5rem;
    border-radius: var(--dk-radius-lg, 1.25rem);
    background:
        radial-gradient(80% 120% at 50% 0%, color-mix(in srgb, var(--bs-primary) 16%, transparent), transparent 60%),
        linear-gradient(160deg, var(--dk-surface-card) 0%, var(--dk-surface-alt) 100%);
    border: 1px solid var(--dk-border);
    box-shadow: var(--dk-shadow-sm);
}
body.theme-kobi .kobi-home-search-cta__inner h2 {
    letter-spacing: -.02em;
}
body.theme-kobi .kobi-home-search-cta__form {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto;
}
body.theme-kobi .kobi-home-search-cta__form .form-control {
    flex: 1 1 220px;
    border-radius: var(--dk-radius-pill);
    min-height: 3rem;
    border-color: var(--dk-border-strong);
    padding-inline: 1.15rem;
}
body.theme-kobi .kobi-home-search-cta__form .btn {
    min-height: 3rem;
    padding-inline: 1.5rem;
}
body.theme-kobi .kobi-home-cta {
    transition: transform .25s var(--dk-ease, ease);
}
body.theme-kobi .kobi-home-cta:hover {
    transform: translateY(-2px);
}

.kobi-product-gallery {
    display: flex;
    flex-direction: column;
    gap: .85rem;
    position: sticky;
    top: 6rem;
}
.kobi-product-gallery__main {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
    border: 1px solid var(--dk-border, rgba(0,0,0,.08));
    border-radius: var(--dk-radius-lg, 1.25rem);
    overflow: hidden;
    background: var(--dk-surface-alt, #f5f5f4);
    box-shadow: var(--dk-shadow-sm);
    text-decoration: none;
    color: inherit;
    cursor: zoom-in;
}
.kobi-product-gallery__main img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s var(--dk-ease, ease), opacity .2s ease;
}
.kobi-product-gallery__main:hover img {
    transform: scale(1.02);
}
.kobi-product-gallery__zoom {
    position: absolute;
    right: .85rem;
    bottom: .85rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .92);
    color: var(--bs-primary);
    box-shadow: var(--dk-shadow-sm);
    pointer-events: none;
    transition: transform .25s var(--dk-ease, ease);
}
.kobi-product-gallery__main:hover .kobi-product-gallery__zoom {
    transform: scale(1.06);
}
.kobi-product-gallery__thumbs {
    display: grid;
    /* Az görselde de büyütme: her zaman 8 sütun genişliğinde sabit hücre */
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: .55rem;
    width: 100%;
    justify-items: stretch;
}
.kobi-product-gallery__thumb {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-width: 0;
    padding: 0;
    border: 2px solid transparent;
    border-radius: .75rem;
    overflow: hidden;
    background: var(--dk-surface-card, #fff);
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.kobi-product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 575.98px) {
    .kobi-product-gallery__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.kobi-product-gallery__thumb:hover {
    border-color: color-mix(in srgb, var(--bs-primary, #0d6efd) 45%, transparent);
    transform: translateY(-1px);
}
.kobi-product-gallery__thumb.is-active {
    border-color: var(--bs-primary, #0d6efd);
    box-shadow: 0 0 0 1px var(--bs-primary, #0d6efd);
}
.kobi-product-gallery__thumb:focus-visible {
    outline: 2px solid var(--bs-primary, #0d6efd);
    outline-offset: 2px;
}

body.theme-kobi .kobi-pdp__buy {
    background: var(--dk-surface-card, #fff);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg, 1.25rem);
    box-shadow: var(--dk-shadow-md);
    padding: 1.5rem 1.5rem 1.65rem;
}
@media (min-width: 992px) {
    body.theme-kobi .kobi-pdp__buy {
        padding: 1.85rem 2rem 2rem;
        position: sticky;
        top: 6rem;
    }
}
body.theme-kobi .kobi-pdp__eyebrow {
    font-size: .78rem;
    font-weight: 650;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--dk-ink-muted);
    margin: 0;
}
body.theme-kobi .kobi-pdp__title {
    letter-spacing: -.02em;
    line-height: 1.2;
}
body.theme-kobi .kobi-pdp__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem .9rem;
    font-size: .875rem;
    color: var(--dk-ink-muted);
}
body.theme-kobi .kobi-pdp__meta a {
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 600;
}
body.theme-kobi .kobi-pdp__meta a:hover {
    text-decoration: underline;
}
body.theme-kobi .kobi-pdp__lead {
    color: var(--dk-ink-soft);
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}
body.theme-kobi .kobi-pdp__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .5rem .75rem;
    padding-bottom: 1.15rem;
    margin-bottom: 1.15rem;
    border-bottom: 1px solid var(--dk-border);
}
body.theme-kobi .kobi-pdp__compare {
    font-size: 1rem;
    color: var(--dk-ink-muted);
    text-decoration: line-through;
}
body.theme-kobi .kobi-pdp__amount {
    font-size: clamp(1.65rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--bs-primary);
    letter-spacing: -.02em;
    line-height: 1.1;
}
body.theme-kobi .kobi-pdp__sale-badge {
    align-self: center;
    font-weight: 600;
    border-radius: var(--dk-radius-pill);
}
body.theme-kobi .kobi-pdp__variants .form-select {
    max-width: 16rem;
}
body.theme-kobi .kobi-pdp__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: .85rem;
}
body.theme-kobi .kobi-pdp__qty {
    width: 5.5rem;
}
body.theme-kobi .kobi-pdp__add {
    flex: 0 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    min-height: 2.4rem;
    padding: .45rem 1.25rem;
    font-weight: 650;
    border-radius: var(--dk-radius-pill) !important;
}
body.theme-kobi .kobi-pdp__trust {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem 1.15rem;
    margin-top: 1.15rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dk-border);
    font-size: .82rem;
    color: var(--dk-ink-muted);
}
body.theme-kobi .kobi-pdp__trust span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
body.theme-kobi .kobi-pdp__trust i {
    color: var(--bs-primary);
    font-size: .95rem;
}
body.theme-kobi .kobi-pdp__section-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .5rem .75rem;
}
body.theme-kobi .kobi-pdp__section-sub {
    font-size: .95rem;
    font-weight: 500;
    color: var(--dk-ink-muted);
}
body.theme-kobi .kobi-pdp__panel {
    background: var(--dk-surface-card, #fff);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg, 1.25rem);
    box-shadow: var(--dk-shadow-sm);
    padding: 1.35rem 1.5rem;
}
body.theme-kobi .kobi-pdp__review {
    padding: 1rem 0;
    border-bottom: 1px solid var(--dk-border);
}
body.theme-kobi .kobi-pdp__review:first-child {
    padding-top: 0;
}
body.theme-kobi .kobi-pdp__review:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
body.theme-kobi .kobi-pdp__panel .product-body,
body.theme-kobi .kobi-pdp__panel.product-body {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--dk-ink-soft);
}
body.theme-kobi .kobi-pdp__panel .product-body :is(h2, h3, h4) {
    color: var(--dk-ink);
    margin-top: 1.25rem;
}

/* Catalog / cart light polish */
body.theme-kobi .kobi-cart-empty {
    text-align: center;
    padding: 3.25rem 1.5rem;
    background: var(--dk-surface-card);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg);
    box-shadow: var(--dk-shadow-sm);
}
body.theme-kobi .kobi-cart-empty__icon {
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 1rem;
    border-radius: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--bs-primary) 12%, #fff);
    color: var(--bs-primary);
    font-size: 1.55rem;
}
body.theme-kobi .kobi-cart-summary {
    background: var(--dk-surface-card);
    border: 1px solid var(--dk-border);
    border-radius: var(--dk-radius-lg);
    box-shadow: var(--dk-shadow-md);
    padding: 0;
    overflow: hidden;
}
body.theme-kobi .kobi-cart-summary .table {
    margin-bottom: 0;
}
body.theme-kobi .kobi-cart-summary .table thead th {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--dk-ink-muted);
    background: var(--dk-surface-alt) !important;
    border-bottom-color: var(--dk-border);
    padding: .9rem 1.1rem;
}
body.theme-kobi .kobi-cart-summary .table tbody td,
body.theme-kobi .kobi-cart-summary .table tfoot td {
    padding: 1rem 1.1rem;
    vertical-align: middle;
    border-color: var(--dk-border);
}
body.theme-kobi .kobi-cart-summary .table tfoot {
    background: color-mix(in srgb, var(--bs-primary) 5%, #fff);
}
body.theme-kobi .kobi-cart-checkout {
    border-radius: var(--dk-radius-pill) !important;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--bs-primary) 28%, transparent);
    min-height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1.35rem;
}
body.theme-kobi .kobi-cart-continue {
    border-radius: var(--dk-radius-pill) !important;
    min-height: 2.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1.25rem;
}
body.theme-kobi .kobi-cart-actions {
    align-items: center;
}
body.theme-kobi .kobi-cart-qty__input {
    max-width: 4.5rem;
    min-height: 2rem;
}
body.theme-kobi .kobi-cart-qty__btn {
    width: 2rem;
    height: 2rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: .55rem;
}
body.theme-kobi .kobi-cart-qty__btn i {
    font-size: 1rem;
    line-height: 1;
}
.kobi-cart-cards {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    padding: .85rem;
}
.kobi-cart-card {
    border: 1px solid var(--dk-border, rgba(0,0,0,.08));
    border-radius: .9rem;
    padding: .95rem 1rem;
    background: var(--dk-surface-card, #fff);
}
.kobi-cart-card__title {
    margin-bottom: .35rem;
}
.kobi-cart-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: .65rem 0;
}
.kobi-cart-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}
.kobi-cart-card--totals {
    background: color-mix(in srgb, var(--bs-primary) 6%, #fff);
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

/* —— Sepet kupon satırı —— */
.kobi-coupon-box {
    max-width: 36rem;
}
.kobi-coupon-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: .75rem;
}
.kobi-coupon-row__input {
    flex: 1 1 12rem;
    min-width: 0;
    min-height: 2.65rem;
}
.kobi-coupon-row__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
}
.kobi-coupon-row__actions .btn {
    min-height: 2.65rem;
    padding-inline: 1.1rem;
    white-space: nowrap;
}
body.theme-kobi .kobi-coupon-row__actions .btn {
    border-radius: var(--dk-radius-pill) !important;
}
@media (max-width: 575.98px) {
    .kobi-coupon-row__actions {
        width: 100%;
    }
    .kobi-coupon-row__actions .btn {
        flex: 1 1 auto;
    }
}

.kobi-empty-state .btn + .btn {
    margin-left: .35rem;
}

.kobi-pdp__login-cta .btn {
    min-height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--dk-radius-pill) !important;
}

body.theme-kobi .kobi-cat-tile {
    transition: transform .3s var(--dk-ease), border-color .3s ease, box-shadow .3s ease;
}
body.theme-kobi .kobi-cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--dk-shadow-md);
}

body.theme-kobi.dk-scrolled .theme-premium .sticky-top.navbar-dark .kobi-shop-action {
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    border-color: rgba(15, 23, 42, 0.1);
    color: #334155 !important;
}

@media (prefers-reduced-motion: reduce) {
    body.theme-kobi .kobi-product-card,
    body.theme-kobi .kobi-product-card__img,
    body.theme-kobi .kobi-cat-tile,
    body.theme-kobi .kobi-home-cta,
    .kobi-product-gallery__main img,
    .kobi-product-gallery__zoom,
    .kobi-product-gallery__thumb {
        transition: none !important;
        transform: none !important;
    }
}
