/* Kosar storefront — kurumsal navy design tokens */
:root {
    --kosar-primary: #1e3a5f;
    --kosar-primary-dark: #152a47;
    --kosar-accent: #2d4a73;
    --kosar-ink: #0f172a;
    --kosar-muted: #64748b;
    --kosar-surface: #f4f6f9;
    --kosar-radius: 0.75rem;
    --kosar-radius-lg: 1rem;
    --kosar-radius-xl: 1.25rem;
    --kosar-shadow: 0 1px 3px rgb(15 23 42 / 0.06), 0 8px 24px rgb(15 23 42 / 0.05);
    --kosar-shadow-soft: 0 2px 8px rgb(15 23 42 / 0.04);
    --kosar-shadow-header: 0 4px 20px rgb(15 23 42 / 0.06);
    --kosar-header-h: 4.25rem;
}

html {
    scroll-behavior: smooth;
    /* Yatay taşmayı tüm sayfalarda engelle — clip, scroll'u bozmaz */
    overflow-x: clip;
}

body.shop-body {
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    background-color: #e8eef6;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgb(197 212 232 / 0.45), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgb(30 58 95 / 0.06), transparent),
        radial-gradient(ellipse 50% 30% at 0% 80%, rgb(30 58 95 / 0.05), transparent),
        linear-gradient(180deg, #eef2f7 0%, #f4f7fb 35%, #f8fafc 100%);
    /* background-attachment:fixed iOS Safari'de desteklenmez; scroll kullan */
    background-attachment: scroll;
}

.shop-promo-bar {
    background: linear-gradient(
        90deg,
        var(--kosar-primary-dark) 0%,
        var(--kosar-primary) 35%,
        var(--kosar-accent) 50%,
        var(--kosar-primary) 65%,
        var(--kosar-primary-dark) 100%
    );
    background-size: 200% 100%;
    color: #fff;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 12px rgb(30 58 95 / 0.2);
    animation: shop-promo-shift 28s ease-in-out infinite;
    /* Uzun yazı mobilde taşmasın */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media (max-width: 479px) {
    .shop-promo-bar {
        white-space: normal;
        text-overflow: clip;
        letter-spacing: 0;
    }
}
@keyframes shop-promo-shift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

#main-content.shop-main {
    position: relative;
}

/* Marka / logo alanı */
.shop-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: inherit;
}
.shop-brand--has-logo {
    gap: 0;
}
.shop-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.shop-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    transition: color 0.2s ease;
}
.shop-brand--footer .shop-brand-name {
    color: #0f172a;
}
.shop-brand-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}
.shop-brand--footer .shop-brand-tagline {
    color: #94a3b8;
}
.group:hover .shop-brand-name {
    color: var(--kosar-primary);
}
.shop-brand--footer.group:hover .shop-brand-name {
    color: var(--kosar-accent);
}

.shop-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    padding: 0.2rem 0.35rem;
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-brand--has-logo .shop-logo-wrap::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.1rem;
    width: 72%;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--kosar-accent) 35%,
        var(--kosar-primary) 50%,
        var(--kosar-accent) 65%,
        transparent 100%
    );
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
    pointer-events: none;
}
.shop-brand--has-logo:hover .shop-logo-wrap::after,
.shop-brand--has-logo:focus-visible .shop-logo-wrap::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}
.shop-brand--has-logo .shop-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        105deg,
        transparent 38%,
        rgb(255 255 255 / 0.5) 50%,
        transparent 62%
    );
    opacity: 0;
    pointer-events: none;
    z-index: 2;
}
.shop-brand--has-logo:hover .shop-logo-wrap::before {
    animation: shop-logo-gleam 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.shop-brand--has-logo .shop-logo,
.shop-brand--has-logo .shop-logo-fallback {
    opacity: 0.94;
    transition:
        opacity 0.3s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.35s ease,
        box-shadow 0.35s ease;
}
.shop-brand--has-logo:hover .shop-logo,
.shop-brand--has-logo:hover .shop-logo-fallback,
.shop-brand--has-logo:focus-visible .shop-logo,
.shop-brand--has-logo:focus-visible .shop-logo-fallback {
    opacity: 1;
    transform: translateY(-2px);
    filter: drop-shadow(0 5px 14px rgb(30 58 95 / 0.14));
}
.shop-brand--has-logo:hover .shop-logo-wrap,
.shop-brand--has-logo:focus-visible .shop-logo-wrap {
    transform: translateY(-1px);
}
.shop-brand--footer.shop-brand--has-logo:hover .shop-logo,
.shop-brand--footer.shop-brand--has-logo:focus-visible .shop-logo {
    filter: drop-shadow(0 4px 12px rgb(30 58 95 / 0.1));
}
.shop-brand--has-logo:focus-visible .shop-logo-wrap {
    outline: 2px solid rgb(30 58 95 / 0.3);
    outline-offset: 4px;
}
.shop-brand:not(.shop-brand--has-logo) .shop-brand-text {
    position: relative;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-brand:not(.shop-brand--has-logo) .shop-brand-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.15rem;
    height: 2px;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--kosar-accent), var(--kosar-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-brand:not(.shop-brand--has-logo):hover .shop-brand-text::after,
.shop-brand:not(.shop-brand--has-logo):focus-visible .shop-brand-text::after {
    transform: scaleX(1);
}
.shop-brand:not(.shop-brand--has-logo):hover .shop-brand-text,
.shop-brand:not(.shop-brand--has-logo):focus-visible .shop-brand-text {
    transform: translateY(-1px);
}

.shop-logo {
    position: relative;
    z-index: 1;
    display: block;
    object-fit: contain;
    flex-shrink: 0;
    background: transparent !important;
    border: none;
    box-shadow: none;
}
.shop-brand--has-logo .shop-logo--header {
    height: 3rem;
    width: auto;
    max-width: 11.5rem;
}
.shop-brand--has-logo .shop-logo--footer {
    height: 2.75rem;
    max-width: 10rem;
}
.shop-brand--footer .shop-logo-wrap {
    background: transparent;
    animation: none;
}
.shop-brand--has-logo .shop-logo--mobile {
    height: 2.25rem;
    max-width: 8.5rem;
}
.shop-logo--header {
    height: 2.5rem;
    width: auto;
    max-width: 10rem;
}
.shop-logo--footer {
    height: 2.5rem;
    width: auto;
    max-width: 9rem;
}
.shop-logo--mobile {
    height: 2rem;
    width: auto;
    max-width: 7rem;
}
.shop-logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #2d4a73, #1e3a5f);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 1px 2px rgb(15 23 42 / 0.08);
}
.shop-logo--header.shop-logo-fallback,
.shop-logo-fallback.shop-logo--header {
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.125rem;
}
@media (max-width: 767px) {
    .shop-brand--has-logo .shop-logo--header,
    .shop-logo--header {
        height: 2.42rem;
        max-width: 9.5rem;
    }

    .shop-logo--header.shop-logo-fallback,
    .shop-logo-fallback.shop-logo--header {
        height: 2.35rem;
        width: 2.35rem;
    }
}
.shop-logo--footer.shop-logo-fallback,
.shop-logo-fallback.shop-logo--footer {
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.125rem;
    background: #1e3a5f;
}
.shop-logo--mobile.shop-logo-fallback,
.shop-logo-fallback.shop-logo--mobile {
    height: 2rem;
    width: 2rem;
    font-size: 1rem;
}

@keyframes shop-logo-gleam {
    0% {
        opacity: 0;
        transform: translateX(-130%) skewX(-10deg);
    }
    40% {
        opacity: 0.85;
    }
    100% {
        opacity: 0;
        transform: translateX(130%) skewX(-10deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .shop-brand--has-logo .shop-logo-wrap::before,
    .shop-brand--has-logo:hover .shop-logo-wrap::before {
        animation: none !important;
        opacity: 0 !important;
    }
    .shop-brand--has-logo .shop-logo-wrap::after,
    .shop-brand--has-logo:hover .shop-logo-wrap::after,
    .shop-brand--has-logo .shop-logo,
    .shop-brand--has-logo:hover .shop-logo,
    .shop-brand--has-logo .shop-logo-wrap,
    .shop-brand--has-logo:hover .shop-logo-wrap,
    .shop-brand:not(.shop-brand--has-logo):hover .shop-brand-text,
    .shop-brand:not(.shop-brand--has-logo) .shop-brand-text::after,
    .shop-brand--has-logo:hover .shop-logo,
    .shop-brand--has-logo:hover .shop-logo-wrap,
    .shop-brand--has-logo:hover .shop-logo-fallback {
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
    .shop-hero-item,
    .shop-cart-btn.is-added,
    #shop-toast.show {
        animation: none !important;
    }
    .shop-product-card:hover,
    .shop-category-card:hover,
    .shop-category-card:hover .shop-category-card__icon,
    .shop-category-pill:hover,
    .shop-filter-trigger:hover,
    .shop-filter-chip:hover,
    .shop-pdp-thumb:hover,
    .shop-pdp-trust__item:hover,
    .shop-pdp-fav:hover,
    .shop-cart-line:hover,
    .shop-checkout-option:hover,
    .shop-cart-drawer__secondary:hover,
    .shop-account-card:hover,
    .shop-order-row:hover,
    .shop-blog-card:hover,
    .shop-brand-tile:hover,
    .shop-brands-band__name:hover,
    .shop-btn-premium:hover,
    .shop-hero--light .shop-btn-ghost:hover,
    .shop-btn-ghost:hover,
    .btn-primary:hover,
    .shop-icon-btn:hover,
    .shop-header-icon:hover,
    .shop-header-icon:hover .shop-header-icon__svg,
    .shop-header-auth--cta:hover,
    .shop-header-auth--admin:hover,
    .shop-search-submit:hover,
    .shop-search-form:focus-within .shop-search-form__icon,
    .shop-mega-panel__link:hover,
    .shop-mega-wrap:hover .shop-mega-panel,
    .search-suggest,
    .shop-pay-icon:hover,
    .shop-footer-payment:hover,
    .shop-footer-badge--link:hover,
    .shop-footer-etbis--linked:hover,
    .kfooter__link:hover,
    a.kfooter__contact:hover,
    .kfooter__bar-cta:hover,
    .shop-account-card:hover,
    .shop-order-row:hover,
    .shop-blog-card:hover,
    .shop-contact-link:hover,
    .shop-add-cart-btn:hover,
    .shop-product-card__fav:hover {
        transform: none;
    }
    .shop-hero-item,
    .shop-hero__accent,
    .shop-reveal {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
    .shop-reveal.is-visible {
        opacity: 1;
        transform: none;
    }
    .shop-reveal-group > *,
    .shop-reveal-group.is-visible > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .shop-main-enter {
        animation: none;
    }
    .shop-promo-bar {
        animation: none;
        background-size: auto;
    }
    .shop-banner-slide__img.is-animating {
        animation: none;
    }
    .shop-header-icon__badge.is-bump {
        animation: none;
    }
    .shop-wa-float::before,
    .shop-wa-float::after,
    .shop-scroll-top::before,
    .shop-scroll-top::after {
        animation: none;
        transition: none;
    }
    .kfooter__topline,
    .shop-topbar,
    .shop-site-header,
    .shop-footer__trust-shine::after,
    .kfooter__nl-btn:hover {
        animation: none;
    }
    .kfooter__bar-cta:hover svg {
        transform: none;
    }
    .shop-product-card:hover .shop-product-card__img {
        transform: none;
    }
    .shop-site-header,
    .shop-mobile-nav,
    .shop-mobile-nav__panel,
    .shop-product-card,
    .shop-product-card__img,
    .shop-category-card,
    .btn-primary,
    .shop-mega-panel,
    #cart-drawer aside,
    #filter-drawer-panel {
        transition: none;
    }
}

/*
 * iOS Safari, font-size < 16px olan bir input/select/textarea'ya
 * odaklanıldığında sayfayı otomatik zoom'lar. Bunu engellemek için
 * mobilde tüm form elemanlarını en az 16px (1rem) yapıyoruz.
 * Masaüstünde görsel boyutlar korunur.
 */
@media (max-width: 767px) {
    input,
    select,
    textarea,
    .shop-search-input {
        font-size: 1rem !important;
    }
}

/* Layout */
.shop-container {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--kosar-radius);
    background: linear-gradient(135deg, var(--kosar-accent) 0%, var(--kosar-primary) 55%, var(--kosar-primary-dark) 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    box-shadow: 0 2px 8px rgb(30 58 95 / 0.22);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    will-change: transform;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--kosar-primary) 0%, var(--kosar-primary-dark) 100%);
    box-shadow: 0 6px 16px rgb(30 58 95 / 0.28);
}
.btn-primary:active {
    transform: scale(0.98);
}
.shop-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgb(15 23 42 / 0.18);
}
.shop-btn-ghost {
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--kosar-radius);
    border: 1.5px solid var(--kosar-primary);
    color: var(--kosar-primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5625rem 1.25rem;
    background: transparent;
    transition: background 0.15s, color 0.15s;
}
.btn-outline:hover {
    background: #eef2f7;
}
.btn-outline:active {
    transform: scale(0.98);
}
.shop-btn-ghost:active {
    transform: scale(0.98);
}

/* Header — üst şerit */
/* ─── Topbar ─── */
@keyframes kheader-topbar-shift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.shop-topbar {
    position: relative;
    background: linear-gradient(
        92deg,
        var(--kosar-primary-dark) 0%,
        var(--kosar-primary) 50%,
        var(--kosar-accent) 100%
    );
    background-size: 200% 100%;
    animation: kheader-topbar-shift 18s linear infinite;
    color: rgb(255 255 255 / 0.88);
    font-size: 0.75rem;
    overflow: hidden;
}
.shop-topbar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.25), transparent);
    pointer-events: none;
}
.shop-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}
.shop-topbar__links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.shop-topbar__links a {
    position: relative;
    color: rgb(255 255 255 / 0.72);
    font-weight: 500;
    transition: color 0.2s ease;
}
.shop-topbar__links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-topbar__links a:hover { color: #fff; }
.shop-topbar__links a:hover::after { transform: scaleX(1); }

.shop-topbar__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.shop-topbar__hint { color: rgb(255 255 255 / 0.45); }
.shop-topbar__phone {
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease;
}
.shop-topbar__phone:hover { opacity: 0.8; }
.shop-topbar__sep {
    width: 1px;
    height: 0.875rem;
    background: rgb(255 255 255 / 0.2);
    flex-shrink: 0;
}
.shop-topbar__locale {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.15rem;
    border-radius: 9999px;
    background: rgb(0 0 0 / 0.18);
    border: 1px solid rgb(255 255 255 / 0.1);
}
.shop-topbar__locale a {
    padding: 0.2rem 0.55rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: rgb(255 255 255 / 0.6);
    transition: background 0.2s ease, color 0.2s ease;
}
.shop-topbar__locale a.is-active,
.shop-topbar__locale a:hover {
    background: rgb(255 255 255 / 0.18);
    color: #fff;
}
.shop-topbar__auth {
    font-weight: 600;
    color: rgb(255 255 255 / 0.8);
    transition: color 0.2s ease;
}
.shop-topbar__auth:hover { color: #fff; }
.shop-topbar__auth--primary,
.shop-topbar__auth--admin-top {
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.1);
    border: 1px solid rgb(255 255 255 / 0.15);
    color: #fff;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.shop-topbar__auth--primary:hover,
.shop-topbar__auth--admin-top:hover {
    background: rgb(255 255 255 / 0.2);
    border-color: rgb(255 255 255 / 0.25);
}

/* ─── Site header ─── */
@keyframes kheader-enter {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.shop-site-header {
    background: rgb(255 255 255 / 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgb(197 212 232 / 0.6);
    box-shadow:
        0 1px 0 rgb(255 255 255 / 0.9) inset,
        0 2px 8px rgb(30 58 95 / 0.04);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    animation: kheader-enter 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.shop-site-header.is-scrolled {
    background: rgb(255 255 255 / 0.97);
    border-color: #dde7f0;
    box-shadow:
        0 1px 0 rgb(255 255 255 / 1) inset,
        0 6px 28px rgb(30 58 95 / 0.09);
}
.shop-site-header__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 4.5rem;
    padding: 0.5rem 0;
    transition: min-height 0.3s cubic-bezier(0.22, 1, 0.36, 1), padding 0.3s ease;
}
@media (min-width: 1024px) {
    .shop-site-header__row {
        gap: 1.75rem;
        min-height: var(--kosar-header-h);
        padding: 0;
    }
    .shop-site-header.is-scrolled .shop-site-header__row {
        min-height: 3.75rem;
    }
}
.shop-site-header.is-scrolled .shop-site-header__row {
    min-height: 3.5rem;
    padding: 0.25rem 0;
}
.shop-site-header.is-scrolled .shop-brand--has-logo .shop-logo,
.shop-site-header.is-scrolled .shop-brand-name {
    transform: scale(0.95);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-site-header__brand {
    min-width: 0;
    flex-shrink: 0; /* Logo küçülmesin */
}
@media (max-width: 767px) {
    .shop-site-header__row {
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }
}

/* ─── Search ─── */
.shop-site-header__search,
.shop-site-header__search-mobile {
    position: relative;
    flex: 1;
    max-width: 36rem;
    min-width: 0;
}
.shop-site-header__search-mobile { max-width: none; }
.shop-search-form {
    position: relative;
    display: flex;
    align-items: center;
}
.shop-search-form__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    z-index: 1;
    transition: color 0.22s ease, transform 0.22s ease;
}
.shop-search-input {
    width: 100%;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1.5px solid #e2e8f0;
    background: rgb(248 250 252 / 0.8);
    padding: 0 5.5rem 0 2.75rem;
    font-size: 0.875rem;
    color: var(--kosar-ink);
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}
.shop-search-input::placeholder { color: #94a3b8; }
.shop-search-input:focus { outline: none; }
.shop-search-form:focus-within .shop-search-input {
    border-color: var(--kosar-primary);
    background: #fff;
    box-shadow:
        0 0 0 3px rgb(30 58 95 / 0.09),
        inset 0 1px 2px rgb(15 23 42 / 0.03);
}
.shop-search-form:focus-within .shop-search-form__icon {
    color: var(--kosar-primary);
    transform: translateY(-50%) scale(1.08);
}
.shop-search-submit {
    position: absolute;
    right: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    height: 2.1rem;
    padding: 0 1.1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--kosar-accent) 0%, var(--kosar-primary) 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 10px rgb(30 58 95 / 0.22);
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease,
        filter 0.22s ease;
}
.shop-search-submit:hover {
    filter: brightness(1.08);
    box-shadow: 0 5px 16px rgb(30 58 95 / 0.32);
    transform: translateY(-50%) scale(1.03);
}
.shop-search-submit:active {
    transform: translateY(-50%) scale(0.97);
}
@media (max-width: 767px) {
    .shop-site-header__search-mobile {
        padding-bottom: 0.65rem !important;
    }

    .shop-site-header__search-mobile .shop-search-form__icon {
        left: 0.9rem;
    }

    .shop-site-header__search-mobile .shop-search-form__icon svg {
        width: 1.05rem;
        height: 1.05rem;
    }

    .shop-site-header__search-mobile .shop-search-input {
        height: 2.55rem;
        padding-left: 2.45rem;
        padding-right: 4.85rem;
        font-size: 0.95rem;
        border-width: 1px;
        box-shadow: 0 1px 8px rgb(30 58 95 / 0.045);
    }

    .shop-site-header__search-mobile .shop-search-submit {
        right: 0.25rem;
        height: 1.95rem;
        padding: 0 0.95rem;
        font-size: 0.7rem;
        box-shadow: 0 2px 8px rgb(30 58 95 / 0.18);
    }
}

/* ─── Toolbar ─── */
.shop-header-toolbar {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
    flex-shrink: 0;
    min-width: 0;
}
@media (min-width: 640px) {
    .shop-header-toolbar {
        gap: 0.5rem;
    }
}
/* Giriş yap / Hesabım CTA butonu mobilde gizle — kullanıcı ikonu erişimi sağlar.
   768px altında 3 ikon + buton birlikte sığmaz, favori ikonu kesilir. */
@media (max-width: 767px) {
    .shop-header-auth--cta {
        display: none;
    }
    .shop-header-toolbar__divider {
        display: none;
    }

    .shop-header-toolbar__icons {
        gap: 0.02rem;
        padding: 0.14rem;
        transform: translateY(-1px);
    }
}
.shop-header-toolbar__divider {
    width: 1px;
    height: 1.5rem;
    background: linear-gradient(180deg, transparent, #d4dce8, transparent);
    flex-shrink: 0;
}
.shop-header-toolbar__icons {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    padding: 0.2rem;
    border-radius: 9999px;
    background: linear-gradient(180deg, #f8fafc 0%, #f0f4f9 100%);
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgb(30 58 95 / 0.06);
}
.shop-header-auth {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.65rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--kosar-primary);
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0.5rem;
    transition:
        color 0.22s ease,
        background 0.22s ease;
}
.shop-header-auth:hover {
    color: var(--kosar-primary-dark);
    background: #eef2f7;
}
.shop-header-auth--cta {
    padding: 0.5rem 1.15rem;
    border: 1.5px solid #c5d4e8;
    border-radius: 9999px;
    background: #fff;
    color: var(--kosar-primary);
    font-weight: 700;
    box-shadow: 0 1px 6px rgb(30 58 95 / 0.07);
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-header-auth--cta:hover {
    border-color: var(--kosar-primary);
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary));
    color: #fff;
    box-shadow: 0 5px 16px rgb(30 58 95 / 0.24);
    transform: translateY(-1px);
}
/* Bu kural .shop-header-auth display stilinden sonra durmalı; mobilde ikonların kesilmesini engeller. */
@media (max-width: 767px) {
    .shop-header-toolbar > .shop-header-auth--cta,
    .shop-header-toolbar > .shop-header-toolbar__divider {
        display: none;
    }
}
.shop-header-auth--admin {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(180deg, #eef2f7, #e8eef6);
    border: 1px solid #d4dce8;
    color: var(--kosar-primary);
    font-weight: 700;
    font-size: 0.8125rem;
    transition:
        background 0.22s ease,
        color 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease;
}
.shop-header-auth--admin:hover {
    background: var(--kosar-primary);
    border-color: var(--kosar-primary);
    color: #fff;
    box-shadow: 0 4px 14px rgb(30 58 95 / 0.22);
    transform: translateY(-1px);
}

/* ─── Header icons ─── */
.shop-header-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Mobilde kompakt, masaüstünde geniş */
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid transparent;
    border-radius: 9999px;
    background: transparent;
    color: #64748b;
    text-decoration: none;
    cursor: pointer;
    transition:
        color 0.22s ease,
        background 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease;
}
@media (max-width: 767px) {
    .shop-header-toolbar {
        align-self: center;
    }

    .shop-header-icon {
        width: 2.05rem;
        height: 2.05rem;
    }

    .shop-header-icon__svg {
        width: 1.05rem;
        height: 1.05rem;
    }

    .shop-header-icon--emphasis .shop-header-icon__svg {
        width: 1.12rem;
        height: 1.12rem;
    }
}
.shop-header-icon__halo {
    position: absolute;
    inset: 0.25rem;
    border-radius: inherit;
    background:
        radial-gradient(circle at 35% 25%, rgb(255 255 255 / 0.95), transparent 34%),
        linear-gradient(145deg, rgb(255 255 255 / 0.94), rgb(232 238 246 / 0.86));
    opacity: 0;
    transform: scale(0.82);
    transition:
        opacity 0.24s ease,
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
@media (min-width: 768px) {
    .shop-header-icon { width: 2.5rem; height: 2.5rem; }
}
@media (min-width: 1024px) {
    .shop-header-icon { width: 2.625rem; height: 2.625rem; }
}
.shop-header-icon:hover {
    color: var(--kosar-primary);
    border-color: rgb(197 212 232 / 0.82);
    background: #fff;
    box-shadow: 0 10px 24px rgb(30 58 95 / 0.12);
    transform: translateY(-1px);
}
.shop-header-icon:hover .shop-header-icon__halo {
    opacity: 1;
    transform: scale(1);
}
.shop-header-icon--emphasis {
    color: var(--kosar-primary);
    background: #fff;
    border: 1.5px solid #dde7f0;
    box-shadow: 0 1px 4px rgb(30 58 95 / 0.06);
}
.shop-header-icon--emphasis:hover {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary));
    box-shadow: 0 6px 20px rgb(30 58 95 / 0.3);
    transform: translateY(-1px);
}
.shop-header-icon__svg {
    position: relative;
    z-index: 1;
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 1.8;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        stroke-width 0.22s ease;
}
.shop-header-icon:hover .shop-header-icon__svg {
    transform: scale(1.08);
    stroke-width: 2;
}
.shop-header-icon--emphasis .shop-header-icon__svg { width: 1.3rem; height: 1.3rem; }
@media (max-width: 767px) {
    .shop-header-icon__svg {
        width: 1.05rem;
        height: 1.05rem;
    }

    .shop-header-icon--emphasis .shop-header-icon__svg {
        width: 1.12rem;
        height: 1.12rem;
    }
}

.shop-header-icon__badge {
    position: absolute;
    top: 0.1rem;
    right: 0.1rem;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #f43f5e, #e11d48);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 800;
    line-height: 1rem;
    text-align: center;
    box-shadow: 0 2px 6px rgb(225 29 72 / 0.35);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-header-icon__badge.is-bump {
    animation: shop-badge-bump 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes shop-badge-bump {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.25); }
    100% { transform: scale(1); }
}
.shop-header-icon--emphasis .shop-header-icon__badge { border: 2px solid #fff; }
.shop-header-icon--emphasis:hover .shop-header-icon__badge { border-color: var(--kosar-primary); }
.shop-header-icon:hover .shop-header-icon__badge:not(.is-empty) { transform: scale(1.1); }
.shop-header-icon__badge.is-empty,
.shop-header-icon__badge.hidden { display: none; }

/* Eski uyumluluk */
.shop-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.75rem;
    color: #475569;
    transition: color 0.2s ease, background 0.2s ease;
}
.shop-icon-btn:hover { color: var(--kosar-primary); background: #f4f7fb; }
.shop-badge {
    position: absolute;
    top: -0.15rem;
    right: -0.15rem;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 0.25rem;
    border-radius: 9999px;
    background: #e11d48;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #fff;
}
.shop-badge.hidden { display: none; }

/* ─── Ana menü nav ─── */
.shop-main-nav {
    align-items: stretch;
    gap: 0;
    padding: 0;
    border-top: 1px solid #eef2f7;
    background: transparent;
}
.shop-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}
/* Hover underline from bottom */
.shop-nav-link::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0;
    height: 2px;
    border-radius: 2px 2px 0 0;
    background: linear-gradient(90deg, var(--kosar-accent), var(--kosar-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-nav-link:hover {
    color: var(--kosar-primary);
}
.shop-nav-link:hover::after {
    transform: scaleX(1);
}
.shop-nav-link__chevron {
    opacity: 0.5;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
}
.shop-mega-wrap:hover .shop-nav-link__chevron,
.shop-mega-wrap:focus-within .shop-nav-link__chevron {
    transform: rotate(180deg);
    opacity: 1;
}
/* Active state */
.shop-nav-link--active {
    color: var(--kosar-primary);
}
.shop-nav-link--active::after {
    transform: scaleX(1);
    box-shadow: 0 -2px 10px rgb(30 58 95 / 0.15);
}

.search-suggest {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.5rem);
    z-index: 60;
    max-height: 22rem;
    overflow-y: auto;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: rgb(255 255 255 / 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 16px 48px rgb(15 23 42 / 0.12),
        0 0 0 1px rgb(255 255 255 / 0.8) inset;
    animation: shop-search-suggest-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.search-suggest.hidden {
    animation: none;
}
@keyframes shop-search-suggest-in {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.search-suggest-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: #334155;
    text-decoration: none;
    transition: background 0.12s;
}
.search-suggest-item:hover,
.search-suggest-item[aria-selected="true"] {
    background: #eef2f7;
    color: var(--kosar-primary);
}
.search-suggest-item img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: cover;
    border-radius: 0.5rem;
    background: #f1f5f9;
}
.search-suggest-meta {
    font-size: 0.75rem;
    color: #94a3b8;
}
.search-suggest-footer {
    border-top: 1px solid #f1f5f9;
    padding: 0.5rem 1rem;
}
.search-suggest-footer a {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--kosar-accent);
}

/* Mega menu — panel */
.shop-mega-wrap {
    position: relative;
}
.shop-mega-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    right: -0.75rem;
    top: 100%;
    height: 0.875rem;
    background: transparent;
    z-index: 49;
}
.shop-mega-panel {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 50;
    width: min(56rem, calc(100vw - 2rem));
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid #e2eaf4;
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 4px 6px rgb(30 58 95 / 0.04),
        0 20px 48px rgb(30 58 95 / 0.12),
        0 0 0 1px rgb(255 255 255 / 0.8) inset;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.985);
    transition:
        opacity 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.25s;
    pointer-events: none;
}
.shop-mega-panel__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem;
}
@media (min-width: 640px) {
    .shop-mega-panel__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.shop-mega-panel__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
}
@media (min-width: 768px) {
    .shop-mega-panel__columns {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.shop-mega-panel__parent {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--kosar-primary);
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}
.shop-mega-panel__parent:hover {
    color: var(--kosar-primary-dark);
}
.shop-mega-panel__children {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}
.shop-mega-panel__child {
    display: block;
    padding: 0.35rem 0;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #64748b;
    line-height: 1.35;
    transition: color 0.2s ease, transform 0.2s ease;
}
.shop-mega-panel__child:hover {
    color: var(--kosar-primary);
    transform: translateX(2px);
}
.shop-mega-panel__link {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-mega-panel__link:hover {
    background: #f4f7fb;
    color: var(--kosar-primary);
    transform: translateX(3px);
}
.shop-mega-panel__all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.25rem;
    padding: 0.45rem 0.85rem 0.45rem 0.6rem;
    border-radius: 9999px;
    border: 1px solid #dde8f5;
    background: #f0f6ff;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--kosar-primary);
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease;
}
.shop-mega-panel__all:hover {
    background: var(--kosar-primary);
    border-color: var(--kosar-primary);
    color: #fff;
    transform: translateX(2px);
    box-shadow: 0 4px 14px rgb(30 58 95 / 0.2);
}
.shop-mega-wrap:hover .shop-mega-panel,
.shop-mega-wrap:focus-within .shop-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0.45rem) scale(1);
    pointer-events: auto;
}

/* Ana sayfa banner carousel */
.shop-banner-slider__viewport {
    position: relative;
    aspect-ratio: var(--shop-banner-ratio, 1440 / 520);
    max-height: min(32rem, 52vw);
    background: #e8eef6;
}
.shop-banner-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}
.shop-banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
    z-index: 0;
}
.shop-banner-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.shop-banner-slide__img.is-animating {
    animation: shop-banner-img-in 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes shop-banner-img-in {
    from {
        opacity: 0.85;
        transform: scale(1.02) translateX(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}
.shop-banner-slide__frame {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.shop-banner-slide__frame--link {
    text-decoration: none;
    color: inherit;
}
.shop-banner-slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.shop-banner-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(15 35 60 / 0.72) 0%, rgb(15 35 60 / 0.35) 45%, transparent 72%);
    display: flex;
    align-items: center;
    pointer-events: none;
}
.shop-banner-slide__content {
    padding: 1.5rem 1rem;
    max-width: 36rem;
}
@media (min-width: 768px) {
    .shop-banner-slide__content {
        padding: 2rem 1.5rem;
    }
}
.shop-banner-slide__title {
    font-size: clamp(1.35rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 12px rgb(0 0 0 / 0.25);
}
.shop-banner-slide__subtitle {
    margin-top: 0.75rem;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    line-height: 1.55;
    color: rgb(226 232 240 / 0.95);
    max-width: 32rem;
}
.shop-banner-slide__cta {
    display: inline-flex;
    margin-top: 1.25rem;
    pointer-events: none;
}
.shop-banner-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid rgb(255 255 255 / 0.35);
    background: rgb(255 255 255 / 0.92);
    color: var(--kosar-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgb(30 58 95 / 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.shop-banner-slider__nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}
.shop-banner-slider__nav--prev { left: 0.75rem; }
.shop-banner-slider__nav--next { right: 0.75rem; }
.shop-banner-slider__dots {
    position: absolute;
    bottom: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 0.4rem;
}
.shop-banner-slider__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.45);
    border: none;
    padding: 0;
    transition: width 0.2s ease, background-color 0.2s ease;
}
.shop-banner-slider__dot.is-active {
    width: 1.35rem;
    background: #fff;
}
@media (prefers-reduced-motion: reduce) {
    .shop-banner-slide {
        transition: none;
    }
}

/* Ana sayfa satır/kolon düzeni */
.shop-home-layout__row + .shop-home-layout__row {
    margin-top: 1.5rem;
}
.shop-home-layout__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.shop-home-layout__col {
    grid-column: 1 / -1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
@media (min-width: 768px) {
    .shop-home-layout__row + .shop-home-layout__row {
        margin-top: 2rem;
    }
    .shop-home-layout__grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }
    .shop-home-layout__col {
        grid-column: span var(--col-span, 12);
        gap: 1.5rem;
    }
}
@media (min-width: 1280px) {
    .shop-home-layout__row + .shop-home-layout__row {
        margin-top: 2.5rem;
    }
    .shop-home-layout__grid {
        gap: 1.75rem;
    }
}
.shop-home-product-list {
    min-width: 0;
}
.shop-home-product-list__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.shop-home-product-list__head {
    min-width: 0;
}
.shop-home-product-list__title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.shop-home-product-list__subtitle {
    margin: 0;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.5;
}
.shop-home-product-carousel {
    position: relative;
    padding-inline: 0;
}
.shop-home-product-carousel__viewport {
    overflow: hidden;
    border-radius: var(--kosar-radius-lg);
    padding: 0.1rem;
    margin: -0.1rem;
}
.shop-home-product-carousel__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: max-content;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-home-product-carousel.is-static .shop-home-product-carousel__track {
    width: 100%;
    justify-content: flex-start;
}
.shop-home-product-carousel__item {
    flex: 0 0 auto;
    width: min(76vw, 12rem);
}
@media (min-width: 480px) {
    .shop-home-product-carousel__item {
        width: 12rem;
    }
}
@media (min-width: 768px) {
    .shop-home-product-carousel__item {
        width: 13rem;
    }
}
@media (min-width: 1024px) {
    .shop-home-product-carousel__item {
        width: 14rem;
    }
}
@media (min-width: 1280px) {
    .shop-home-product-carousel__item {
        width: 14.5rem;
    }
}
.shop-home-product-carousel__item .shop-product-card {
    height: 100%;
}
.shop-home-product-carousel__controls {
    display: none;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.shop-carousel-nav {
    position: static;
    transform: none;
    z-index: 2;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid #d4dce8;
    background: #fff;
    color: var(--kosar-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgb(30 58 95 / 0.12);
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.shop-carousel-nav:hover:not(:disabled) {
    background: var(--kosar-primary);
    color: #fff;
    border-color: var(--kosar-primary);
    transform: translateY(-1px);
}
.shop-carousel-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}
@media (min-width: 640px) {
    .shop-home-product-carousel__controls {
        display: flex;
    }
}
.shop-home-product-carousel.is-static .shop-carousel-nav {
    display: none;
}
@media (max-width: 639px) {
    .shop-home-product-list__top {
        margin-bottom: 0.85rem;
    }
    .shop-home-product-list__title {
        font-size: 1.125rem;
    }
    .shop-home-product-list__subtitle {
        font-size: 0.875rem;
    }
    .shop-home-product-carousel {
        padding-inline: 0;
    }
    .shop-home-product-carousel__viewport {
        overflow-x: auto;
        overflow-y: hidden;
        margin-inline: -0.25rem;
        padding: 0.1rem 0.25rem 0.65rem;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .shop-home-product-carousel__viewport::-webkit-scrollbar {
        display: none;
    }
    .shop-home-product-carousel__track {
        gap: 0.85rem;
        transform: none !important;
        transition: none;
    }
    .shop-home-product-carousel__item {
        width: min(72vw, 12rem);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
}
@media (prefers-reduced-motion: reduce) {
    .shop-home-product-carousel__track {
        transition: none;
    }
}
.shop-home-block {
    border-radius: var(--kosar-radius-lg);
    overflow: hidden;
    border: 1px solid #e8eef6;
    background: #fff;
    box-shadow: var(--kosar-shadow-soft);
}
.shop-home-block__link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.shop-home-block__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}
.shop-home-block--span-12 .shop-home-block__media,
.shop-home-block--slider .shop-home-block__media {
    aspect-ratio: var(--shop-banner-ratio, 1440 / 520);
}
.shop-home-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.shop-home-block__link:hover .shop-home-block__img {
    transform: scale(1.03);
}
.shop-home-block__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgb(15 35 60 / 0.5) 100%);
    pointer-events: none;
}
.shop-home-block__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    z-index: 1;
}
.shop-home-block__title {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    line-height: 1.3;
    text-shadow: 0 1px 8px rgb(0 0 0 / 0.3);
}
.shop-home-block__sub {
    font-size: 0.8125rem;
    color: rgb(226 232 240 / 0.95);
    margin-top: 0.25rem;
}
.shop-home-block__price {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0.35rem;
}
.shop-home-block__cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid rgb(255 255 255 / 0.6);
}

/* Ana sayfa promo kutuları (banner / kategori / ürün) — legacy */
.shop-home-promos__grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
    .shop-home-promos__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.shop-home-promo {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #c5d4e8;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 16px rgb(30 58 95 / 0.08);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.shop-home-promo--wide {
    grid-column: 1 / -1;
}
@media (min-width: 768px) {
    .shop-home-promo--wide {
        grid-column: span 2;
    }
    .shop-home-promo--banner {
        grid-column: span 2;
    }
}
.shop-home-promo:hover {
    transform: translateY(-3px);
    border-color: #93a8c9;
    box-shadow: 0 12px 28px rgb(30 58 95 / 0.14);
}
.shop-home-promo__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(180deg, #e8eef6, #f8fafc);
}
.shop-home-promo--wide .shop-home-promo__media,
.shop-home-promo--banner .shop-home-promo__media {
    aspect-ratio: 21 / 9;
}
.shop-home-promo__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.shop-home-promo:hover .shop-home-promo__img {
    transform: scale(1.04);
}
.shop-home-promo__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgb(15 35 60 / 0.55) 100%);
    pointer-events: none;
}
.shop-home-promo__body {
    padding: 0.85rem 1rem 1rem;
}
.shop-home-promo__eyebrow {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--kosar-accent);
}
.shop-home-promo__title {
    margin-top: 0.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--kosar-primary-dark);
    line-height: 1.3;
}
.shop-home-promo__sub {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-home-promo__price {
    margin-top: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--kosar-primary);
}
.shop-home-promo__cta {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--kosar-accent);
}

/* Hero — zengin ama açık */
.shop-hero {
    min-height: min(30rem, 72vh);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    position: relative;
}
.shop-hero--split {
    min-height: min(34rem, 78vh);
    padding-bottom: 0;
}
.shop-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    flex: 1;
}
@media (min-width: 1024px) {
    .shop-hero__grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 0.5rem;
    }
}
.shop-hero__visual {
    display: none;
}
@media (min-width: 768px) {
    .shop-hero__visual {
        display: block;
        max-width: 28rem;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1024px) {
    .shop-hero__visual {
        max-width: none;
        margin: 0;
    }
}
.shop-hero__mosaic {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.65rem;
    min-height: 16rem;
    position: relative;
}
@media (min-width: 1024px) {
    .shop-hero__mosaic {
        min-height: 18.5rem;
        max-height: 22rem;
    }
}
.shop-hero__tile {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgb(197 212 232 / 0.9);
    background: #fff;
    box-shadow: 0 8px 24px rgb(30 58 95 / 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shop-hero__tile--1 {
    grid-row: 1 / span 2;
    grid-column: 1;
}
.shop-hero__tile--2 {
    grid-column: 2;
    grid-row: 1;
}
.shop-hero__tile--3 {
    grid-column: 2;
    grid-row: 2;
}
.shop-hero__tile--4 {
    position: absolute;
    width: 5.5rem;
    height: 5.5rem;
    right: -0.35rem;
    bottom: -0.35rem;
    border-radius: 0.875rem;
    z-index: 2;
    box-shadow: 0 12px 28px rgb(30 58 95 / 0.2);
}
.shop-hero__tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 100%;
}
.shop-hero__tile--1 .shop-hero__tile-img {
    min-height: 14rem;
}
.shop-hero__tile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgb(15 35 60 / 0.55) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}
.shop-hero__tile--1 .shop-hero__tile-shade {
    opacity: 1;
}
.shop-hero__tile-label {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.shop-hero__tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgb(30 58 95 / 0.18);
}
.shop-hero__tile--4:hover {
    transform: translateY(-2px) rotate(-2deg);
}
.shop-hero__showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    min-height: 14rem;
}
.shop-hero__showcase-card {
    border-radius: 1rem;
    border: 1px solid #c5d4e8;
    background: linear-gradient(145deg, #fff, #eef2f7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    padding: 1rem;
    box-shadow: 0 8px 20px rgb(30 58 95 / 0.08);
}
.shop-hero__showcase-card--main {
    grid-row: 1 / span 2;
    grid-column: 1;
}
.shop-hero__showcase-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--kosar-primary);
    margin-top: 0.25rem;
}
.shop-hero__showcase-card--mini {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #64748b;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
}
.shop-hero__showcase-thumb {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #c5d4e8;
}
.shop-hero__ribbon {
    width: 100%;
    margin-top: auto;
    background: linear-gradient(90deg, var(--kosar-primary-dark) 0%, var(--kosar-primary) 48%, #2d4a73 100%);
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.12);
}
.shop-hero__ribbon-inner {
    max-width: 100%;
}
.shop-hero__ribbon-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgb(197 212 232 / 0.95);
    margin-right: 0.25rem;
    flex-shrink: 0;
}
.shop-hero__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    background: rgb(255 255 255 / 0.12);
    border: 1px solid rgb(255 255 255 / 0.22);
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.shop-hero__chip:hover {
    background: rgb(255 255 255 / 0.22);
    transform: translateY(-1px);
}
.shop-hero__banner {
    margin: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid rgb(197 212 232 / 0.9);
    box-shadow: 0 16px 40px rgb(30 58 95 / 0.14);
    background: #fff;
    aspect-ratio: 1;
    max-height: 22rem;
}
@media (min-width: 1024px) {
    .shop-hero__banner {
        max-height: 24rem;
    }
}
.shop-hero__banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.shop-hero--light {
    border: 1px solid rgb(197 212 232 / 0.8);
    background: linear-gradient(145deg, #fff 0%, #f8fafc 38%, #e8eef6 100%);
    color: var(--kosar-ink);
    box-shadow:
        0 4px 6px rgb(30 58 95 / 0.04),
        0 20px 48px rgb(30 58 95 / 0.1);
}
.shop-hero--light::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    border-radius: inherit;
    border-top-left-radius: inherit;
    border-bottom-left-radius: inherit;
    background: linear-gradient(180deg, var(--kosar-accent), var(--kosar-primary-dark));
    opacity: 0.95;
}
.shop-hero__pattern {
    pointer-events: none;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 1px 1px, rgb(30 58 95 / 0.07) 1px, transparent 0);
    background-size: 28px 28px;
    mask-image: linear-gradient(90deg, transparent, #000 40%, #000 70%, transparent);
}
.shop-hero__orb {
    pointer-events: none;
    border-radius: 9999px;
    filter: blur(40px);
}
.shop-hero__orb--1 {
    width: 16rem;
    height: 16rem;
    top: -4rem;
    right: 10%;
    background: rgb(45 74 115 / 0.18);
}
.shop-hero__orb--2 {
    width: 10rem;
    height: 10rem;
    bottom: 0;
    right: 25%;
    background: rgb(147 168 201 / 0.35);
}
.shop-hero__glow {
    pointer-events: none;
}
.shop-hero__inner {
    width: 100%;
    position: relative;
    z-index: 1;
}
.shop-hero__badge {
    background: linear-gradient(135deg, #fff, #eef2f7);
    color: var(--kosar-primary);
    border: 1px solid #c5d4e8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.6875rem;
    box-shadow: 0 2px 8px rgb(30 58 95 / 0.06);
}
.shop-hero__title {
    letter-spacing: -0.03em;
    color: var(--kosar-primary-dark);
}
.shop-hero__subtitle {
    color: #475569;
    line-height: 1.7;
}
.shop-hero__accent {
    display: block;
    width: 3rem;
    height: 3px;
    margin-top: 1.25rem;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--kosar-primary), #c5d4e8);
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: left;
    animation: shop-hero-accent 0.5s ease 0.2s forwards;
}
@keyframes shop-hero-accent {
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}
.shop-hero__actions {
    gap: 0.75rem;
}
.shop-hero--light .shop-btn-ghost {
    border: 1.5px solid #c5d4e8;
    color: var(--kosar-primary);
    background: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.shop-hero--light .shop-btn-ghost:hover {
    background: #f4f7fb;
    border-color: var(--kosar-accent);
    color: var(--kosar-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(30 58 95 / 0.08);
}

/* Ana sayfa bölümleri */
.shop-section {
    margin-top: 3rem;
}
.shop-section--panel {
    padding: 2rem 1.25rem;
    border-radius: var(--kosar-radius-xl);
    border: 1px solid rgb(197 212 232 / 0.7);
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
    box-shadow: var(--kosar-shadow-soft);
}
@media (min-width: 640px) {
    .shop-section--panel {
        padding: 2.5rem 2rem;
    }
}
.shop-section--tint {
    padding: 2.5rem 1.25rem;
    border-radius: var(--kosar-radius-xl);
    border: 1px solid #c5d4e8;
    background: linear-gradient(135deg, #e8eef6 0%, #f4f7fb 40%, #fff 100%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.8), var(--kosar-shadow-soft);
}
@media (min-width: 640px) {
    .shop-section--tint {
        padding: 2.5rem 2rem;
    }
}
.shop-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8eef6;
}
.shop-section-head__eyebrow {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kosar-accent);
    margin-bottom: 0.375rem;
}
.shop-section-head__title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--kosar-primary-dark);
}
@media (min-width: 768px) {
    .shop-section-head__title {
        font-size: 1.75rem;
    }
}
.shop-section-head__sub {
    margin-top: 0.375rem;
    font-size: 0.9375rem;
    color: #64748b;
}
.shop-section-head__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kosar-primary);
    transition: color 0.2s ease, opacity 0.2s ease;
}
.shop-section-head__link:hover {
    color: var(--kosar-primary-dark);
}

.shop-brands-band {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--kosar-radius-xl);
    border: 1px solid #c5d4e8;
    background: linear-gradient(90deg, #f4f7fb, #fff, #f4f7fb);
    box-shadow: var(--kosar-shadow-soft);
}
.shop-brands-band__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--kosar-accent);
}
.shop-brands-band__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 6rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--kosar-radius);
    transition: transform 0.2s ease, background-color 0.2s ease;
}
.shop-brands-band__item:hover {
    transform: translateY(-2px);
    background: rgb(255 255 255 / 0.65);
}
.shop-brands-band__logo {
    max-height: 2.75rem;
    max-width: 8rem;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.15);
    opacity: 0.88;
    transition: opacity 0.2s ease, filter 0.2s ease;
}
.shop-brands-band__item:hover .shop-brands-band__logo {
    opacity: 1;
    filter: none;
}
.shop-brands-band__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #94a3b8;
    transition: color 0.2s ease, transform 0.2s ease;
}
.shop-brands-band__item:hover .shop-brands-band__name {
    color: var(--kosar-primary);
}

.shop-newsletter {
    border: 1px solid #93a8c9;
    background: linear-gradient(135deg, #fff 0%, #e8eef6 50%, #c5d4e8 120%);
    box-shadow: 0 12px 40px rgb(30 58 95 / 0.12);
    position: relative;
    overflow: hidden;
}
.shop-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--kosar-primary), var(--kosar-primary-dark));
}
.shop-newsletter__inner {
    position: relative;
    z-index: 1;
    padding-left: 0.5rem;
}

/* Hero entrance (page load) */
.shop-hero-item {
    opacity: 0;
    transform: translateY(12px);
    animation: shop-fade-up 0.55s ease forwards;
}
.shop-hero-item--1 { animation-delay: 0.05s; }
.shop-hero-item--2 { animation-delay: 0.12s; }
.shop-hero-item--3 { animation-delay: 0.19s; }
.shop-hero-item--4 { animation-delay: 0.26s; }
.shop-hero-item--5 { animation-delay: 0.33s; }

@keyframes shop-fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal */
.shop-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.shop-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.shop-reveal-group > * {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-reveal-group.is-visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.shop-reveal-group.is-visible > *:nth-child(2) { transition-delay: 55ms; opacity: 1; transform: translateY(0); }
.shop-reveal-group.is-visible > *:nth-child(3) { transition-delay: 110ms; opacity: 1; transform: translateY(0); }
.shop-reveal-group.is-visible > *:nth-child(4) { transition-delay: 165ms; opacity: 1; transform: translateY(0); }
.shop-reveal-group.is-visible > *:nth-child(5) { transition-delay: 220ms; opacity: 1; transform: translateY(0); }
.shop-reveal-group.is-visible > *:nth-child(6) { transition-delay: 275ms; opacity: 1; transform: translateY(0); }
.shop-reveal-group.is-visible > *:nth-child(7) { transition-delay: 330ms; opacity: 1; transform: translateY(0); }
.shop-reveal-group.is-visible > *:nth-child(8) { transition-delay: 385ms; opacity: 1; transform: translateY(0); }
.shop-reveal-group.is-visible > *:nth-child(n + 9) { transition-delay: 440ms; opacity: 1; transform: translateY(0); }

/* Sayfa girişi */
.shop-main-enter {
    animation: shop-main-fade 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes shop-main-fade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* İnline link vurgusu */
.shop-link-inline {
    position: relative;
}
.shop-link-inline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-link-inline:hover::after {
    transform: scaleX(1);
}

/* Ana içerik alanı */
.shop-main {
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
}
.shop-page {
    min-width: 0;
}
.shop-page--narrow {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}
.shop-flash-wrap {
    margin-top: 1rem;
}
.shop-flash {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.875rem 1.125rem;
    border-radius: var(--kosar-radius-lg);
    font-size: 0.875rem;
    line-height: 1.5;
    box-shadow: var(--kosar-shadow-soft);
}
.shop-flash--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.shop-flash--success svg {
    color: #059669;
}
.shop-flash--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* Breadcrumb */
.shop-breadcrumb {
    margin-bottom: 1.25rem;
}
.shop-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.8125rem;
    color: #64748b;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.85);
    border: 1px solid #e8eef6;
    box-shadow: 0 1px 4px rgb(30 58 95 / 0.04);
    width: fit-content;
    max-width: 100%;
}
.shop-breadcrumb__link {
    font-weight: 500;
    color: #64748b;
    transition: color 0.25s ease;
}
.shop-breadcrumb__link:hover {
    color: var(--kosar-primary);
}
.shop-breadcrumb__current {
    color: var(--kosar-primary);
    font-weight: 700;
}

/* Sayfa başlığı — modern hero */
.shop-page-header,
.shop-page-hero {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem 1.35rem;
    border-radius: var(--kosar-radius-lg);
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    border: 1px solid #e8eef6;
    box-shadow: 0 4px 24px rgb(30 58 95 / 0.05);
    overflow: hidden;
}
.shop-page-header::before,
.shop-page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--kosar-primary-dark),
        var(--kosar-accent),
        var(--kosar-primary)
    );
    pointer-events: none;
}
.shop-page-hero::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(30 58 95 / 0.06), transparent 70%);
    pointer-events: none;
}
.shop-page-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}
.shop-page-hero__content {
    min-width: 0;
    flex: 1;
}
.shop-page-hero__actions {
    flex-shrink: 0;
}
.shop-page-header__title,
.shop-page-hero__title {
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.15;
}
@media (min-width: 768px) {
    .shop-page-header__title,
    .shop-page-hero__title {
        font-size: 2rem;
    }
}
.shop-page-hero__eyebrow {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--kosar-primary);
    margin-bottom: 0.35rem;
}
.shop-page-header__subtitle,
.shop-page-hero__subtitle {
    margin-top: 0.5rem;
    max-width: 42rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
}
.shop-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1rem;
}

/* Kategori pill (alt kategoriler) */
.shop-category-pill {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    border: 1px solid #e8eef6;
    background: #fff;
    padding: 0.4375rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    box-shadow: var(--kosar-shadow-soft);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-category-pill:hover {
    border-color: #c5d4e8;
    color: var(--kosar-primary);
    transform: translateY(-1px);
    box-shadow: var(--kosar-shadow-soft);
}

/* Katalog layout */
.shop-catalog-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .shop-catalog-grid {
        grid-template-columns: minmax(14rem, 17rem) minmax(0, 1fr);
        gap: 2rem;
        align-items: start;
    }
}
@media (min-width: 1280px) {
    .shop-catalog-grid {
        grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
        gap: 2.5rem;
    }
}
.shop-catalog-sidebar {
    min-width: 0;
}
.shop-catalog-main {
    min-width: 0;
}
.shop-catalog-products {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}
@media (min-width: 390px) {
    .shop-catalog-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}
@media (min-width: 768px) {
    .shop-catalog-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.15rem;
    }
}
@media (min-width: 1024px) {
    .shop-catalog-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }
}
@media (min-width: 1536px) {
    .shop-catalog-products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Filtre paneli */
.shop-filter-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #fff;
    padding: 1.25rem;
    box-shadow: var(--kosar-shadow-soft);
}
.shop-filter-panel__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    padding-bottom: 0.75rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #f1f5f9;
}
.shop-filter-price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}
.shop-filter-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.375rem;
}
.shop-filter-control {
    width: 100%;
    border-radius: var(--kosar-radius);
    border: 1px solid #e2e8f0;
    background: #f4f7fb;
    padding: 0.5625rem 0.75rem;
    font-size: 0.875rem;
    color: #0f172a;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.shop-filter-control:focus {
    outline: none;
    border-color: #c5d4e8;
    background: #fff;
    box-shadow: 0 0 0 3px rgb(30 58 95 / 0.08);
}
.shop-filter-actions {
    display: grid;
    gap: 0.6rem;
}
.shop-filter-submit {
    width: 100%;
    min-height: 2.9rem;
}
.shop-filter-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.65rem;
    border-radius: var(--kosar-radius);
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.shop-filter-clear:hover {
    border-color: #c5d4e8;
    color: var(--kosar-primary);
    background: #f8fafc;
}
.shop-filter-check {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border-radius: var(--kosar-radius);
    border: 1px solid #f1f5f9;
    background: #f8fafc;
    padding: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.shop-filter-check:hover {
    border-color: #c5d4e8;
    background: #f4f7fb;
}

#filter-drawer-panel {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1023px) {
    #filter-drawer-panel {
        display: flex;
        flex-direction: column;
        max-width: 22rem;
        padding: 1rem;
    }
    #filter-drawer-panel .shop-filter-panel {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0 0 1rem;
        -webkit-overflow-scrolling: touch;
    }
    #filter-drawer-panel .shop-filter-field label {
        font-size: 0.85rem;
    }
    #filter-drawer-panel .shop-filter-control {
        min-height: 2.85rem;
        font-size: 1rem;
    }
    #filter-drawer-panel .shop-filter-check {
        min-height: 2.85rem;
    }
    #filter-drawer-panel .shop-filter-actions {
        position: sticky;
        bottom: 0;
        margin-top: auto;
        padding-top: 0.85rem;
        background: linear-gradient(180deg, rgb(255 255 255 / 0), #fff 30%);
    }
}

/* Katalog toolbar */
.shop-catalog-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1rem;
    margin-bottom: 1.15rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e8eef6;
}
.shop-catalog-toolbar__count {
    font-size: 0.875rem;
    color: #64748b;
    min-width: 0;
}
.shop-catalog-toolbar__count strong {
    color: #0f172a;
    font-weight: 700;
}
.shop-catalog-toolbar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
    min-width: 0;
}
.shop-catalog-sort {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}
.shop-catalog-sort__select {
    width: auto;
    min-width: 10rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: #fff;
}
.shop-filter-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--kosar-radius);
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.shop-filter-trigger:hover {
    border-color: #c5d4e8;
    color: var(--kosar-primary);
    transform: translateY(-1px);
}
@media (max-width: 639px) {
    .shop-catalog-toolbar {
        align-items: stretch;
        margin-bottom: 1rem;
    }
    .shop-catalog-toolbar__count {
        width: 100%;
        line-height: 1.45;
    }
    .shop-catalog-toolbar__actions {
        width: 100%;
        justify-content: space-between;
        gap: 0.65rem;
    }
    .shop-filter-trigger {
        flex: 1 1 0;
        justify-content: center;
        min-height: 2.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    .shop-catalog-sort {
        flex: 1.15 1 0;
    }
    .shop-catalog-sort__select {
        width: 100%;
        min-width: 0;
        min-height: 2.75rem;
        font-size: 1rem;
    }
}
@media (max-width: 389px) {
    .shop-catalog-toolbar__actions {
        flex-direction: column;
    }
    .shop-filter-trigger,
    .shop-catalog-sort {
        width: 100%;
        flex: none;
    }
}

/* Aktif filtre chip */
.shop-active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-width: 0;
}
.shop-active-filters__label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.shop-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    border-radius: 9999px;
    border: 1px solid #c5d4e8;
    background: #f4f7fb;
    color: var(--kosar-primary);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    max-width: 100%;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.shop-filter-chip svg {
    flex-shrink: 0;
}
.shop-filter-chip:hover {
    background: #e8eef6;
    transform: translateY(-1px);
}
.shop-active-filters__clear {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
}
.shop-active-filters__clear:hover {
    color: var(--kosar-primary);
}
@media (max-width: 639px) {
    .shop-active-filters {
        align-items: flex-start;
        gap: 0.45rem;
        margin-bottom: 0.9rem;
    }
    .shop-active-filters__label {
        width: 100%;
    }
    .shop-filter-chip {
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
        line-height: 1.25;
        padding: 0.35rem 0.65rem;
    }
    .shop-active-filters__clear {
        display: inline-flex;
        align-items: center;
        min-height: 1.9rem;
        padding-inline: 0.35rem;
    }
}

.shop-catalog-empty,
.shop-cart-empty,
.shop-empty-state {
    border-radius: var(--kosar-radius-lg);
    border: 1px dashed #c5d4e8;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    padding: 3rem 1.75rem;
    text-align: center;
    box-shadow: 0 4px 24px rgb(30 58 95 / 0.05);
}
.shop-empty-state__icon,
.shop-catalog-empty .shop-empty-state__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto;
    border-radius: 9999px;
    background: linear-gradient(145deg, #f4f7fb, #eef2f7);
    border: 1px solid #e8eef6;
    color: var(--kosar-primary);
}
.shop-empty-state__icon svg,
.shop-catalog-empty > svg:first-child,
.shop-cart-empty > svg:first-child {
    color: var(--kosar-accent);
    opacity: 0.85;
}
.shop-empty-state__title {
    margin-top: 1.25rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #334155;
}
.shop-empty-state__desc {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.55;
}
.shop-empty-state__action {
    margin-top: 1.5rem;
}

/* Category cards */
.shop-category-card {
    position: relative;
    border: 1px solid #c5d4e8;
    background: linear-gradient(160deg, #fff 0%, #f8fafc 100%);
    box-shadow: 0 2px 12px rgb(30 58 95 / 0.06);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.shop-category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kosar-primary), var(--kosar-accent));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.shop-category-card:hover {
    border-color: #93a8c9;
    box-shadow:
        0 12px 32px rgb(30 58 95 / 0.12),
        0 0 0 1px rgb(30 58 95 / 0.1);
    transform: translateY(-2px);
}
.shop-category-card:hover::after {
    opacity: 1;
}
.shop-category-card__icon {
    display: flex;
    height: 3.25rem;
    width: 3.25rem;
    align-items: center;
    justify-content: center;
    border-radius: var(--kosar-radius);
    background: linear-gradient(145deg, #e8eef6, #f4f7fb);
    color: var(--kosar-primary);
    border: 1px solid #c5d4e8;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.shop-category-card:hover .shop-category-card__icon {
    background: linear-gradient(145deg, var(--kosar-accent), var(--kosar-primary));
    border-color: transparent;
    color: #fff;
    transform: scale(1.06);
}
.shop-category-card--has-media {
    overflow: hidden;
}
.shop-category-card__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(180deg, #e8eef6, #f8fafc);
}
.shop-category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.shop-category-card--has-media:hover .shop-category-card__img {
    transform: scale(1.05);
}

/* Mobile menu */
.shop-mobile-nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
.shop-mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}
.shop-mobile-nav__panel {
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.shop-mobile-nav.is-open .shop-mobile-nav__panel {
    transform: translateX(0);
}

/* Product card — premium */
.shop-product-card {
    isolation: isolate;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #dde6f1;
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
    overflow: hidden;
    box-shadow: 0 2px 12px rgb(30 58 95 / 0.055);
    transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.shop-product-card:hover {
    border-color: #c5d4e8;
    box-shadow:
        var(--kosar-shadow),
        0 0 0 1px rgb(30 58 95 / 0.12);
    transform: translateY(-2px);
}
.shop-product-card__link {
    display: block;
    flex: 1;
    padding: 0.85rem 0.85rem 0.5rem;
    text-decoration: none;
    color: inherit;
}
.shop-product-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--kosar-radius);
    background: #fff;
    margin-bottom: 0.8rem;
    padding: 0.65rem;
}
.shop-product-card__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-product-card:hover .shop-product-card__img {
    opacity: 0.92;
    transform: scale(1.035);
}
.shop-product-card__badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 10;
    border-radius: 9999px;
    background: var(--kosar-primary);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    letter-spacing: 0.02em;
}
.shop-product-card__fav {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 10;
    display: flex;
    height: 2.15rem;
    width: 2.15rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid rgb(226 232 240 / 0.88);
    background:
        radial-gradient(circle at 35% 25%, rgb(255 255 255 / 0.98), transparent 38%),
        rgb(255 255 255 / 0.94);
    color: #94a3b8;
    box-shadow: 0 8px 20px rgb(15 23 42 / 0.09);
    backdrop-filter: blur(8px);
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.shop-product-card__fav:hover {
    color: #e11d48;
    border-color: rgb(253 164 175 / 0.72);
    background: #fff;
    box-shadow: 0 12px 28px rgb(225 29 72 / 0.14);
    transform: translateY(-1px) scale(1.04);
}
.shop-product-card__fav.is-favorite,
.shop-product-card__fav[aria-pressed='true'] {
    color: #e11d48;
    border-color: rgb(253 164 175 / 0.78);
    background: #fff1f2;
}
.shop-product-card__fav svg {
    stroke-width: 1.9;
}
.shop-product-card__brand {
    min-height: 0.95rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7f8ea3;
}
.shop-product-card__title {
    min-height: 3.45rem;
    font-size: 0.86rem;
    font-weight: 650;
    line-height: 1.34;
    color: #0f172a;
    transition: color 0.2s ease;
}
.shop-product-card:hover .shop-product-card__title {
    color: var(--kosar-primary);
}
.shop-product-card__price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.25rem 0.45rem;
    margin-top: 0.75rem;
}
.shop-product-card__price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--kosar-primary);
    letter-spacing: -0.01em;
    line-height: 1.15;
}
.shop-product-card__compare {
    font-size: 0.72rem;
    color: #94a3b8;
    text-decoration: line-through;
}
.shop-product-card__stock {
    margin-top: 0.55rem;
    font-size: 0.72rem;
    font-weight: 650;
    line-height: 1.35;
}
.shop-product-card__stock--in {
    color: #047857;
}
.shop-product-card__stock--out {
    color: #dc2626;
}
.shop-product-card__footer {
    padding: 0 0.85rem 0.85rem;
    margin-top: auto;
}
.shop-add-cart-btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 2.65rem;
    padding: 0.58rem 0.75rem;
    border-radius: 0.95rem;
    border: 1px solid rgb(207 217 230 / 0.95);
    background:
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    color: var(--kosar-primary);
    font-size: 0.8rem;
    font-weight: 750;
    cursor: pointer;
    box-shadow: 0 8px 22px rgb(30 58 95 / 0.06);
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-add-cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary));
    opacity: 0;
    transition: opacity 0.22s ease;
}
.shop-add-cart-btn:hover {
    border-color: transparent;
    color: #fff;
    box-shadow: 0 14px 30px rgb(30 58 95 / 0.22);
    transform: translateY(-1px);
}
.shop-add-cart-btn:hover::before {
    opacity: 1;
}
.shop-add-cart-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background:
        radial-gradient(circle at 35% 25%, rgb(255 255 255 / 0.35), transparent 38%),
        var(--kosar-primary);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 7px 16px rgb(30 58 95 / 0.18);
    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-add-cart-btn:hover .shop-add-cart-btn__icon {
    background: rgb(255 255 255 / 0.16);
    transform: translateX(-1px) rotate(-4deg);
}

@media (min-width: 640px) {
    .shop-product-card__link {
        padding: 1rem 1rem 0.55rem;
    }
    .shop-product-card__media {
        margin-bottom: 0.875rem;
        padding: 0.8rem;
    }
    .shop-product-card__title {
        font-size: 0.875rem;
    }
    .shop-product-card__price {
        font-size: 1.125rem;
    }
    .shop-product-card__footer {
        padding: 0 1rem 1rem;
    }
}
.shop-add-cart-btn__icon svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}
.shop-add-cart-btn__text {
    line-height: 1.2;
}
.shop-add-cart-btn.is-added {
    border-color: #86efac;
    background: #f0fdf4;
    color: #166534;
}
.shop-add-cart-btn.is-added .shop-add-cart-btn__icon {
    background: #16a34a;
    transform: scale(1.05);
}

/* Add to cart feedback */
.shop-cart-btn {
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.shop-cart-btn.is-added {
    animation: shop-cart-feedback 0.45s ease;
}
@keyframes shop-cart-feedback {
    0% { transform: scale(1); }
    35% { transform: scale(0.97); background: var(--kosar-primary); color: #fff; border-color: var(--kosar-primary); }
    100% { transform: scale(1); }
}

/* Cart drawer */
#cart-drawer aside {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#cart-drawer[aria-hidden='true'] aside {
    transform: translateX(100%);
}
#cart-drawer[aria-hidden='false'] aside {
    transform: translateX(0);
}

/* Toast */
#shop-toast.show {
    animation: shop-toast-in 0.3s ease;
}
@keyframes shop-toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Pagination */
.shop-pagination nav {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}
.shop-pagination a,
.shop-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.shop-pagination a {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
}
.shop-pagination a:hover {
    border-color: var(--kosar-primary);
    color: var(--kosar-primary);
}
.shop-pagination span[aria-current="page"],
.shop-pagination__current {
    background: var(--kosar-primary);
    color: #fff;
    border: 1px solid var(--kosar-primary);
}
.shop-pagination__link,
.shop-pagination__current,
.shop-pagination__disabled,
.shop-pagination__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
}
.shop-pagination__link {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #334155;
}
.shop-pagination__link:hover {
    border-color: var(--kosar-primary);
    color: var(--kosar-primary);
}
.shop-pagination__disabled,
.shop-pagination__dots {
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #94a3b8;
}

/* PDP — üst bölüm */
.shop-page--pdp {
    position: relative;
}
.shop-pdp {
    gap: 1.5rem;
    align-items: start;
    min-width: 0;
}
@media (min-width: 1024px) {
    .shop-pdp {
        gap: 3rem;
    }
}
.shop-pdp-gallery,
.shop-pdp-info {
    min-width: 0;
}
@media (min-width: 1024px) {
    .shop-pdp-gallery {
        position: sticky;
        top: calc(var(--kosar-header-h) + 1.25rem);
    }
}
.shop-pdp-gallery--thumbs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 640px) {
    .shop-pdp-gallery--thumbs {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
}
.shop-pdp-gallery__main {
    position: relative;
    isolation: isolate;
    aspect-ratio: 1;
    margin: 0;
    flex: 1;
    min-width: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
    border: 1px solid rgb(203 213 225 / 0.72);
    border-radius: 1.5rem;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 46px rgb(15 23 42 / 0.08);
    cursor: pointer;
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-pdp-gallery__main::before {
    content: '';
    position: absolute;
    inset: 1rem;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(115deg, transparent 24%, rgb(255 255 255 / 0.78) 42%, transparent 60%);
    opacity: 0;
    transform: translateX(-28%);
    pointer-events: none;
}
.shop-pdp-gallery__main::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 56%, rgb(255 255 255 / 0.72), transparent 52%);
    pointer-events: none;
}
.shop-pdp-gallery__main:not(:disabled):hover {
    border-color: rgb(30 58 95 / 0.2);
    box-shadow: 0 24px 58px rgb(15 23 42 / 0.11);
    transform: translateY(-2px);
}
.shop-pdp-gallery__main:not(:disabled):hover::before {
    animation: shop-pdp-gleam 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (min-width: 1024px) {
    .shop-pdp-gallery__main {
        min-height: 30rem;
    }
}
.shop-pdp-gallery__main:disabled {
    cursor: default;
}
.shop-pdp-gallery__figure {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
}
.shop-pdp-gallery__img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    filter: drop-shadow(0 16px 28px rgb(15 23 42 / 0.09));
    transition:
        opacity 0.28s ease,
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.28s ease;
}
.shop-pdp-gallery__main:not(:disabled):hover .shop-pdp-gallery__img {
    transform: scale(1.025);
    filter: drop-shadow(0 18px 34px rgb(15 23 42 / 0.12));
}
.shop-pdp-gallery__main.is-switching .shop-pdp-gallery__img {
    opacity: 0.6;
    transform: scale(0.98);
}
/* Tailwind CDN img kurallarının üzerine — PDP ana görsel kırpılmasın */
#pdp-main-img.shop-pdp-gallery__img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
}
.shop-pdp-gallery__thumbs {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    max-width: 100%;
    overflow-x: auto;
    padding: 0.15rem 0.1rem 0.35rem;
    scrollbar-width: thin;
}
@media (min-width: 640px) {
    .shop-pdp-gallery__thumbs {
        flex-direction: column;
        flex-wrap: nowrap;
        width: 4.75rem;
        flex-shrink: 0;
        max-height: min(28rem, 70vw);
        overflow-x: hidden;
        overflow-y: auto;
        scrollbar-width: thin;
    }
}
.shop-pdp-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
    flex-shrink: 0;
    padding: 0.25rem;
    border-radius: 1rem;
    border: 1.5px solid rgb(226 232 240 / 0.96);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    overflow: hidden;
    box-shadow: 0 6px 18px rgb(15 23 42 / 0.05);
    transition:
        border-color 0.22s ease,
        transform 0.22s ease,
        opacity 0.22s ease,
        box-shadow 0.22s ease;
}
.shop-pdp-thumb__img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}
.shop-pdp-thumb:hover {
    border-color: #93a8c9;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgb(15 23 42 / 0.08);
}
.shop-pdp-thumb.is-active {
    border-color: var(--kosar-primary);
    box-shadow:
        0 0 0 3px rgb(30 58 95 / 0.12),
        0 2px 8px rgb(30 58 95 / 0.08);
    transform: scale(1.02);
}

@keyframes shop-pdp-gleam {
    0% {
        opacity: 0;
        transform: translateX(-32%);
    }
    35% {
        opacity: 0.78;
    }
    100% {
        opacity: 0;
        transform: translateX(32%);
    }
}

/* PDP image lightbox */
.shop-pdp-lightbox {
    margin: 0;
    padding: 0;
    border: none;
    max-width: none;
    max-height: none;
    width: 100%;
    height: 100%;
    background: transparent;
}
.shop-pdp-lightbox::backdrop {
    background: rgb(15 23 42 / 0.82);
    backdrop-filter: blur(4px);
}
.shop-pdp-lightbox__inner {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 3.5rem;
    pointer-events: none;
}
.shop-pdp-lightbox__figure,
.shop-pdp-lightbox__close,
.shop-pdp-lightbox__nav {
    pointer-events: auto;
}
.shop-pdp-lightbox__figure {
    margin: 0;
    max-width: min(92vw, 56rem);
    max-height: min(88vh, 48rem);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-pdp-lightbox__img {
    max-width: 100%;
    max-height: min(88vh, 48rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--kosar-radius-lg);
    box-shadow: 0 24px 48px rgb(0 0 0 / 0.35);
}
.shop-pdp-lightbox__close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: none;
    background: rgb(255 255 255 / 0.95);
    color: #0f172a;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.2);
}
.shop-pdp-lightbox__close:hover {
    background: #fff;
}
.shop-pdp-lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.92);
    color: #0f172a;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.2);
}
.shop-pdp-lightbox__nav:hover {
    background: #fff;
}
.shop-pdp-lightbox__nav--prev {
    left: 1rem;
}
.shop-pdp-lightbox__nav--next {
    right: 1rem;
}
.shop-pdp-info__brand {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--kosar-primary);
}
.shop-pdp-info__panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(226 232 240 / 0.86);
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgb(255 255 255 / 0.98) 0%, rgb(248 250 252 / 0.96) 100%);
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 18px 46px rgb(15 23 42 / 0.07);
}
.shop-pdp-info__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kosar-primary-dark), #3f5f8f, #d6e2f3);
}
.shop-pdp-info__title {
    margin-top: 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0f172a;
}
@media (min-width: 768px) {
    .shop-pdp-info__title {
        font-size: clamp(2rem, 2.4vw, 2.65rem);
    }
}
.shop-pdp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.shop-pdp-badge {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    border-radius: 9999px;
    border: 1px solid rgb(203 213 225 / 0.82);
    background: rgb(255 255 255 / 0.86);
    padding: 0.35rem 0.75rem;
    color: #334155;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgb(15 23 42 / 0.04);
}
.shop-pdp-price-box {
    margin-top: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgb(203 213 225 / 0.72);
    background:
        radial-gradient(circle at 100% 0%, rgb(30 58 95 / 0.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
    padding: 1.25rem;
    box-shadow: 0 12px 32px rgb(15 23 42 / 0.06);
}
.shop-pdp-price-box__amount {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--kosar-primary);
}
@media (min-width: 768px) {
    .shop-pdp-price-box__amount {
        font-size: 2.25rem;
    }
}
.shop-pdp-price-box__badge {
    border-radius: 0.5rem;
    background: var(--kosar-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
}
.shop-pdp-qty {
    display: flex;
    align-items: center;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
    min-height: 3.35rem;
    box-shadow: 0 8px 22px rgb(15 23 42 / 0.04);
}
.shop-pdp-qty button {
    align-self: stretch;
    padding: 0.75rem 1.05rem;
    color: #64748b;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.shop-pdp-qty button:hover {
    background: #f4f7fb;
    color: var(--kosar-primary);
}
.shop-pdp-qty input {
    width: 3.5rem;
    min-width: 0;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    background: #fff;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
}
.shop-pdp-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.shop-pdp-actions .shop-cart-btn {
    min-height: 3.35rem;
    border-radius: 1rem;
    box-shadow: 0 16px 34px rgb(30 58 95 / 0.18);
}
.shop-pdp-actions .shop-cart-btn svg {
    stroke-width: 2;
    transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-pdp-actions .shop-cart-btn:hover svg {
    transform: translateX(-1px) rotate(-4deg);
}
.shop-pdp-wa-order-wrap {
    width: 100%;
    margin-top: 0.65rem;
}
.shop-pdp-wa-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 1rem;
    border: 1.5px solid #22c55e;
    background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
    color: #15803d;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 12px rgb(34 197 94 / 0.12);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.shop-pdp-wa-order:hover {
    background: #22c55e;
    border-color: #16a34a;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgb(34 197 94 / 0.28);
}
.shop-pdp-wa-order__icon {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
}
.shop-pdp-fav {
    display: flex;
    height: 3.35rem;
    width: 3.35rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    border: 1.5px solid #e2e8f0;
    color: #94a3b8;
    background: #fff;
    box-shadow: 0 8px 22px rgb(15 23 42 / 0.04);
    transition:
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.shop-pdp-fav:hover {
    border-color: #fda4af;
    color: #e11d48;
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 28px rgb(225 29 72 / 0.12);
}
.shop-pdp-fav.is-favorite,
.shop-pdp-fav[aria-pressed='true'] {
    border-color: rgb(253 164 175 / 0.78);
    background: #fff1f2;
    color: #e11d48;
}
.shop-pdp-fav svg {
    stroke-width: 1.9;
}
.shop-pdp-trust__item {
    border-radius: 1rem;
    border: 1px solid rgb(226 232 240 / 0.74);
    background: rgb(255 255 255 / 0.9);
    padding: 0.875rem;
    text-align: center;
    box-shadow: 0 8px 22px rgb(15 23 42 / 0.04);
    transition:
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.shop-pdp-trust__item:hover {
    border-color: #e8eef6;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgb(15 23 42 / 0.07);
}
.shop-pdp-content {
    border-radius: 1.5rem;
    border: 1px solid rgb(226 232 240 / 0.82);
    background: rgb(255 255 255 / 0.88);
    padding: clamp(0.75rem, 2vw, 1.25rem);
    box-shadow: 0 18px 46px rgb(15 23 42 / 0.06);
}
.shop-pdp-tabs {
    border-radius: 1.1rem;
    border: 1px solid rgb(226 232 240 / 0.86);
    background: #f8fafc;
    padding: 0.35rem;
    gap: 0.25rem;
    scrollbar-width: none;
}
.shop-pdp-tabs::-webkit-scrollbar {
    display: none;
}
.shop-pdp-tab {
    position: relative;
    padding: 0.8rem 1.1rem;
    border-radius: 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}
.shop-pdp-tab::after {
    content: '';
    position: absolute;
    bottom: 0.35rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--kosar-primary);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 2px 2px 0 0;
}
.shop-pdp-tab:hover {
    color: #0f172a;
    background: rgb(255 255 255 / 0.7);
}
.shop-pdp-tab:hover::after {
    transform: scaleX(0.4);
    background: #94a3b8;
}
.shop-pdp-tab.is-active {
    color: var(--kosar-primary);
    background: #fff;
    box-shadow: 0 8px 20px rgb(15 23 42 / 0.06);
}
.shop-pdp-tab.is-active::after {
    transform: scaleX(1);
}
.shop-pdp-panel {
    overflow: hidden;
    border-radius: 1.25rem;
    border: 1px solid rgb(226 232 240 / 0.76);
    background: #fff;
    padding: clamp(1rem, 2.4vw, 1.5rem);
    box-shadow: 0 10px 30px rgb(15 23 42 / 0.04);
}
.shop-pdp-panel:not(.hidden) {
    animation: shop-pdp-panel-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes shop-pdp-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 639px) {
    .shop-pdp {
        gap: 1rem;
    }
    .shop-pdp-gallery__main {
        border-radius: 1.2rem;
    }
    .shop-pdp-info__panel,
    .shop-pdp-content {
        border-radius: 1.2rem;
    }
    .shop-pdp-actions {
        display: grid;
        grid-template-columns: 1fr auto;
    }
    .shop-pdp-qty {
        grid-column: 1 / -1;
        width: 100%;
    }
    .shop-pdp-qty input {
        flex: 1;
        width: 100%;
        min-width: 0;
    }
    .shop-pdp-actions .shop-cart-btn {
        min-width: 0 !important;
        width: 100%;
    }
    .shop-pdp-tabs {
        margin-inline: -0.25rem;
    }
}

/* PDP — yorumlar */
.shop-pdp-reviews {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.shop-pdp-reviews__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 55%);
    box-shadow: var(--kosar-shadow-soft);
}
.shop-pdp-reviews__summary-text {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}
.shop-pdp-reviews__grid {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .shop-pdp-reviews__grid {
        grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 22rem);
        gap: 2rem;
    }
}
.shop-pdp-reviews__heading {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.shop-pdp-reviews__list {
    min-width: 0;
}
.shop-pdp-reviews__form {
    height: fit-content;
}
@media (min-width: 1024px) {
    .shop-pdp-reviews__form {
        position: sticky;
        top: 7rem;
    }
}
.shop-pdp-reviews__note {
    margin: -0.25rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}
.shop-pdp-reviews__errors {
    padding: 0.75rem 1rem;
    border-radius: var(--kosar-radius);
    border: 1px solid #fecaca;
    background: #fef2f2;
    font-size: 0.8125rem;
    color: #b91c1c;
}
.shop-pdp-reviews__errors p + p {
    margin-top: 0.35rem;
}
.shop-pdp-reviews__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px dashed #d4dce8;
    background: #f8fafc;
}
.shop-pdp-reviews__empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: #fff;
    color: #94a3b8;
    box-shadow: var(--kosar-shadow-soft);
    margin-bottom: 1rem;
}
.shop-pdp-reviews__empty-title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
}
.shop-pdp-reviews__empty-hint {
    margin: 0.5rem 0 0;
    max-width: 20rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}
.shop-pdp-review {
    padding: 1.25rem 1.35rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #fff;
    box-shadow: var(--kosar-shadow-soft);
}
.shop-pdp-review + .shop-pdp-review {
    margin-top: 0.875rem;
}
.shop-pdp-review__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem 1rem;
}
.shop-pdp-review__author-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.shop-pdp-review__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--kosar-primary), var(--kosar-accent));
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
}
.shop-pdp-review__author {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}
.shop-pdp-review__date {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    color: #94a3b8;
}
.shop-pdp-review__stars {
    display: inline-flex;
    gap: 0.1rem;
    line-height: 1;
}
.shop-pdp-review__star {
    font-size: 0.875rem;
    color: #e2e8f0;
}
.shop-pdp-review__star.is-filled {
    color: #f59e0b;
}
.shop-pdp-review__title {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}
.shop-pdp-review__body {
    margin: 0.65rem 0 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #475569;
}
.shop-star-rating__stars {
    display: inline-flex;
    gap: 0.25rem;
}
.shop-star-rating__btn {
    display: inline-flex;
    padding: 0.15rem;
    border: none;
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
    border-radius: 0.35rem;
    transition: color 0.15s ease, transform 0.15s ease;
}
.shop-star-rating__btn:hover,
.shop-star-rating__btn.is-active {
    color: #f59e0b;
}
.shop-star-rating__btn:hover {
    transform: scale(1.08);
}
.shop-star-rating__btn:focus-visible {
    outline: 2px solid var(--kosar-accent);
    outline-offset: 2px;
}
.shop-star-rating__hint {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    color: #64748b;
}

/* PDP — taksit tablosu */
.shop-pdp-installments__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}
.shop-pdp-installments__intro {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.55;
    max-width: 42rem;
}
.shop-pdp-installments__provider {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--kosar-primary);
    background: #e8eef6;
    border: 1px solid #d4dce8;
}
.shop-pdp-installments__amount {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    color: #475569;
}
.shop-pdp-installments__amount strong {
    color: #0f172a;
    font-weight: 800;
}
.shop-pdp-installments__disclaimer {
    margin: 1rem 0 0;
    font-size: 0.75rem;
    line-height: 1.55;
    color: #94a3b8;
}
.shop-pdp-installments__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px dashed #d4dce8;
    background: #f8fafc;
}
.shop-pdp-installments__empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    border-radius: 9999px;
    background: #fff;
    color: #94a3b8;
    box-shadow: var(--kosar-shadow-soft);
}
.shop-pdp-installments__empty-title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #334155;
}
.shop-pdp-installments__empty-hint {
    margin: 0.5rem 0 0;
    max-width: 22rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}
.shop-pdp-installments.is-loading [data-installments-body] {
    opacity: 0.45;
    pointer-events: none;
}
.shop-installments-table-wrap {
    overflow-x: auto;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #fff;
    box-shadow: var(--kosar-shadow-soft);
    -webkit-overflow-scrolling: touch;
}
.shop-installments-table {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: 0.8125rem;
}
.shop-installments-table thead th {
    padding: 0.85rem 1rem;
    text-align: center;
    font-weight: 700;
    color: #334155;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e8eef6;
    white-space: nowrap;
}
.shop-installments-table thead th:first-child {
    text-align: left;
}
.shop-installments-table tbody th,
.shop-installments-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}
.shop-installments-table tbody tr:last-child th,
.shop-installments-table tbody tr:last-child td {
    border-bottom: none;
}
.shop-installments-table tbody tr:nth-child(even) td,
.shop-installments-table tbody tr:nth-child(even) th {
    background: #fafbfc;
}
.shop-installments-table__bank {
    font-weight: 700;
    color: #0f172a;
    text-align: left;
    white-space: nowrap;
}
.shop-installments-table tbody td {
    text-align: center;
}
.shop-installments-table__monthly {
    display: block;
    font-weight: 700;
    color: var(--kosar-primary);
    font-size: 0.875rem;
}
.shop-installments-table__total {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.6875rem;
    color: #94a3b8;
}
.shop-installments-table__na {
    color: #cbd5e1;
    font-weight: 600;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Sepet & ödeme — görünüm */
.shop-checkout-steps {
    margin-bottom: 2rem;
}
.shop-checkout-steps--bar {
    padding: 1.25rem 1.5rem !important;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgb(30 58 95 / 0.05);
}
.shop-checkout-steps__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
@media (min-width: 640px) {
    .shop-checkout-steps__list {
        gap: 1rem;
    }
}
.shop-checkout-steps__connector {
    display: none;
    width: 2rem;
    height: 2px;
    border-radius: 1px;
    background: #e2e8f0;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 640px) {
    .shop-checkout-steps__connector {
        display: block;
    }
}
.shop-checkout-steps__connector.is-done {
    background: var(--kosar-primary);
}
.shop-checkout-steps__dot {
    display: flex;
    height: 2rem;
    width: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.shop-checkout-steps__dot.is-pending {
    background: #e2e8f0;
    color: #64748b;
}
.shop-checkout-steps__dot.is-current {
    background: var(--kosar-primary);
    color: #fff;
    box-shadow: 0 0 0 4px #e8eef6;
}
.shop-checkout-steps__dot.is-done {
    background: var(--kosar-primary);
    color: #fff;
}
.shop-checkout-steps__label {
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s ease;
}
.shop-checkout-steps__label.is-current {
    color: #0f172a;
}
.shop-checkout-steps__label.is-pending {
    color: #94a3b8;
}
.shop-checkout-steps__label.is-done {
    color: var(--kosar-primary);
}

.shop-panel {
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #fff;
    padding: 1.5rem;
    box-shadow:
        0 4px 24px rgb(30 58 95 / 0.05),
        0 1px 0 rgb(255 255 255 / 0.9) inset;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}
@media (min-width: 640px) {
    .shop-panel {
        padding: 2rem;
    }
}
.shop-panel:hover {
    border-color: #d4dce8;
}
.shop-panel--sticky {
    position: sticky;
    top: 7rem;
    z-index: 2;
}
@media (min-width: 1024px) {
    .shop-checkout-sidebar {
        align-self: start;
    }
    .shop-checkout-sidebar__sticky {
        position: sticky;
        top: 7rem;
        z-index: 2;
    }
}
.shop-panel__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    padding-bottom: 0.75rem;
    margin-bottom: 0.25rem;
    border-bottom: 1px solid #f1f5f9;
}
.shop-panel__title::before {
    content: '';
    width: 0.25rem;
    height: 1.125rem;
    border-radius: 9999px;
    background: linear-gradient(180deg, var(--kosar-accent), var(--kosar-primary));
}
.shop-panel--prose {
    line-height: 1.75;
}

/* Zengin içerik (düz metin + güvenli HTML) */
.shop-rich-content {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #475569;
}
.shop-rich-content > *:first-child {
    margin-top: 0;
}
.shop-rich-content > *:last-child {
    margin-bottom: 0;
}
.shop-rich-content h2 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.3;
}
.shop-rich-content h3 {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1e293b;
}
.shop-rich-content h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
}
.shop-rich-content p {
    margin: 0 0 1rem;
}
.shop-rich-content ul,
.shop-rich-content ol {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
}
.shop-rich-content li {
    margin-bottom: 0.35rem;
}
.shop-rich-content a {
    color: var(--kosar-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.shop-rich-content a:hover {
    color: var(--kosar-accent);
}
.shop-rich-content strong,
.shop-rich-content b {
    font-weight: 700;
    color: #0f172a;
}
.shop-rich-content blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--kosar-primary);
    background: #f8fafc;
    border-radius: 0 0.5rem 0.5rem 0;
    color: #64748b;
}
.shop-rich-content table {
    width: 100%;
    margin: 1.25rem 0 1.5rem;
    border-collapse: collapse;
    font-size: 0.875rem;
    line-height: 1.5;
}
.shop-rich-content th,
.shop-rich-content td {
    padding: 0.625rem 0.875rem;
    border: 1px solid #e2e8f0;
    text-align: left;
    vertical-align: top;
}
.shop-rich-content th {
    background: #f1f5f9;
    font-weight: 700;
    color: #0f172a;
}
.shop-rich-content tr:nth-child(even) td {
    background: #f8fafc;
}
.shop-catalog-intro {
    margin-top: 2.5rem;
    margin-bottom: 0;
    padding: 1.25rem 1.5rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.shop-cart-empty {
    margin-top: 1rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.shop-cart-line {
    display: flex;
    gap: 1rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #fff;
    padding: 1rem 1.25rem;
    box-shadow: var(--kosar-shadow-soft);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
@media (min-width: 640px) {
    .shop-cart-line {
        padding: 1.25rem 1.5rem;
    }
}
.shop-cart-line:hover {
    border-color: #c5d4e8;
    box-shadow: var(--kosar-shadow);
}
.shop-cart-line__thumb {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    border-radius: var(--kosar-radius);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}
@media (min-width: 640px) {
    .shop-cart-line__thumb {
        width: 6rem;
        height: 6rem;
    }
}
.shop-cart-line__price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--kosar-primary);
}
.shop-cart-line__total {
    font-weight: 700;
    color: #0f172a;
    flex-shrink: 0;
    align-self: flex-start;
}
.shop-cart-line__remove {
    font-size: 0.875rem;
    font-weight: 600;
    color: #dc2626;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.shop-cart-line__remove:hover {
    color: #b91c1c;
}

/* Ortak adet seçici (sepet + PDP) */
.shop-qty,
.shop-pdp-qty {
    display: flex;
    align-items: center;
    border-radius: var(--kosar-radius);
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
}
.shop-qty button,
.shop-pdp-qty button {
    padding: 0.5rem 0.75rem;
    color: #64748b;
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease;
}
@media (min-width: 640px) {
    .shop-qty button,
    .shop-pdp-qty button {
        padding: 0.625rem 0.875rem;
    }
}
.shop-qty button:hover,
.shop-pdp-qty button:hover {
    background: #f4f7fb;
    color: var(--kosar-primary);
}
.shop-qty input,
.shop-pdp-qty input {
    width: 2.75rem;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
}
@media (min-width: 640px) {
    .shop-qty input,
    .shop-pdp-qty input {
        width: 3.5rem;
    }
}

.shop-checkout-section__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}
.shop-checkout-section__num {
    display: flex;
    height: 2.125rem;
    width: 2.125rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary));
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgb(30 58 95 / 0.2);
}
.shop-checkout-option {
    display: flex;
    gap: 1rem;
    border-radius: var(--kosar-radius);
    border: 1.5px solid #f1f5f9;
    padding: 1rem;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.shop-checkout-option:hover {
    border-color: #c5d4e8;
    transform: translateY(-1px);
}
.shop-checkout-option:has(:checked) {
    border-color: var(--kosar-primary);
    background: #f4f7fb;
}
.shop-corporate-invoice {
    margin-top: 1rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    padding: 1rem;
}
.shop-corporate-invoice__toggle {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
}
.shop-corporate-invoice__toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.shop-corporate-invoice__switch {
    position: relative;
    width: 3rem;
    height: 1.625rem;
    border-radius: 9999px;
    background: #dbe4f0;
    box-shadow: inset 0 1px 2px rgb(15 23 42 / 0.12);
    transition: background-color 0.2s ease;
}
.shop-corporate-invoice__switch::after {
    content: '';
    position: absolute;
    top: 0.1875rem;
    left: 0.1875rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: #fff;
    box-shadow: 0 2px 8px rgb(15 23 42 / 0.18);
    transition: transform 0.2s ease;
}
.shop-corporate-invoice__toggle input:checked + .shop-corporate-invoice__switch {
    background: var(--kosar-primary);
}
.shop-corporate-invoice__toggle input:checked + .shop-corporate-invoice__switch::after {
    transform: translateX(1.375rem);
}
.shop-corporate-invoice__toggle strong {
    display: block;
    font-weight: 800;
    color: #0f172a;
}
.shop-corporate-invoice__toggle small {
    display: block;
    margin-top: 0.125rem;
    color: #64748b;
    font-size: 0.8125rem;
}
.shop-corporate-invoice__fields {
    display: none;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e8eef6;
}
.shop-corporate-invoice.is-open .shop-corporate-invoice__fields,
.shop-corporate-invoice:has(#corporate-invoice-toggle:checked) .shop-corporate-invoice__fields {
    display: block;
}
.shop-checkout-contract {
    display: flex;
    gap: 0.75rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #f8fafc;
    padding: 1.25rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.shop-checkout-contract:hover {
    border-color: #c5d4e8;
    background: #f4f7fb;
}

.shop-cart-drawer__overlay {
    background: rgb(15 23 42 / 0.35);
    backdrop-filter: blur(4px);
    transition: opacity 0.28s ease;
}
.shop-cart-drawer__panel {
    box-shadow: -8px 0 32px rgb(15 23 42 / 0.1);
}
.shop-cart-drawer__head {
    border-bottom: 1px solid #e8eef6;
    padding: 1rem 1.25rem;
}
.shop-cart-drawer__foot {
    border-top: 1px solid #e8eef6;
    background: #f8fafc;
    padding: 1.25rem;
}
.shop-cart-drawer__secondary {
    display: block;
    text-align: center;
    border-radius: var(--kosar-radius);
    border: 1.5px solid #e2e8f0;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    background: #fff;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.shop-cart-drawer__secondary:hover {
    border-color: #c5d4e8;
    color: var(--kosar-primary);
    transform: translateY(-1px);
}

.shop-payment-card {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.shop-payment-card.shop-panel {
    padding: 2.5rem 2rem;
}
.shop-success-wrap {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 0 2rem;
}
.shop-success-icon {
    display: inline-flex;
    height: 5.5rem;
    width: 5.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    border: 2px solid #a7f3d0;
    color: #059669;
    box-shadow: 0 8px 24px rgb(16 185 129 / 0.2);
}

/* Hesap */
.shop-account-card {
    display: block;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
    padding: 1.35rem;
    box-shadow: 0 4px 20px rgb(30 58 95 / 0.05);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-account-card:hover {
    border-color: #c5d4e8;
    box-shadow: 0 8px 28px rgb(30 58 95 / 0.1);
    transform: translateY(-3px);
}
.shop-account-card.is-active {
    border-color: var(--kosar-primary);
    border-width: 2px;
    background: linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
    box-shadow: 0 6px 24px rgb(30 58 95 / 0.12);
}
.shop-account-card.is-active .shop-account-card__icon-wrap {
    background: var(--kosar-primary);
    color: #fff;
}
.shop-account-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: #eef2f7;
    color: var(--kosar-primary);
    transition: background 0.25s ease, color 0.25s ease;
}
.shop-order-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: linear-gradient(180deg, #fff 0%, #fafbfd 100%);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 20px rgb(30 58 95 / 0.05);
    text-decoration: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-order-row:hover {
    border-color: #c5d4e8;
    box-shadow: 0 8px 28px rgb(30 58 95 / 0.1);
    transform: translateY(-2px);
}
.shop-status-badge {
    display: inline-block;
    border-radius: 9999px;
    background: linear-gradient(180deg, #f4f7fb, #eef2f7);
    border: 1px solid #e8eef6;
    padding: 0.35rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.02em;
}

/* Auth */
.shop-auth-card {
    position: relative;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 8px 32px rgb(30 58 95 / 0.08);
    overflow: hidden;
}
.shop-auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kosar-primary-dark), var(--kosar-accent), var(--kosar-primary));
}
.shop-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 1rem;
}
.shop-auth-modal.hidden {
    display: none;
}
.shop-auth-modal__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgb(197 212 232 / 0.28), transparent 38%),
        rgb(15 23 42 / 0.52);
    backdrop-filter: blur(10px);
}
.shop-auth-modal__dialog {
    position: relative;
    width: min(100%, 30rem);
    max-height: min(88vh, 46rem);
    overflow-y: auto;
    border-radius: 1.5rem;
    border: 1px solid rgb(226 232 240 / 0.82);
    background:
        radial-gradient(circle at 85% 0%, rgb(30 58 95 / 0.08), transparent 28%),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    padding: clamp(1.25rem, 4vw, 2rem);
    box-shadow: 0 28px 80px rgb(15 23 42 / 0.32);
    animation: shop-auth-modal-in 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.shop-auth-modal__dialog::before {
    content: '';
    position: absolute;
    inset: 0;
    height: 4px;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--kosar-primary-dark), var(--kosar-accent), #d6e2f3);
}
.shop-auth-modal__close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: rgb(255 255 255 / 0.92);
    color: #64748b;
    box-shadow: 0 8px 24px rgb(15 23 42 / 0.08);
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}
.shop-auth-modal__close:hover {
    background: var(--kosar-primary);
    color: #fff;
    transform: translateY(-1px);
}
.shop-auth-modal__brand {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
    padding-right: 2.75rem;
    padding-left: 2.75rem;
}
.shop-auth-modal__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem;
    margin-bottom: 1.35rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    background: #eef2f7;
    padding: 0.3rem;
}
.shop-auth-modal__tab {
    min-height: 2.55rem;
    border-radius: 9999px;
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 800;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}
.shop-auth-modal__tab.is-active {
    background: #fff;
    color: var(--kosar-primary);
    box-shadow: 0 8px 22px rgb(15 23 42 / 0.08);
}
.shop-auth-modal__panel:not(.hidden) {
    animation: shop-auth-panel-in 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.shop-auth-modal__title {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}
.shop-auth-modal__subtitle {
    margin-top: 0.35rem;
    color: #64748b;
    font-size: 0.875rem;
}
@keyframes shop-auth-modal-in {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes shop-auth-panel-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 479px) {
    .shop-auth-modal {
        align-items: end;
        padding: 0.55rem 0.7rem calc(0.7rem + env(safe-area-inset-bottom));
    }
    .shop-auth-modal__backdrop {
        background: rgb(15 23 42 / 0.46);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .shop-auth-modal__dialog {
        width: min(100%, 23.5rem);
        max-height: min(82vh, 35rem);
        margin-inline: auto;
        overscroll-behavior: contain;
        border-radius: 1.05rem;
        padding: 0.9rem;
        border-color: rgb(226 232 240 / 0.9);
        box-shadow: 0 16px 46px rgb(15 23 42 / 0.24);
        -webkit-overflow-scrolling: touch;
    }
    .shop-auth-modal__brand {
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 2.25rem;
        margin-bottom: 0.65rem;
    }
    .shop-auth-modal__brand .shop-logo--header {
        height: 1.85rem;
        max-width: 7.4rem;
    }
    .shop-auth-modal__close {
        top: 0.72rem;
        right: 0.72rem;
        width: 2rem;
        height: 2rem;
        border-color: #edf2f7;
        box-shadow: 0 5px 14px rgb(15 23 42 / 0.07);
    }
    .shop-auth-modal__close svg {
        width: 0.95rem;
        height: 0.95rem;
    }
    .shop-auth-modal__tabs {
        gap: 0.25rem;
        margin-bottom: 0.85rem;
        padding: 0.22rem;
        background: #f1f5f9;
    }
    .shop-auth-modal__tab {
        min-height: 2.05rem;
        font-size: 0.78rem;
    }
    .shop-auth-modal__panel > .text-center {
        margin-bottom: 0.85rem;
    }
    .shop-auth-modal__title {
        font-size: 1.15rem;
        line-height: 1.15;
    }
    .shop-auth-modal__subtitle {
        margin-top: 0.25rem;
        font-size: 0.78rem;
    }
    .shop-auth-modal form.space-y-4 > :not([hidden]) ~ :not([hidden]) {
        margin-top: 0.65rem;
    }
    .shop-auth-modal .shop-label {
        font-size: 0.78rem;
        margin-bottom: 0.22rem;
    }
    .shop-auth-modal .shop-input {
        min-height: 2.55rem;
        padding: 0.64rem 0.85rem;
        border-radius: 0.75rem;
        font-size: 1rem;
        transition: border-color 0.15s ease, background-color 0.15s ease;
    }
    .shop-auth-modal label.flex {
        align-items: center;
        font-size: 0.78rem;
    }
    .shop-auth-modal .btn-primary {
        min-height: 2.6rem;
        padding-top: 0.64rem;
        padding-bottom: 0.64rem;
        border-radius: 0.75rem;
        font-size: 0.86rem;
    }
    .shop-auth-modal form + p {
        margin-top: 0.85rem;
        font-size: 0.78rem;
    }
}

@supports (height: 100dvh) {
    @media (max-width: 479px) {
        .shop-auth-modal {
            min-height: 100dvh;
        }

        .shop-auth-modal__dialog {
            max-height: calc(100dvh - 1.25rem - env(safe-area-inset-bottom));
        }

        .shop-auth-modal .shop-input:focus {
            scroll-margin-bottom: 8rem;
        }
    }
}
/* Blog */
.shop-blog-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .shop-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem;
    }
}
.shop-blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgb(30 58 95 / 0.05);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-blog-card:hover {
    border-color: #c5d4e8;
    box-shadow:
        0 12px 32px rgb(30 58 95 / 0.1),
        0 0 0 1px rgb(30 58 95 / 0.1);
    transform: translateY(-2px);
}
.shop-blog-card__date {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--kosar-primary);
    letter-spacing: 0.04em;
}
.shop-blog-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.2s ease;
}
.shop-blog-card:hover .shop-blog-card__title {
    color: var(--kosar-primary);
}

/* Marka listesi */
.shop-brand-tile {
    display: block;
    border-radius: var(--kosar-radius-lg);
    border: 1px solid #e8eef6;
    background: #fff;
    padding: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    box-shadow: var(--kosar-shadow-soft);
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-brand-tile:hover {
    border-color: #c5d4e8;
    color: var(--kosar-primary);
    box-shadow:
        var(--kosar-shadow),
        0 0 0 1px rgb(30 58 95 / 0.1);
    transform: translateY(-2px);
}
.shop-brand-tile__name {
    font-weight: 600;
    color: #0f172a;
}
.shop-brand-tile:hover .shop-brand-tile__name {
    color: var(--kosar-primary);
}

/* İletişim */
.shop-contact-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 1024px) {
    .shop-contact-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 2.5rem;
    }
}
.shop-contact-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1rem;
    border-radius: var(--kosar-radius);
    color: #475569;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}
.shop-contact-link:hover {
    color: var(--kosar-primary);
    background: #fff;
    border-color: #c5d4e8;
    transform: translateX(4px);
}
.shop-contact-link__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: #eef2f7;
    color: var(--kosar-primary);
    flex-shrink: 0;
}
/* Sipariş takip */
.shop-tracking-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .shop-tracking-layout {
        grid-template-columns: 1.35fr 1fr;
        gap: 2.5rem;
    }
}
.shop-tracking-layout__main {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    min-width: 0;
}
.shop-tracking-layout__aside {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.shop-tracking-form__hint {
    margin-top: -0.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.55;
}
.shop-tracking-form__fields {
    margin-top: 0.5rem;
}
.shop-tracking-help__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.shop-tracking-help__item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #475569;
}
.shop-tracking-help__num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}
.shop-tracking-aside-cta {
    text-align: center;
    padding: 1.5rem;
}
.shop-tracking-result {
    min-width: 0;
}
.shop-tracking-order__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}
.shop-tracking-order__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
}
.shop-tracking-order__number {
    margin-top: 0.25rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--kosar-primary);
}
.shop-tracking-order__date {
    margin-top: 0.35rem;
    font-size: 0.875rem;
    color: #64748b;
}
.shop-tracking-order__status {
    font-size: 0.8125rem;
    padding: 0.45rem 1rem;
    color: var(--kosar-primary);
    background: #f4f7fb;
    border-color: #c5d4e8;
}
.shop-tracking-timeline {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    border-radius: var(--kosar-radius-lg);
    background: linear-gradient(180deg, #fafbfd 0%, #f4f7fb 100%);
    border: 1px solid #e8eef6;
}
.shop-tracking-timeline__title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 1rem;
}
.shop-tracking-timeline__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}
@media (min-width: 640px) {
    .shop-tracking-timeline__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 900px) {
    .shop-tracking-timeline__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.shop-tracking-timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: var(--kosar-radius);
    border: 1px solid #e8eef6;
    background: #fff;
    opacity: 0.55;
    transition: opacity 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.shop-tracking-timeline__item.is-done {
    opacity: 1;
    border-color: #c5d4e8;
}
.shop-tracking-timeline__item.is-current {
    opacity: 1;
    border-color: var(--kosar-primary);
    box-shadow: 0 4px 16px rgb(30 58 95 / 0.12);
    background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}
.shop-tracking-timeline__dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: #eef2f7;
    color: #94a3b8;
}
.shop-tracking-timeline__item.is-done .shop-tracking-timeline__dot,
.shop-tracking-timeline__item.is-current .shop-tracking-timeline__dot {
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary));
    color: #fff;
}
.shop-tracking-timeline__label {
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.3;
    color: #475569;
}
.shop-tracking-timeline__cancelled {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #dc2626;
    text-align: center;
}
.shop-tracking-order__stats {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 1.5rem;
}
.shop-tracking-stat {
    border-radius: var(--kosar-radius);
    padding: 1rem 1.15rem;
    border: 1px solid #e8eef6;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.shop-tracking-stat dt {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}
.shop-tracking-stat dd {
    margin-top: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
}
.shop-tracking-stat--accent {
    background: linear-gradient(180deg, #f4f7fb 0%, #eef2f7 100%);
    border-color: #c5d4e8;
}
.shop-tracking-stat--accent dd {
    color: var(--kosar-primary);
}
.shop-tracking-stat--wide {
    grid-column: 1 / -1;
}
.shop-tracking-items {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: var(--kosar-radius);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}
.shop-tracking-items__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}
.shop-tracking-items__row:last-child {
    border-bottom: none;
}
.shop-tracking-items__row:nth-child(even) {
    background: #fafbfd;
}
.shop-tracking-items__name {
    color: #334155;
    font-weight: 500;
}
.shop-tracking-items__price {
    font-weight: 700;
    color: var(--kosar-primary);
    flex-shrink: 0;
}
.shop-tracking-not-found {
    margin-top: 0;
}

/* Mobil menü */
.shop-mobile-nav__head {
    border-bottom: 1px solid #e8eef6;
    padding: 1rem;
}
.shop-mobile-nav__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    font-size: 0.875rem;
}
.shop-mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    font-weight: 600;
    color: #0f172a;
    border-bottom: 1px solid #f1f5f9;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.shop-mobile-nav__link--sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0;
    font-weight: 500;
    color: #475569;
    transition: color 0.2s ease;
}
.shop-mobile-nav__link--sub:hover {
    color: var(--kosar-primary);
}
.shop-mobile-nav__link--parent {
    font-weight: 600;
    color: #334155;
}
.shop-mobile-nav__link--child {
    display: block;
    padding: 0.4rem 0 0.4rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
    border-left: 2px solid #e2e8f0;
    margin-left: 0.25rem;
    margin-bottom: 0.125rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.shop-mobile-nav__link--child:hover {
    color: var(--kosar-primary);
    border-left-color: var(--kosar-primary);
}
.shop-mobile-nav__section {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
}
.shop-mobile-nav__foot {
    border-top: 1px solid #e8eef6;
    padding: 1rem;
    background: #f8fafc;
}
.shop-mobile-nav__locale {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-radius: var(--kosar-radius);
    border: 1px solid #e2e8f0;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.shop-mobile-nav__locale.is-active {
    background: var(--kosar-primary);
    color: #fff;
    border-color: var(--kosar-primary);
}

/* ─── Footer (kfooter) ─── */
@keyframes kfooter-topline {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@keyframes kfooter-trust-shine {
    0%   { transform: translateX(-120%) skewX(-10deg); opacity: 0; }
    15%  { opacity: 0.3; }
    100% { transform: translateX(220%) skewX(-10deg); opacity: 0; }
}

/* Base */
.kfooter {
    position: relative;
    background: linear-gradient(160deg, #152a47 0%, #1e3a5f 55%, #243f6a 100%);
    color: rgb(255 255 255 / 0.72);
    overflow: hidden;
}
.kfooter::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 0%, rgb(93 136 180 / 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 100%, rgb(30 58 95 / 0.25) 0%, transparent 55%);
    pointer-events: none;
}

/* Animated top line */
.kfooter__topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--kosar-primary-dark) 0%,
        #4a7aa8 25%,
        #8fb3d4 50%,
        #4a7aa8 75%,
        var(--kosar-primary-dark) 100%
    );
    background-size: 200% 100%;
    animation: kfooter-topline 8s linear infinite;
    z-index: 2;
}

/* Main body */
.kfooter__body {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 3rem;
}

/* 4-col grid */
.kfooter__grid {
    display: grid;
    /* Mobilde tek sütun, tam genişlik */
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    width: 100%;
}
@media (min-width: 640px) {
    .kfooter__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem 2rem;
    }
}
@media (min-width: 1024px) {
    .kfooter__grid {
        grid-template-columns: 1.6fr repeat(3, 1fr);
        gap: 2rem 3rem;
        align-items: start;
    }
}

/* Brand column */
.kfooter__col--brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.kfooter__col--brand .shop-brand-name {
    color: #fff;
}
.kfooter__col--brand .shop-logo--footer {
    height: 2.5rem;
    max-width: 10rem;
    filter: brightness(0) invert(1) opacity(0.9);
}
.kfooter__col--brand .shop-brand--has-logo .shop-logo--footer {
    filter: brightness(0) invert(1) opacity(0.9);
}
.kfooter__col--brand .shop-brand-tagline {
    color: rgb(255 255 255 / 0.45);
}

/* Footer'da logo/marka hover: koyu değil beyaz kalır */
.kfooter__col--brand .shop-brand--footer.group:hover .shop-brand-name {
    color: #fff;
}
.kfooter__col--brand .shop-brand--footer.group:hover .shop-brand-tagline {
    color: rgb(255 255 255 / 0.65);
}
/* Logo görseli hover'da da beyaz filter korunur, sadece hafif parlama eklenir */
.kfooter__col--brand .shop-brand--has-logo:hover .shop-logo--footer,
.kfooter__col--brand .shop-brand--has-logo:focus-visible .shop-logo--footer {
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgb(255 255 255 / 0.35));
}
/* Metin logoda altçizgi efekti footer'da kapalı (görünmez olurdu) */
.kfooter__col--brand .shop-brand-text::after {
    display: none;
}
.kfooter__desc {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: rgb(255 255 255 / 0.55);
    max-width: 22rem;
}

/* Contact list */
.kfooter__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.kfooter__contact {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    text-decoration: none;
    color: rgb(255 255 255 / 0.65);
    font-size: 0.8125rem;
    line-height: 1.4;
    transition: color 0.22s ease;
}
a.kfooter__contact:hover {
    color: #fff;
}
.kfooter__contact--wa:hover {
    color: #4ade80;
}
.kfooter__contact--addr {
    cursor: default;
    align-items: flex-start;
}
.kfooter__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    margin-top: -0.125rem;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.08);
    border: 1px solid rgb(255 255 255 / 0.1);
    color: rgb(255 255 255 / 0.7);
    transition:
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
}
a.kfooter__contact:hover .kfooter__contact-icon {
    background: rgb(255 255 255 / 0.15);
    color: #fff;
    border-color: rgb(255 255 255 / 0.2);
}
.kfooter__contact--wa:hover .kfooter__contact-icon {
    background: rgb(34 197 94 / 0.18);
    color: #4ade80;
    border-color: rgb(34 197 94 / 0.3);
}
.kfooter__contact-text {
    padding-top: 0.25rem;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}
.kfooter__contact-text--email {
    word-break: break-all;
}

/* Promo */
.kfooter__promo {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgb(255 255 255 / 0.5);
    margin: 0;
}
.kfooter__promo svg {
    opacity: 0.7;
}

/* Link columns */
.kfooter__col {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}
.kfooter__heading {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.4);
    margin: 0 0 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
}
.kfooter__links {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.kfooter__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(255 255 255 / 0.6);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.2s ease, padding-left 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.kfooter__link::before {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: rgb(255 255 255 / 0.5);
    flex-shrink: 0;
    transition: width 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.kfooter__link:hover {
    color: #fff;
    padding-left: 0.1rem;
}
.kfooter__link:hover::before {
    width: 0.75rem;
}

/* ─── kfooter__nl: Newsletter bölümü ─── */
.kfooter__nl {
    position: relative;
    z-index: 1;
    background: rgb(255 255 255 / 0.04);
    border-top: 1px solid rgb(255 255 255 / 0.08);
    border-bottom: 1px solid rgb(255 255 255 / 0.08);
}

.kfooter__nl-inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .kfooter__nl-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        padding: 2rem 0;
    }
}

.kfooter__nl-text {
    min-width: 0;
}

.kfooter__nl-title {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.kfooter__nl-sub {
    margin: 0.25rem 0 0;
    font-size: 0.8125rem;
    color: rgb(255 255 255 / 0.5);
    line-height: 1.5;
}

/* Form — input + buton yan yana */
.kfooter__nl-form {
    flex-shrink: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .kfooter__nl-form {
        width: auto;
        min-width: 22rem;
        max-width: 28rem;
    }
}

.kfooter__nl-field {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.kfooter__nl-input {
    width: 100%;
    height: 2.875rem;
    padding: 0 9rem 0 1.1rem;
    border-radius: 9999px;
    border: 1.5px solid rgb(255 255 255 / 0.15);
    background: rgb(255 255 255 / 0.07);
    color: #fff;
    font-size: 0.875rem;
    font-family: inherit;
    transition:
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.kfooter__nl-input::placeholder {
    color: rgb(255 255 255 / 0.35);
}

.kfooter__nl-input:focus {
    outline: none;
    border-color: rgb(255 255 255 / 0.4);
    background: rgb(255 255 255 / 0.1);
    box-shadow: 0 0 0 3px rgb(255 255 255 / 0.06);
}

/* iOS zoom: mobilde 16px */
@media (max-width: 767px) {
    .kfooter__nl-inner {
        padding: 1.75rem 0.5rem;
    }
    .kfooter__nl-form {
        max-width: 100%;
    }
    .kfooter__nl-field {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
    }
    .kfooter__nl-input {
        height: 3rem;
        padding: 0 1rem;
        font-size: 1rem;
    }
    .kfooter__nl-btn {
        position: static;
        transform: none;
        width: 100%;
        height: 2.875rem;
    }
    .kfooter__nl-btn:hover,
    .kfooter__nl-btn:active {
        transform: none;
    }
}

.kfooter__nl-btn {
    position: absolute;
    right: 0.3rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    height: 2.25rem;
    padding: 0 1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary-dark));
    border: 1px solid rgb(255 255 255 / 0.15);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    font-family: inherit;
    white-space: nowrap;
    cursor: pointer;
    transition:
        filter 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.kfooter__nl-btn:hover {
    filter: brightness(1.15);
    box-shadow: 0 4px 16px rgb(0 0 0 / 0.3);
    transform: translateY(-50%) scale(1.03);
}

.kfooter__nl-btn:active {
    transform: translateY(-50%) scale(0.97);
}

/* Newsletter mobil yerleşim: desktop absolute buton kurallarını kesin ezer */
@media (max-width: 767px) {
    .kfooter__nl {
        background: rgb(255 255 255 / 0.055);
        padding: 0 0.875rem;
    }

    .kfooter__nl-inner {
        width: 100%;
        max-width: 28rem;
        margin: 0 auto;
        padding: 1.45rem 1rem;
        gap: 1rem;
    }

    .kfooter__nl-text {
        padding: 0 0.15rem;
    }

    .kfooter__nl-title {
        font-size: 1rem;
    }

    .kfooter__nl-sub {
        font-size: 0.8rem;
    }

    .kfooter__nl-form {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }

    .kfooter__nl-field {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
        align-items: stretch;
        width: 100%;
    }

    .kfooter__nl-input {
        height: 3rem;
        padding: 0 1rem;
        border-radius: 0.9rem;
        font-size: 1rem;
        background: rgb(255 255 255 / 0.075);
    }

    .kfooter__nl-btn {
        position: static;
        inset: auto;
        transform: none;
        width: 100%;
        height: 2.875rem;
        justify-content: center;
        border-radius: 0.9rem;
        box-shadow: 0 8px 22px rgb(0 0 0 / 0.16);
    }

    .kfooter__nl-btn:hover,
    .kfooter__nl-btn:active {
        transform: none;
    }
}

@media (max-width: 380px) {
    .kfooter__nl {
        padding-inline: 0.65rem;
    }

    .kfooter__nl-inner {
        padding-inline: 0.8rem;
    }
}

/* ─── kft: Trust strip (footer) ─── */
.kft {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: rgb(0 0 0 / 0.2);
    border-top: 1px solid rgb(255 255 255 / 0.06);
}
.kft::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30%;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.04), transparent);
    animation: kfooter-trust-shine 12s ease-in-out infinite;
    pointer-events: none;
}
.kft__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Mobilde ortala; masaüstünde sola hizala */
    justify-content: center;
    gap: 0.75rem 1.25rem;
    padding: 1rem 0;
}
@media (min-width: 1024px) {
    .kft__inner {
        justify-content: flex-start;
    }
}
@media (max-width: 1023px) {
    .kft__inner {
        text-align: center;
    }
}

/* Card logos */
.kft__cards {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 1024px) {
    .kft__cards { justify-content: flex-start; }
}
@media (max-width: 1023px) {
    .kft__cards {
        width: 100%;
        justify-content: center;
    }
}
.kft__cards li {
    display: flex;
}

/* card icon (shared with shop-pay-icon) */
.shop-pay-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 1.75rem;
    border-radius: 0.375rem;
    background: rgb(255 255 255 / 0.95);
    border: 1px solid rgb(255 255 255 / 0.2);
    box-shadow: 0 1px 4px rgb(0 0 0 / 0.25);
    overflow: hidden;
    flex-shrink: 0;
    transition:
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.22s ease,
        opacity 0.22s ease;
}
.shop-pay-icon:hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 6px 16px rgb(0 0 0 / 0.3);
}
.shop-pay-icon__svg {
    display: block;
    width: 100%;
    height: 100%;
}
.shop-pay-icon__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.15rem;
}
.shop-pay-icon__fallback {
    font-size: 0.375rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--kosar-primary);
    padding: 0 0.2rem;
    text-align: center;
    line-height: 1.1;
}
.shop-pay-icon--amex { width: 3rem; }
.shop-pay-icon--visa_electron { width: 2.85rem; }
.shop-pay-icon--custom { width: 2.75rem; height: 1.75rem; }

/* Separator */
.kft__sep {
    display: none;
    width: 1px;
    height: 1.5rem;
    background: rgb(255 255 255 / 0.12);
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .kft__sep { display: block; }
}

/* Badges */
.kft__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width: 1024px) {
    .kft__badges { justify-content: flex-start; }
}
@media (max-width: 1023px) {
    .kft__badges {
        width: 100%;
        justify-content: center;
    }
}
.kft__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.65rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgb(255 255 255 / 0.6);
    background: rgb(255 255 255 / 0.06);
    border: 1px solid rgb(255 255 255 / 0.1);
    text-decoration: none;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}
.kft__badge-icon {
    width: 0.875rem;
    height: 0.875rem;
    opacity: 0.7;
}
.kft__badge--link:hover {
    color: #fff;
    background: rgb(255 255 255 / 0.12);
    border-color: rgb(255 255 255 / 0.18);
}

/* ETBİS — biraz özel */
.kft__badge--etbis {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.35rem 0.65rem;
    border-radius: 0.5rem;
    gap: 0.05rem;
    line-height: 1;
}
.kft__badge-mark {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: rgb(255 255 255 / 0.75);
}
.kft__badge-sub {
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 0.4);
}
.kft__badge--etbis.kft__badge--link:hover .kft__badge-mark {
    color: #fff;
}
.kft__badge--pending {
    opacity: 0.6;
}

/* ─── Bottom bar ─── */
.kfooter__bar {
    position: relative;
    z-index: 1;
    background: rgb(0 0 0 / 0.25);
    border-top: 1px solid rgb(255 255 255 / 0.06);
}
.kfooter__bar-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 0;
    width: 100%;
}
@media (max-width: 639px) {
    .kfooter__bar-inner {
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        padding: 1rem 4.25rem 1.25rem;
        text-align: center;
    }

    .kfooter__copy {
        max-width: 16rem;
    }

    .kfooter__bar-cta {
        justify-content: center;
    }
}
@media (min-width: 640px) {
    .kfooter__bar-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding: 1.1rem 0;
    }
}
.kfooter__copy {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgb(255 255 255 / 0.35);
    letter-spacing: 0.01em;
}
.kfooter__bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgb(255 255 255 / 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
    flex-shrink: 0;
}
.kfooter__bar-cta:hover {
    color: rgb(255 255 255 / 0.85);
}
.kfooter__bar-cta svg {
    opacity: 0.6;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.kfooter__bar-cta:hover svg {
    transform: translateX(2px);
    opacity: 1;
}

.shop-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.shop-input {
    display: block;
    width: 100%;
    border-radius: var(--kosar-radius);
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.65rem 0.9rem;
    font-size: 0.875rem;
    color: #0f172a;
    box-shadow: inset 0 1px 2px rgb(15 23 42 / 0.03);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.shop-input:focus {
    outline: none;
    border-color: var(--kosar-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgb(30 58 95 / 0.08);
}

/* Focus visible */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--kosar-accent);
    outline-offset: 2px;
}

/* Legacy mobile nav IDs (compat) */
#mobile-nav-overlay {
    transition: opacity 0.28s ease, visibility 0.28s ease;
}
#mobile-nav-panel {
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Cookie consent */
.shop-cookie-banner {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem 1rem 1.25rem;
    pointer-events: none;
}

.shop-cookie-banner:not(.hidden) {
    pointer-events: auto;
}

.shop-cookie-banner__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(15 23 42 / 0.42);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.shop-cookie-banner.is-visible .shop-cookie-banner__backdrop {
    opacity: 1;
}

.shop-cookie-banner__wrap {
    position: relative;
    width: 100%;
    max-width: 34rem;
    z-index: 1;
}

.shop-cookie-banner__card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.35rem 1.5rem;
    border-radius: 1.125rem;
    background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
    border: 1px solid rgb(30 58 95 / 0.12);
    box-shadow:
        0 24px 48px rgb(15 23 42 / 0.18),
        0 0 0 1px rgb(255 255 255 / 0.8) inset;
    transform: translateY(1.25rem);
    opacity: 0;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}

.shop-cookie-banner.is-visible .shop-cookie-banner__card {
    transform: translateY(0);
    opacity: 1;
}

.shop-cookie-banner__head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.shop-cookie-banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgb(30 58 95 / 0.1) 0%, rgb(201 162 39 / 0.15) 100%);
    color: var(--kosar-primary);
}

.shop-cookie-banner__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.shop-cookie-banner__title {
    margin: 0 0 0.35rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--kosar-primary-dark);
    line-height: 1.3;
}

.shop-cookie-banner__desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.shop-cookie-banner__link {
    display: inline;
    margin-left: 0.15rem;
    font-weight: 600;
    color: var(--kosar-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.shop-cookie-banner__link:hover {
    color: var(--kosar-accent);
}

.shop-cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: flex-end;
}

.shop-cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.625rem;
    padding: 0.5rem 1.25rem;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: none;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.shop-cookie-btn:active {
    transform: scale(0.98);
}

.shop-cookie-btn--ghost {
    background: #fff;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}

.shop-cookie-btn--ghost:hover {
    border-color: var(--kosar-primary);
    color: var(--kosar-primary);
    background: rgb(30 58 95 / 0.04);
}

.shop-cookie-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--kosar-accent) 0%, var(--kosar-primary) 55%, var(--kosar-primary-dark) 100%);
    box-shadow: 0 4px 14px rgb(30 58 95 / 0.28);
}

.shop-cookie-btn--primary:hover {
    background: linear-gradient(135deg, var(--kosar-primary) 0%, var(--kosar-primary-dark) 100%);
    box-shadow: 0 6px 18px rgb(30 58 95 / 0.35);
}

@media (min-width: 480px) {
    .shop-cookie-banner__actions {
        flex-wrap: nowrap;
    }

    .shop-cookie-btn {
        flex: 0 1 auto;
        min-width: 7.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-cookie-banner__backdrop,
    .shop-cookie-banner__card {
        transition: none;
    }

    .shop-cookie-banner__card {
        transform: none;
        opacity: 1;
    }

    .shop-cookie-banner:not(.is-visible) .shop-cookie-banner__card {
        opacity: 0;
    }
}

/* WhatsApp yüzen buton */
.shop-wa-float {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.15rem;
    height: 3.15rem;
    padding: 0;
    border-radius: 9999px;
    border: 1px solid rgb(255 255 255 / 0.28);
    background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 750;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow:
        0 10px 28px rgb(22 163 74 / 0.28),
        0 0 0 1px rgb(255 255 255 / 0.18) inset;
    backdrop-filter: blur(12px) saturate(1.25);
    -webkit-backdrop-filter: blur(12px) saturate(1.25);
    isolation: isolate;
    overflow: hidden;
    transition:
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}
.shop-wa-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 1px solid rgb(37 211 102 / 0.55);
    pointer-events: none;
    animation: shop-wa-pulse 3.2s ease-out infinite;
    z-index: -1;
}
.shop-wa-float::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgb(255 255 255 / 0.22) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.shop-wa-float:hover {
    transform: translateY(-2px);
    border-color: rgb(255 255 255 / 0.42);
    box-shadow:
        0 14px 34px rgb(22 163 74 / 0.36),
        0 0 0 1px rgb(255 255 255 / 0.22) inset;
}
.shop-wa-float:hover::after {
    transform: translateX(120%);
}
.shop-wa-float__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 9999px;
    background: rgb(255 255 255 / 0.14);
    box-shadow:
        0 0 0 1px rgb(255 255 255 / 0.18) inset;
    flex-shrink: 0;
}
.shop-wa-float__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}
@keyframes shop-wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    75%,
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}
@media (max-width: 479px) {
    .shop-wa-float {
        left: 0.85rem;
        bottom: 0.85rem;
        width: 2.9rem;
        height: 2.9rem;
    }
    .shop-wa-float__icon {
        width: 2.05rem;
        height: 2.05rem;
    }
}

/* Yukarı çık butonu */
.shop-scroll-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 9999px;
    border: 1px solid rgb(255 255 255 / 0.16);
    background: linear-gradient(135deg, rgb(21 42 71 / 0.96), rgb(30 58 95 / 0.92));
    color: #fff;
    box-shadow:
        0 10px 28px rgb(15 23 42 / 0.18),
        0 0 0 1px rgb(255 255 255 / 0.08) inset;
    backdrop-filter: blur(12px) saturate(1.25);
    -webkit-backdrop-filter: blur(12px) saturate(1.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem) scale(0.94);
    transition:
        opacity 0.24s ease,
        visibility 0.24s ease,
        transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}
.shop-scroll-top::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgb(143 179 212 / 0.32);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.24s ease, transform 0.24s ease;
    pointer-events: none;
}
.shop-scroll-top svg {
    width: 1.1rem;
    height: 1.1rem;
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.shop-scroll-top:hover {
    border-color: rgb(143 179 212 / 0.45);
    box-shadow:
        0 14px 34px rgb(15 23 42 / 0.24),
        0 0 0 1px rgb(143 179 212 / 0.18) inset;
    transform: translateY(-2px) scale(1);
}
.shop-scroll-top:hover::after {
    opacity: 1;
    transform: scale(1.08);
}
.shop-scroll-top:hover svg {
    transform: translateY(-2px);
}
@media (max-width: 479px) {
    .shop-scroll-top {
        right: 0.85rem;
        bottom: 0.85rem;
        width: 2.65rem;
        height: 2.65rem;
    }
}

/* Bakım sayfası (vitrin kapalı) */
.shop-maint-body {
    margin: 0;
    min-height: 100dvh;
    font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
    color: #0f172a;
    background: #0c1628;
}

.shop-maint {
    position: relative;
    isolation: isolate;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 5vw, 3rem) 1.25rem;
    overflow: hidden;
}

.shop-maint__scene {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shop-maint__mesh {
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 55% 45% at 18% 22%, rgb(74 100 137 / 0.45) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 82% 78%, rgb(45 74 115 / 0.5) 0%, transparent 50%),
        linear-gradient(155deg, #0c1628 0%, #152a47 42%, #1e3a5f 100%);
    animation: shop-maint-mesh 18s ease-in-out infinite alternate;
}

@keyframes shop-maint-mesh {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.06) translate(-1%, 1%); }
}

.shop-maint__grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 75%);
}

.shop-maint__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    opacity: 0.7;
}

.shop-maint__orb--1 {
    width: 28rem;
    height: 28rem;
    top: -8rem;
    right: -10rem;
    background: rgb(74 100 137 / 0.55);
    animation: shop-maint-float-a 14s ease-in-out infinite;
}

.shop-maint__orb--2 {
    width: 22rem;
    height: 22rem;
    bottom: -6rem;
    left: -8rem;
    background: rgb(30 58 95 / 0.65);
    animation: shop-maint-float-b 16s ease-in-out infinite;
}

.shop-maint__orb--3 {
    width: 14rem;
    height: 14rem;
    top: 42%;
    left: 58%;
    background: rgb(147 168 201 / 0.35);
    animation: shop-maint-float-c 11s ease-in-out infinite;
}

@keyframes shop-maint-float-a {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-3%, 4%) scale(1.05); }
}

@keyframes shop-maint-float-b {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(4%, -3%); }
}

@keyframes shop-maint-float-c {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-6%, 2%) scale(1.12); }
}

.shop-maint__spark {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px rgb(255 255 255 / 0.8);
    opacity: 0;
    animation: shop-maint-spark 4s ease-in-out infinite;
}

.shop-maint__spark--1 { top: 18%; left: 22%; animation-delay: 0s; }
.shop-maint__spark--2 { top: 62%; left: 78%; animation-delay: 1.2s; }
.shop-maint__spark--3 { top: 28%; left: 68%; animation-delay: 2.4s; }
.shop-maint__spark--4 { top: 72%; left: 32%; animation-delay: 0.8s; }

@keyframes shop-maint-spark {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    45%, 55% { opacity: 0.85; transform: scale(1.2); }
}

.shop-maint__card {
    position: relative;
    z-index: 1;
    width: min(100%, 26rem);
    text-align: center;
    padding: 2.25rem 1.75rem 1.75rem;
    border-radius: 1.75rem;
    background: rgb(255 255 255 / 0.97);
    border: 1px solid rgb(255 255 255 / 0.65);
    box-shadow:
        0 0 0 1px rgb(30 58 95 / 0.06),
        0 32px 64px rgb(0 0 0 / 0.35),
        0 8px 24px rgb(30 58 95 / 0.12);
    backdrop-filter: blur(20px);
    animation: shop-maint-card-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes shop-maint-card-in {
    from {
        opacity: 0;
        transform: translateY(1.5rem) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.shop-maint__card-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
}

.shop-maint__card-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 45%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgb(255 255 255 / 0.55) 50%,
        transparent 65%
    );
    transform: rotate(12deg);
    animation: shop-maint-shine 5s ease-in-out infinite;
}

@keyframes shop-maint-shine {
    0%, 70%, 100% { left: -60%; opacity: 0; }
    85% { opacity: 1; }
    100% { left: 120%; }
}

.shop-maint__logo-stage {
    position: relative;
    width: 7.5rem;
    height: 7.5rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-maint__logo-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg 60deg,
        var(--kosar-accent) 120deg,
        var(--kosar-primary) 200deg,
        transparent 280deg 360deg
    );
    animation: shop-maint-ring 4s linear infinite;
    opacity: 0.85;
}

.shop-maint__logo-ring--2 {
    inset: 0.45rem;
    opacity: 0.35;
    animation-direction: reverse;
    animation-duration: 6s;
}

@keyframes shop-maint-ring {
    to { transform: rotate(360deg); }
}

.shop-maint__logo-core {
    position: relative;
    z-index: 1;
    width: 5.75rem;
    height: 5.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.35rem;
    background: #fff;
    box-shadow:
        0 4px 20px rgb(30 58 95 / 0.15),
        inset 0 0 0 1px rgb(30 58 95 / 0.06);
    animation: shop-maint-logo-pulse 3s ease-in-out infinite;
}

@keyframes shop-maint-logo-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgb(30 58 95 / 0.15), inset 0 0 0 1px rgb(30 58 95 / 0.06); }
    50% { transform: scale(1.02); box-shadow: 0 8px 28px rgb(30 58 95 / 0.22), inset 0 0 0 1px rgb(30 58 95 / 0.08); }
}

.shop-maint__logo-img {
    max-width: 4.75rem;
    max-height: 3.25rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

.shop-maint__logo-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(145deg, #2d4a73, var(--kosar-primary));
    box-shadow: 0 4px 14px rgb(30 58 95 / 0.35);
}

.shop-maint__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem 0.35rem 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #b45309;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
    border: 1px solid #fde68a;
    border-radius: 9999px;
    animation: shop-maint-badge-in 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes shop-maint-badge-in {
    from { opacity: 0; transform: translateY(0.5rem); }
    to { opacity: 1; transform: translateY(0); }
}

.shop-maint__badge-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgb(245 158 11 / 0.35);
    animation: shop-maint-dot 1.6s ease-in-out infinite;
}

@keyframes shop-maint-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.shop-maint__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.35rem, 4vw, 1.625rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    background: linear-gradient(135deg, #0f172a 0%, var(--kosar-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shop-maint-text-in 0.8s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.shop-maint__message {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    animation: shop-maint-text-in 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes shop-maint-text-in {
    from { opacity: 0; transform: translateY(0.65rem); }
    to { opacity: 1; transform: translateY(0); }
}

.shop-maint__loader {
    margin-top: 1.5rem;
    animation: shop-maint-text-in 0.8s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.shop-maint__loader-track {
    height: 4px;
    border-radius: 9999px;
    background: #e2e8f0;
    overflow: hidden;
}

.shop-maint__loader-bar {
    height: 100%;
    width: 40%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--kosar-accent), var(--kosar-primary), var(--kosar-accent));
    background-size: 200% 100%;
    animation: shop-maint-bar 2.2s ease-in-out infinite;
}

@keyframes shop-maint-bar {
    0% { transform: translateX(-120%); background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { transform: translateX(320%); background-position: 0% 50%; }
}

.shop-maint__loader-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.shop-maint__loader-dots span {
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: var(--kosar-primary);
    opacity: 0.35;
    animation: shop-maint-dots 1.2s ease-in-out infinite;
}

.shop-maint__loader-dots span:nth-child(2) { animation-delay: 0.15s; }
.shop-maint__loader-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes shop-maint-dots {
    0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-4px); }
}

.shop-maint__hint {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.4rem;
    margin: 1.35rem 0 0;
    padding-top: 1.15rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.75rem;
    line-height: 1.5;
    color: #94a3b8;
    text-align: left;
    animation: shop-maint-text-in 0.8s 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.shop-maint__hint-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    color: #cbd5e1;
}

@media (min-width: 480px) {
    .shop-maint__card {
        padding: 2.5rem 2.25rem 2rem;
        width: min(100%, 28rem);
    }

    .shop-maint__logo-stage {
        width: 8.5rem;
        height: 8.5rem;
    }

    .shop-maint__logo-core {
        width: 6.5rem;
        height: 6.5rem;
    }

    .shop-maint__logo-img {
        max-width: 5.5rem;
        max-height: 3.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-maint__mesh,
    .shop-maint__orb,
    .shop-maint__spark,
    .shop-maint__logo-ring,
    .shop-maint__logo-core,
    .shop-maint__card-shine::after,
    .shop-maint__loader-bar,
    .shop-maint__loader-dots span,
    .shop-maint__badge-dot {
        animation: none;
    }

    .shop-maint__card,
    .shop-maint__badge,
    .shop-maint__title,
    .shop-maint__message,
    .shop-maint__loader,
    .shop-maint__hint {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* 404 ve hata sayfaları */
.shop-error-page {
    position: relative;
    margin: -1rem -1rem 0;
    padding: 3rem 1rem 4rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .shop-error-page {
        margin: 0;
        padding: 4rem 0 5rem;
    }
}

.shop-error-page__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shop-error-page__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.shop-error-page__orb--1 {
    width: 16rem;
    height: 16rem;
    top: -2rem;
    left: 50%;
    transform: translateX(-60%);
    background: rgb(30 58 95 / 0.14);
}

.shop-error-page__orb--2 {
    width: 12rem;
    height: 12rem;
    bottom: 0;
    right: 10%;
    background: rgb(74 100 137 / 0.16);
}

.shop-error-page__inner {
    position: relative;
    z-index: 1;
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}

.shop-error-page__code {
    margin: 0;
    font-size: clamp(5rem, 18vw, 7.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(160deg, var(--kosar-primary) 0%, var(--kosar-accent) 55%, #93a8c9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    user-select: none;
}

.shop-error-page--404 .shop-error-page__code {
    opacity: 0.92;
}

.shop-error-page__icon {
    width: 3rem;
    height: 3rem;
    margin: -0.5rem auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    color: #fff;
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary));
    box-shadow: 0 8px 24px rgb(30 58 95 / 0.25);
}

.shop-error-page__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.shop-error-page__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.shop-error-page__lead {
    margin: 0 auto;
    max-width: 28rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
}

.shop-error-page__search {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 24rem;
    margin: 1.75rem auto 0;
}

@media (min-width: 480px) {
    .shop-error-page__search {
        flex-direction: row;
        align-items: stretch;
    }
}

.shop-error-page__search-input {
    flex: 1;
    min-width: 0;
}

.shop-error-page__search-btn {
    flex-shrink: 0;
    padding: 0.65rem 1.25rem;
}

.shop-error-page__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 2rem;
}

.shop-error-page__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    border-radius: 9999px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.shop-error-page__link svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.shop-error-page__link:hover {
    border-color: var(--kosar-primary);
    color: var(--kosar-primary);
    box-shadow: 0 4px 14px rgb(30 58 95 / 0.08);
}

.shop-error-page__link--primary {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--kosar-accent), var(--kosar-primary));
    box-shadow: 0 4px 14px rgb(30 58 95 / 0.22);
}

.shop-error-page__link--primary:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgb(30 58 95 / 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ ACCORDION — shop-faq
   ═══════════════════════════════════════════════════════════════ */

.shop-faq {
    margin-top: 4rem;
    padding: 3.5rem 0 0;
    border-top: 1.5px solid #e9eef5;
}

.shop-faq__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.shop-faq__badge {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kosar-primary);
    background: rgb(30 58 95 / 0.07);
    border-radius: 9999px;
    margin-bottom: 0.85rem;
}

.shop-faq__title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.shop-faq__sub {
    font-size: 0.93rem;
    color: #64748b;
    margin: 0;
}

.shop-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 52rem;
    margin: 0 auto;
}

.shop-faq__item {
    background: #fff;
    border: 1.5px solid #e9eef5;
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.shop-faq__item:hover {
    border-color: rgb(30 58 95 / 0.25);
    box-shadow: 0 4px 18px rgb(30 58 95 / 0.07);
}

.shop-faq__item.is-open {
    border-color: var(--kosar-primary);
    box-shadow: 0 6px 24px rgb(30 58 95 / 0.1);
}

.shop-faq__q {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 1.35rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

.shop-faq__q-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    background: #f1f5f9;
    color: var(--kosar-primary);
    transition: background 0.2s, color 0.2s;
}

.shop-faq__item.is-open .shop-faq__q-num {
    background: var(--kosar-primary);
    color: #fff;
}

.shop-faq__q-text {
    flex: 1;
    font-size: 0.97rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.45;
    transition: color 0.15s;
}

.shop-faq__item.is-open .shop-faq__q-text {
    color: var(--kosar-primary);
}

.shop-faq__chevron {
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s;
    line-height: 0;
}

.shop-faq__item.is-open .shop-faq__chevron {
    transform: rotate(180deg);
    color: var(--kosar-primary);
}

.shop-faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.shop-faq__item.is-open .shop-faq__a {
    grid-template-rows: 1fr;
}

.shop-faq__a-inner {
    overflow: hidden;
    padding: 0 1.35rem 0 4.35rem;
    min-height: 0;
    font-size: 0.93rem;
    line-height: 1.7;
    color: #475569;
}

.shop-faq__item.is-open .shop-faq__a-inner {
    padding-bottom: 1.35rem;
}

.shop-faq__a-inner strong {
    color: #1e293b;
    font-weight: 600;
}

.shop-faq__a-inner a {
    color: var(--kosar-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Mobile */
@media (max-width: 640px) {
    .shop-faq {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
    .shop-faq__q {
        padding: 1rem;
        gap: 0.75rem;
    }
    .shop-faq__q-num {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.65rem;
    }
    .shop-faq__q-text {
        font-size: 0.9rem;
    }
    .shop-faq__a-inner {
        padding-left: 3.5rem;
        font-size: 0.88rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .shop-faq__a {
        transition: none;
    }
    .shop-faq__chevron {
        transition: none;
    }
    .shop-faq__item {
        transition: none;
    }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE MODERNIZATION — Animations & Polish
   ═══════════════════════════════════════════════════════════════ */

/* ── Reading Progress Bar ── */
.shop-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 9999;
    pointer-events: none;
}
.shop-reading-progress__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--kosar-primary-dark, #0c1e3a), #2563eb, var(--kosar-primary, #1e3a5f));
    border-radius: 0 3px 3px 0;
    transition: width 0.08s linear;
}

/* ── Article hero image ── */
.shop-article-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--kosar-radius-lg, 1rem);
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgb(30 58 95 / 0.12);
}
.shop-article-hero img {
    width: 100%;
    max-height: 28rem;
    object-fit: cover;
    display: block;
    animation: shop-article-hero-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.shop-article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgb(15 23 42 / 0.18) 100%);
    pointer-events: none;
}
@keyframes shop-article-hero-in {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Article meta row ── */
.shop-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0.375rem;
}
.shop-article-meta__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #cbd5e1;
    display: inline-block;
}
.shop-article-meta__date {
    color: var(--kosar-primary, #1e3a5f);
}
.shop-article-meta__reading {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #94a3b8;
}

/* ── Article tag chips ── */
.shop-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.875rem;
}
.shop-article-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgb(30 58 95 / 0.07);
    color: var(--kosar-primary, #1e3a5f);
    border: 1px solid rgb(30 58 95 / 0.12);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.shop-article-tag:hover {
    background: var(--kosar-primary, #1e3a5f);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgb(30 58 95 / 0.2);
}

/* ── Prose article content improvements ── */
.shop-panel--prose {
    line-height: 1.85;
    font-size: 1.0625rem;
    color: #1e293b;
}
.shop-panel--prose > *:first-child {
    font-size: 1.0625rem;
    color: #334155;
    line-height: 1.75;
}
.shop-panel--prose h2 {
    margin-top: 2.5rem;
    margin-bottom: 0.875rem;
    font-size: 1.4375rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgb(30 58 95 / 0.1);
    position: relative;
}
.shop-panel--prose h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 2.5rem;
    height: 2px;
    background: var(--kosar-primary, #1e3a5f);
}
.shop-panel--prose h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.625rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
}
.shop-panel--prose a {
    color: var(--kosar-primary, #1e3a5f);
    text-decoration: underline;
    text-decoration-color: rgb(30 58 95 / 0.3);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
.shop-panel--prose a:hover {
    color: var(--kosar-primary-dark, #0c1e3a);
    text-decoration-color: var(--kosar-primary, #1e3a5f);
}
.shop-panel--prose blockquote {
    border-left: 3px solid var(--kosar-primary, #1e3a5f);
    padding: 0.75rem 1.25rem;
    margin: 1.5rem 0;
    background: rgb(30 58 95 / 0.04);
    border-radius: 0 0.5rem 0.5rem 0;
    color: #334155;
    font-style: italic;
}
.shop-panel--prose ul li::marker {
    color: var(--kosar-primary, #1e3a5f);
}
.shop-panel--prose ol li::marker {
    color: var(--kosar-primary, #1e3a5f);
    font-weight: 700;
}
.shop-panel--prose strong {
    color: #0f172a;
    font-weight: 700;
}

/* ── Reveal direction variants ── */
.shop-reveal--left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-reveal--left.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.shop-reveal--right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-reveal--right.is-visible {
    opacity: 1;
    transform: translateX(0);
}
.shop-reveal--scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-reveal--scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* ── Blog card image zoom ── */
.shop-blog-card__media {
    overflow: hidden;
}
.shop-blog-card__media img {
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.shop-blog-card:hover .shop-blog-card__media img {
    transform: scale(1.07);
}

/* Blog card — daha şık padding ── */
.shop-blog-card {
    padding: 0;
}
.shop-blog-card__body {
    padding: 1rem 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ── Section heading animated accent ── */
.shop-section-title {
    position: relative;
    display: inline-block;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.shop-section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 2rem;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--kosar-primary-dark, #0c1e3a), var(--kosar-primary, #1e3a5f));
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-visible .shop-section-title::after,
.shop-section-title:hover::after {
    width: 100%;
}

/* ── PDP price box entrance ── */
.shop-pdp-price-box {
    animation: shop-pdp-price-in 0.6s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes shop-pdp-price-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── PDP gallery entrance ── */
.shop-pdp-gallery {
    animation: shop-pdp-gallery-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes shop-pdp-gallery-in {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── PDP info entrance ── */
.shop-pdp-info {
    animation: shop-pdp-info-in 0.7s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes shop-pdp-info-in {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Related products section ── */
.shop-related-section {
    animation: shop-reveal-up 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes shop-reveal-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.shop-related-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}
.shop-related-section h2::after {
    content: '';
    display: block;
    width: 2rem;
    height: 3px;
    border-radius: 2px;
    margin-top: 0.5rem;
    background: var(--kosar-primary, #1e3a5f);
}

/* ── Catalog page description ── */
.shop-catalog-intro {
    margin-top: 3.25rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border-radius: var(--kosar-radius-lg, 1rem);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--kosar-primary, #1e3a5f);
}
@media (max-width: 767px) {
    .shop-catalog-intro {
        margin-top: 2.25rem;
        padding: 1.35rem 1.25rem;
    }
}
.shop-catalog-intro p {
    color: #334155;
    line-height: 1.8;
}
.shop-catalog-intro h2,
.shop-catalog-intro h3 {
    color: #0f172a;
    font-weight: 700;
}

/* ── Breadcrumb improvement ── */
.shop-breadcrumb {
    animation: shop-breadcrumb-in 0.4s ease both;
}
@keyframes shop-breadcrumb-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Reduced motion: disable new animations ── */
@media (prefers-reduced-motion: reduce) {
    .shop-article-hero img,
    .shop-pdp-price-box,
    .shop-pdp-gallery,
    .shop-pdp-gallery__main::before,
    .shop-pdp-info,
    .shop-pdp-panel,
    .shop-pdp-panel:not(.hidden),
    .shop-auth-modal__dialog,
    .shop-auth-modal__panel:not(.hidden),
    .shop-reading-progress__bar,
    .shop-reveal--left,
    .shop-reveal--right,
    .shop-reveal--scale,
    .shop-section-title::after {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}
