/* ============================================================
   Sendesimdi.com â€” MÃ¼ÅŸteri ArayÃ¼zÃ¼ CSS  v2
   Renk Sistemi: Logodaki mavi #1565C0, kÄ±rmÄ±zÄ± #E53935, koyu #1a1d2e
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #f4f6fb;
    color: #1a1d2e;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

ul {
    list-style: none
}

button {
    font-family: inherit
}

/* â”€â”€ Design Tokens â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
    --blue: #1565C0;
    --blue-dark: #0D47A1;
    --blue-light: #E3F2FD;
    --red: #E53935;
    --red-light: #FFEBEE;
    --dark: #1a1d2e;
    --text: #2d3142;
    --muted: #6b7280;
    --light: #9ca3af;
    --bg: #f4f6fb;
    --surface: #ffffff;
    --border: #e5e9f2;
    --radius: 12px;
    --radius-lg: 18px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06);
    --shadow: 0 4px 18px rgba(0, 0, 0, .09);
    --shadow-lg: 0 16px 48px rgba(21, 101, 192, .18);
    --navbar-h: 80px;
    --t: .22s ease;
}

/* â”€â”€ Navbar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 300;
    height: var(--navbar-h);
    background: #fff;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.navbar-inner {
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

/* Logo */
.navbar-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-left: -1.5rem; /* Logoyu tamamen sola yapıştırmak için */
}

.navbar-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

/* Search â€” navbar tam ortasÄ± */
.search-form {
    position: relative;
    flex: 1;
    margin: 0 2rem;
    width: 100%;
    max-width: 500px;
    z-index: 10;
}

.search-form input {
    width: 100%;
    height: 46px;
    border: 2px solid var(--border);
    border-radius: 100px;
    padding: 0 52px 0 20px;
    font-size: .93rem;
    font-family: inherit;
    background: #ffffff;
    color: var(--text);
    outline: none;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.search-form input:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 101, 192, .1);
}

.search-form input::placeholder {
    color: var(--light)
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 100px;
    background: var(--blue);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background var(--t);
}

.search-submit:hover {
    background: var(--blue-dark)
}

/* Arama Ã¶nerileri */
.search-drop {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 400;
}

.search-drop.open {
    display: block
}

.sdrop-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .65rem 1.1rem;
    cursor: pointer;
    transition: background var(--t);
    font-size: .88rem;
}

.sdrop-item:hover {
    background: var(--bg)
}

.sdrop-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border)
}

.sdrop-item .si-name {
    font-weight: 500;
    flex: 1
}

.sdrop-item .si-price {
    color: var(--blue);
    font-weight: 700;
    font-size: .85rem
}

/* Nav saÄŸ */
.navbar-right {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-left: auto;
    flex-shrink: 0
}

.nav-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--t);
    color: var(--text);
}

.nav-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light)
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    background: var(--red);
    color: #fff;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
}

.btn-login {
    height: 42px;
    padding: 0 1.3rem;
    border-radius: 100px;
    background: var(--blue);
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    border: none;
    cursor: pointer;
    transition: background var(--t);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    background: var(--blue-dark)
}

/* â”€â”€ Auth Dropdown â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.auth-dropdown {
    position: relative;
}

.auth-trigger {
    /* nav-btn stilini devralÄ±r, ek stil yok */
}

.auth-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
    z-index: 500;
}

.auth-dropdown:hover .auth-menu,
.auth-dropdown:focus-within .auth-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.auth-menu-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .75rem 1.1rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    transition: background var(--t), color var(--t);
    border-bottom: 1px solid var(--border);
}

.auth-menu-item:last-child {
    border-bottom: none
}

.auth-menu-item:hover {
    background: var(--blue-light);
    color: var(--blue)
}

.ami-icon {
    font-size: 1rem;
    flex-shrink: 0
}

/* â”€â”€ Kategori ÅŸeridi â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* -- Shop Layout (Sidebar + Icerik) --------------------------------- */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 1rem 2rem;
    align-items: start;
    scroll-margin-top: 80px;
}

/* -- Sol Sidebar ---------------------------------------------------- */
.cat-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 0;
    position: sticky;
    top: calc(var(--navbar-h) + 1rem);
    max-height: calc(100vh - var(--navbar-h) - 2rem);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.cat-sidebar::-webkit-scrollbar { width: 4px; }
.cat-sidebar::-webkit-scrollbar-track { background: transparent; }
.cat-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.cat-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem .75rem;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: .5rem;
}
.cat-sidebar-title {
    font-size: .8rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.cat-sidebar-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}
.cat-all-link {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1rem;
    font-size: .87rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color var(--t), background var(--t);
    margin: 0 .4rem .2rem;
    border-radius: var(--radius);
}
.cat-all-link svg { opacity: .5; flex-shrink: 0; }
.cat-all-link:hover { color: var(--blue); background: var(--blue-light); }
.cat-all-link.active { color: var(--blue); background: var(--blue-light); font-weight: 700; }
.cat-all-link.active svg { opacity: 1; }

.cat-group { border-top: 1px solid var(--border); }
.cat-group:last-child { border-bottom: 1px solid var(--border); }
.cat-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .4rem;
    width: 100%;
    padding: .65rem 1rem;
    background: none;
    transition: background var(--t);
}
.cat-group-header:hover { background: var(--blue-light); }
.cat-group-header.active { background: var(--blue-light); }

/* Ana kategori ismi — tıklanabilir link */
.cat-group-name {
    flex: 1;
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color var(--t);
    padding: .1rem 0;
}
.cat-group-name:hover { color: var(--blue); }
.cat-group-header.active .cat-group-name { color: var(--blue); }
.cat-group-name.cat-name-active { color: var(--blue); font-weight: 700; }

/* Ok butonu — sadece accordion toggle */
.cat-chevron-btn {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: .2rem .3rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: background var(--t);
}
.cat-chevron-btn:hover { background: rgba(21,101,192,.12); }
.cat-chevron {
    flex-shrink: 0;
    transition: transform .25s ease;
    color: var(--muted);
}
.cat-group.open > .cat-group-header .cat-chevron { transform: rotate(180deg); }

.cat-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: var(--bg);
}
.cat-sub-list.open { max-height: 600px; }
.cat-sub-item {
    display: block;
    padding: .5rem 1rem .5rem 1.6rem;
    font-size: .84rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    transition: color var(--t), background var(--t);
    border-left: 3px solid transparent;
    margin-left: .4rem;
}
.cat-sub-item:hover { color: var(--blue); background: var(--blue-light); border-left-color: var(--blue); }
.cat-sub-item.active { color: var(--blue); font-weight: 700; border-left-color: var(--blue); background: var(--blue-light); }
.cat-sub-parent { font-style: italic; font-size: .82rem; }
.shop-content { min-width: 0; }
/* ── HERO / Manşet (Slider) ────────────────────────────────────── */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    display: flex;
    width: 100%;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    padding: 4.5rem 2rem;
    display: none;
}
.hero-slide.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* Temalar */
.hero-slide {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1976D2 100%);
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* Slider Controls */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0; right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}
.slider-btn {
    pointer-events: auto;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: var(--t);
}
.slider-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}
.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}
.slider-dots .dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--t);
    border: 2px solid transparent;
}
.slider-dots .dot:hover {
    background: rgba(255,255,255,0.6);
}
.slider-dots .dot.active {
    background: #fff;
    transform: scale(1.2);
    border-color: rgba(0,0,0,0.1);
}
.cat-mob-toggle {
    display: none;
    align-items: center;
    gap: .5rem;
    padding: .45rem .9rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    transition: border-color var(--t), color var(--t);
}
.cat-mob-toggle:hover { border-color: var(--blue); color: var(--blue); }
.cat-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 399;
}


.hero-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 3rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    border-radius: 100px;
    padding: .3em 1em;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    backdrop-filter: blur(8px);
}

.hero-grid-layout {
    grid-template-columns: 1fr 1.5fr; /* Yazılar dar, ürünler geniş alan kaplar */
    align-items: center;
}

.hero-3-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.hero-slider-wrap h1 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.hero-slider-wrap h1 span {
    color: #FFC107
}

.hero-slider-wrap p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 440px;
}

.hero-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.btn-hero-primary {
    height: 50px;
    padding: 0 1.8rem;
    border-radius: 100px;
    background: #fff;
    color: var(--blue);
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: var(--t);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.btn-hero-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px)
}

.btn-hero-outline {
    height: 50px;
    padding: 0 1.8rem;
    border-radius: 100px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid rgba(255, 255, 255, .5);
    cursor: pointer;
    transition: var(--t);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: #fff
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-card-float {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
    text-align: center;
    min-width: 240px;
    animation: floatY 4s ease-in-out infinite;
}

.hero-card-float .hcf-icon {
    font-size: 3.5rem;
    margin-bottom: .8rem
}

.hero-card-float .hcf-label {
    font-size: .85rem;
    opacity: .7;
    margin-bottom: .3rem
}

.hero-card-float .hcf-val {
    font-size: 2rem;
    font-weight: 800
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* ── Hero Ürün Kartı ─────────────────────────────────────── */
.hero-product-card {
    position: relative;
    padding: 1.5rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    text-align: center;
    height: 100%;
}

.compact-card {
    min-width: unset;
    max-width: unset;
}

.compact-card .hero-product-img {
    width: 90px;
    height: 90px;
    padding: 0.3rem;
}

.compact-card .hero-product-name {
    font-size: 0.8rem;
    line-height: 1.2;
}

.compact-card .hero-product-price {
    font-size: 1.1rem;
}

.hero-product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    text-align: left;
    width: 100%;
}
.hero-product-features li {
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.hero-discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FF5722;
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
    padding: .3em .75em;
    border-radius: 100px;
    box-shadow: 0 3px 10px rgba(255,87,34,.4);
    white-space: nowrap;
    letter-spacing: .02em;
}

.hero-product-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255,255,255,.1);
    padding: .4rem;
}

.hero-product-name {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-product-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-old-price {
    font-size: 0.95rem;
    color: #ffcccc; /* Daha açık ve belirgin bir renk */
    text-decoration: line-through;
    text-decoration-color: #ff4444; /* Çizgi rengini kırmızı yaparak vurgula */
    text-decoration-thickness: 2px;
    font-weight: 700;
}

.hero-product-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: #FFC107;
    letter-spacing: -.02em;
}

.hero-product-btn {
    display: inline-block;
    background: #fff;
    color: var(--blue);
    font-size: .8rem;
    font-weight: 700;
    padding: .45em 1.2em;
    border-radius: 100px;
    text-decoration: none;
    transition: transform var(--t), box-shadow var(--t);
    box-shadow: 0 4px 14px rgba(0,0,0,.2);
    margin-top: .2rem;
}

.hero-product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
}

.pulse-btn {
    animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* â”€â”€ GÃ¼ven BandÄ± â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-band {
    background: #fff;
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 1.5rem;
    border-right: 1px solid var(--border);
    transition: background var(--t);
}

.trust-item:last-child {
    border-right: none
}

.trust-item:hover {
    background: var(--bg)
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ti-blue {
    background: var(--blue-light);
    color: var(--blue)
}

.ti-red {
    background: var(--red-light);
    color: var(--red)
}

.ti-green {
    background: #E8F5E9;
    color: #2E7D32
}

.ti-amber {
    background: #FFF8E1;
    color: #F57F17
}

.trust-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: var(--text)
}

.trust-text span {
    font-size: .78rem;
    color: var(--muted)
}

/* â”€â”€ Section BaÅŸlÄ±ÄŸÄ± â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.6rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -.02em;
}

.section-head h2 span {
    color: var(--blue)
}

.section-head-line {
    width: 40px;
    height: 4px;
    background: var(--blue);
    border-radius: 100px;
    margin-top: .4rem;
}

.section-link {
    color: var(--blue);
    font-weight: 600;
    font-size: .88rem;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: .35rem 1rem;
    transition: var(--t);
    white-space: nowrap;
}

.section-link:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue)
}

/* â”€â”€ SÄ±ralama Ã‡ubuÄŸu â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
    padding: .8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sort-info {
    font-size: .88rem;
    color: var(--muted)
}

.sort-info strong {
    color: var(--text)
}

.sort-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: .4rem .9rem;
    font-size: .85rem;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    outline: none;
}

.sort-select:focus {
    border-color: var(--blue)
}

/* â”€â”€ ÃœrÃ¼n Grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1.1rem;
}

/* â”€â”€ ÃœrÃ¼n KartÄ± â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(21, 101, 192, .3);
}

/* GÃ¶rsel */
.card-img {
    aspect-ratio: 1/1;
    background: var(--bg);
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.product-card:hover .card-img img {
    transform: scale(1.07)
}

.card-no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--light);
    background: linear-gradient(135deg, #f8f9fc 0%, #edf0f7 100%);
}

/* Rozetler */
.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.badge {
    display: inline-block;
    padding: .2em .65em;
    border-radius: 6px;
    font-size: .68rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .02em;
}

.badge-new {
    background: var(--blue);
    color: #fff
}

.badge-hot {
    background: var(--red);
    color: #fff
}

.badge-out {
    background: #6b7280;
    color: #fff
}

.badge-low {
    background: #F57F17;
    color: #fff
}

/* HÄ±zlÄ± sepet butonu */
.card-quick-add { display: none !important;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--blue);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(8px) scale(.9);
    transition: opacity var(--t), transform var(--t), background var(--t);
    box-shadow: 0 4px 14px rgba(21, 101, 192, .45);
}

.product-card:hover .card-quick-add { display: none !important;
    opacity: 1;
    transform: translateY(0) scale(1)
}

.card-quick-add:hover {
    background: var(--blue-dark)
}

/* Kart gÃ¶vdesi */
.card-body {
    padding: .9rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .25rem;
}

.card-cat {
    font-size: .7rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.card-name {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-foot {
    margin-top: auto;
    padding-top: .7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}

.card-price .cur {
    font-size: .78rem;
    font-weight: 500;
    color: var(--muted);
    margin-right: .1rem
}

.card-stock-ok {
    font-size: .7rem;
    color: #2E7D32;
    font-weight: 600
}

.card-stock-out {
    font-size: .7rem;
    color: var(--muted)
}

/* â”€â”€ Ä°kinci GÃ¼ven BandÄ± â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mid-band {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.mid-band-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mid-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}

.mid-card:hover {
    border-color: var(--blue);
    box-shadow: 0 8px 28px rgba(21, 101, 192, .1);
    transform: translateY(-3px);
}

.mid-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: background var(--t);
}

.mid-card:hover .mid-icon {
    background: var(--blue);
    color: #fff;
}

.mid-text strong {
    display: block;
    color: var(--text);
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: .4rem
}

.mid-text p {
    color: var(--muted);
    font-size: .82rem;
    line-height: 1.6
}

/* â”€â”€ BoÅŸ Durum â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--muted);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem
}

.empty-state h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: .5rem;
    font-weight: 700
}

.empty-state p {
    font-size: .9rem
}

/* â”€â”€ Sayfalama â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pagination {
    display: flex;
    justify-content: center;
    gap: .4rem;
    padding: 2.5rem 0 1rem;
}

.page-a {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 .6rem;
}

.page-a:hover:not(.disabled) {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light)
}

.page-a.active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    font-weight: 700
}

.page-a.disabled {
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none
}

/* â”€â”€ Toast â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.toast-wrap {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.toast {
    background: var(--dark);
    color: #fff;
    padding: .75rem 1.3rem;
    border-radius: 12px;
    font-size: .87rem;
    font-weight: 500;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: .6rem;
    animation: tIn .3s ease, tOut .3s ease 2.5s forwards;
}

.toast.ok,
.toast.success {
    background: #2E7D32
}

.toast.error {
    background: #C62828
}

@keyframes tIn {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes tOut {
    from {
        opacity: 1
    }

    to {
        opacity: 0;
        pointer-events: none
    }
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .65);
    padding: 4rem 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1)
}

.footer-brand p {
    font-size: .85rem;
    line-height: 1.7;
    max-width: 260px
}

.footer-col h4 {
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: .02em
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.footer-col ul a {
    font-size: .84rem;
    transition: color var(--t)
}

.footer-col ul a:hover {
    color: #fff
}

.footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .8rem;
    font-size: .78rem;
}

.footer-pay {
    display: flex;
    align-items: center;
    gap: .5rem
}

.pay-pill {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: .2rem .6rem;
    font-size: .7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width:1100px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .hero-visual {
        display: none
    }

    .trust-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .trust-item:nth-child(2) {
        border-right: none
    }

    .trust-item:nth-child(3) {
        border-top: 1px solid var(--border)
    }

    .mid-band-inner {
        grid-template-columns: 1fr
    }

    .footer-top {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .topbar .topbar-right {
        display: none
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .9rem
    }

    .section-wrap {
        padding: 2rem 1rem
    }

    .trust-inner {
        grid-template-columns: 1fr
    }

    .hero-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .hero-3-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        padding: 3rem 1.5rem;
    }

    .navbar {
        height: auto;
        padding: 1rem 0;
    }
    .navbar-inner {
        padding: 0 1rem;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .navbar-logo {
        margin-left: 0;
    }
    .navbar-logo img {
        height: 50px;
    }
    .search-form {
        order: 3;
        width: 100%;
        max-width: none;
        margin: 0.5rem 0 0 0;
    }
    .navbar-right {
        order: 2;
        margin-left: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .sort-bar {
        padding: .8rem 1rem
    }
}

@media(max-width:768px) {
    /* Sidebar mobil */
    .shop-layout {
        grid-template-columns: 1fr;
        padding: 0 .5rem 2rem;
    }

    .cat-sidebar {
        display: none;
        position: relative;
        height: auto;
        max-height: none;
        width: 100%;
        margin-bottom: 1.5rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
    }

    .cat-sidebar.mob-open { display: block; }
    .cat-sidebar-close { display: flex; }
    .cat-overlay.active { display: none !important; }

    .cat-mob-toggle { display: flex; }

    .sort-bar {
        padding: .6rem .75rem;
        flex-wrap: wrap;
        gap: .5rem;
    }
}

@media(max-width:480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem
    }

    .trust-inner {
        grid-template-columns: 1fr
    }

    .trust-item {
        border-right: none !important;
        border-top: 1px solid var(--border)
    }

    .trust-item:first-child {
        border-top: none
    }
}

/* ============================================================
   ÃœrÃ¼n Detay SayfasÄ±
   ============================================================ */

/* â”€â”€ Breadcrumb â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.breadcrumb-wrap {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: .75rem 2rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .3rem;
    font-size: .82rem;
    color: var(--muted);
}

.breadcrumb a {
    color: var(--muted);
    transition: color var(--t);
}

.breadcrumb a:hover {
    color: var(--blue);
}

.bc-sep {
    color: var(--light);
}

.bc-current {
    color: var(--text);
    font-weight: 500;
}

/* â”€â”€ Detay BÃ¶lÃ¼mÃ¼ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.detay-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.detay-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* GÃ¶rsel Kutusu */
.detay-img-box {
    position: sticky;
    top: calc(var(--navbar-h) + 1rem);
}

.detay-img-main {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detay-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform .4s ease;
}

.detay-img-main:hover img {
    transform: scale(1.04);
}

.detay-img-placeholder {
    font-size: 5rem;
    color: var(--light);
}

/* GÃ¼ven SatÄ±rÄ± */
.detay-trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .8rem;
    margin-top: 1rem;
}

.detay-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: .7rem .5rem;
    font-size: .72rem;
    color: var(--muted);
    font-weight: 500;
    text-align: center;
}

.detay-trust-item span:first-child {
    font-size: 1.3rem;
}

/* Bilgi Kutusu */
.detay-cat {
    font-size: .75rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem;
}

.detay-cat a {
    color: inherit;
    transition: opacity var(--t);
}

.detay-cat a:hover {
    opacity: .7;
}

.detay-title {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
}

/* Stok */
.detay-stock-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: 1.2rem;
}

.detay-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3em .85em;
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 700;
}

.detay-stock-badge.ok {
    background: #E8F5E9;
    color: #2E7D32;
}

.detay-stock-badge.out {
    background: #F5F5F5;
    color: #6b7280;
}

.detay-stock-warning {
    font-size: .78rem;
    color: #F57F17;
    font-weight: 600;
}

/* Fiyat */
.detay-price-box {
    background: linear-gradient(135deg, var(--blue-light) 0%, #fff 100%);
    border: 1.5px solid rgba(21, 101, 192, .15);
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.detay-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -.02em;
}

.dp-cur {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: .1rem;
}

.detay-price-note {
    font-size: .78rem;
    color: var(--muted);
}

/* Adet + Sepet */
.detay-add-form {
    display: flex;
    gap: .8rem;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    width: 38px;
    height: 46px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--muted);
    transition: background var(--t), color var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--blue-light);
    color: var(--blue);
}

.qty-input {
    width: 52px;
    height: 46px;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--text);
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.btn-detay-add {
    flex: 1;
    height: 54px;
    border-radius: var(--radius);
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: background var(--t), transform var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-width: 160px;
}

.btn-detay-add:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.btn-detay-add:disabled {
    opacity: .7;
    cursor: wait;
    transform: none;
}

/* TÃ¼kendi mesajÄ± */
.detay-out-msg {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    font-size: .88rem;
    color: #5D4037;
}

.detay-out-msg span {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* AÃ§Ä±klama */
.detay-desc {
    border-top: 1px solid var(--border);
    padding-top: 1.2rem;
    margin-top: 1.2rem;
}

.detay-desc h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .8rem;
    color: var(--text);
}

.detay-desc-content {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.8;
}

/* Meta Tablo */
.detay-meta {
    border-top: 1px solid var(--border);
    margin-top: 1.2rem;
    padding-top: 1rem;
}

.detay-meta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .85rem;
}

.detay-meta-row:last-child {
    border-bottom: none;
}

.dm-label {
    color: var(--muted);
    width: 90px;
    flex-shrink: 0;
}

.dm-val {
    color: var(--text);
    font-weight: 500;
}

.dm-val a {
    color: var(--blue);
}

.dm-val a:hover {
    text-decoration: underline;
}

/* â”€â”€ Detay Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media(max-width: 900px) {
    .detay-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detay-img-box {
        position: static;
    }
}

@media(max-width: 600px) {
    .detay-section {
        padding: 1.5rem 1rem;
    }

    .breadcrumb-inner {
        padding: .6rem 1rem;
    }

    .detay-add-form {
        flex-direction: column;
    }

    .btn-detay-add {
        width: 100%;
    }

    .detay-trust-row {
        grid-template-columns: repeat(3, 1fr);
        gap: .5rem;
    }
}

/* â”€â”€ Beden SeÃ§ici â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.beden-wrap {
    width: 100%;
    margin-bottom: 1.2rem;
}

.beden-label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.beden-gerekli {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--red);
    background: var(--red-light);
    padding: .15em .6em;
    border-radius: 6px;
}

.beden-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.beden-btn {
    min-width: 48px;
    height: 44px;
    padding: 0 .9rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    font-size: .88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: border-color var(--t), background var(--t), color var(--t), transform var(--t);
    display: flex;
    align-items: center;
    justify-content: center;
}

.beden-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-light);
    transform: translateY(-1px);
}

.beden-btn.active {
    border-color: var(--blue);
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(21, 101, 192, .3);
    transform: translateY(-1px);
}

/* Shake animasyonu (beden seÃ§ilmeden gÃ¶nderim) */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.beden-wrap.shake {
    animation: shake .45s ease;
}

.beden-wrap.shake .beden-label {
    color: var(--red);
}

/* â”€â”€ Benzer ÃœrÃ¼nler BandÄ± â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.benzer-band {
    background: linear-gradient(180deg, #f0f4ff 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 1rem 0;
}

/* ============================================================
   Sepet Sayfasi
   ============================================================ */
.sepet-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 60vh
}

.sepet-bos {
    text-align: center;
    padding: 5rem 2rem
}

.sepet-bos-icon {
    font-size: 5rem;
    margin-bottom: 1rem
}

.sepet-bos h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .5rem
}

.sepet-bos p {
    color: var(--muted);
    margin-bottom: 2rem;
    line-height: 1.7
}

.sepet-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start
}

.sepet-baslik {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: .6rem
}

.sepet-baslik h1 {
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: .6rem
}

.sepet-adet-badge {
    background: var(--blue-light);
    color: var(--blue);
    font-size: .75rem;
    font-weight: 700;
    padding: .2em .8em;
    border-radius: 100px
}

.btn-temizle {
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--muted);
    border-radius: var(--radius);
    padding: .4rem 1rem;
    font-size: .82rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--t)
}

.btn-temizle:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light)
}

.sepet-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: .8rem;
    transition: box-shadow var(--t)
}

.sepet-item:hover {
    box-shadow: var(--shadow)
}

.sepet-item-img-link img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border)
}

.sepet-item-ad {
    font-weight: 600;
    color: var(--text);
    font-size: .92rem;
    line-height: 1.4;
    display: block;
    margin-bottom: .3rem;
    transition: color var(--t)
}

.sepet-item-ad:hover {
    color: var(--blue)
}

.sepet-item-beden {
    font-size: .78rem;
    color: var(--muted);
    display: block;
    margin-bottom: .2rem
}

.sepet-item-uyari {
    font-size: .75rem;
    color: #F57F17;
    font-weight: 600;
    display: block
}

.sepet-item-fiyat {
    font-size: .95rem;
    font-weight: 700;
    color: var(--blue);
    margin-top: .4rem
}

.sepet-item-ara {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
    white-space: nowrap
}

.btn-sil {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--muted);
    cursor: pointer;
    font-size: .85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--t);
    flex-shrink: 0
}

.btn-sil:hover {
    border-color: var(--red);
    color: var(--red);
    background: var(--red-light)
}

.sepet-adet-form {
    display: flex
}

.sepet-ozet {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: calc(var(--navbar-h) + 1rem)
}

.sepet-ozet h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem
}

.ozet-satir {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    padding: .55rem 0;
    border-bottom: 1px solid var(--border)
}

.ozet-satir:last-of-type {
    border-bottom: none
}

.ozet-ucretsiz {
    color: #2E7D32;
    font-weight: 700
}

.ozet-toplam {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 800;
    padding: .8rem 0 0;
    margin-top: .5rem;
    border-top: 2px solid var(--border)
}

.ozet-kargo-bilgi {
    background: var(--blue-light);
    border-radius: var(--radius);
    padding: .7rem .9rem;
    margin: .8rem 0;
    font-size: .78rem;
    color: var(--blue)
}

.ozet-kargo-ok {
    background: #E8F5E9;
    color: #2E7D32;
    font-weight: 600
}

.kargo-progress-wrap {
    background: rgba(21, 101, 192, .15);
    border-radius: 100px;
    height: 6px;
    margin-bottom: .5rem;
    overflow: hidden
}

.kargo-progress-bar {
    height: 100%;
    background: var(--blue);
    border-radius: 100px;
    transition: width .4s ease
}

.btn-alisverise-devam {
    display: flex;
    justify-content: center;
    color: var(--muted);
    font-size: .83rem;
    margin-top: .7rem;
    transition: color var(--t)
}

.btn-alisverise-devam:hover {
    color: var(--blue)
}

.ozet-guven {
    display: flex;
    justify-content: center;
    gap: .8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: .72rem;
    color: var(--muted)
}

@media(max-width:900px) {
    .sepet-wrap {
        grid-template-columns: 1fr
    }

    .sepet-ozet {
        position: static
    }
}

@media(max-width:600px) {
    .sepet-section {
        padding: 1rem
    }

    .sepet-item {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        position: relative;
    }

    .sepet-item-img-link img {
        width: 80px;
        height: 80px;
    }

    .sepet-item-info {
        flex: 1;
        min-width: 150px;
        padding-right: 2rem; /* sil butonu için alan */
    }

    .sepet-adet-form {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        border-top: 1px solid var(--border);
        padding-top: 1rem;
    }

    .sepet-item-ara {
        margin-left: auto;
        font-size: 1rem;
    }

    .btn-sil {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

/* ============================================================
   Auth Sayfalari (Giris / Kayit)
   ============================================================ */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg)
}

.auth-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow)
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.8rem
}

.auth-logo img {
    height: 80px;
    width: auto;
    border-radius: 10px;
    object-fit: contain
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--text);
    margin-bottom: .3rem
}

.auth-sub {
    text-align: center;
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 1.5rem
}

.auth-alert {
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .85rem;
    font-weight: 500;
    margin-bottom: 1rem
}

.auth-alert.error {
    background: var(--red-light);
    color: var(--red);
    border: 1px solid #FFCDD2
}

.auth-alert.ok {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.form-group label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text)
}

.form-group input {
    height: 46px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0 1rem;
    font-size: .92rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color var(--t), box-shadow var(--t);
    width: 100%
}

.form-group input:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(21, 101, 192, .08)
}

.input-eye-wrap {
    position: relative
}

.input-eye-wrap input {
    padding-right: 48px
}

.eye-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background var(--t)
}

.eye-btn:hover {
    background: var(--bg)
}

.btn-auth-submit {
    height: 48px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--t), transform var(--t);
    margin-top: .3rem
}

.btn-auth-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-1px)
}

.auth-alt {
    text-align: center;
    font-size: .84rem;
    color: var(--muted);
    margin-top: .9rem
}

.auth-alt a {
    color: var(--blue);
    font-weight: 600
}

.auth-alt a:hover {
    text-decoration: underline
}

/* ── Beden Popup (Kart hizli sepete ekle) ─────────────────── */
.beden-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.beden-popup.open {
    display: flex;
    animation: tIn .22s ease;
}

.beden-popup-inner {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.beden-popup-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.beden-popup-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text);
}

.beden-popup-kapat {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--bg);
    border-radius: 8px;
    cursor: pointer;
    font-size: .85rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t), color var(--t);
}

.beden-popup-kapat:hover {
    background: var(--red-light);
    color: var(--red);
}

.beden-popup-ad {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beden-popup-list {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

body.popup-open {
    overflow: hidden;
}

/* ── Hesabim Sayfasi ──────────────────────────────────────── */
.hesabim-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
    min-height: 60vh
}

.hesabim-sidebar {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    position: sticky;
    top: calc(var(--navbar-h) + 1rem);
    text-align: center
}

.hesabim-avatar {
    width: 72px;
    height: 72px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1rem
}

.hesabim-ad {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .2rem
}

.hesabim-email {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .3rem;
    word-break: break-all
}

.hesabim-since {
    font-size: .75rem;
    color: var(--light);
    margin-bottom: 1.2rem
}

.hesabim-nav {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-top: .8rem
}

.hesabim-nav-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem 1rem;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 500;
    color: var(--muted);
    transition: var(--t);
    text-align: left
}

.hesabim-nav-item:hover,
.hesabim-nav-item.active {
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 600
}

.hesabim-nav-item.cikis:hover {
    background: var(--red-light);
    color: var(--red)
}

.hesabim-main {}

.hesabim-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--text)
}

.hesabim-bos {
    text-align: center;
    padding: 3rem 1rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg)
}

.hesabim-bos h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .4rem
}

.hesabim-bos p {
    color: var(--muted);
    font-size: .88rem
}

.siparis-listesi {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.siparis-kart {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.2rem;
    transition: box-shadow var(--t)
}

.siparis-kart:hover {
    box-shadow: var(--shadow)
}

.siparis-kart-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: .6rem;
    font-size: .8rem;
    color: var(--muted)
}

.siparis-id {
    font-weight: 700;
    color: var(--blue)
}

.siparis-kart-body {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.siparis-toplam {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text)
}

.siparis-durum {
    font-size: .78rem;
    font-weight: 700;
    padding: .3em .9em;
    border-radius: 100px
}

.siparis-pending {
    background: #FFF9C4;
    color: #F57F17
}

.siparis-confirmed {
    background: #E8F5E9;
    color: #2E7D32
}

.siparis-shipped {
    background: #E3F2FD;
    color: #1565C0
}

.siparis-delivered {
    background: #E8F5E9;
    color: #1B5E20
}

.siparis-cancelled {
    background: #FFEBEE;
    color: #C62828
}

@media(max-width:800px) {
    .hesabim-section {
        grid-template-columns: 1fr
    }

    .hesabim-sidebar {
        position: static
    }
}

@media(max-width:500px) {
    .hesabim-section {
        padding: 1rem
    }
}

/* ── Arama Sayfasi ───────────────────────────────────────── */
.arama-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 60vh
}

.arama-hero {
    text-align: center;
    padding: 2.5rem 1rem 2rem;
    background: linear-gradient(135deg, var(--blue-light) 0%, #fff 100%);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    border: 1px solid rgba(21, 101, 192, .1)
}

.arama-hero h1 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.2rem
}

.arama-form-big {
    display: flex;
    gap: .8rem;
    max-width: 640px;
    margin: 0 auto
}

.arama-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center
}

.arama-icon-big {
    position: absolute;
    left: .9rem;
    font-size: 1.1rem;
    pointer-events: none
}

.arama-input-wrap input {
    width: 100%;
    height: 50px;
    padding: 0 3rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color var(--t), box-shadow var(--t);
    background: #fff
}

.arama-input-wrap input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(21, 101, 192, .08)
}

.arama-temizle {
    position: absolute;
    right: .9rem;
    color: var(--muted);
    font-size: .9rem;
    cursor: pointer;
    transition: color var(--t)
}

.arama-temizle:hover {
    color: var(--red)
}

.btn-arama-ara {
    height: 50px;
    padding: 0 1.8rem;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--t)
}

.btn-arama-ara:hover {
    background: var(--blue-dark)
}

.arama-sonuc-bilgi {
    margin-bottom: 1.2rem;
    font-size: .9rem;
    color: var(--muted);
    padding: .6rem 1rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius)
}

.arama-sonuc-bilgi strong {
    color: var(--blue);
    font-size: 1.1rem
}

.arama-sonuc-bilgi em {
    color: var(--text);
    font-style: normal;
    font-weight: 600
}

.arama-bos {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg)
}

.arama-bos h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .5rem
}

.arama-bos p {
    color: var(--muted);
    font-size: .9rem
}

@media(max-width:600px) {
    .arama-form-big {
        flex-direction: column
    }

    .arama-section {
        padding: 1rem
    }
}

/* ── Odeme Sayfasi ───────────────────────────────────────── */
.odeme-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 60vh
}

.odeme-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
    overflow: visible
}

.odeme-blok {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.2rem
}

.odeme-blok-baslik {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: var(--text)
}

.odeme-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.odeme-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem
}

.form-group select {
    height: 46px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0 .8rem;
    font-size: .92rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color var(--t);
    width: 100%;
    cursor: pointer
}

.form-group select:focus {
    border-color: var(--blue)
}

/* Kart Onizleme */
.kk-onizleme {
    background: linear-gradient(135deg, var(--blue) 0%, #1a237e 100%);
    border-radius: 14px;
    padding: 1.4rem 1.5rem;
    color: #fff;
    margin-bottom: 1.2rem;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.kk-logo {
    font-size: 1.8rem;
    margin-bottom: .8rem
}

.kk-numara {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .18em;
    margin-bottom: 1rem;
    font-family: monospace
}

.kk-alt {
    display: flex;
    gap: 2rem
}

.kk-etiket {
    font-size: .65rem;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .15rem
}

.kk-deger {
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .04em
}

/* Onayla Butonu */
.btn-odeme-onayla {
    width: 100%;
    height: 52px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--t), transform var(--t)
}

.btn-odeme-onayla:hover {
    background: var(--blue-dark);
    transform: translateY(-1px)
}

.btn-odeme-onayla:disabled {
    opacity: .7;
    cursor: wait;
    transform: none
}

/* ── Sözleşme Tiklemeleri ──────────────────────────────── */
.sozlesme-blok { margin-top: .5rem; }

.sozlesme-item {
    padding: .75rem .9rem;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: border-color .2s, background .2s;
    margin-bottom: .4rem;
}
.sozlesme-item.sozlesme-hata-item {
    border-color: #ef4444;
    background: #fff5f5;
}

.sozlesme-label {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    user-select: none;
}

/* Gerçek checkbox gizle */
.sozlesme-chk {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Özel checkbox kutusu */
.sozlesme-custom-chk {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 5px;
    margin-top: .1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
    background: #fff;
}
.sozlesme-chk:checked + .sozlesme-custom-chk {
    background: var(--blue);
    border-color: var(--blue);
}
.sozlesme-chk:checked + .sozlesme-custom-chk::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) translateY(-1px);
}
.sozlesme-item.sozlesme-hata-item .sozlesme-custom-chk {
    border-color: #ef4444;
}

.sozlesme-text {
    font-size: .85rem;
    color: var(--text);
    line-height: 1.55;
}

.sozlesme-link {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .15s;
}
.sozlesme-link:hover { color: var(--blue-dark); }

.sozlesme-zorunlu {
    font-size: .73rem;
    color: #ef4444;
    font-weight: 600;
    margin-left: .25rem;
}

.sozlesme-hata {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .6rem;
    padding: .65rem .9rem;
    background: #fff5f5;
    border: 1.5px solid #ef4444;
    border-radius: var(--radius);
    color: #c00;
    font-size: .84rem;
    font-weight: 600;
}

/* Ozet */
.odeme-ozet {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 80px;
    align-self: start
}

.odeme-ozet h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem
}

.ozet-urunler {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.ozet-urun-satir {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: .5rem;
    font-size: .83rem
}

.ozet-urun-ad {
    color: var(--text);
    flex: 1;
    line-height: 1.4
}

.ozet-urun-ad em {
    color: var(--muted);
    font-style: normal
}

.ozet-urun-adet {
    background: var(--blue-light);
    color: var(--blue);
    border-radius: 100px;
    padding: .1em .5em;
    font-size: .72rem;
    font-weight: 700;
    margin-left: .3rem
}

.ozet-urun-fiyat {
    font-weight: 700;
    color: var(--text);
    white-space: nowrap
}

/* Basari Ekrani */
.odeme-basari {
    text-align: center;
    max-width: 500px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow)
}

.ob-icon {
    font-size: 5rem;
    margin-bottom: 1rem
}

.odeme-basari h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .5rem
}

.odeme-basari p {
    color: var(--muted);
    margin-bottom: .3rem
}

.ob-sub {
    font-size: .88rem;
    line-height: 1.7;
    margin-top: .5rem
}

.ob-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    gap: .4rem
}

@media(max-width:900px) {
    .odeme-wrap {
        grid-template-columns: 1fr
    }

    .odeme-ozet {
        position: static
    }
}

@media(max-width:600px) {
    .odeme-section {
        padding: 1rem
    }

    .odeme-grid-2,
    .odeme-grid-3 {
        grid-template-columns: 1fr
    }
}

.siparis-processing {
    background: #FFF3E0;
    color: #E65100
}

/* ── Siparis Detay Sayfasi ──────────────────────────────── */
.sdetay-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 60vh
}

.sdetay-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem
}

.sdetay-head h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: .2rem
}

.sdetay-tarih {
    color: var(--muted);
    font-size: .9rem
}

.sdetay-durum {
    padding: .4em 1em;
    border-radius: 100px;
    font-weight: 700;
    font-size: .9rem
}

.sdetay-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    align-items: start
}

.sdetay-blok {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem
}

.sdetay-blok h2 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.2rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid var(--border)
}

.sdetay-urunler {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.sdetay-urun {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius)
}

.sdetay-u-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0
}

.sdetay-u-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.sdetay-u-info {
    flex: 1
}

.sdetay-u-ad {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: block;
    margin-bottom: .3rem;
    transition: color var(--t)
}

.sdetay-u-ad:hover {
    color: var(--blue)
}

.sdetay-u-beden {
    font-size: .8rem;
    color: var(--muted);
    margin-bottom: .3rem
}

.sdetay-u-fiyat {
    font-size: .9rem;
    font-weight: 700;
    color: var(--text)
}

.sdetay-u-toplam {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue)
}

.sdetay-ozet-satir {
    display: flex;
    justify-content: space-between;
    margin-bottom: .8rem;
    font-size: .95rem;
    color: var(--text)
}

.sdetay-ozet-toplam {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--blue)
}

.sdetay-adres {
    font-size: .95rem;
    line-height: 1.5;
    color: var(--text)
}

@media(max-width:800px) {
    .sdetay-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:500px) {
    .sdetay-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem
    }
}

/* ── Trendyol Tarzi Siparis Karti ───────────────────────── */
.ty-siparis-kart {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: box-shadow var(--t)
}

.ty-siparis-kart:hover {
    box-shadow: var(--shadow)
}

.ty-siparis-head {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.ty-head-sol {
    display: flex;
    gap: 2.5rem
}

.ty-head-item {
    display: flex;
    flex-direction: column
}

.ty-head-label {
    font-size: .75rem;
    color: var(--muted);
    margin-bottom: .2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em
}

.ty-head-val {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text)
}

.ty-btn-detay {
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 700;
    font-size: .85rem;
    padding: .6rem 1.2rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: background var(--t), color var(--t)
}

.ty-btn-detay:hover {
    background: var(--blue);
    color: #fff
}

.ty-siparis-body {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem
}

.ty-body-sol {
    flex: 1
}

.ty-resim-grup {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap
}

.ty-resim-kutu {
    width: 65px;
    height: 65px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff
}

.ty-resim-kutu img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.ty-body-sag {
    text-align: right
}

@media(max-width:600px) {
    .ty-siparis-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem
    }

    .ty-head-sol {
        flex-direction: column;
        gap: .8rem
    }

    .ty-siparis-body {
        flex-direction: column;
        align-items: flex-start
    }

    .ty-body-sag {
        text-align: left;
        width: 100%
    }
}

/* Ürün Detay Resmi İyileştirmesi */
.detay-img-main {
    overflow: hidden !important;
}

.detay-img-main img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ── Ürün Detay Thumbnail Galerisi ──────────────────────── */
.detay-thumb-row {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-top: .75rem;
}

.detay-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
    padding: 0;
    background: none;
    cursor: pointer;
    transition: border-color .2s;
    flex-shrink: 0;
}

.detay-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.detay-thumb.active,
.detay-thumb:hover {
    border-color: var(--primary);
}

/* ── Ürün Detay Slider ───────────────────────────────────── */
.detay-slider {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--bg);
    border: 1.5px solid var(--border);
    user-select: none;
}

.detay-slider-track {
    display: flex;
    height: 100%;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.detay-slide {
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.detay-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ok butonları */
.detay-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .45);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    z-index: 10;
    padding: 0;
}

.detay-slider-btn:hover {
    background: rgba(0, 0, 0, .7);
}

.detay-slider-btn.prev {
    left: .6rem;
}

.detay-slider-btn.next {
    right: .6rem;
}

/* Dot indikatörler */
.detay-slider-dots {
    position: absolute;
    bottom: .7rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .4rem;
    z-index: 10;
}

.detay-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s;
}

.detay-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ── Sort Bar ────────────────────────────────────────────── */
.sort-bar {
    max-width: 1200px;
    margin: 0 auto 1rem;
    padding: .75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    background: var(--bg-card);
    border-radius: var(--radius);
}

.sort-info {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0;
}

.sort-info strong {
    color: var(--text);
}

.sort-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    cursor: default;
}

.sort-select-wrap {
    display: none; /* Eski select'i gizle */
}

/* ── Custom Dropdown ───────────────────────── */
.custom-sort-wrapper {
    position: relative;
    display: inline-block;
}

.custom-sort-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid var(--border);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.custom-sort-btn:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.custom-sort-btn svg {
    color: var(--text-muted);
    transition: transform 0.2s;
}

.custom-sort-wrapper.open .custom-sort-btn {
    border-color: var(--blue);
}

.custom-sort-wrapper.open .custom-sort-btn svg.chevron {
    transform: rotate(180deg);
}

.custom-sort-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    padding: 0.5rem;
}

.custom-sort-wrapper.open .custom-sort-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-sort-menu button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.7rem 1rem;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.custom-sort-menu button:hover {
    background: #f4f6fb;
    color: var(--blue);
}

.custom-sort-menu button.active {
    background: #eff4ff;
    color: var(--blue);
    font-weight: 600;
}

.custom-sort-menu button.active::after {
    content: "✓";
    font-weight: 900;
}

.sort-select:hover {
    border-color: var(--primary);
}

.sort-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .15);
}

.sort-chevron {
    position: absolute;
    right: .7rem;
    font-size: 1rem;
    color: var(--text-muted);
    pointer-events: none;
    line-height: 1;
}
/* ── İndirimli Fiyat – Ürün Kartı ───────────────────────── */
.card-price-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: .4rem;
}
.card-price-old {
    font-size: .85rem;
    color: var(--muted);
    text-decoration: line-through;
    font-weight: 500;
}
.card-discount-badge {
    display: inline-block;
    background: #E53935;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    padding: .15em .55em;
    border-radius: 20px;
    letter-spacing: .02em;
    line-height: 1.4;
    margin-top: .1rem;
}/* --- Sozlesme Modal --- */
.sozlesme-modal-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.sozlesme-modal-content {
    background: #fff; width: 90%; max-width: 800px;
    max-height: 90vh; border-radius: 12px;
    display: flex; flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}
.sozlesme-modal-header {
    padding: 1.5rem; background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.sozlesme-modal-header h2 { font-size: 1.25rem; font-weight: 700; margin: 0; }
.sozlesme-modal-close {
    background: transparent; border: none; font-size: 1.5rem;
    color: var(--text-light); cursor: pointer; transition: color 0.2s;
}
.sozlesme-modal-close:hover { color: var(--text); }
.sozlesme-modal-body {
    padding: 1.5rem; overflow-y: auto; flex: 1;
    line-height: 1.6; color: var(--text); font-size: 0.95rem;
}
.sozlesme-modal-body h3 { font-size: 1.1rem; margin-top: 1.5rem; margin-bottom: .5rem; }
.sozlesme-modal-body p { margin-bottom: 1rem; }
.sozlesme-modal-body table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.sozlesme-modal-body th, .sozlesme-modal-body td { border: 1px solid #ddd; padding: 0.5rem; text-align: left; }
