/* Mavikuğu - Tema: boutique çocuk vitrini */

body.mavikugu-theme-site {
    --max-w: var(--site-container, 1240px);
    --mk-blue: #1E3A5F;
    --mk-salmon: #E88A8A;
    --mk-bg: #FAF7F2;
    --mk-surface: #FFFFFF;
    --mk-surface-soft: #F6EFE6;
    --mk-text: #1E293B;
    --mk-text-muted: #64748B;
    --mk-text-on-dark: #F8FAFC;
    --mk-text-muted-on-dark: #CBD5E1;
    --mk-border: #EEE8DF;
    --auth-grad-a: var(--mk-blue);
    --auth-grad-b: var(--mk-salmon);
    --auth-focus: var(--mk-salmon);
    --auth-link: var(--mk-blue);
    font-family: "Quicksand", system-ui, sans-serif;
    background: var(--mk-bg);
    color: var(--mk-text);
    letter-spacing: -0.01em;
    overflow-x: clip;
    max-width: 100%;
}

body.mavikugu-theme-site .site-header {
    background: var(--mk-surface);
    border-bottom: 1px solid var(--mk-border);
    color: var(--mk-text);
}

body.mavikugu-theme-site .hm-brand,
body.mavikugu-theme-site .logo-text {
    font-weight: 800;
    letter-spacing: -0.04em;
}

body.mavikugu-theme-site .site-promo-bar {
    font-weight: 600;
    color: var(--promo-fg, #fff) !important;
    -webkit-text-fill-color: var(--promo-fg, #fff) !important;
}

body.mavikugu-theme-site .site-header .site-nav--mega-bar .nav-item > .mega-nav-trigger .nav-link--mega__text::after,
body.mavikugu-theme-site .site-header .site-nav--mega-bar .mega-dropdown:hover > .mega-nav-trigger.nav-link--mega .nav-link--mega__text::after {
    background: var(--mk-salmon) !important;
}

.mk-utility {
    background: var(--mk-surface);
    border-bottom: 1px solid var(--mk-border);
    font-size: 12px;
    color: var(--mk-text-muted);
}

.mk-utility__inner {
    max-width: var(--site-container, 1240px);
    margin: 0 auto;
    padding: 8px 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.mk-utility__left,
.mk-utility__right {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.mk-utility__right {
    justify-content: flex-end;
}

.mk-utility a {
    color: inherit;
    text-decoration: none;
}

.mk-utility a:hover {
    color: var(--mk-blue);
}

.mk-home {
    background: var(--mk-bg);
}

.mk-hero {
    max-width: var(--site-container, 1240px);
    margin: 24px auto 12px;
    padding: 0 20px;
}

.mk-hero__track {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 28px;
    touch-action: pan-y;
    cursor: grab;
}

.mk-hero__track.is-dragging {
    cursor: grabbing;
}

.mk-hero__slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    background: var(--mk-surface-soft);
    border-radius: 28px;
    padding: 48px 40px;
    min-height: 420px;
    height: 100%;
    color: var(--mk-text);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(36px);
    transition: opacity .45s ease, transform .5s cubic-bezier(.22, 1, .36, 1), visibility .45s;
    z-index: 0;
}

.mk-hero, .mk-hero * {
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.mk-hero__slide { transition-duration: .68s; transition-timing-function: cubic-bezier(.22,.72,.18,1); }
.mk-hero__slide.is-exit-left { transform: translate3d(-12%,0,0); }
.mk-hero__slide.is-exit-right { transform: translate3d(12%,0,0); }
.mk-hero__slide.is-enter-from-left { transform: translate3d(-12%,0,0); }
.mk-hero__slide.is-enter-from-right { transform: translate3d(12%,0,0); }

.mk-hero__copy h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 10px 0 12px;
    color: var(--mk-text);
}

.mk-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
}

.mk-hero__slide.is-exit-left {
    opacity: 0;
    visibility: visible;
    transform: translateX(-36px);
    z-index: 1;
}

.mk-hero__slide.is-exit-right {
    opacity: 0;
    visibility: visible;
    transform: translateX(36px);
    z-index: 1;
}

.mk-hero__slide.is-enter-from-left {
    transform: translateX(-36px);
}

.mk-hero__slide.is-enter-from-right {
    transform: translateX(36px);
}

.mk-hero__copy p {
    color: var(--mk-text-muted);
    margin: 0 0 22px;
    max-width: 36ch;
}

.mk-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--mk-blue);
}

.mk-hero__media {
    min-height: 280px;
    border-radius: 20px;
    background: #eef4fa;
    overflow: hidden;
}

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

.mk-hero__media--empty,
.mk-age-card__media.is-empty,
.mk-look__media.is-empty {
    background:
        radial-gradient(circle at 30% 20%, #dbeafe 0, transparent 50%),
        linear-gradient(160deg, #eef4fa, #f8f4ee);
}

.mk-hero__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.mk-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    border: 0;
    background: #d6d0c6;
    cursor: pointer;
}

.mk-hero__dot.is-active {
    background: var(--mk-blue);
    width: 22px;
}

.mk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.mk-btn--primary {
    background: var(--mk-blue);
    color: #fff;
}

.mk-btn--primary:hover {
    background: var(--mk-salmon);
    color: #fff;
}

.mk-section {
    max-width: var(--site-container, 1240px);
    margin: 0 auto;
    padding: 48px 20px 12px;
}

.mk-section--soft {
    background: var(--mk-surface);
    max-width: none;
    padding: 56px 20px;
}

.mk-section--soft .mk-quotes,
.mk-section--soft .mk-rail,
.mk-section--soft .mk-section__head {
    max-width: var(--site-container, 1240px);
    margin-left: auto;
    margin-right: auto;
}

.mk-section__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 22px;
}

.mk-section__head--stack {
    flex-direction: column;
    align-items: flex-start;
}

.mk-section__head h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--mk-text);
}

.mk-section__head p {
    margin: 6px 0 0;
    color: var(--mk-text-muted);
}

.mk-carousel-nav {
    display: flex;
    gap: 8px;
}

.mk-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 99px;
    border: 0;
    background: var(--mk-blue);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.mk-age-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    /* Dikey sayfa kaydırmayı engelleme — yatay + dikey serbest */
    touch-action: manipulation;
    cursor: grab;
    scrollbar-width: none;
}

.mk-age-track.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.mk-age-track::-webkit-scrollbar {
    display: none;
}

.mk-age-card {
    flex: 0 0 180px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.mk-age-card__media {
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    background: #eef4fa;
    margin-bottom: 10px;
}

.mk-age-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mk-age-card strong {
    display: block;
    font-size: 15px;
}

.mk-age-card span {
    color: #64748b;
    font-size: 12px;
}

.mk-tabs__nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.mk-tabs__btn {
    border: 0;
    background: var(--mk-surface);
    color: var(--mk-text);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 650;
    cursor: pointer;
}

.mk-tabs__btn.is-active {
    background: var(--mk-blue);
    color: #fff;
}

.mk-tabs__panel {
    display: none;
}

.mk-tabs__panel.is-active {
    display: block;
}

.mk-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.mk-empty {
    color: #94a3b8;
    padding: 20px 0;
}

body.mavikugu-theme-site .product-card,
body.mavikugu-theme-site .shop-card {
    border-radius: 16px;
    border: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
}

body.mavikugu-theme-site .product-category-tag {
    display: none !important;
}

body.mavikugu-theme-site .product-card:hover {
    transform: none;
    box-shadow: none;
}

body.mavikugu-theme-site .product-img-wrap,
body.mavikugu-theme-site .product-card .product-img-wrap--enhanced {
    background: #eef4fa;
    border-radius: 18px;
    overflow: visible;
    contain: none;
}

body.mavikugu-theme-site .product-img-wrap .product-card__gallery,
body.mavikugu-theme-site .product-img-wrap .product-card-cover-video,
body.mavikugu-theme-site .product-img-wrap .bb-pt-cover--video,
body.mavikugu-theme-site .product-img-wrap .product-img-placeholder {
    border-radius: 18px;
    overflow: hidden;
}

body.mavikugu-theme-site .product-img-wrap--soldout::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
    border-radius: 18px;
    background: rgba(15,23,42,.38);
    pointer-events: none;
}
body.mavikugu-theme-site .product-img-wrap--soldout img {
    transition: filter .35s ease, transform .35s ease !important;
}
body.mavikugu-theme-site .product-img-wrap--soldout:hover img {
    filter: grayscale(1) brightness(.72) !important;
}
body.mavikugu-theme-site .mk-card-soldout {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 7;
    transform: translate(-50%,-50%);
    display: flex;
    min-width: 150px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-align: center;
    pointer-events: none;
}
body.mavikugu-theme-site .mk-card-soldout svg { width: 42px; height: 42px; color: #fff; }
body.mavikugu-theme-site .mk-card-soldout strong { color:#fff!important;-webkit-text-fill-color:#fff!important;font-size:17px;font-weight:800;line-height:1;letter-spacing:.05em; }
body.mavikugu-theme-site .mk-card-soldout small { color:#fff!important;-webkit-text-fill-color:#fff!important;font-size:11px;font-weight:600;line-height:1.25;white-space:nowrap; }
@media (max-width: 560px) {
    body.mavikugu-theme-site .mk-card-soldout { min-width: 120px; gap: 4px; }
    body.mavikugu-theme-site .mk-card-soldout svg { width: 34px; height: 34px; }
    body.mavikugu-theme-site .mk-card-soldout strong { font-size: 14px; }
    body.mavikugu-theme-site .mk-card-soldout small { font-size: 9px; }
}

body.mavikugu-theme-site .mk-card-wrap .product-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: start;
    position: relative;
}

body.mavikugu-theme-site .mk-card-wrap .product-img-wrap {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    position: relative;
    z-index: 2;
}

body.mavikugu-theme-site .mk-card-wrap .mk-sale-badge {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    align-self: start;
    z-index: 4;
}

body.mavikugu-theme-site .mk-card-wrap .product-info,
body.mavikugu-theme-site .mk-card-wrap .product-card-info-link {
    grid-column: 1;
    grid-row: 2;
    position: relative;
    z-index: 1;
}

/* Renk rozeti — diğer listelerle aynı, görsel sağ alt */
body.mavikugu-theme-site .mk-card-wrap .product-card-color-popover {
    z-index: 8;
    pointer-events: auto;
}

.mk-card-wrap {
    position: relative;
}

body.mavikugu-theme-site .mk-card-wrap .product-wish-btn {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

body.mavikugu-theme-site .mk-card-wrap:hover .product-wish-btn,
body.mavikugu-theme-site .mk-card-wrap:focus-within .product-wish-btn,
body.mavikugu-theme-site .mk-card-wrap .product-wish-btn.in-wishlist {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.mk-sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 99px;
    background: var(--mk-salmon);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
 * Sepete Ekle: görselin hemen altından başlar (görsele binmez, boşluk yok).
 * height:0 ile yer kaplamaz; hover’da başlığın üzerine binebilir.
 */
.mk-card-actions {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
    justify-self: stretch;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 12px;
    height: 0;
    overflow: visible;
    opacity: 0;
    transform: translateY(0);
    transition: opacity .2s ease;
    pointer-events: none;
}

.mk-card-wrap:hover .mk-card-actions,
.mk-card-wrap:focus-within .mk-card-actions {
    opacity: 1;
    height: 0;
    margin: 0 12px;
    pointer-events: auto;
    overflow: visible;
    transform: none;
}

.mk-card-actions .mk-card-act {
    flex: 0 0 auto;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
}

.mk-card-act {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mk-card-act--cart {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
}

.mk-card-act--view {
    display: none;
}

.mk-marquee {
    overflow: hidden;
    border-block: 1px solid rgba(30, 58, 95, .15);
    padding: 14px 0;
    margin: 36px 0 8px;
    background: var(--mk-blue);
}

.mk-marquee,
.mk-marquee__inner,
.mk-marquee__inner span {
    color: var(--mk-salmon) !important;
}

.mk-marquee__inner {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    animation: mkMarquee 28s linear infinite;
    font-weight: 600;
}

@keyframes mkMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.mk-countdown {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    font-weight: 800;
    color: var(--mk-blue);
}

.mk-lookbook {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.mk-look {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    min-height: 360px;
    text-decoration: none;
    color: #fff;
}

.mk-look__media,
.mk-look__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mk-look__media img {
    transition: transform .55s cubic-bezier(.22,.72,.18,1), filter .35s ease;
}
.mk-look:hover .mk-look__media img,
.mk-look:focus-visible .mk-look__media img {
    transform: scale(1.035);
    filter: brightness(.94);
}

.mk-look__copy {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    transition: transform .3s ease;
}
.mk-look:hover .mk-look__copy,
.mk-look:focus-visible .mk-look__copy { transform: translateY(-4px); }
.mk-look:hover .mk-look__copy em,
.mk-look:focus-visible .mk-look__copy em { text-decoration-thickness: 2px; }

.mk-look__copy small {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 11px;
}

.mk-look__copy strong {
    font-size: 1.4rem;
}

.mk-look__copy em {
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.mk-quote {
    margin: 0;
    background: var(--mk-bg);
    border-radius: 18px;
    padding: 24px;
    color: var(--mk-text);
    min-height: 100%;
    box-sizing: border-box;
}

.mk-quote p {
    margin: 0 0 12px;
    line-height: 1.6;
    color: var(--mk-text);
}

.mk-quote cite {
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: var(--mk-blue);
}

.mk-ig a,
.mk-ig .mk-rail__item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 14px;
    background: #eef4fa;
    display: block;
}

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

/* Kaydırmalı ray: mobilde 2, masaüstünde 5 görünür öğe */
.mk-rail {
    --mk-rail-gap: 12px;
    --mk-rail-cols: 2;
    display: flex;
    flex-wrap: nowrap;
    gap: var(--mk-rail-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    /* pan-x dikey scroll'u kilitler — dokunmada sayfa kayabilsin */
    touch-action: manipulation;
    cursor: grab;
    padding-bottom: 4px;
    margin-inline: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mk-rail { scroll-behavior: smooth; cursor: grab; overscroll-behavior-inline: contain; }
.mk-rail.is-dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

.product-card__gallery-arrow {
    position:absolute; top:50%; z-index:8; width:34px; height:34px; border:0; border-radius:50%;
    background:rgba(255,255,255,.92); color:#17304f; box-shadow:0 4px 16px rgba(20,39,64,.16);
    transform:translateY(-50%); opacity:0; pointer-events:none; transition:opacity .2s, transform .2s;
}
.product-card__gallery-arrow--prev { left:9px; }
.product-card__gallery-arrow--next { right:9px; }
.product-card__gallery-arrow { display:none !important; }
.product-card__gallery-img { transition:opacity .38s ease,transform .45s cubic-bezier(.22,.72,.18,1) !important; }
.product-card__gallery-img.is-active { transform:scale(1) !important; }
.product-card__gallery-dots { z-index:9 !important; }
.product-card__gallery-dot { transition:transform .22s ease,background-color .22s ease,opacity .22s ease; }

.mk-banner-grid { display:flex; flex-wrap:wrap; gap:18px; }
.mk-banner { position:relative; min-height:340px; overflow:hidden; border-radius:20px; background:#f4eee8; color:#fff; }
.mk-banner--third { flex:1 1 calc(33.333% - 18px); }
.mk-banner--half { flex:1 1 calc(50% - 18px); }
.mk-banner img { width:100%; height:calc(100% - 64px); position:absolute; inset:0 0 64px; object-fit:cover; transition:transform .6s ease; }
.mk-banner:hover img { transform:scale(1.035); }
.mk-banner::after { display:none; }
.mk-banner span { position:absolute; z-index:2; left:0; right:0; bottom:0; min-height:64px; padding:10px 20px; display:grid; align-content:center; gap:2px; background:#1e3a5f; color:#fff; transition:background-color .28s ease,color .28s ease; }
.mk-banner:hover span,.mk-banner:focus-visible span { background:#e88a8a; color:#10233e; }
.mk-banner strong { font-size:clamp(1.08rem,1.7vw,1.45rem); }
.mk-banner small { font-size:.84rem; opacity:.88; }

.mk-trust { display:grid; grid-template-columns:repeat(4,1fr); padding:0; border:1px solid #ead8c8; border-radius:20px; overflow:hidden; background:#fbf7f2; }
.mk-trust article { text-align:center; padding:34px 22px; border-right:1px solid #ead8c8; }
.mk-trust article { transition:transform .28s ease,background-color .28s ease,box-shadow .28s ease; }
.mk-trust article:hover { transform:translateY(-5px); background:#fff; box-shadow:0 14px 34px rgba(26,48,75,.10); }
.mk-trust article:last-child { border-right:0; }
.mk-trust i { display:grid; place-items:center; width:54px; height:54px; margin:0 auto 18px; border:1px solid #e6b889; border-radius:50%; color:#c78549; font-style:normal; font-size:1.35rem; }
.mk-trust strong { display:block; letter-spacing:.08em; text-transform:uppercase; }
.mk-trust p { margin:14px 0 0; color:#6f6b67; line-height:1.65; }

.mk-seo-copy { padding:clamp(32px,6vw,72px); border-radius:20px; background:#faf7f3; }
.mk-seo-copy h2 { margin:0 0 24px; font-size:clamp(1.8rem,3vw,2.7rem); font-weight:500; }
.mk-seo-copy p { max-width:1100px; color:#666; line-height:1.9; }
.mk-seo-copy__more[hidden] { display:block; max-height:0; overflow:hidden; opacity:0; }
.mk-seo-copy__more { max-height:500px; opacity:1; transition:max-height .5s ease,opacity .35s ease; }
.mk-seo-copy__toggle { border:0; padding:10px 0; background:none; color:#172b45; letter-spacing:.06em; cursor:pointer; }

@media (max-width:760px) {
    .mk-home { overflow-x:hidden; }
    .mk-hero { width:100vw; margin-left:calc(50% - 50vw); border-radius:0; }
    .mk-hero__track,.mk-hero__slide { border-radius:0; }
    .mk-hero__dots { bottom:10px; z-index:20; }
    .mk-banner--third,.mk-banner--half { flex-basis:100%; min-height:285px; }
    .mk-trust { grid-template-columns:1fr 1fr; }
    .mk-trust article { padding:24px 14px; border-bottom:1px solid #ead8c8; }
    .mk-trust article:nth-child(2) { border-right:0; }
    .mk-trust p { font-size:.82rem; }
}

.mk-rail-shell { position:relative; padding-inline:28px; }
.mk-rail-edge { position:absolute; top:50%; z-index:25; width:42px; height:42px; padding:0; border:0; border-radius:50%; transform:translateY(-50%); background:#fff; color:#17304f; box-shadow:0 7px 24px rgba(20,39,64,.18); cursor:pointer; display:grid; place-items:center; font-size:28px; line-height:1; }
.mk-rail-edge--prev { left:0; }
.mk-rail-edge--next { right:0; }
.mk-rail-edge:disabled { opacity:.3; cursor:default; }
@media(max-width:760px){
 .mk-hero{width:100vw!important;margin-left:calc(50% - 50vw)!important;margin-right:calc(50% - 50vw)!important;padding-left:0!important;padding-right:0!important}
 .mk-rail-shell{padding-inline:20px}.mk-rail-edge{width:36px;height:36px}.mk-rail-edge--prev{left:0}.mk-rail-edge--next{right:0}
}

@media(max-width:900px){
 body.mavikugu-theme-site .mega-col__item--has-sub > .mega-col__submenu {
   display:grid !important; grid-template-rows:0fr; max-height:0; opacity:0; overflow:hidden;
   transform:translateY(-7px); transition:grid-template-rows .38s ease,max-height .38s ease,opacity .28s ease,transform .38s ease,margin .38s ease,padding .38s ease;
   margin-top:0 !important; margin-bottom:0 !important; padding-top:0 !important; padding-bottom:0 !important;
 }
 body.mavikugu-theme-site .mega-col__item--has-sub.is-open > .mega-col__submenu {
   grid-template-rows:1fr; max-height:640px; opacity:1; transform:translateY(0);
   margin-top:4px !important; margin-bottom:8px !important; padding-top:4px !important; padding-bottom:4px !important;
 }
}

.mk-rail.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.mk-rail::-webkit-scrollbar {
    display: none;
    height: 0;
    width: 0;
}

.mk-rail__item {
    flex: 0 0 calc((100% - (var(--mk-rail-cols) - 1) * var(--mk-rail-gap)) / var(--mk-rail-cols));
    max-width: calc((100% - (var(--mk-rail-cols) - 1) * var(--mk-rail-gap)) / var(--mk-rail-cols));
    scroll-snap-align: start;
    min-width: 0;
}

@media (min-width: 900px) {
    .mk-rail {
        --mk-rail-cols: 5;
        --mk-rail-gap: 14px;
    }
}

.mk-rail--products {
    --mk-rail-cols: 2;
    --mk-rail-gap: 14px;
}

@media (min-width: 900px) {
    .mk-rail--products {
        --mk-rail-cols: 4;
        --mk-rail-gap: 18px;
    }
}

.mk-rail--products .mk-rail__item .product-card-wrap,
.mk-rail--products .mk-rail__item .mk-card-wrap {
    height: 100%;
    overflow: visible;
}

.mk-rail--products .mk-rail__item {
    overflow: visible;
}

.mk-rail--products .product-card {
    height: 100%;
    overflow: visible;
}

/* Renk paneli ürün görseli içinde yukarı açılsın, ray taşması olmasın */
body.mavikugu-theme-site .product-card-color-popover .product-card-variant-hover {
    z-index: 20;
}

.mk-social-proof__block + .mk-social-proof__block {
    margin-top: 8px;
}

.mk-footer {
    background: var(--mk-blue);
    color: var(--mk-text-muted-on-dark);
    margin-top: 48px;
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.mk-footer,
.mk-footer p,
.mk-footer li,
.mk-footer span,
.mk-footer__bottom {
    color: var(--mk-text-muted-on-dark);
}

.mk-footer__inner {
    max-width: var(--site-container, 1240px);
    margin: 0 auto;
    padding: 56px 20px 0;
    box-sizing: border-box;
}

.mk-footer__grid {
    display: grid;
    gap: 28px 28px;
    grid-template-columns: minmax(240px, 1.35fr) repeat(auto-fit, minmax(150px, 1fr));
    align-items: start;
    padding-left: clamp(4px, 1.5vw, 20px);
}

.mk-footer__col,
.mk-footer__col--newsletter {
    padding-left: 10px;
}

.mk-footer__html-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 20px 24px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.mk-footer__html-col h3 {
    color: #fff;
    font-size: 14px;
    margin: 0 0 10px;
}

.mk-footer__html-body {
    font-size: 13px;
    line-height: 1.55;
    color: #cbd5e1;
}

.mk-footer__html-body p {
    margin: 0 0 8px;
}

.mk-footer__html-body a {
    color: #e2e8f0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.mk-footer__html-body ul {
    list-style: disc;
    margin: 0 0 8px;
    padding-left: 18px;
    display: block;
}

.mk-footer__brand {
    min-width: 0;
}

.mk-footer__slogan {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
}

.mk-footer__contact {
    margin: 0 0 10px;
    font-size: 15px;
}

.mk-footer__contact a {
    word-break: break-word;
}

.mk-footer__logo--img img {
    max-height: 44px;
    width: auto;
    display: block;
}

.mk-footer__hours {
    font-size: 14px;
    opacity: .92;
    margin: 0;
    line-height: 1.55;
}

.mk-footer__col {
    min-width: 0;
}

.mk-footer__col--newsletter {
    min-width: 0;
}

.mk-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.mk-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
    color: #f8fafc;
    transition: background .2s ease, border-color .2s ease, transform .2s ease, color .2s ease;
}

.mk-footer__social a:hover {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .45);
    color: #fff;
    transform: translateY(-2px);
}

.mk-footer__social a svg {
    display: block;
}

.mk-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e2e8f0;
    text-decoration: none;
    padding: 2px 0;
}

.mk-footer__link-arr {
    opacity: .55;
    transition: opacity .2s ease, transform .2s ease;
    flex-shrink: 0;
}

.mk-footer__link-text {
    display: inline-block;
    transition: transform .2s ease, color .2s ease;
}

.mk-footer__link:hover {
    color: #fff;
}

.mk-footer__link:hover .mk-footer__link-text {
    transform: translateX(4px);
}

.mk-footer__link:hover .mk-footer__link-arr {
    opacity: 1;
    transform: translateX(2px);
}

.mk-footer__logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.mk-footer__logo-img {
    display: block;
    max-height: 56px;
    width: auto;
    max-width: min(220px, 100%);
    object-fit: contain;
    /* Koyu footer zemininde renkli logoyu açık/gri-beyaz göster */
    filter: brightness(0) invert(1);
    opacity: .94;
}

html[data-mk-appearance="dark"] .mk-footer__logo-img,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .logo-img,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .hm-brand img,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-logo img,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header img.logo {
    filter: brightness(0) invert(1);
    opacity: .95;
}

/* Ayrı karanlık logo yüklendiyse invert uygulama — gerçek beyaz logo kullanılır */
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-logo--has-dark .site-logo__img--dark,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mob-nav-drawer__brand.site-logo--has-dark .site-logo__img--dark {
    filter: none;
    opacity: 1;
}

.site-logo__img--dark {
    display: none !important;
}

html[data-mk-appearance="dark"] .site-logo--has-dark .site-logo__img--light,
html[data-mk-appearance="dark"] .mob-nav-drawer__brand.site-logo--has-dark .site-logo__img--light {
    display: none !important;
}

html[data-mk-appearance="dark"] .site-logo--has-dark .site-logo__img--dark,
html[data-mk-appearance="dark"] .mob-nav-drawer__brand.site-logo--has-dark .site-logo__img--dark {
    display: block !important;
}

.mk-footer__nl-msg {
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.4;
}

.mk-footer__nl-msg.is-ok { color: #86efac; }
.mk-footer__nl-msg.is-err { color: #fecaca; }
.mk-footer__nl-msg.is-pending { color: #cbd5e1; }

.mk-footer__nl-unsub {
    display: inline-block;
    margin-left: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
}

.mk-footer__nl-unsub:hover {
    background: rgba(255,255,255,.22);
}

.mk-footer__credit {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 12px 16px;
    border-radius: 0;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.5;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
}

.mk-footer__credit--agency {
    background: #e2e8f0;
    color: #1e293b;
    border-top: 0;
}

.mk-footer__credit-inner {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.mk-footer__credit a,
.mk-footer__credit span,
.mk-footer__credit-text {
    color: inherit;
}

.mk-footer__credit--agency a,
.mk-footer__credit--agency a strong {
    color: #1e293b;
    text-decoration: none;
    font-weight: 700;
}

.mk-footer__credit--agency a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #0f172a;
}

.mk-footer__credit-logo {
    display: block;
    max-height: 22px;
    width: auto;
}

.mk-footer__logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}

.mk-footer a {
    color: #e2e8f0;
    text-decoration: none;
}

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

.mk-footer h3 {
    color: #fff;
    font-size: 15px;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 255, 255, .18);
}

.mk-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
    font-size: 14px;
}

.mk-footer__nl {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    max-width: 100%;
    min-width: 0;
}

.mk-footer__nl input {
    flex: 1 1 120px;
    min-width: 0;
    max-width: 100%;
    height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 14px;
    background: #fff;
    color: var(--mk-text);
    font-size: 14px;
    line-height: 42px;
    box-sizing: border-box;
}

.mk-footer__nl button,
.mk-footer__nl-submit {
    border: 0;
    border-radius: 10px;
    background: var(--mk-salmon);
    color: #fff;
    font-weight: 700;
    padding: 10px 14px;
    min-width: 44px;
    min-height: 44px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mk-footer__bottom {
    margin-top: 32px;
    padding: 16px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
    text-align: left;
}

body.mavikugu-theme-site .btn-primary,
body.mavikugu-theme-site .bdc-donate-btn,
body.mavikugu-theme-site .bb-btn-primary,
body.mavikugu-theme-site button.pdp-cta-btn,
body.mavikugu-theme-site #addToCartBtn,
body.mavikugu-theme-site .shop-sidebar-submit.shop-filter-submit,
body.mavikugu-theme-site .shop-plp-filter-trigger.shop-plp-filter-fab,
body.mavikugu-theme-site .cart-page .btn-primary,
body.mavikugu-theme-site .checkout-page .btn-primary,
body.mavikugu-theme-site .shop-toolbar .btn,
body.mavikugu-theme-site .pdp-buy-row .btn-primary {
    font-family: "Quicksand", system-ui, sans-serif !important;
    font-weight: 700 !important;
    border-radius: 999px !important;
    border: 0 !important;
    background: var(--mk-blue) !important;
    color: #fff !important;
    box-shadow: 0 2px 12px rgba(30, 58, 95, .18);
    transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .15s ease;
}

body.mavikugu-theme-site .btn-primary:hover,
body.mavikugu-theme-site .bdc-donate-btn:hover,
body.mavikugu-theme-site .bb-btn-primary:hover,
body.mavikugu-theme-site button.pdp-cta-btn:hover,
body.mavikugu-theme-site #addToCartBtn:hover,
body.mavikugu-theme-site .shop-sidebar-submit.shop-filter-submit:hover,
body.mavikugu-theme-site .shop-plp-filter-trigger.shop-plp-filter-fab:hover,
body.mavikugu-theme-site .cart-page .btn-primary:hover,
body.mavikugu-theme-site .checkout-page .btn-primary:hover {
    background: var(--mk-salmon) !important;
    color: #fff !important;
}

body.mavikugu-theme-site .shop-plp-filter-trigger.shop-plp-filter-fab span,
body.mavikugu-theme-site .shop-plp-filter-trigger.shop-plp-filter-fab svg,
body.mavikugu-theme-site .shop-sidebar-submit.shop-filter-submit,
body.mavikugu-theme-site button.pdp-cta-btn,
body.mavikugu-theme-site #addToCartBtn {
    color: #fff !important;
}

body.mavikugu-theme-site .shop-plp-filter-trigger.shop-plp-filter-fab svg {
    stroke: currentColor;
    fill: none;
}

body.mavikugu-theme-site .hdr-cart-btn,
body.mavikugu-theme-site .hdr-oturum-btn,
body.mavikugu-theme-site .hdr-search-expand-btn,
body.mavikugu-theme-site .hdr-action-tile {
    font-family: "Quicksand", system-ui, sans-serif;
    border-color: rgba(30, 58, 95, .22) !important;
    color: var(--mk-blue) !important;
    background: var(--mk-surface) !important;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

body.mavikugu-theme-site .hdr-cart-btn:hover,
body.mavikugu-theme-site .hdr-oturum-btn:hover,
body.mavikugu-theme-site .hdr-search-expand-btn:hover,
body.mavikugu-theme-site .hdr-action-tile:hover {
    border-color: var(--mk-salmon) !important;
    color: var(--mk-salmon) !important;
}

body.mavikugu-theme-site .hdr-cart-badge,
body.mavikugu-theme-site .hdr-fav-badge {
    background: var(--mk-salmon) !important;
    color: #fff !important;
}

body.mavikugu-theme-site .hdr-fav-badge:empty {
    display: none !important;
}

body.mavikugu-theme-site .hdr-mega-icons-cluster .hdr-search-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 4px;
}

body.mavikugu-theme-site .hdr-user-wrap--mega {
    align-items: center;
}

body.mavikugu-theme-site .hdr-mega-icons-cluster .hdr-search-expand-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--mk-blue) !important;
    transition: background .2s ease, transform .15s ease, color .2s ease;
}

body.mavikugu-theme-site .hdr-mega-icons-cluster .hdr-search-expand-btn svg {
    width: 20px;
    height: 20px;
}

@media (hover: hover) and (pointer: fine) {
    body.mavikugu-theme-site .hdr-mega-icons-cluster .hdr-search-expand-btn:hover:not(:active) {
        background: rgba(15, 23, 42, 0.075) !important;
        border: none !important;
        color: var(--mk-blue) !important;
    }
}

body.mavikugu-theme-site .hdr-mega-icons-cluster .hdr-search-expand-btn:active {
    background: rgba(15, 23, 42, 0.14) !important;
    transform: scale(0.93);
    color: var(--mk-blue) !important;
}

body.mavikugu-theme-site .hdr-fav-tile .hdr-action-tile__ring {
    overflow: visible;
}

body.mavikugu-theme-site #mobileFooterMenu .mfm-item {
    font-family: "Quicksand", system-ui, sans-serif;
    color: var(--mk-text-muted);
}

body.mavikugu-theme-site #mobileFooterMenu .mfm-item svg {
    stroke: var(--mk-blue);
}

body.mavikugu-theme-site #mobileFooterMenu .mfm-item.mfm-active,
body.mavikugu-theme-site #mobileFooterMenu .mfm-item.mfm-active svg {
    color: var(--mk-blue) !important;
    stroke: var(--mk-blue) !important;
}

body.mavikugu-theme-site #mobileFooterMenu.mfm-theme-minimal .mfm-item.mfm-active::after,
body.mavikugu-theme-site #mobileFooterMenu.mfm-theme-labels-dot .mfm-item.mfm-active::before {
    background: var(--mk-salmon) !important;
}

body.mavikugu-theme-site #mobileFooterMenu.mfm-theme-labels-highlight .mfm-item.mfm-active {
    background: rgba(232, 138, 138, .16) !important;
    color: var(--mk-blue) !important;
}

body.mavikugu-theme-site .btn-outline,
body.mavikugu-theme-site .btn-secondary {
    font-family: "Quicksand", system-ui, sans-serif;
    font-weight: 700;
    border-radius: 999px;
    border: 1.5px solid var(--mk-blue) !important;
    color: var(--mk-blue) !important;
    background: transparent !important;
}

body.mavikugu-theme-site .btn-outline:hover,
body.mavikugu-theme-site .btn-secondary:hover {
    background: var(--mk-blue) !important;
    color: #fff !important;
    border-color: var(--mk-blue) !important;
}

body.mavikugu-theme-site .mk-btn,
body.mavikugu-theme-site .mk-card-act {
    font-family: "Quicksand", system-ui, sans-serif;
}

body.mavikugu-theme-site .btn-primary,
body.mavikugu-theme-site button.pdp-cta-btn,
body.mavikugu-theme-site #addToCartBtn {
    border-radius: 999px;
}

body.mavikugu-theme-site .mk-footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

body.mavikugu-theme-site .mk-footer__credit {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

/* Tam ekran imza şeridi */
body.mavikugu-theme-site .mk-footer__credit.mk-footer__credit--agency {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
}

body.mavikugu-theme-site #shop-product-grid,
body.mavikugu-theme-site .shop-grid {
    gap: 18px;
}

body.mavikugu-theme-site .product-name {
    font-weight: 650;
    letter-spacing: -0.02em;
}

body.mavikugu-theme-site .product-price.sale {
    color: var(--mk-salmon);
}

body.mavikugu-theme-site .breadcrumb,
body.mavikugu-theme-site .shop-toolbar {
    font-size: 13px;
}

/* CMS sayfaları — yeşil hero yerine varsayılan breadcrumb şeridi */
body.mavikugu-theme-site .page-hero {
    background: #f8fafc;
    color: #0f172a;
    padding: 3px 0 18px;
    margin-bottom: 0;
    border-bottom: 1px solid #e2e8f0;
}

body.mavikugu-theme-site .page-hero h1 {
    color: #0f172a;
    font-size: clamp(1.35rem, 3.5vw, 2rem);
    font-weight: 800;
    margin: 10px 0 0;
}

body.mavikugu-theme-site .page-hero .page-breadcrumb-wrap {
    padding: 0;
    justify-content: flex-start;
}

body.mavikugu-theme-site .page-hero .page-breadcrumb-scroll {
    height: auto;
    min-height: 0;
    scrollbar-width: none;
}

body.mavikugu-theme-site .page-hero .page-breadcrumb-scroll::-webkit-scrollbar {
    display: none;
}

body.mavikugu-theme-site .page-hero .page-breadcrumb {
    min-height: 0;
    gap: 8px;
}

body.mavikugu-theme-site .page-hero .page-breadcrumb a {
    color: #64748b;
    font-size: 13px;
    font-weight: 500;
}

body.mavikugu-theme-site .page-hero .page-breadcrumb a:hover {
    color: var(--mk-blue, #1e3a5f);
    text-decoration: none;
}

body.mavikugu-theme-site .page-hero .page-breadcrumb__sep {
    color: #cbd5e1;
}

body.mavikugu-theme-site .page-hero .page-breadcrumb__current {
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

body.mavikugu-theme-site .cart-empty .btn-shop {
    background: linear-gradient(135deg, var(--mk-salmon), color-mix(in srgb, var(--mk-salmon) 72%, var(--mk-blue)));
    color: #fff;
    border-radius: 999px;
    font-family: "Quicksand", system-ui, sans-serif;
    box-shadow: 0 8px 22px color-mix(in srgb, var(--mk-salmon) 38%, transparent);
}

body.mavikugu-theme-site .cart-empty .btn-shop:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--mk-salmon) 85%, var(--mk-blue)), var(--mk-blue));
    color: #fff;
    filter: brightness(1.03);
}

body.mavikugu-theme-site .cart-page .btn,
body.mavikugu-theme-site .checkout-page .btn-primary {
    border-radius: 999px;
}

@media (max-width: 1024px) {
    .mk-product-grid,
    .mk-lookbook {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mk-footer {
        padding: 0;
        margin-top: 32px;
    }
    .mk-footer__inner {
        padding: 40px 16px 0;
    }
    .mk-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .mk-footer__html-cols {
        grid-template-columns: 1fr;
        margin-top: 24px;
        padding-top: 18px;
    }
    .mk-footer__nl {
        flex-direction: column;
        align-items: stretch;
    }
    .mk-footer__nl input {
        flex: 0 0 auto;
        width: 100%;
        height: 42px;
        min-height: 42px;
        max-height: 42px;
        padding: 0 16px;
        font-size: 16px;
        line-height: 42px;
        box-sizing: border-box;
    }
    .mk-footer__nl button,
    .mk-footer__nl-submit {
        width: 100%;
        height: 42px;
        min-height: 42px;
        padding: 0 14px;
    }
    .mk-footer__bottom {
        margin-top: 24px;
        text-align: left;
        line-height: 1.5;
    }
    .mk-footer__credit {
        padding: 12px 16px;
        font-size: 11px;
        width: 100%;
    }
    .mk-footer__credit-inner {
        justify-content: center;
        text-align: center;
        padding: 0;
        font-size: 11px;
    }
    .mk-hero__slide {
        grid-template-columns: 1fr;
        padding: 28px 20px;
        min-height: 0;
    }
    .mk-utility__inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    .mk-utility__left,
    .mk-utility__right {
        justify-content: center;
    }
    .mk-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .mk-card-actions {
        opacity: 0;
        height: 0;
        margin: 0 12px;
        pointer-events: none;
        overflow: visible;
        transform: none;
    }
    .mk-card-wrap:active .mk-card-actions,
    .mk-card-wrap:focus-within .mk-card-actions {
        opacity: 1;
        height: 0;
        margin: 0 12px;
        pointer-events: auto;
        overflow: visible;
        transform: none;
    }
    .mk-lookbook {
        grid-template-columns: 1fr;
    }
}

/* Sağ menü — varsayılan açık, sol sekme ile gizle */
.mk-right-rail {
    position: fixed;
    right: max(0px, env(safe-area-inset-right, 0px));
    top: 50%;
    transform: translateY(-50%);
    z-index: 955;
    pointer-events: none;
}

.mk-right-rail__shell {
    pointer-events: auto;
    display: flex;
    align-items: stretch;
    transform: translateX(0);
    transition: transform .42s cubic-bezier(.4, 0, .2, 1);
}

.mk-right-rail.is-collapsed .mk-right-rail__shell {
    transform: translateX(calc(100% - 18px));
}

.mk-right-rail__tab {
    width: 18px;
    min-height: 64px;
    align-self: center;
    border: 1px solid rgba(30, 58, 95, .14);
    border-right: 0;
    border-radius: 12px 0 0 12px;
    background: #fff;
    color: var(--mk-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: -4px 0 16px rgba(15, 23, 42, .08);
    transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.mk-right-rail__tab:hover,
.mk-right-rail__tab:focus-visible {
    background: var(--mk-salmon);
    color: #fff;
    outline: none;
}

.mk-right-rail__tab-icon--show {
    display: none;
}

.mk-right-rail.is-collapsed .mk-right-rail__tab-icon--hide {
    display: none;
}

.mk-right-rail.is-collapsed .mk-right-rail__tab-icon--show {
    display: block;
}

.mk-right-rail__dock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(30, 58, 95, .12);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, .14);
}

.mk-right-rail__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 14px;
    text-decoration: none;
    color: var(--mk-blue);
    background: transparent;
    border: none;
    transform: scale(1);
    transform-origin: center right;
    transition: transform .24s cubic-bezier(.34, 1.56, .64, 1), background .2s ease, color .2s ease, box-shadow .2s ease;
}

.mk-right-rail__item:hover,
.mk-right-rail__item:focus-visible {
    transform: scale(1.28);
    background: rgba(30, 58, 95, .08);
    color: var(--mk-blue);
    box-shadow: 0 6px 18px rgba(30, 58, 95, .14);
    outline: none;
    z-index: 2;
}

.mk-right-rail__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--mk-salmon) 16%, #fff);
    border: 1px solid color-mix(in srgb, var(--mk-salmon) 34%, transparent);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--mk-salmon) 18%, rgba(15, 23, 42, .06));
    color: var(--mk-blue);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.mk-right-rail__item:hover .mk-right-rail__icon,
.mk-right-rail__item:focus-visible .mk-right-rail__icon {
    background: var(--mk-salmon);
    border-color: var(--mk-salmon);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--mk-salmon) 40%, transparent);
    color: #fff;
}

.mk-right-rail__item:hover .mk-right-rail__icon svg,
.mk-right-rail__item:focus-visible .mk-right-rail__icon svg {
    stroke: #fff;
}

@supports not (color: color-mix(in srgb, red, blue)) {
    .mk-right-rail__icon {
        background: #FFF1F0;
        border-color: #FADBD8;
        box-shadow: 0 2px 8px rgba(232, 138, 138, .18);
    }
    .mk-right-rail__item:hover .mk-right-rail__icon,
    .mk-right-rail__item:focus-visible .mk-right-rail__icon {
        background: var(--mk-salmon);
        border-color: var(--mk-salmon);
        box-shadow: 0 4px 14px rgba(232, 138, 138, .35);
    }
}

.mk-right-rail__tip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) scale(.9);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(15, 23, 42, .92);
    color: #fff;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.2;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .2);
    transition: opacity .18s ease, transform .24s cubic-bezier(.34, 1.56, .64, 1);
}

.mk-right-rail__tip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(15, 23, 42, .92);
}

.mk-right-rail__item:hover .mk-right-rail__tip,
.mk-right-rail__item:focus-visible .mk-right-rail__tip {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.mk-right-rail__dock:hover .mk-right-rail__item:not(:hover) {
    transform: scale(.94);
}

@media (max-width: 768px) {
    .mk-right-rail {
        display: none !important;
    }
}

body.mavikugu-theme-site .pdp-cta-btn.pdp-cta-btn--checkoutlike,
body.mavikugu-theme-site #addToCartBtn.pdp-cta-btn:not(.pdp-cta-btn--success),
body.mavikugu-theme-site #quickBuyBtn.pdp-cta-btn:not(.pdp-cta-btn--success) {
    background: #E88A8A !important;
    color: #fff !important;
    box-shadow: 0 2px 10px rgba(232, 138, 138, .32) !important;
}

body.mavikugu-theme-site #addToCartBtn .pdp-cart-cta__icon,
body.mavikugu-theme-site #addToCartBtn .pdp-cart-cta__icon path,
body.mavikugu-theme-site #addToCartBtn .pdp-cart-cta__txt {
    color: #fff !important;
    stroke: #fff !important;
}

body.mavikugu-theme-site .pdp-cta-btn.pdp-cta-btn--checkoutlike:hover:not(:disabled),
body.mavikugu-theme-site #addToCartBtn.pdp-cta-btn:hover:not(:disabled) {
    filter: brightness(1.04);
    box-shadow: 0 4px 16px rgba(232, 138, 138, .38) !important;
}

.pdp-reco-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.pdp-reco-carousel::-webkit-scrollbar {
    height: 5px;
}

.pdp-reco-carousel::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.pdp-reco-cell {
    flex: 0 0 calc(20% - 12px);
    min-width: 148px;
    max-width: 220px;
    scroll-snap-align: start;
}

@media (max-width: 1023px) {
    .pdp-reco-cell {
        flex-basis: calc(33.333% - 10px);
        min-width: 132px;
    }
}

@media (max-width: 767px) {
    .pdp-reco-cell {
        flex-basis: calc(50% - 8px);
        min-width: 128px;
    }
}

.pdp-reco-wrap {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.pdp-reco-wrap + .pdp-reco-wrap {
    margin-top: 24px;
}

/* Sağ menü (Umino tarzı) — legacy selectors removed */
.mk-right-rail--legacy {
    display: none;
}

/* Header — Doruk tarzı gündüz/gece pill anahtarı */
.mk-theme-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    color: inherit;
}

.hdr-mega-act--theme {
    padding: 0;
    min-width: 0;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    align-self: center;
}

.site-header--mega .hdr-mega-icons-cluster .hdr-mega-act--theme {
    flex-shrink: 0;
}

.mk-theme-switch:focus-visible .mk-theme-switch__track {
    outline: 2px solid var(--mk-salmon, #e8837a);
    outline-offset: 2px;
}

.mk-theme-switch__track {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 52px;
    height: 28px;
    padding: 0 4px;
    border-radius: 999px;
    background: #ffffff;
    border: 2px solid var(--mk-blue, #1e3a5f);
    box-sizing: border-box;
    transition: background 0.35s ease, border-color 0.35s ease;
}

.mk-theme-switch__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.mk-theme-switch__icon svg {
    display: block;
    width: 12px;
    height: 12px;
}

.mk-theme-switch__knob {
    position: absolute;
    top: 50%;
    right: 3px;
    left: auto;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--mk-blue, #1e3a5f);
    transform: translateY(-50%);
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition:
        right 0.4s cubic-bezier(0.34, 1.25, 0.64, 1),
        left 0.4s cubic-bezier(0.34, 1.25, 0.64, 1),
        background 0.3s ease;
}

.mk-theme-switch--dark .mk-theme-switch__knob,
html[data-mk-appearance="dark"] .mk-theme-switch__knob {
    left: 3px;
    right: auto;
    background: #ffffff;
}

.mk-theme-switch--dark .mk-theme-switch__track,
html[data-mk-appearance="dark"] .mk-theme-switch__track {
    background: #1e293b;
    border-color: #94a3b8;
}

.mk-theme-switch:hover .mk-theme-switch__track {
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.12);
}

@media (max-width: 768px) {
    .mk-theme-switch__track {
        width: 48px;
        height: 26px;
    }
    .mk-theme-switch__knob {
        width: 16px;
        height: 16px;
    }
}

/* Scroll-to-top — scroll progress halkası (tema renkleri) */
body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top {
    --scroll-progress: 0;
    --mk-scroll-track: color-mix(in srgb, var(--mk-salmon) 28%, var(--mk-border));
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    box-shadow: 0 2px 14px rgba(30, 58, 95, .14);
    overflow: visible;
    position: fixed;
    isolation: isolate;
}

body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from -90deg,
        var(--mk-salmon) 0deg,
        var(--mk-blue) calc(var(--scroll-progress, 0) * 180deg),
        var(--mk-blue) calc(var(--scroll-progress, 0) * 360deg),
        var(--mk-scroll-track) calc(var(--scroll-progress, 0) * 360deg)
    );
    z-index: 0;
    pointer-events: none;
}

body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #fff;
    z-index: 0;
    pointer-events: none;
}

body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top svg {
    position: relative;
    z-index: 1;
    color: var(--mk-blue);
    transition: color .25s ease;
}

body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top.mk-scroll-top--full svg {
    color: var(--mk-salmon);
}

body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top:hover {
    box-shadow: 0 4px 18px rgba(232, 138, 138, .35);
}

body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top:focus-visible {
    outline: 2px solid var(--mk-salmon);
    outline-offset: 2px;
}

/* Mobil alt menü marka renkleri */
body.mavikugu-theme-site #mobileFooterMenu {
    font-family: "Quicksand", system-ui, sans-serif;
}

body.mavikugu-theme-site #mobileFooterMenu .mfm-item.mfm-active {
    color: var(--mk-blue) !important;
}

body.mavikugu-theme-site #mobileFooterMenu .mfm-item.mfm-active svg {
    stroke: var(--mk-blue) !important;
}

body.mavikugu-theme-site #mobileFooterMenu.mfm-theme-minimal .mfm-item.mfm-active::after {
    background: var(--mk-salmon);
}

body.mavikugu-theme-site #mobileFooterMenu.mfm-theme-labels-dot .mfm-item.mfm-active::before {
    background: var(--mk-salmon);
}

body.mavikugu-theme-site #mobileFooterMenu.mfm-theme-labels-highlight .mfm-item.mfm-active {
    background: rgba(232, 138, 138, .12);
    color: var(--mk-blue) !important;
}

/* Fırsat saati — koyu zemin, açık metin */
.mk-section--flash {
    background: var(--mk-blue);
    color: var(--mk-text-on-dark);
    border-radius: 28px;
    margin-top: 12px;
    overflow: visible;
}

.mk-section--flash .mk-rail {
    margin-inline: 0;
    padding-inline: 2px;
}

.mk-section--flash .mk-card-act--cart {
    background: #0f172a;
    color: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Fırsat saati: tüm kartlarda Sepete Ekle görselin hemen altında, boşluksuz (sadece hover) */
.mk-section--flash .mk-card-wrap .product-card {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
}
.mk-section--flash .mk-card-wrap .product-img-wrap {
    order: 1;
    width: 100%;
    flex: 0 0 auto;
    grid-row: auto;
    grid-column: auto;
}
.mk-section--flash .mk-sale-badge {
    grid-row: auto;
    grid-column: auto;
}
.mk-section--flash .mk-card-actions {
    order: 2;
    grid-row: auto !important;
    grid-column: auto !important;
    align-self: stretch !important;
    justify-self: auto;
    position: relative;
    z-index: 5;
    flex: 0 0 0px;
    width: auto;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 12px !important;
    transform: none !important;
    overflow: visible !important;
}
.mk-section--flash .mk-card-wrap:hover .mk-card-actions,
.mk-section--flash .mk-card-wrap:focus-within .mk-card-actions,
.mk-section--flash .mk-card-wrap:active .mk-card-actions {
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 12px !important;
    transform: none !important;
}
.mk-section--flash .mk-card-wrap .product-info,
.mk-section--flash .mk-card-wrap .product-card-info-link {
    order: 3;
    grid-row: auto;
    grid-column: auto;
    padding-top: 8px;
}

/* Fırsat saati: renk rozeti diğer listelerle aynı — görsel sağ alt */
.mk-section--flash .product-img-wrap,
.mk-section--flash .product-card .product-img-wrap--enhanced {
    overflow: visible !important;
    contain: none !important;
    position: relative;
    z-index: 2;
}
.mk-section--flash .mk-rail__item,
.mk-section--flash .mk-card-wrap,
.mk-section--flash .product-card {
    overflow: visible;
}
.mk-section--flash .product-card-color-popover {
    position: absolute !important;
    bottom: 10px !important;
    right: 10px !important;
    z-index: 15 !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}
.mk-section--flash .product-card-color-badge {
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.18);
}

.mk-section--flash .mk-section__head h2,
.mk-section--flash .mk-countdown {
    color: var(--mk-salmon);
}

.mk-section--flash .product-name,
.mk-section--flash .product-price,
.mk-section--flash .product-price-old,
.mk-section--flash .product-card-info-link,
.mk-section--flash .product-category-tag,
body.mavikugu-theme-site .mk-section--flash .product-name,
body.mavikugu-theme-site .mk-section--flash .product-price,
body.mavikugu-theme-site .mk-section--flash .product-price-old {
    color: #fff !important;
}

.mk-section--flash .product-price.sale {
    color: var(--mk-salmon) !important;
}

/* Lookbook metin okunurluğu */
.mk-look__copy {
    z-index: 2;
}

.mk-look__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(30, 58, 95, .82) 100%);
    z-index: 1;
    pointer-events: none;
}

.mk-look,
.mk-look__copy,
.mk-look__copy small,
.mk-look__copy strong,
.mk-look__copy em {
    color: var(--mk-text-on-dark) !important;
}

/* Tema değiştirici */
.mk-utility__right {
    align-items: center;
}

.mk-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--mk-border);
    background: var(--mk-surface);
    color: var(--mk-blue);
    cursor: pointer;
    padding: 0;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.mk-theme-toggle:hover {
    border-color: var(--mk-salmon);
    color: var(--mk-salmon);
}

.mk-theme-toggle__system {
    display: none;
}

html[data-mk-appearance-mode="system"] .mk-theme-toggle__sun,
html[data-mk-appearance-mode="system"] .mk-theme-toggle__moon {
    display: none;
}

html[data-mk-appearance-mode="system"] .mk-theme-toggle__system {
    display: block;
}

html[data-mk-appearance="dark"] .mk-theme-toggle__sun {
    display: none;
}

html[data-mk-appearance-mode="dark"] .mk-theme-toggle__moon,
html[data-mk-appearance="dark"]:not([data-mk-appearance-mode="system"]) .mk-theme-toggle__moon {
    display: block;
}

html[data-mk-appearance-mode="light"] .mk-theme-toggle__sun {
    display: block;
}

html[data-mk-appearance-mode="light"] .mk-theme-toggle__moon {
    display: none;
}

/* Portal chrome — koyu zeminlerde metin */
body.mavikugu-theme-site .site-promo-bar a,
body.mavikugu-theme-site .site-promo-bar span {
    color: var(--promo-fg, #fff) !important;
    -webkit-text-fill-color: var(--promo-fg, #fff) !important;
}

body.mavikugu-theme-site .product-name,
body.mavikugu-theme-site .breadcrumb a,
body.mavikugu-theme-site .shop-toolbar {
    color: var(--mk-text);
}

/* Karanlık tema */
html[data-mk-appearance="dark"] body.mavikugu-theme-site {
    --max-w: var(--site-container, 1240px);
    --mk-bg: #0F172A;
    --mk-surface: #1E293B;
    --mk-surface-soft: #243044;
    --mk-text: #F1F5F9;
    --mk-text-muted: #94A3B8;
    --mk-border: rgba(148, 163, 184, .18);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header {
    --header-bg: #1E3A5F;
    --header-text: #F1F5F9;
    background: var(--mk-blue) !important;
    border-bottom-color: rgba(255, 255, 255, .1) !important;
    color: var(--mk-text-on-dark) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-sticky-zone--top,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-sticky-zone--nav,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-nav-strip {
    background: var(--mk-blue) !important;
    border-color: rgba(255, 255, 255, .1) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-search-expand-btn,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-mega-act,
html[data-mk-appearance="dark"] body.mavikugu-theme-site #mobileFooterMenu {
    background: transparent !important;
    color: var(--mk-text-on-dark) !important;
    border-color: rgba(255, 255, 255, .12) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-mega-icons-cluster .hdr-search-expand-btn {
    border: none !important;
    background: transparent !important;
}

@media (hover: hover) and (pointer: fine) {
    html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-mega-icons-cluster .hdr-search-expand-btn:hover:not(:active) {
        background: rgba(255, 255, 255, 0.12) !important;
        color: #fff !important;
    }
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .nav-link,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .nav-link--mega__text,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .mega-nav-trigger,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-mega-act {
    color: var(--mk-text-muted-on-dark) !important;
    opacity: 1 !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .nav-link:hover,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .nav-link.active,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .mega-dropdown:hover > .mega-nav-trigger .nav-link--mega__text,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-header .mega-dropdown:hover > .mega-nav-trigger.nav-link--mega {
    color: #fff !important;
    background: transparent !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-search-pill,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-search-inp {
    background: rgba(15, 23, 42, .35) !important;
    border-color: rgba(255, 255, 255, .14) !important;
    color: #F8FAFC !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-search-inp::placeholder {
    color: #94A3B8 !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-panel,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-panel.mega-panel,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-dropdown-panel,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-dropdown__inner {
    background: var(--mk-blue) !important;
    color: var(--mk-text-muted-on-dark) !important;
    border-color: rgba(255, 255, 255, .1) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-col__head,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-col__head-link {
    color: #F1F5F9 !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-col__head-link:hover {
    color: #fff !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-col__link,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-col__view-all,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-nav .dropdown-item {
    color: var(--mk-text-muted-on-dark) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-col__link:hover,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-col__view-all:hover,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-nav .dropdown-item:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, .06) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-panel__footer-strip {
    background: rgba(15, 23, 42, .28) !important;
    border-color: rgba(255, 255, 255, .08) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-footer-chip {
    color: var(--mk-text-muted-on-dark) !important;
    border-color: rgba(255, 255, 255, .14) !important;
    background: rgba(15, 23, 42, .22) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mega-footer-chip:hover {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .22) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-mega-mob-search-drawer {
    background: var(--mk-blue) !important;
    border-color: rgba(255, 255, 255, .1) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-tabs__btn {
    background: var(--mk-surface-soft);
    color: var(--mk-text);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-tabs__btn.is-active {
    background: var(--mk-blue);
    color: var(--mk-text-on-dark);
}

/* Hero hareket yönü, dosyanın eski durum seçicilerinden sonra uygulanır. */
.mk-hero__slide.is-exit-left { transform:translate3d(-12%,0,0); }
.mk-hero__slide.is-exit-right { transform:translate3d(12%,0,0); }
.mk-hero__slide.is-enter-from-left { transform:translate3d(-12%,0,0); }
.mk-hero__slide.is-enter-from-right { transform:translate3d(12%,0,0); }

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-right-rail__dock {
    background: rgba(30, 41, 59, .9);
    border-color: rgba(148, 163, 184, .16);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-right-rail__icon {
    background: color-mix(in srgb, var(--mk-salmon) 22%, rgba(15, 23, 42, .85));
    border-color: color-mix(in srgb, var(--mk-salmon) 40%, transparent);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-right-rail__item {
    color: var(--mk-text);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-right-rail__item:hover,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-right-rail__item:focus-visible {
    background: rgba(148, 163, 184, .08);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-right-rail__item:hover .mk-right-rail__icon,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-right-rail__item:focus-visible .mk-right-rail__icon {
    background: var(--mk-salmon);
    border-color: var(--mk-salmon);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .mk-right-rail__tab {
    background: var(--mk-surface);
    color: var(--mk-text);
    border-color: rgba(148, 163, 184, .18);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top {
    background: var(--mk-surface);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site.mavikugu-scroll-top-on #bbScrollTopBtn.bb-scroll-top::after {
    background: var(--mk-surface);
}

/* Karanlık mod — genel okunabilirlik */
html[data-mk-appearance="dark"] body.mavikugu-theme-site,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .site-main {
    background: var(--mk-bg);
    color: var(--mk-text);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-page {
    background: var(--mk-bg);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-card,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-sidebar,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .co-card,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-card,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .product-card,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .shop-card,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .os-card,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .os-hero {
    background: var(--mk-surface) !important;
    border-color: var(--mk-border) !important;
    color: var(--mk-text) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-card-title,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-uname,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-card-no,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-prod-name,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-price,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .co-card-header h3,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .os-title,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .product-name,
html[data-mk-appearance="dark"] body.mavikugu-theme-site h1,
html[data-mk-appearance="dark"] body.mavikugu-theme-site h2,
html[data-mk-appearance="dark"] body.mavikugu-theme-site h3 {
    color: #F1F5F9 !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-uemail,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-help-text,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-tbl td,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-card-date,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-prod-meta,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-foot-note,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .os-desc,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .co-label,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .co-step,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .breadcrumb,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .shop-toolbar,
html[data-mk-appearance="dark"] body.mavikugu-theme-site p,
html[data-mk-appearance="dark"] body.mavikugu-theme-site label,
html[data-mk-appearance="dark"] body.mavikugu-theme-site span {
    color: #CBD5E1;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-inp,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-search-inp,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-search,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-date,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .co-input,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-search-pill,
html[data-mk-appearance="dark"] body.mavikugu-theme-site input,
html[data-mk-appearance="dark"] body.mavikugu-theme-site select,
html[data-mk-appearance="dark"] body.mavikugu-theme-site textarea {
    background: var(--mk-surface-soft) !important;
    border-color: rgba(148, 163, 184, .28) !important;
    color: #F1F5F9 !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-nav-item,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-tab,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-tab,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-detail-btn,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .page-hero {
    background: var(--mk-bg);
    border-bottom-color: rgba(148, 163, 184, .16);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .page-hero h1,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .page-hero .page-breadcrumb__current {
    color: var(--mk-text);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .page-hero .page-breadcrumb a {
    color: var(--mk-text-muted, #94a3b8);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .page-hero .page-breadcrumb a:hover {
    color: #fff;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-user-drop {
    background: var(--mk-surface-soft);
    border-color: rgba(148, 163, 184, .22);
    color: #E2E8F0;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-nav-item:hover,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-nav-item.active,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-tab.active,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-tab.active {
    background: rgba(30, 58, 95, .45);
    color: #F8FAFC;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-tbl th {
    background: var(--mk-surface-soft);
    color: #94A3B8;
    border-color: var(--mk-border);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-tbl td {
    border-color: rgba(148, 163, 184, .12);
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-user-drop a {
    color: #E2E8F0;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .hdr-user-drop a:hover {
    background: rgba(148, 163, 184, .1);
    color: #F8FAFC;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .payment-opt,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .auth-tabs-wrap,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .co-summary {
    background: var(--mk-surface) !important;
    border-color: var(--mk-border) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .co-summary-head,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .co-card-header,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-card-head,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-card-foot,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-card-head {
    border-color: rgba(148, 163, 184, .14) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .ol-foot-link,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .hm-footer-note a,
html[data-mk-appearance="dark"] body.mavikugu-theme-site a.ol-foot-link {
    color: #93C5FD;
}

/* Sipariş detayı — karanlık mod */
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-card {
    background: var(--mk-surface) !important;
    border-color: var(--mk-border) !important;
    color: var(--mk-text) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-head h1,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-card-title,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-item-name,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-item-total,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-summary-total,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-info-block strong,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-info-row strong {
    color: #F1F5F9 !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-head-date,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-item-meta,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-item-unit,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-summary-row,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-info-row,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-info-block,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-log-item,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-back {
    color: #CBD5E1 !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-back:hover {
    color: #93C5FD !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-card-title,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-item,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-log {
    border-color: rgba(148, 163, 184, .14) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-thumb,
html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-thumb-ph {
    background: var(--mk-surface-soft) !important;
    border-color: rgba(148, 163, 184, .2) !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-tracking {
    background: rgba(37, 99, 235, .12) !important;
    border-color: rgba(96, 165, 250, .25) !important;
    color: #BFDBFE !important;
}

html[data-mk-appearance="dark"] body.mavikugu-theme-site .od-summary-total span:last-child {
    color: #86EFAC !important;
}

/* Slider: yalnızca yatay hareket; solma uygulanmaz. */
body.mavikugu-theme-site .mk-hero__slide {
    opacity:1;
    transform:translate3d(100%,0,0);
    z-index:1;
    transition:transform .62s cubic-bezier(.22,.72,.18,1),visibility 0s linear .62s;
    will-change:transform;
}
body.mavikugu-theme-site .mk-hero__slide.is-active {
    opacity:1;
    transform:translate3d(0,0,0);
    z-index:2;
    transition:transform .62s cubic-bezier(.22,.72,.18,1),visibility 0s;
}
body.mavikugu-theme-site .mk-hero__slide.is-exit-left { opacity:1;transform:translate3d(-100%,0,0);z-index:3; }
body.mavikugu-theme-site .mk-hero__slide.is-exit-right { opacity:1;transform:translate3d(100%,0,0);z-index:3; }
body.mavikugu-theme-site .mk-hero__slide.is-enter-from-left { opacity:1;transform:translate3d(-100%,0,0); }
body.mavikugu-theme-site .mk-hero__slide.is-enter-from-right { opacity:1;transform:translate3d(100%,0,0); }
body.mavikugu-theme-site .mk-hero__media { display:block;color:inherit;text-decoration:none; }

body.mavikugu-theme-site .mk-rail {
    touch-action:pan-x pan-y;
}
body.mavikugu-theme-site .product-card-media-link { z-index:6; }
body.mavikugu-theme-site .product-card__gallery-dots { pointer-events:none; }

