/* ===================================================
   ULAKSHOP – Ana Stil Dosyası
   Renk paleti: #E84710 (turuncu), #2D2D2D (koyu), #FFF
   =================================================== */

/* ---------- Değişkenler ---------- */
:root {
    --primary: #E84710;
    --primary-dark: #C93A0A;
    --primary-light: #FF6633;
    --white: #FFFFFF;
    --dark: #2D2D2D;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --border: #E0E0E0;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, .08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .12);
    --radius: 6px;
    --transition: .22s ease;
    --font: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ---------- Reset & Temel ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 14px;
    color: var(--dark);
    background: #FAFAFA;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===================================================
   ÜSTÜN BANDI (duyuru şeridi)
   =================================================== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 12.5px;
    text-align: center;
    padding: 6px 16px;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    text-decoration: underline;
}

/* Dil Seçici */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    transition: background .18s, color .18s;
    white-space: nowrap;
}

.lang-btn img {
    display: block;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, .18);
    color: #fff;
}

.lang-btn--active {
    background: rgba(255, 255, 255, .25);
    color: #fff;
    cursor: default;
}

/* ===================================================
   SİTE HEADER
   =================================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    height: 74px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-bag {
    width: 46px;
    height: 52px;
}

.logo-wordmark {
    display: flex;
    align-items: baseline;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -.5px;
}

.logo-u {
    color: var(--primary);
}

.logo-lak {
    color: var(--dark);
}

.logo-shop {
    color: var(--primary);
}

/* --- Arama Alanı --- */
.header-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.hamburger-box {
    width: 42px;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
    transition: border-color var(--transition), background var(--transition);
}

.hamburger-box:hover {
    border-color: var(--primary);
    background: #fff5f2;
}

.hamburger-box span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: background var(--transition);
}

.hamburger-box:hover span {
    background: var(--primary);
}

.search-group {
    display: flex;
    align-items: center;
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.search-group:focus-within {
    border-color: var(--primary);
}

.cat-select-wrap {
    border-right: 1.5px solid var(--border);
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cat-select-wrap select {
    height: 44px;
    padding: 0 28px 0 12px;
    border: none;
    background: #FAFAFA;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    min-width: 126px;
    outline: none;
}

.cat-select-wrap::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #888;
    pointer-events: none;
}

.search-input {
    flex: 1;
    height: 44px;
    padding: 0 14px;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    min-width: 0;
}

.search-input::placeholder {
    color: #AAAAAA;
}

.search-btn {
    height: 44px;
    padding: 0 16px;
    background: var(--primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.search-btn:hover {
    background: var(--primary-dark);
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

/* --- Partner Logoları --- */
.partner-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.3px;
    padding: 4px 8px;
    border-radius: 4px;
}

.partner-ulak {
    color: var(--primary);
    border: 1.5px solid #f0d0c8;
    background: #fff5f2;
}

.partner-lapcard {
    color: #2563EB;
    border: 1.5px solid #C7D9F5;
    background: #EFF5FF;
    font-size: 13px;
}

/* --- Kullanıcı Aksiyonları --- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 6px 10px;
    border-radius: var(--radius);
    color: var(--dark);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: color var(--transition), background var(--transition);
    line-height: 1.3;
    text-decoration: none;
    min-width: 56px;
}

.action-btn:hover {
    color: var(--primary);
    background: #fff5f2;
}

.action-btn svg {
    width: 22px;
    height: 22px;
}

/* ===================================================
   ANA NAVİGASYON
   =================================================== */
.main-nav {
    background: var(--primary);
    position: relative;
    z-index: 998;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 46px;
    position: relative;
}

/* Menü listesi */
.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
    padding: 0 13px;
    color: var(--white);
    font-size: 13.5px;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--transition);
    position: relative;
}

.nav-link:hover {
    background: rgba(0, 0, 0, .12);
}

.nav-item.active .nav-link {
    background: rgba(0, 0, 0, .16);
}

.nav-link .chev {
    width: 12px;
    height: 12px;
    transition: transform var(--transition);
}

.nav-item:hover .nav-link .chev,
.nav-item:focus-within .nav-link .chev {
    transform: rotate(180deg);
}

/* Açılır Menü */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 100;
    pointer-events: none;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 13.5px;
    color: var(--dark);
    border-bottom: 1px solid #f3f3f3;
    transition: background var(--transition), color var(--transition);
}

.dropdown a:last-child {
    border-bottom: none;
}

.dropdown a:hover {
    background: #fff5f2;
    color: var(--primary);
    padding-left: 22px;
}

/* Sepet Butonu */
.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 5px;
    color: var(--white);
    font-size: 13.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: background var(--transition), border-color var(--transition);
    flex-shrink: 0;
    text-decoration: none;
}

.cart-btn:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
}

.cart-btn svg {
    width: 18px;
    height: 18px;
}

/* ===================================================
   MOBİL MENÜ (Sidebar)
   =================================================== */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1100;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-overlay.open {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    overflow-y: auto;
    transition: left .28s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, .18);
    display: flex;
    flex-direction: column;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    background: var(--primary);
    color: var(--white);
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    flex-shrink: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    line-height: 1;
    padding: 4px;
    border-radius: 4px;
    transition: background var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, .2);
}

.mobile-menu-body {
    flex: 1;
    padding: 8px 0;
}

.mob-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid #F2F2F2;
    cursor: pointer;
    transition: background var(--transition);
}

.mob-cat-item:hover {
    background: #fff5f2;
    color: var(--primary);
}

.mob-cat-item .mob-arrow {
    font-size: 12px;
    color: #aaa;
    transition: transform var(--transition);
}

.mob-cat-item.open .mob-arrow {
    transform: rotate(90deg);
}

.mob-sub-list {
    max-height: 0;
    overflow: hidden;
    background: #FAFAFA;
    transition: max-height .28s ease;
}

.mob-sub-list.open {
    max-height: 400px;
}

.mob-sub-list a {
    display: block;
    padding: 10px 18px 10px 32px;
    font-size: 13.5px;
    color: var(--gray);
    border-bottom: 1px solid #F2F2F2;
    transition: color var(--transition);
}

.mob-sub-list a:hover {
    color: var(--primary);
}

/* ===================================================
   ANA SLIDER
   =================================================== */
.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #1a1a2e;
}

.slider-track-wrap {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform .6s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

/* Slide genel */
.slide {
    min-width: 100%;
    height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Slide renk temaları */
.slide-1 {
    background: linear-gradient(120deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.slide-2 {
    background: linear-gradient(120deg, #2d1b69 0%, #11998e 60%, #38ef7d 100%);
}

.slide-3 {
    background: linear-gradient(120deg, #E84710 0%, #c93a0a 40%, #ff8c42 100%);
}

.slide-4 {
    background: linear-gradient(120deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

/* Arka plan süslü daireler */
.slide-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.sb {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
}

.slide-1 .sb1 {
    width: 420px;
    height: 420px;
    background: #fff;
    right: -80px;
    top: -80px;
}

.slide-1 .sb2 {
    width: 260px;
    height: 260px;
    background: #E84710;
    right: 200px;
    bottom: -100px;
}

.slide-1 .sb3 {
    width: 120px;
    height: 120px;
    background: #fff;
    left: 20%;
    top: 20px;
}

.slide-2 .sb1 {
    width: 380px;
    height: 380px;
    background: #fff;
    right: -60px;
    top: -60px;
}

.slide-2 .sb2 {
    width: 200px;
    height: 200px;
    background: #2d1b69;
    right: 250px;
    bottom: -80px;
}

.slide-2 .sb3 {
    width: 100px;
    height: 100px;
    background: #38ef7d;
    left: 22%;
    bottom: 30px;
}

.slide-3 .sb1 {
    width: 400px;
    height: 400px;
    background: #fff;
    right: -70px;
    top: -70px;
}

.slide-3 .sb2 {
    width: 240px;
    height: 240px;
    background: #1a1a2e;
    left: 5%;
    bottom: -80px;
}

.slide-3 .sb3 {
    width: 110px;
    height: 110px;
    background: #ffcc02;
    left: 28%;
    top: 10px;
}

.slide-4 .sb1 {
    width: 450px;
    height: 450px;
    background: #fff;
    right: -90px;
    top: -90px;
}

.slide-4 .sb2 {
    width: 220px;
    height: 220px;
    background: #00b4d8;
    right: 180px;
    bottom: -80px;
}

.slide-4 .sb3 {
    width: 90px;
    height: 90px;
    background: #fff;
    left: 18%;
    bottom: 40px;
}

/* Slide iç düzen */
.slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Metin bölümü */
.slide-content {
    flex: 1;
    max-width: 560px;
    color: #fff;
    animation: slideIn .6s ease both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: .4px;
    backdrop-filter: blur(4px);
}

.slide-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.slide-content p {
    font-size: 16px;
    opacity: .88;
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 440px;
}

.slide-content p strong {
    color: #fff;
    font-weight: 700;
}

/* Butonlar */
.slide-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.slide-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    font-size: 14.5px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.slide-btn-primary:hover {
    background: #fff0ec;
    transform: scale(1.04);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.slide-3 .slide-btn-primary {
    color: #E84710;
}

.slide-3 .slide-btn-secondary {
    border-color: rgba(255, 255, 255, .7);
    color: #fff;
}

.slide-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 13px 24px;
    border: 2px solid rgba(255, 255, 255, .55);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius);
    transition: background var(--transition), border-color var(--transition);
    text-decoration: none;
    backdrop-filter: blur(4px);
}

.slide-btn-secondary:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .85);
}

/* Görsel bölüm */
.slide-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatIn .7s ease both .1s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.slide-emoji-wrap {
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    backdrop-filter: blur(6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.slide-img-wrap {
    width: 260px;
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .35);
    border: 2px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    flex-shrink: 0;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.slide:hover .slide-img {
    transform: scale(1.04);
}

/* Ok butonları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
    backdrop-filter: blur(6px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, .28);
    border-color: rgba(255, 255, 255, .7);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(.93);
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, .4);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--transition), width var(--transition);
    padding: 0;
}

.slider-dot.active {
    background: #fff;
    width: 28px;
}

/* Progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, .5);
    z-index: 10;
    animation: progressBar 5s linear infinite;
    transform-origin: left;
}

@keyframes progressBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* ===================================================
   SLIDER RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
    .slide {
        height: 380px;
    }

    .slide-visual {
        display: none;
    }

    .slide-content h2 {
        font-size: 26px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slide-btn-primary,
    .slide-btn-secondary {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .slide {
        height: 320px;
    }

    .slide-content h2 {
        font-size: 22px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

/* ===================================================
   KATEGORİ İKONLARI
   =================================================== */
.category-icons-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.category-icons-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
    justify-content: center;
    flex-wrap: wrap;
}

.category-icons-grid::-webkit-scrollbar {
    display: none;
}

.cat-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 96px;
    cursor: pointer;
    text-decoration: none;
    color: var(--dark);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.cat-icon-item:hover {
    transform: none;
}

.cat-icon-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

.cat-icon-item:hover .cat-icon-circle {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 71, 16, .1);
}

.cat-icon-circle svg {
    width: 40px;
    height: 40px;
}

.cat-icon-label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .4px;
    line-height: 1.3;
    max-width: 88px;
    color: #444;
}

/* ===================================================
   HERO BANNER
   =================================================== */
.hero-section {
    padding: 20px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 16px;
}

.hero-main {
    background: linear-gradient(135deg, #E84710 0%, #FF6633 60%, #FFB347 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    padding: 40px;
    color: var(--white);
}

.hero-main-content {
    z-index: 2;
    max-width: 400px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, .25);
    border: 1px solid rgba(255, 255, 255, .5);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.hero-main h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-main p {
    font-size: 16px;
    opacity: .9;
    margin-bottom: 24px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 26px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}

.hero-cta:hover {
    background: #fff0ec;
    transform: scale(1.03);
}

.hero-bg-shape {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.hero-bg-shape2 {
    position: absolute;
    right: 80px;
    bottom: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-side-card {
    flex: 1;
    border-radius: 12px;
    padding: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    transition: transform var(--transition);
}

.hero-side-card:hover {
    transform: scale(1.02);
}

.hero-side-card:first-child {
    background: linear-gradient(135deg, #0984E3, #74B9FF);
}

.hero-side-card:last-child {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
}

.hero-side-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-side-card p {
    font-size: 12.5px;
    opacity: .85;
}

.side-card-circle {
    position: absolute;
    right: -20px;
    top: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
}

/* ===================================================
   ÜRÜN KARTları
   =================================================== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    position: relative;
    padding-left: 14px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 26px;
    background: var(--primary);
    border-radius: 2px;
}

.see-all {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    transition: background var(--transition), color var(--transition);
}

.see-all:hover {
    background: var(--primary);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    opacity: .7;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: .3px;
}

.product-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition), background var(--transition);
}

.product-card:hover .product-fav {
    opacity: 1;
}

.product-fav:hover {
    background: #fff5f2;
    border-color: var(--primary);
}

.product-fav svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.product-info {
    padding: 14px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 13px;
    height: 13px;
    color: #F4C430;
}

.star.empty {
    color: #DDD;
}

.review-count {
    font-size: 12px;
    color: var(--gray);
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.product-old-price {
    font-size: 13px;
    color: #aaa;
    text-decoration: line-through;
}

.product-add-btn {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    flex-shrink: 0;
}

.product-add-btn:hover {
    background: var(--primary-dark);
}

.product-add-btn svg {
    width: 16px;
    height: 16px;
}

/* ===================================================
   PROMO BANNER (Orta Bant)
   =================================================== */
.promo-section {
    padding: 32px 0 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.promo-card {
    border-radius: 12px;
    padding: 28px 32px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    min-height: 130px;
    justify-content: center;
    transition: transform var(--transition);
}

.promo-card:hover {
    transform: scale(1.01);
}

.promo-card:first-child {
    background: linear-gradient(135deg, #E84710, #FF8C42);
}

.promo-card:last-child {
    background: linear-gradient(135deg, #0984E3, #00CEC9);
}

.promo-card h3 {
    font-size: 20px;
    font-weight: 800;
}

.promo-card p {
    font-size: 13.5px;
    opacity: .9;
}

.promo-circle {
    position: absolute;
    right: -30px;
    top: -30px;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, .1);
    border-radius: 50%;
}

/* ===================================================
   FEATURED SECTION
   =================================================== */
.featured-section {
    padding: 36px 0;
}

/* ===================================================
   SAYFA NAVİGASYON BANDI
   =================================================== */
.page-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 74px;
    z-index: 997;
    box-shadow: var(--shadow-sm);
}

.page-nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    height: 42px;
}

.page-nav-list::-webkit-scrollbar {
    display: none;
}

.page-nav-list a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    text-decoration: none;
}

.page-nav-list a:hover {
    color: var(--primary);
}

.page-nav-list a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

/* ===================================================
   SAYFA BAŞLIĞI (hero banner for inner pages)
   =================================================== */
.page-hero {
    background: linear-gradient(120deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
    color: var(--white);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 320px;
    height: 320px;
    background: rgba(232, 71, 16, .15);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: 10%;
    bottom: -40px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero-badge {
    display: inline-block;
    background: rgba(232, 71, 16, .3);
    border: 1px solid rgba(232, 71, 16, .5);
    color: #ffb347;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.page-hero h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 16px;
    opacity: .8;
    max-width: 560px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin-top: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .75);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255, 255, 255, .4);
}

/* Blog detay hero — light background override */
.blog-detay-hero .breadcrumb {
    color: rgba(0, 0, 0, .55);
}

.blog-detay-hero .breadcrumb a {
    color: rgba(0, 0, 0, .7);
}

.blog-detay-hero .breadcrumb a:hover {
    color: #000;
}

.blog-detay-hero .breadcrumb span {
    color: rgba(0, 0, 0, .45);
}

/* ===================================================
   SAYFA İÇERİĞİ
   =================================================== */
.page-content {
    padding: 40px 0 60px;
}

/* Filter bar */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.filter-bar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-count {
    font-size: 13.5px;
    color: var(--gray);
}

.filter-count strong {
    color: var(--dark);
    font-weight: 700;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    transition: border-color var(--transition), color var(--transition);
    cursor: pointer;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff5f2;
}

.sort-select {
    height: 34px;
    padding: 0 28px 0 10px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

/* ===================================================
   KAMPANYa KARTI
   =================================================== */
.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-big-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: var(--white);
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.promo-big-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.promo-big-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
}

.promo-big-card p {
    font-size: 14px;
    opacity: .85;
}

.pbc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, .25);
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.pbc-1 {
    background: linear-gradient(135deg, #E84710, #FF8C42);
}

.pbc-2 {
    background: linear-gradient(135deg, #0984E3, #00CEC9);
}

.pbc-3 {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
}

.pbc-4 {
    background: linear-gradient(135deg, #00B894, #00CEC9);
}

.pbc-5 {
    background: linear-gradient(135deg, #E17055, #FDCB6E);
}

.pbc-6 {
    background: linear-gradient(135deg, #2D3436, #636E72);
}

/* ===================================================
   MARKA KARTI
   =================================================== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.brand-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.brand-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.brand-logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.brand-name {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.brand-count {
    font-size: 12px;
    color: var(--gray);
}

/* ===================================================
   BLOG KARTI
   =================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--dark);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.blog-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-cat-tag {
    display: inline-block;
    background: #fff5f2;
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #f0d0c8;
    width: fit-content;
}

.blog-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #AAA;
    margin-top: 8px;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

/* ===================================================
   HAKKIMIZDA SAYFASI
   =================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 14px;
}

.about-visual {
    background: linear-gradient(135deg, #E84710, #FF8C42);
    border-radius: 16px;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 48px 0;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    border-top: 4px solid var(--primary);
}

.stat-card .stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-card .stat-label {
    font-size: 13.5px;
    color: var(--gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
}

.team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 12px;
}

.team-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--gray);
}

/* ===================================================
   İLETİŞİM SAYFASI
   =================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
}

.contact-info h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-info>p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-sm);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: #fff5f2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ci-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.ci-title {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 2px;
}

.ci-val {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--dark);
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
}

.contact-form-wrap h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 13px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: scale(1.01);
}

/* ===================================================
   RESPONSIVE – İÇ SAYFALAR
   =================================================== */
@media (max-width: 1024px) {
    .promo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 200px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-cards-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrap {
        padding: 20px;
    }
}

/* ===================================================
   REFERANSLARIMIZ — Marquee
   =================================================== */
.referanslar-section {
    padding: 64px 0 60px;
    background: #0D1117;
    overflow: hidden;
    position: relative;
}

/* Başlık */
.ref-header {
    text-align: center;
    margin-bottom: 40px;
}

.ref-eyebrow {
    display: inline-block;
    background: rgba(232, 71, 16, .15);
    color: var(--primary);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid rgba(232, 71, 16, .3);
    margin-bottom: 14px;
}

.ref-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #F8F8F8;
    margin: 0 0 10px;
    letter-spacing: -.4px;
}

.ref-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    margin: 0;
}

/* Track wrapper — soluk kenar efekti */
.ref-track-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.ref-track-wrap::before,
.ref-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.ref-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #0D1117 0%, transparent 100%);
}

.ref-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #0D1117 0%, transparent 100%);
}

/* Tek bir band */
.ref-track {
    overflow: hidden;
    width: 100%;
}

.ref-inner {
    display: flex;
    gap: 12px;
    width: max-content;
}

.ref-track--fwd .ref-inner {
    animation: ref-scroll-left 30s linear infinite;
}

.ref-track--rev .ref-inner {
    animation: ref-scroll-right 24s linear infinite;
}

.ref-track--fwd:hover .ref-inner,
.ref-track--rev:hover .ref-inner {
    animation-play-state: paused;
}

@keyframes ref-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes ref-scroll-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Pill kartı */
.ref-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    border-radius: 50px;
    background: var(--ref-bg, #1A1A2A);
    border: 1.5px solid rgba(255, 255, 255, .07);
    text-decoration: none;
    white-space: nowrap;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    cursor: pointer;
}

.ref-pill:hover {
    transform: scale(1.07);
    border-color: var(--ref-color, #888);
    box-shadow: 0 0 20px rgba(0, 0, 0, .5), 0 0 0 1px var(--ref-color, #888);
}

.ref-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--ref-color, #888);
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--ref-color, #888);
}

.ref-pill-name {
    font-size: 14px;
    font-weight: 700;
    color: #EFEFEF;
    letter-spacing: .2px;
}

/* Referanslar grid (index.php) */
.referanslar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.ref-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--ref-bg, #1E1E2E);
    border: 1.5px solid var(--ref-border, rgba(255, 255, 255, .08));
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}

.ref-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .25), 0 0 0 1px var(--ref-color, #888);
}

.ref-initials {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ref-color, #888);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: .5px;
}

.ref-name {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A2E;
}

.ref-arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--ref-color, #888);
    opacity: 0;
    transition: opacity .2s ease;
}

.ref-card:hover .ref-arrow {
    opacity: 1;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
    background: #1A1A2E;
    color: #CCC;
    margin-top: 0;
}

/* Footer top */
.footer-top {
    padding: 48px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 32px;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo .logo-wordmark {
    font-size: 24px;
}

.footer-logo .logo-u {
    color: var(--primary);
}

.footer-logo .logo-lak {
    color: var(--white);
}

.footer-logo .logo-shop {
    color: var(--primary);
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #AAA;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #2A2A42;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #AAA;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
}

.social-link svg {
    width: 17px;
    height: 17px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #AAA;
    font-size: 13.5px;
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--primary);
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-desc {
    font-size: 13px;
    color: #AAA;
    line-height: 1.6;
    margin-bottom: 4px;
}

.newsletter-input-wrap {
    display: flex;
    border: 1px solid #333355;
    border-radius: var(--radius);
    overflow: hidden;
}

.newsletter-input-wrap input {
    flex: 1;
    background: #252540;
    border: none;
    outline: none;
    padding: 10px 14px;
    color: var(--white);
    font-size: 13.5px;
    font-family: inherit;
}

.newsletter-input-wrap input::placeholder {
    color: #777;
}

.newsletter-input-wrap button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    transition: background var(--transition);
    white-space: nowrap;
}

.newsletter-input-wrap button:hover {
    background: var(--primary-dark);
}

.kvkk-note {
    font-size: 11.5px;
    color: #777;
    line-height: 1.5;
}

.kvkk-note a {
    color: #AAA;
    text-decoration: underline;
}

/* Footer middle – ödeme & güven */
.footer-middle {
    border-top: 1px solid #2A2A42;
    border-bottom: 1px solid #2A2A42;
    padding: 20px 0;
}

.footer-middle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-label {
    font-size: 12.5px;
    color: #888;
    margin-right: 4px;
    font-weight: 500;
}

.payment-badge {
    background: #2A2A42;
    border: 1px solid #333355;
    color: #CCC;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 5px;
    letter-spacing: .3px;
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #AAA;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

/* Footer bottom */
.footer-bottom {
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copyright {
    font-size: 12.5px;
    color: #777;
}

.footer-copyright span {
    color: var(--primary);
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 16px;
}

.footer-legal a {
    font-size: 12.5px;
    color: #777;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================================
   TOAST BİLDİRİMİ
   =================================================== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1A1A2E;
    color: var(--white);
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-md);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(80px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    border-left: 4px solid var(--primary);
    max-width: 320px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ===================================================
   BACK TO TOP
   =================================================== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(232, 71, 16, .4);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition), background var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ===================================================
   YARDIMCI
   =================================================== */
.section-gap {
    padding: 32px 0;
}

/* ===================================================
   RESPONSIVE
   =================================================== */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-grid>*:first-child {
        grid-column: 1 / -1;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-sidebar {
        flex-direction: row;
    }

    .hero-side-card {
        min-height: 120px;
    }

    .partner-logos {
        display: none;
    }

    .nav-link {
        padding: 0 10px;
        font-size: 13px;
    }
}

/* Geniş Tablet (max 768px) */
@media (max-width: 768px) {
    .site-header .logo-wordmark {
        font-size: 22px;
    }

    .header-inner {
        height: 64px;
        gap: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .main-nav .nav-list {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid>*:first-child {
        grid-column: 1 / -1;
    }

    .hero-sidebar {
        flex-direction: column;
    }

    .hero-main h1 {
        font-size: 26px;
    }

    .cat-select-wrap {
        display: none;
    }
}

/* Mobil (max 480px) */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-img {
        height: 160px;
    }

    .product-info {
        padding: 10px;
    }

    .product-price {
        font-size: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-middle-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions .action-btn:last-child {
        display: none;
    }

    .hero-main {
        padding: 24px;
    }

    .hero-main h1 {
        font-size: 20px;
    }

    .toast {
        right: 12px;
        left: 12px;
        max-width: unset;
    }

    .section-title {
        font-size: 18px;
    }

    .category-icons-grid {
        gap: 6px;
    }

    .cat-icon-circle {
        width: 64px;
        height: 64px;
    }

    .cat-icon-circle svg {
        width: 32px;
        height: 32px;
    }

    .cat-icon-label {
        font-size: 10px;
    }
}

/* ===================================================
   ADVANCED FILTER – PRODUCTS LAYOUT
   =================================================== */

/* Sidebar + main two-column grid */
.products-layout {
    display: grid;
    grid-template-columns: 256px 1fr;
    gap: 24px;
    align-items: start;
}

/* Reduce product grid to 3 cols inside the layout */
.products-main .products-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ---- Filter Sidebar ---- */
.filter-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.filter-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
}

.filter-sidebar-header h3 {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dark);
}

.filter-sidebar-close {
    display: none;
    background: none;
    border: none;
    padding: 2px;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
}

.filter-clear-btn {
    font-size: 12px;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    padding: 0;
    display: none;
}

.filter-clear-btn.visible {
    display: inline;
}

/* ---- Filter Group ---- */
.filter-group {
    border-bottom: 1px solid var(--border);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.filter-group-header>span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.filter-group-header svg {
    color: var(--gray);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.filter-group.collapsed .filter-group-header svg {
    transform: rotate(-90deg);
}

.filter-group-body {
    padding: 2px 18px 14px;
}

.filter-group.collapsed .filter-group-body {
    display: none;
}

/* ---- Checkboxes & Labels ---- */
.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.filter-option-label {
    font-size: 13px;
    color: var(--dark);
    flex: 1;
    line-height: 1.4;
}

.filter-option-count {
    font-size: 11px;
    color: var(--gray);
    background: var(--light-gray);
    padding: 1px 6px;
    border-radius: 20px;
    flex-shrink: 0;
}

/* Sub-category filter */
.cat-filter-group {
    margin-bottom: 2px;
}

.filter-option-parent {
    font-weight: 600;
}

.sub-toggle {
    background: none;
    border: none;
    padding: 2px 4px;
    cursor: pointer;
    color: var(--muted);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: transform .2s;
}

.sub-toggle.open {
    transform: rotate(180deg);
}

.sub-filter-list {
    padding-left: 20px;
    border-left: 2px solid var(--border);
    margin: 4px 0 4px 8px;
}

.filter-option-sub .filter-option-label {
    font-size: 12.5px;
    color: var(--gray);
}

/* ---- Price Range Slider ---- */
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.price-range-input {
    flex: 1;
    min-width: 0;
    padding: 6px 8px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-family: inherit;
    text-align: center;
    color: var(--dark);
    -moz-appearance: textfield;
}

.price-range-input::-webkit-inner-spin-button,
.price-range-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.price-range-input:focus {
    outline: none;
    border-color: var(--primary);
}

.price-range-sep {
    font-size: 12px;
    color: var(--gray);
}

/* Dual-thumb slider */
.price-slider-wrap {
    position: relative;
    height: 20px;
    margin: 4px 0 6px;
}

.price-slider-base,
.price-slider-track {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 2px;
    width: 100%;
}

.price-slider-base {
    background: var(--border);
}

.price-slider-track {
    background: var(--primary);
    width: 0;
    pointer-events: none;
}

.price-slider-wrap input[type="range"] {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.price-slider-wrap input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 2.5px solid var(--white);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .25);
    pointer-events: all;
    cursor: pointer;
}

.price-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 2.5px solid var(--white);
    box-shadow: 0 1px 5px rgba(0, 0, 0, .25);
    pointer-events: all;
    cursor: pointer;
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--gray);
    margin-top: 4px;
}

/* ---- Rating Radio ---- */
.filter-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 0;
    cursor: pointer;
}

.filter-rating input[type="radio"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.filter-rating .stars {
    display: flex;
    gap: 1px;
}

.filter-rating .stars .star,
.filter-rating .stars .star.empty {
    width: 13px;
    height: 13px;
}

.filter-rating-label {
    font-size: 12.5px;
    color: var(--gray);
}

/* ---- Active Filter Tags ---- */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
    min-height: 0;
}

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px 4px 12px;
    background: #fff5f2;
    border: 1px solid #ffc8b4;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
}

.active-filter-tag button {
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    color: var(--primary);
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
}

/* ---- No results ---- */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.no-results svg {
    width: 48px;
    height: 48px;
    opacity: .25;
}

.no-results p {
    font-size: 15px;
    color: var(--gray);
}

.btn-reset-filters {
    display: inline-block;
    padding: 9px 22px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    margin-top: 4px;
    transition: background var(--transition);
}

.btn-reset-filters:hover {
    background: var(--primary-dark);
}

/* ---- Mobile toggle (hidden on desktop) ---- */
.filter-mobile-toggle {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: border-color var(--transition), color var(--transition);
}

.filter-mobile-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ---- Mobile backdrop ---- */
.filter-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 8999;
}

.filter-backdrop.visible {
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-main .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Sidebar becomes a fixed overlay on mobile */
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100%;
        border-radius: 0;
        overflow-y: auto;
        z-index: 9000;
        transition: left .28s ease;
    }

    .filter-sidebar.mobile-open {
        left: 0;
    }

    .filter-sidebar-close {
        display: flex;
    }

    .filter-mobile-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .products-main .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================================
   BLOG DETAY SAYFASI
   =================================================== */

.blog-detay-hero {
    padding: 48px 0 40px !important;
}

.blog-detay-emoji {
    font-size: 64px;
    margin-bottom: 16px;
}

.blog-detay-meta-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 12px 0 16px;
    font-size: 13.5px;
    color: rgba(0, 0, 0, .6);
}

.blog-detay-meta-hero span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Two-column layout */
.blog-detay-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

/* Article */
.blog-detay-article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    padding: 36px 40px;
}

/* Article content typography */
.blog-detay-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 28px 0 10px;
    color: var(--dark);
}

.blog-detay-content h3:first-child {
    margin-top: 0;
}

.blog-detay-content p {
    font-size: 15px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 14px;
}

.blog-detay-content ul,
.blog-detay-content ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.blog-detay-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 4px;
}

/* Footer bar inside article */
.blog-detay-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transition: opacity var(--transition), transform var(--transition);
}

.share-btn:hover {
    opacity: .82;
    transform: scale(1.1);
}

.share-btn svg {
    width: 16px;
    height: 16px;
}

.share-twitter {
    background: #000;
    color: #fff;
}

.share-facebook {
    background: #1877F2;
    color: #fff;
}

.share-whatsapp {
    background: #25D366;
    color: #fff;
}

/* Back button */
.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    transition: gap var(--transition);
}

.blog-back-btn:hover {
    gap: 10px;
}

/* Sidebar */
.blog-detay-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
}

.blog-sidebar-title {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* Author card */
.blog-author-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.blog-author-avatar {
    font-size: 36px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 50%;
}

.blog-author-name {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.blog-author-bio {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}

/* Related posts */
.blog-related-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

.blog-related-item:last-child {
    border-bottom: none;
}

.blog-related-item:hover .blog-related-title {
    color: var(--primary);
}

.blog-related-thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.blog-related-title {
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 3px;
    transition: color var(--transition);
}

.blog-related-date {
    font-size: 11px;
    color: var(--gray);
}

/* Category links in sidebar */
.blog-sidebar-cat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 13px;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-sidebar-cat:last-child {
    border-bottom: none;
}

.blog-sidebar-cat span {
    font-size: 11px;
    background: var(--light-gray);
    padding: 1px 7px;
    border-radius: 20px;
    color: var(--gray);
}

.blog-sidebar-cat:hover,
.blog-sidebar-cat.active {
    color: var(--primary);
}

.blog-sidebar-cat.active span {
    background: #fff5f2;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 900px) {
    .blog-detay-layout {
        grid-template-columns: 1fr;
    }

    .blog-detay-sidebar {
        position: static;
    }
}

@media (max-width: 600px) {
    .blog-detay-article {
        padding: 22px 18px;
    }
}

/* ===================================================
   YARDIM & BİLGİ SAYFALARI
   =================================================== */

/* Help Center card grid */
.help-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.help-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.help-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.help-card-icon {
    font-size: 40px;
    line-height: 1;
}

.help-card h3 {
    font-size: 15px;
    font-weight: 700;
}

.help-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.help-card-link {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-top: auto;
}

/* Info / Steps */
.info-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.info-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 18px;
    text-align: center;
}

.info-step-num {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin: 0 auto 12px;
}

.info-step h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-step p {
    font-size: 12.5px;
    color: var(--gray);
    line-height: 1.5;
}

/* Info cards (payment, kargo etc.) */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 18px;
}

.info-card-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.info-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.info-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.55;
}

.info-card ul {
    padding-left: 16px;
    margin-top: 8px;
}

.info-card li {
    font-size: 12.5px;
    color: var(--gray);
    margin-bottom: 4px;
}

/* FAQ accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: var(--dark);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform .22s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 14px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Order tracking form */
.track-form-wrap {
    max-width: 520px;
    margin: 0 auto 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 40px;
}

.track-form-wrap h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.track-form-wrap p {
    font-size: 13.5px;
    color: var(--gray);
    margin-bottom: 24px;
}

.track-field {
    margin-bottom: 16px;
}

.track-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.track-field input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    transition: border-color var(--transition);
}

.track-field input:focus {
    outline: none;
    border-color: var(--primary);
}

.track-submit {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--transition);
    margin-top: 8px;
}

.track-submit:hover {
    background: var(--primary-dark);
}

.track-result {
    margin-top: 20px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--radius);
    font-size: 13.5px;
    color: #166534;
    display: none;
}

/* Legal / Policy article */
.info-article-wrap {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

.info-toc {
    position: sticky;
    top: 90px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
}

.info-toc h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.info-toc a {
    display: block;
    font-size: 12.5px;
    color: var(--gray);
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: color var(--transition);
}

.info-toc a:last-child {
    border-bottom: none;
}

.info-toc a:hover {
    color: var(--primary);
}

.info-article {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 40px;
}

.info-article h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 32px 0 10px;
    padding-top: 12px;
    scroll-margin-top: 80px;
}

.info-article h2:first-child {
    margin-top: 0;
}

.info-article h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 22px 0 8px;
}

.info-article p {
    font-size: 14px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 12px;
}

.info-article ul,
.info-article ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.info-article li {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 4px;
}

.info-article .last-update {
    font-size: 12.5px;
    color: var(--gray);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.info-section {
    margin-bottom: 8px;
}

/* Section heading with accent bar */
.section-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 40px 0 24px;
}

.section-divider h2 {
    font-size: 22px;
    font-weight: 800;
    margin: 0;
}

.section-divider-bar {
    flex: 1;
    height: 2px;
    background: var(--border);
}

/* Responsive */
@media (max-width: 900px) {
    .info-article-wrap {
        grid-template-columns: 1fr;
    }

    .info-toc {
        position: static;
    }
}

@media (max-width: 768px) {
    .help-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .track-form-wrap {
        padding: 24px 20px;
    }

    .info-article {
        padding: 22px 18px;
    }
}

@media (max-width: 480px) {
    .help-cards-grid {
        grid-template-columns: 1fr;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .info-steps {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   ÜRÜN DETAY (urun.php)
═══════════════════════════════════════════ */
.urun-detay-wrap {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

/* Görsel Kolonu */
.urun-detay-img-main {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--border);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.urun-detay-emoji {
    font-size: 100px;
    line-height: 1;
}

.urun-detay-discount-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.urun-detay-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.urun-detay-thumb {
    border-radius: 8px;
    border: 2px solid var(--border);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--transition);
}

.urun-detay-thumb.active {
    border-color: var(--primary);
}

.urun-detay-thumb:hover {
    border-color: var(--primary);
}

/* Bilgi Kolonu */
.urun-detay-info-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.urun-detay-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.urun-detay-cat-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: #fff1ee;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background var(--transition);
}

.urun-detay-cat-tag:hover {
    background: #ffd8cd;
}

.urun-detay-badge-tag {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
}

.urun-detay-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.urun-detay-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.urun-detay-rating .stars {
    display: flex;
    gap: 2px;
}

.urun-detay-rating-val {
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.urun-detay-reviews {
    font-size: 13px;
    color: var(--gray);
}

.urun-detay-divider {
    height: 1px;
    background: var(--border);
    margin: 16px 0;
}

.urun-detay-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.urun-detay-price {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.urun-detay-old-price {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
}

.urun-detay-pct {
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
    background: #f0fdf4;
    padding: 3px 10px;
    border-radius: 20px;
}

.urun-detay-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Adet + Sepet */
.urun-detay-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 4px;
    flex-wrap: wrap;
}

.urun-qty-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.urun-qty-btn {
    width: 38px;
    height: 44px;
    background: var(--light-gray);
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    transition: background var(--transition);
}

.urun-qty-btn:hover {
    background: var(--border);
}

.urun-qty-input {
    width: 50px;
    height: 44px;
    border: none;
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border);
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    -moz-appearance: textfield;
}

.urun-qty-input::-webkit-outer-spin-button,
.urun-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.urun-detay-add-btn {
    flex: 1;
    min-width: 160px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background var(--transition), transform .1s;
}

.urun-detay-add-btn:hover {
    background: var(--primary-dark);
}

.urun-detay-add-btn:active {
    transform: scale(.97);
}

.urun-detay-fav-btn {
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all var(--transition);
}

.urun-detay-fav-btn:hover {
    border-color: #e84710;
    color: var(--primary);
}

.urun-detay-fav-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    fill: var(--primary);
}

.urun-detay-fav-btn.active svg {
    fill: var(--primary);
}

/* Güvenceler */
.urun-detay-guarantees {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 18px;
    padding: 16px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.urun-guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #16a34a;
}

.urun-guarantee-item svg {
    stroke: #16a34a;
    flex-shrink: 0;
}

/* SEKMELER */
.urun-tabs-wrap {
    margin-bottom: 48px;
}

.urun-tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.urun-tabs-nav::-webkit-scrollbar {
    display: none;
}

.urun-tab {
    padding: 12px 22px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
}

.urun-tab:hover {
    color: var(--dark);
}

.urun-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.urun-tab-panel {
    font-size: 14.5px;
    line-height: 1.75;
    color: #444;
}

/* Özellikler Tablosu */
.urun-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.urun-spec-table tr:nth-child(even) {
    background: var(--light-gray);
}

.urun-spec-table th,
.urun-spec-table td {
    padding: 11px 16px;
    text-align: left;
    border: 1px solid var(--border);
}

.urun-spec-table th {
    font-weight: 700;
    color: var(--dark);
    width: 200px;
    background: #f9f9f9;
}

/* Yorumlar */
.urun-reviews-summary {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.urun-reviews-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.urun-reviews-big-score {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.urun-reviews-bars {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.urun-review-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray);
}

.urun-review-bar-bg {
    flex: 1;
    height: 8px;
    background: var(--border);
    border-radius: 99px;
    overflow: hidden;
}

.urun-review-bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 99px;
}

/* Benzer Ürünler */
.urun-related-section {
    margin-bottom: 48px;
}

.urun-related-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .urun-detay-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .urun-detay-img-main {
        max-width: 360px;
        margin: 0 auto;
    }

    .urun-detay-thumbs {
        max-width: 360px;
        margin: 12px auto 0;
    }
}

@media (max-width: 600px) {
    .urun-detay-title {
        font-size: 19px;
    }

    .urun-detay-price {
        font-size: 24px;
    }

    .urun-detay-guarantees {
        grid-template-columns: 1fr;
    }

    .urun-detay-add-btn {
        min-width: 120px;
    }
}