/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0054A6;
    --primary-dark: #003d7a;
    --primary-light: #0d5cab;
    --secondary: #f1f1f1;
    --text-dark: #333;
    --text-light: #666;
    --text-white: #fff;
    --bg-light: #f5f5f5;
    --bg-white: #fff;
    --border: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FIXED HEADER WRAPPER ===== */
.site-header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.site-header-spacer {
    height: 130px; /* top-bar + header + nav approximate */
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: var(--text-white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: var(--text-white);
    font-weight: 400;
    transition: opacity var(--transition);
}

.top-bar a:hover {
    opacity: 0.85;
}

.top-bar a i {
    margin-right: 5px;
}


/* ===== HEADER ===== */
.main-header {
    background: var(--bg-white);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 48px;
    width: auto;
}

/* Placeholder logo when image not found */
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.search-box {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-box-inner {
    display: flex;
    border: 2px solid var(--primary);
    border-radius: 6px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 10px 16px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
}

/* Live Search Dropdown */
.search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: 2px solid var(--primary);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 500;
    max-height: 420px;
    overflow-y: auto;
}
.search-dropdown.open { display: block; }

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #f5f8ff; }

.sr-img {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.sr-img img { max-width: 40px; max-height: 40px; object-fit: contain; }

.sr-info { flex: 1; min-width: 0; }
.sr-name {
    font-size: 13px; font-weight: 600; color: #333;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sr-cat { font-size: 11px; color: #999; margin-top: 2px; }
.sr-price { font-size: 13px; font-weight: 700; color: var(--primary); margin-top: 2px; display: block; }
.sr-price.ask { font-size: 11px; color: #e67e22; font-weight: 600; }

.search-no-result { padding: 24px; text-align: center; color: #999; font-size: 13px; }
.search-no-result i { margin-right: 6px; }

.search-view-all {
    padding: 12px 14px; text-align: center; color: var(--primary);
    font-size: 13px; font-weight: 600; cursor: pointer;
    border-top: 1px solid #eee; transition: background 0.15s;
}
.search-view-all:hover { background: #f0f6ff; }
.search-view-all i { margin-right: 6px; }

@media (max-width: 768px) {
    .search-dropdown { max-height: 300px; }
    .sr-img { width: 40px; height: 40px; }
    .sr-name { font-size: 12px; }
}

.search-box button {
    background: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 16px;
    transition: background var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon {
    color: var(--primary);
    font-size: 22px;
    position: relative;
    transition: color var(--transition);
}

.header-icon:hover {
    color: var(--primary-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}
.fav-count.has-count { display: flex; }

/* Utility classes */
.u-chevron-sm { font-size: 10px; }
.u-text-link-bold { font-weight: 600; }
.u-breadcrumb-active { color: #333; font-weight: 500; }
.u-hidden { display: none; }
.u-text-small-muted { font-size: 13px; color: #999; }

/* Page-specific */
.reviews-section { padding: 40px 0; background: white; border-top: 1px solid #eee; }
.related-section-hidden { display: none; }

/* index.html SEO section */
.seo-h1-bar { background: #0054A6; color: white; text-align: center; padding: 18px 20px 14px; }
.seo-h1-title { font-size: 18px; font-weight: 700; margin: 0; }
.seo-content-section { padding: 40px 0; background: #f9f9f9; border-top: 1px solid #eee; }
.seo-content-title { font-size: 22px; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; }
.seo-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; font-size: 14px; color: #555; line-height: 1.8; }
.seo-content-grid h3 { font-size: 16px; color: #0054A6; margin-bottom: 10px; }
.seo-content-grid h3.seo-h3-second { margin: 16px 0 10px; }
.seo-content-grid ul { padding-left: 18px; }
.seo-footer-note { margin-top: 24px; text-align: center; }
.seo-footer-note p { font-size: 13px; color: #999; }
.seo-footer-link { color: #0054A6; font-weight: 600; }
@media (max-width: 700px) { .seo-content-grid { grid-template-columns: 1fr; } }

/* Anasayfa alt reklam şeridi (9 taksit) */
.home-promo-strip {
    background: linear-gradient(135deg, #0054A6 0%, #003d7a 50%, #0054A6 100%);
    padding: 22px 0;
    border-top: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 84, 166, 0.15), inset 0 0 30px rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.home-promo-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
    pointer-events: none;
}
.home-promo-strip-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.home-promo-badge {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.home-promo-badge i {
    font-size: 26px;
    color: #0054A6;
}
.home-promo-text {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}
.home-promo-text strong { color: #ffffff; font-weight: 700; }
.home-promo-highlight {
    display: inline-block;
    background: white;
    color: #0054A6;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin-top: 4px;
}
.home-promo-highlight strong { color: #e65100; }
.home-promo-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
}
.home-promo-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}
.home-promo-wa i { font-size: 18px; }
@media (max-width: 700px) {
    .home-promo-strip-inner { flex-direction: column; text-align: center; }
    .home-promo-text { font-size: 13px; }
}

/* SEO category links (index.html) */
.seo-cat-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 10px; justify-content: center; }
.seo-cat-link { display: inline-block; padding: 6px 14px; background: #f0f6ff; color: #0054A6; border-radius: 20px; font-size: 12px; font-weight: 600; text-decoration: none; border: 1px solid #d0e3ff; transition: all 0.15s; }
.seo-cat-link:hover { background: #0054A6; color: white; }

/* SEO noscript product list (fallback for bots) */
.seo-product-list { padding: 40px 20px; max-width: 1000px; margin: 0 auto; }
.seo-product-list h2 { font-size: 20px; color: #1a1a2e; margin-bottom: 16px; }
.seo-product-list ul { column-count: 3; column-gap: 20px; list-style: none; padding: 0; }
.seo-product-list li { padding: 4px 0; break-inside: avoid; }
.seo-product-list a { color: #0054A6; text-decoration: none; font-size: 13px; }
.seo-product-list a:hover { text-decoration: underline; }
@media (max-width: 700px) { .seo-product-list ul { column-count: 1; } }

/* Taksit Başlık (Ücretsiz Taksitler ve Bankalar) */
.taksit-header { margin-bottom: 18px; }
.taksit-title {
    margin: 0 0 6px; font-size: 22px; font-weight: 800; color: #1a1a2e;
    display: flex; align-items: center; gap: 10px;
}
.taksit-title i { color: #0054A6; font-size: 22px; }
.taksit-subtitle { margin: 0 0 14px; font-size: 14px; color: #555; line-height: 1.6; }
.taksit-subtitle strong { color: #ea580c; font-size: 15px; }
.taksit-best-bank {
    display: inline-block;
    background: #0054A6;
    color: white;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    margin: 0 2px;
}
.taksit-summary-cards {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    margin-bottom: 16px;
}
.taksit-summary-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid #bae6fd; border-radius: 12px;
    padding: 16px 12px; text-align: center;
    transition: transform .2s;
}
.taksit-summary-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,84,166,0.15); }
.taksit-summary-num {
    font-size: 28px; font-weight: 800; color: #0054A6; line-height: 1;
    margin-bottom: 6px;
}
.taksit-summary-label {
    font-size: 11px; color: #475569; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.3px;
}
@media (max-width: 600px) {
    .taksit-summary-cards { grid-template-columns: 1fr; }
    .taksit-title { font-size: 18px; }
    .taksit-summary-num { font-size: 22px; }
}
/* Faizsiz taksit rozeti banka tabında */
.taksit-tab-badge {
    display: inline-block; background: #27ae60; color: white;
    font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 10px;
    margin-left: 6px; text-transform: uppercase; letter-spacing: 0.3px;
    vertical-align: middle;
}

/* Taksit promo banner (9 taksit bilgilendirme) */
.taksit-promo-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0054A6, #003d7a);
    color: white;
    padding: 14px 18px;
    border-radius: 10px;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
    flex-wrap: wrap;
}
.taksit-promo-banner > i { font-size: 20px; flex-shrink: 0; opacity: 0.8; }
.taksit-promo-banner > span { flex: 1; min-width: 200px; }
.taksit-promo-highlight {
    display: inline-block;
    background: white;
    color: #0054A6;
    padding: 2px 10px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 12px;
    margin-top: 2px;
}
.taksit-promo-highlight strong { color: #e65100; }
.taksit-promo-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    transition: transform 0.15s;
}
.taksit-promo-wa:hover { transform: translateY(-1px); color: white; }
.taksit-promo-compact { padding: 10px 14px; font-size: 12px; margin-top: 12px; }
.taksit-promo-compact > i { font-size: 16px; }
.taksit-promo-compact .taksit-promo-wa { padding: 6px 12px; font-size: 12px; }
@media (max-width: 600px) {
    .taksit-promo-banner { flex-direction: column; text-align: center; gap: 8px; }
    .taksit-promo-banner > span { min-width: auto; }
}

/* iletisim page */
.contact-info-note { font-size: 12px; color: #999; margin-top: 6px; }
.contact-icon-primary { color: var(--primary); margin-right: 8px; }
.contact-icon-primary-sm { color: var(--primary); margin-right: 6px; }
.contact-bayi-subline { margin-top: 6px; font-size: 12px; }

/* Top bar center (components.js) */
.top-bar { position: relative; }
.top-bar .container { position: relative; }
.top-bar-center { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: 14px; font-weight: 800; letter-spacing: 0.8px; color: #fff; text-transform: uppercase; white-space: nowrap; pointer-events: none; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
@media (max-width: 1100px) { .top-bar-center { display: none; } }

/* uye.html password strength */
.pass-strength { margin-top: 6px; display: none; }
.pass-strength.active { display: block; }
.pass-bars { display: flex; gap: 4px; margin-bottom: 4px; }
.pass-bar { flex: 1; height: 4px; background: #e0e0e0; border-radius: 2px; transition: background 0.2s; }
.pass-text { font-size: 11px; }
.fg-mb14 { margin-bottom: 14px; }
.label-hint { color: #999; font-weight: 400; }
.input-uppercase { text-transform: uppercase; }
.login-options-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.fg-check-flat { margin: 0; }
.forgot-pass-link { font-size: 13px; color: var(--primary); }
.btn-auth-inline { display: inline-flex; width: auto; padding: 14px 32px; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* ===== NAVIGATION ===== */
.main-nav {
    background: var(--primary);
    overflow: hidden;
}

.main-nav .container {
    max-width: 100%;
    padding: 0 10px;
}

.nav-list {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--text-white);
    padding: 12px 9px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--transition);
}

@media (max-width: 1600px) {
    .nav-list > li > a .fa-chevron-down { display: none; }
}

@media (max-width: 1440px) {
    .nav-list > li > a { padding: 12px 6px; font-size: 11px; }
}

@media (max-width: 1280px) {
    .nav-list > li > a { padding: 11px 5px; font-size: 10.5px; }
}

.nav-list > li > a:hover,
.nav-list > li:hover > a {
    background: rgba(255,255,255,0.12);
}

.nav-list > li > a .fa-chevron-down {
    font-size: 10px;
    transition: transform var(--transition);
}

.nav-list > li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 200;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu ul li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 13px;
    border-bottom: 1px solid #f0f0f0;
    transition: all var(--transition);
}

.dropdown-menu ul li a:hover {
    background: var(--secondary);
    color: var(--primary);
    padding-left: 26px;
}

.dropdown-menu ul li.view-all a {
    color: var(--primary);
    font-weight: 600;
    text-align: center;
    border-bottom: none;
}

.dropdown-menu ul li.view-all a:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #1a1a2e;
}

.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    position: relative;
    background: #1a1a2e;
    aspect-ratio: 820 / 500;
}

.slide a {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: background var(--transition);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.7);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: background var(--transition);
}

.slider-dots .dot.active {
    background: white;
}

/* ===== FEATURED / ÖNE ÇIKANLAR ===== */
.featured-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.fc-scroll {
    position: relative;
}

.fc-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 10px;
}
.fc-track::-webkit-scrollbar { display: none; }

.fc-card {
    min-width: 240px;
    max-width: 240px;
    scroll-snap-align: start;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition);
    flex-shrink: 0;
}
.fc-card:hover {
    box-shadow: 0 8px 28px rgba(0,84,166,0.12);
    transform: translateY(-4px);
    border-color: var(--primary);
}
.fc-card a { display: block; color: inherit; text-decoration: none; }

.fc-img {
    height: 180px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.fc-img img { max-height: 150px; max-width: 100%; object-fit: contain; transition: transform 0.3s; }
.fc-card:hover .fc-img img { transform: scale(1.06); }

.fc-body { padding: 14px 16px 18px; }
.fc-cat {
    display: inline-block;
    background: #e8f0fa;
    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.fc-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.fc-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}
.fc-price.ask {
    font-size: 12px;
    color: #e67e22;
    font-weight: 600;
}

.fc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    transition: all var(--transition);
}
.fc-arrow:hover { background: var(--primary); color: white; border-color: var(--primary); }
.fc-prev { left: -8px; }
.fc-next { right: -8px; }

@media (max-width: 768px) {
    .fc-card { min-width: 200px; max-width: 200px; }
    .fc-img { height: 140px; }
    .fc-arrow { display: none; }
    .featured-section { padding: 28px 0; }
}

@media (max-width: 480px) {
    .fc-card { min-width: 170px; max-width: 170px; }
    .fc-img { height: 120px; padding: 10px; }
    .fc-name { font-size: 12px; }
    .fc-price { font-size: 15px; }
}

/* ===== CATEGORIES ===== */
.categories-section {
    padding: 50px 0;
    background: var(--bg-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    text-align: center;
    transition: transform var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card a {
    display: block;
}

.category-img {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.category-card:hover .category-img {
    box-shadow: 0 8px 25px rgba(0,84,166,0.15);
}

.category-img img {
    max-height: 140px;
    object-fit: contain;
}

.category-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.category-card:hover h3 {
    color: var(--primary);
}

/* ===== FEATURES BAR ===== */
.features-bar {
    background: var(--bg-light);
    padding: 30px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
}

.feature-item i {
    font-size: 32px;
    color: var(--primary);
    min-width: 40px;
    text-align: center;
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: 12px;
    color: var(--text-light);
}

/* ===== ALL PRODUCTS SECTION ===== */
.all-products-section {
    padding: 50px 0;
    position: relative;
}

.product-count {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    background: var(--bg-white);
    border: 2px solid var(--border);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

/* ===== ALT-TİP FİLTRESİ (Derin Dondurucu vb.) — kategori filter'larıyla aynı tarzda, sadeleştirilmiş ===== */
.subtype-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0 0 24px;
    padding: 0;
}
.subtype-btn {
    background: var(--bg-white, #fff);
    border: 1.5px solid var(--border, #e5e5e5);
    color: var(--text-dark, #1a1a2e);
    padding: 7px 16px;
    border-radius: 24px;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.subtype-btn i { font-size: 12px; color: var(--primary, #0054A6); }
.subtype-btn:hover {
    border-color: var(--primary, #0054A6);
    color: var(--primary, #0054A6);
}
.subtype-btn.active {
    background: var(--primary, #0054A6);
    border-color: var(--primary, #0054A6);
    color: #fff;
}
.subtype-btn.active i { color: #fff; }
.subtype-count {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 500;
}
@media (max-width: 768px) {
    .subtype-filters { gap: 6px; }
    .subtype-btn { padding: 6px 12px; font-size: 11.5px; }
    .subtype-btn i { font-size: 11px; }
}

/* ===== MOBILE FILTER YATAY SCROLL — küçük ekranda butonlar sığmazsa ===== */
@media (max-width: 600px) {
    .category-filters,
    .subtype-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 8px;
        margin-left: -8px;
        margin-right: -8px;
        justify-content: flex-start;
    }
    .category-filters::-webkit-scrollbar,
    .subtype-filters::-webkit-scrollbar { display: none; }
    .filter-btn,
    .subtype-btn { flex-shrink: 0; }

    /* Adv-filters mobile'da kompakt — yatay sıralanıp sığsın */
    .adv-filters-row { flex-direction: column; gap: 10px; }
    .adv-filter-group { width: 100%; }
    .adv-filter-group label { font-size: 11px; }
    .price-range-inputs input { font-size: 12px; padding: 8px; }
    .adv-filter-actions { flex-direction: row; gap: 8px; }
    .adv-apply-btn,
    .adv-clear-btn { flex: 1; }

    /* Tüm Ürünler section'ında container padding'i azalt mobile'da */
    .all-products-section .container { padding: 0 12px; }
    .section-title { font-size: 19px; margin-bottom: 16px; }

    /* Freezer types kartları mobile'da daha kompakt */
    .freezer-types-grid { gap: 12px; }
    .ft-card { padding: 16px; }
    .ft-card h3 { font-size: 15px; }
    .ft-card p { font-size: 12px; }
}

/* ===== ADVANCED FILTERS ===== */
.adv-filters {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}
.adv-filters-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}
.adv-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 160px;
}
.adv-filter-group label {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.adv-filter-group label i { color: var(--primary); font-size: 12px; }
.adv-filter-group select,
.adv-filter-group input {
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    background: white;
    transition: border-color 0.2s;
}
.adv-filter-group select:focus,
.adv-filter-group input:focus { border-color: var(--primary); }
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}
.price-range-inputs input { width: 100%; min-width: 0; }
.price-range-inputs span { color: #999; font-weight: 600; flex-shrink: 0; }
.adv-filter-actions {
    flex-direction: row !important;
    align-items: flex-end !important;
    min-width: auto !important;
    flex: 0 !important;
    gap: 8px;
}
.adv-apply-btn {
    padding: 9px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background 0.2s;
}
.adv-apply-btn:hover { background: var(--primary-dark); }
.adv-clear-btn {
    padding: 9px 14px;
    background: white;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: all 0.2s;
}
.adv-clear-btn:hover { border-color: #e74c3c; color: #e74c3c; }
.active-filters-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}
.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: #e8f0fa;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}
.active-filter-tag i { cursor: pointer; font-size: 10px; opacity: 0.6; }
.active-filter-tag i:hover { opacity: 1; }

@media (max-width: 768px) {
    .adv-filters-row { flex-direction: column; gap: 12px; }
    .adv-filter-group { min-width: 100% !important; }
    .adv-filter-actions { flex-direction: row !important; width: 100%; }
    .adv-apply-btn, .adv-clear-btn { flex: 1; justify-content: center; }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-load-more {
    background: var(--bg-white);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 48px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-load-more:hover {
    background: var(--primary);
    color: var(--text-white);
}

/* ===== FEATURED PRODUCTS ===== */
.featured-products {
    padding: 50px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 12px auto 0;
    border-radius: 2px;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
}

.badge-new {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-image {
    background: var(--secondary);
    padding: 20px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 180px;
    object-fit: contain;
    transition: transform var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 16px;
}

.btn-fav-card {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: white;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #ccc;
    z-index: 5;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.btn-fav-card:hover { color: #e74c3c; border-color: #e74c3c; }
.btn-fav-card.active { color: #e74c3c; border-color: #e74c3c; }

.product-category-tag {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-card a {
    display: block;
    color: inherit;
}

.product-card a:hover {
    color: inherit;
}

.product-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-desc {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-features {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.energy-class {
    background: #4caf50;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
}

.product-features span {
    font-size: 11px;
    color: var(--text-light);
}

.product-features span i {
    color: var(--primary);
}

.product-price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.product-old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.product-discount-badge {
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-price.ask {
    font-size: 13px;
    font-weight: 600;
    color: #e67e22;
}

.product-installment {
    font-size: 11px;
    color: #0054A6;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-installment i { font-size: 10px; opacity: 0.7; }
.product-installment strong { font-weight: 700; }

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 0 16px 16px;
}

.btn-incele, .btn-incele:visited, .btn-incele:active {
    flex: 1;
    text-align: center;
    background: var(--primary);
    color: #ffffff !important;
    padding: 9px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition);
}

.btn-incele:hover {
    background: var(--primary-dark);
    color: #ffffff !important;
}

.btn-cart {
    background: var(--secondary);
    border: 1px solid var(--border);
    color: var(--primary);
    width: 40px;
    height: 38px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: all var(--transition);
}

.btn-cart:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.carousel-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-dark);
}

.carousel-prev {
    left: -5px;
}

.carousel-next {
    right: -5px;
}

.btn-primary {
    display: inline-block;
    background: var(--text-white);
    color: var(--primary);
    padding: 12px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* ===== DEALER / APP SECTION ===== */
.dealer-app-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.dealer-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dealer-box,
.app-box {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.dealer-box i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.dealer-box h3,
.app-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.dealer-box p,
.app-box p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    background: var(--primary);
    color: var(--text-white);
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background var(--transition);
}

.btn-secondary:hover {
    background: var(--primary-dark);
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition);
}

.app-store-btn i {
    font-size: 22px;
}

.app-store-btn:hover {
    background: #555;
}

/* ===== FOOTER ===== */
.main-footer {
    background: #1a1a2e;
    color: #ccc;
    padding-top: 50px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-social h3,
.footer-newsletter h3 {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-social p,
.footer-newsletter p {
    font-size: 13px;
    margin-bottom: 16px;
    color: #aaa;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 6px 0 0 6px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form input:focus {
    border-color: var(--primary);
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 6px 6px 0;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-columns {
    display: grid;
    /* Sol marka kolonu daha geniş: brand(1.3fr) + KURUMSAL/ÜRÜNLER/MÜŞTERİ/SOSYAL(1fr×4) + DOĞRULAMA(0.9fr) */
    grid-template-columns: 1.3fr repeat(4, 1fr) 0.9fr;
    gap: 28px;
    padding: 40px 0 28px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 13px;
    transition: all var(--transition);
}

.footer-col ul li a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

/* ===== Marka kolonu (sol) ===== */
.footer-col-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 8px;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
    display: inline-block;
    line-height: 0;
}
.footer-brand-logo img {
    width: 110px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding: 10px 12px;
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-brand-tag {
    color: #cbd5e1;
    font-size: 11.5px;
    line-height: 1.45;
}
.footer-brand-phone {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
    margin-top: 2px;
}
.footer-brand-phone:hover { color: #93c5fd; }

/* ===== ETBİS doğrulama kartı (sağ) ===== */
.footer-col-etbis {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.footer-etbis-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #fff;
    padding: 6px 8px 3px;
    border-radius: 8px;
    text-decoration: none;
    line-height: 1;
}
.footer-etbis-card img { display: block; border-radius: 4px; }
.footer-etbis-card span {
    font-size: 10px;
    color: #c0392b;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* ===== Yetkili satıcı / adres / iletişim şeridi (footer-columns altı) =====
   Tipografi footer ile uyumlu: gövde #cbd5e1, ikon vurgusu #93c5fd, 13px. */
.footer-address-row {
    text-align: center;
    padding: 18px 16px;
    margin: 14px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.65;
    letter-spacing: 0.2px;
}
.footer-address-row .footer-merchant {
    color: #cbd5e1;
    margin-bottom: 4px;
}
.footer-address-row .footer-merchant strong {
    color: #fff;
    font-weight: 700;
    margin-right: 4px;
}
.footer-address-row .footer-merchant i,
.footer-address-row .footer-address-line i {
    color: #93c5fd;
    margin-right: 8px;
    font-size: 12px;
}
.footer-address-row .footer-address-line {
    color: #cbd5e1;
}
.footer-address-row .footer-contacts {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.footer-address-row .footer-contacts a {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}
.footer-address-row .footer-contacts a i {
    color: #93c5fd;
    margin-right: 6px;
}
.footer-address-row .footer-contacts a:hover {
    color: #93c5fd;
}

/* ===== Kredi kartı logoları şeridi ===== */
.footer-cards {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
    justify-content: center;
}
.footer-cards-label {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.footer-cards-label i { color: #93c5fd; }
.footer-cards-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-cards-row img {
    /* Karışık kaynaklardan logolar (transparent PNG + self-contained SVG + WebP) tutarlı
       görünsün diye hepsini beyaz pill içine yerleştiriyoruz. Object-fit ile aspect-ratio
       korunur, padding düzgün boşluk verir. */
    height: 42px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 6px 12px;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    flex-shrink: 0;
}
.footer-cards-row img:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.32);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #888;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--text-white);
}

/* ===== CART NOTIFICATION ===== */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification i {
    font-size: 18px;
}

/* ===== MINI CART ===== */
.mini-cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}

.mini-cart-overlay.open {
    display: block;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
}

.mini-cart.open {
    right: 0;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: var(--primary);
    color: white;
}

.mini-cart-header h3 {
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.mini-cart-close:hover {
    opacity: 1;
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.mini-cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.mini-cart-empty i {
    font-size: 56px;
    color: #ddd;
    margin-bottom: 16px;
    display: block;
}

.mini-cart-empty p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-continue {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 10px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.btn-continue:hover {
    background: var(--primary-dark);
    color: white;
}

.mini-cart-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mini-cart-item-img {
    width: 70px;
    height: 70px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.mini-cart-item-img img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}

.mini-cart-item-info {
    flex: 1;
    min-width: 0;
}

.mini-cart-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-item-name:hover {
    color: var(--primary);
}

.mini-cart-item-cat {
    font-size: 11px;
    color: #999;
    display: block;
    margin-bottom: 4px;
}

.mini-cart-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

.mini-cart-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    display: inline-flex;
}

.qty-btn {
    background: #f5f5f5;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 11px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #e0e0e0;
}

.qty-btn:first-child {
    border-radius: 5px 0 0 5px;
}

.qty-btn:last-child {
    border-radius: 0 5px 5px 0;
}

.qty-value {
    width: 36px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    line-height: 30px;
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.mini-cart-item-remove:hover {
    color: #e74c3c;
}

.mini-cart-footer {
    padding: 16px 24px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 15px;
}

.mini-cart-total strong {
    color: var(--primary);
    font-size: 16px;
}

.btn-clear-cart {
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    color: #666;
    padding: 10px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.btn-clear-cart:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-go-cart {
    display: block;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 6px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-go-cart:hover {
    background: var(--primary-dark);
    color: white;
}

/* ===== FAVORITES TOAST ===== */
.fav-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    color: #333;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    transform: translateX(120%);
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid #e74c3c;
}
.fav-toast.show { transform: translateX(0); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s;
}

.whatsapp-float .wa-btn {
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.3s;
    position: relative;
}

.whatsapp-float .wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

.whatsapp-float .wa-btn .wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: waPulse 2s infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float .wa-tooltip {
    background: white;
    color: #333;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    margin-right: 12px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float .wa-close {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #555;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .whatsapp-float { bottom: 80px; right: 16px; }
    .whatsapp-float .wa-btn { width: 50px; height: 50px; font-size: 24px; }
    .whatsapp-float .wa-tooltip { display: none; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,84,166,0.4);
    transition: all var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */

/* Large desktop */
@media (max-width: 1280px) {
    .container { padding: 0 16px; }
}

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
    /* Mobile nav at 1024 */
    .mobile-menu-btn { display: block; }
    .site-header-fixed .main-nav {
        position: fixed;
        top: 0; left: -300px;
        width: 300px; height: 100vh;
        overflow-y: auto; overflow-x: hidden;
        transition: left var(--transition);
        z-index: 1000;
    }
    .site-header-fixed .main-nav.open { left: 0; }
    .nav-list { flex-direction: column; flex-wrap: wrap; overflow: visible; }
    .nav-list > li > a {
        padding: 14px 20px; font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-list > li > a .fa-chevron-down { display: inline; }
    .dropdown-menu {
        position: static; opacity: 1; visibility: visible;
        transform: none; box-shadow: none; display: none;
        background: rgba(0,0,0,0.2); border-radius: 0;
    }
    .has-dropdown.active .dropdown-menu { display: block; }
    .dropdown-menu ul li a {
        color: rgba(255,255,255,0.8);
        border-bottom-color: rgba(255,255,255,0.05);
        padding-left: 36px;
    }
    .dropdown-menu ul li a:hover { background: rgba(255,255,255,0.1); color: white; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .products-carousel, .products-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-item h4 { font-size: 13px; }
    .feature-item p { font-size: 11px; }
    .section-title { font-size: 24px; }
}

/* Tablet portrait */
@media (max-width: 768px) {
    /* Header */
    .top-bar-left { display: none; }
    .top-bar { padding: 6px 0; font-size: 12px; }
    .header-inner { flex-wrap: wrap; gap: 10px; }
    .search-box { order: 3; max-width: 100%; flex-basis: 100%; }
    .logo img { height: 38px; }
    /* Grids */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .products-carousel, .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .category-img { height: 160px; padding: 20px; }
    .carousel-btn { display: none; }

    /* Sections */
    .section-title { font-size: 22px; margin-bottom: 24px; }
    .dealer-app-grid { grid-template-columns: 1fr; }
    .dealer-box, .app-box { padding: 28px; }

    /* Footer */
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .footer-col-brand { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 18px; padding-right: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 16px; }
    .footer-col-etbis { grid-column: 1 / -1; align-items: center; }
    .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
    .footer-cards { gap: 12px; padding: 12px 0; }
    .footer-cards-row { gap: 8px; }
    .footer-cards-row img { height: 34px; padding: 4px 8px; max-width: 90px; }

    /* Features bar */
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .feature-item { padding: 8px; gap: 10px; }
    .feature-item i { font-size: 24px; min-width: 30px; }
    .feature-item h4 { font-size: 12px; }
    .feature-item p { font-size: 11px; }

    /* Filters */
    .category-filters { gap: 6px; }
    .filter-btn { padding: 6px 14px; font-size: 12px; }

    /* Product cards */
    .product-image { height: 180px; padding: 14px; }
    .product-info { padding: 12px; }
    .product-title { font-size: 12px; }
    .product-price { font-size: 16px; }
    .product-actions { padding: 0 12px 12px; gap: 6px; }
    .btn-incele { font-size: 12px; padding: 7px 10px; }
    .btn-cart { width: 40px; height: 40px; font-size: 14px; }
    .btn-fav-card { width: 36px; height: 36px; font-size: 13px; top: 8px; right: 8px; }
}

/* Mobile large */
@media (max-width: 480px) {
    .container { padding: 0 12px; }

    /* Header */
    .top-bar-right { gap: 12px; font-size: 11px; }
    .bayi-link { display: none; }
    .logo img { height: 32px; }
    .header-actions { gap: 14px; }
    .header-icon { font-size: 18px; }
    .search-box input { padding: 8px 12px; font-size: 13px; }
    .search-box button { padding: 8px 14px; }

    /* Grids */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-img { height: 120px; padding: 16px; }
    .category-card h3 { font-size: 12px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-image { height: 150px; padding: 10px; }

    /* Features */
    .features-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .features-bar { padding: 16px 0; }

    /* Sections */
    .categories-section { padding: 30px 0; }
    .all-products-section { padding: 30px 0; }
    .section-title { font-size: 18px; margin-bottom: 20px; }
    .btn-primary { padding: 10px 24px; font-size: 13px; }

    /* Footer */
    .footer-columns { grid-template-columns: 1fr; gap: 16px; }
    .footer-col h4 { font-size: 13px; margin-bottom: 10px; }
    .footer-col ul li a { font-size: 12px; }
    .main-footer { padding-top: 30px; }

    /* App links */
    .app-links { flex-direction: column; align-items: center; }
    .app-store-btn { padding: 8px 16px; font-size: 13px; }

    /* Dealer */
    .dealer-box h3, .app-box h3 { font-size: 18px; }
    .dealer-box i { font-size: 36px; }
}

/* Mobile small */
@media (max-width: 360px) {
    .container { padding: 0 10px; }
    .top-bar { font-size: 11px; padding: 4px 0; }
    .top-bar-right { gap: 8px; }
    .logo img { height: 28px; }
    .search-box input { padding: 7px 10px; font-size: 12px; }
    .categories-grid { gap: 8px; }
    .category-img { height: 100px; padding: 12px; }
    .category-card h3 { font-size: 11px; }
    .product-image { height: 130px; }
    .product-title { font-size: 11px; }
    .product-price { font-size: 14px; }
    .product-category-tag { font-size: 9px; padding: 2px 6px; }
    .filter-btn { padding: 5px 10px; font-size: 11px; }
    .section-title { font-size: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-columns { gap: 12px; }
}

/* High DPI / Retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .slide img { image-rendering: auto; }
    img { image-rendering: -webkit-optimize-contrast; }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .site-header-fixed .top-bar { display: none; }
    .site-header-fixed .main-header { padding: 6px 0; }
    .logo img { height: 28px; }
    .search-box input { padding: 6px 10px; }
    .nav-list > li > a { padding: 8px 10px; font-size: 11px; }
}

/* Print */
@media print {
    .site-header-fixed { position: static; }
    .site-header-spacer { display: none; }
    .back-to-top { display: none; }
    .slider-btn { display: none; }
    .slider-dots { display: none; }
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* ===== CSP-COMPLIANT REFACTOR RULES (Faz 2a) ===== */
/* Member badge + logout (components.js) */
.member-badge { display: flex; align-items: center; gap: 6px; }
.member-logout-link { font-size: 11px; opacity: 0.8; }

/* Announcements (announcements.js) — görsel TAM görünür, aspect ratio korunur, modal ona göre kendini ayarlar */
.ann-image-wrap { width: 100%; display: flex; justify-content: center; background: #fafafa; overflow: visible; }
/* Not: object-fit yalnızca img'in fixed width+height'ı olduğunda devreye girer.
   Normal akışta intrinsic size + max-width:100% + max-height:calc(...) yeterli.
   calc(95vh - 80px) — 95vh modal içinde, kapat butonu + başlık için 80px kesinti. */
.ann-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(95vh - 80px);
    margin: 0 auto;
}
.ann-intro-img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 70vh;
    margin: 0 auto 24px;
    border-radius: 12px;
}

/* Installments (installments.js) */
.taksit-bank-logo { max-height: 20px; max-width: 60px; object-fit: contain; vertical-align: middle; margin-right: 4px; }

/* Customer features (customer-features.js) */
.cx-recent-img { max-height: 100px; max-width: 130px; object-fit: contain; }
.cx-related-img { max-height: 120px; max-width: 150px; object-fit: contain; }
.cx-compare-thumb { width: 30px; height: 30px; object-fit: contain; }
.cx-compare-name { max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cx-compare-remove { background: none; border: none; color: #e74c3c; cursor: pointer; font-size: 12px; padding: 0; }
.cx-compare-show-btn { margin-left: auto; padding: 8px 20px; background: #0054A6; color: white; border: none; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.cx-compare-clear-btn { padding: 8px 12px; background: none; border: 1px solid #ddd; color: #999; border-radius: 6px; font-size: 11px; cursor: pointer; }
.cx-compare-cell { padding: 10px; text-align: center; border-left: 1px solid #eee; }
.cx-compare-img { max-height: 100px; max-width: 120px; object-fit: contain; }
.cx-share-btn { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: white; font-size: 16px; text-decoration: none; transition: transform 0.2s; }
.cx-share-copy { background: #555; border: none; cursor: pointer; }

/* Hesabim page (hesabim-1.js) */
.referral-box { margin-top: 8px; background: #f0f6ff; border: 1px dashed #0054A6; border-radius: 6px; padding: 6px 10px; }
.referral-label { font-size: 10px; color: #666; }
.referral-code { font-size: 14px; font-weight: 700; color: #0054A6; letter-spacing: 1px; }
.referral-copy-btn { margin-top: 4px; background: none; border: 1px solid #0054A6; color: #0054A6; padding: 2px 8px; border-radius: 4px; font-size: 10px; cursor: pointer; }
.hesabim-myprod-thumb { max-width: 70px; max-height: 70px; object-fit: contain; }
.hesabim-myprod-placeholder { font-size: 28px; color: #ddd; }
.hesabim-fav-img-wrap { height: 140px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; padding: 12px; }
.hesabim-fav-img { max-height: 120px; object-fit: contain; }

/* Urun page - taksit scroll card (urun-1.js) */
.urun-taksit-card { background: #f0f6ff; border: 1px solid #d0e3ff; border-radius: 8px; padding: 10px 14px; display: flex; align-items: center; gap: 8px; flex: 1; min-width: 180px; cursor: pointer; }

/* ===== Ürün sayfası - Kampanyalı Taksit Rozeti (Kaçırılmaz Fırsat) ===== */
.urun-maxfree-card {
    position: relative;
    background: linear-gradient(135deg, #1e293b 0%, #334155 40%, #475569 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 24px 18px 16px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(30, 41, 59, 0.3), inset 0 1px 0 rgba(255,255,255,0.08);
    overflow: visible;
    transition: transform .25s, box-shadow .25s;
}
.urun-maxfree-card::before {
    /* Arka plan dekoratif pattern */
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 20px, rgba(245,158,11,0.04) 20px, rgba(245,158,11,0.04) 40px);
    border-radius: 14px;
    pointer-events: none;
}
.urun-maxfree-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(30, 41, 59, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Üst rozet — "KAÇIRILMAZ FIRSAT" */
.urun-maxfree-ribbon {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #dc2626 100%);
    color: white;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    padding: 6px 18px;
    border-radius: 14px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.5), 0 0 0 3px rgba(30,41,59,1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}
.urun-maxfree-ribbon i { font-size: 13px; }

/* İç içerik */
.urun-maxfree-body {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

/* Sol: Büyük rakam + "AY FAİZSİZ" */
.urun-maxfree-count {
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 12px;
    padding: 12px 16px;
    min-width: 80px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35), inset 0 1px 0 rgba(255,255,255,0.4);
}
.urun-maxfree-count span {
    display: block;
    font-size: 44px;
    font-weight: 900;
    color: #7c2d12;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(124, 45, 18, 0.2);
    font-family: 'Montserrat', sans-serif;
}
.urun-maxfree-count small {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #7c2d12;
    letter-spacing: 1px;
    margin-top: 4px;
    line-height: 1.2;
}

/* Sağ: Banka logosu + adı */
.urun-maxfree-bank-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
}
.urun-maxfree-mini-label {
    font-size: 9px;
    color: rgba(255,255,255,0.65);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}
.urun-maxfree-logo {
    width: 100%;
    height: 48px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    font-size: 26px;
    color: #1e293b;
}
.urun-maxfree-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.urun-maxfree-bank-name {
    width: 100%;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.2;
    padding: 4px 8px;
}

/* İki banka yan yana */
.urun-maxfree-banks-row {
    display: flex;
    gap: 8px;
    width: 100%;
}
.urun-maxfree-bank-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* World Kart şeridi */
.urun-world-strip {
    margin-top: 10px;
    background: linear-gradient(90deg, #1a3c8f 0%, #0075be 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.urun-world-strip i { color: #fbbf24; flex-shrink: 0; }

/* ===== SIGNUP ENCOURAGEMENT POPUP ===== */
.signup-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.signup-popup-overlay.show { opacity: 1; }

.signup-popup {
    background: #ffffff;
    border-radius: 18px;
    width: 100%;
    max-width: 460px;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.signup-popup-overlay.show .signup-popup { transform: translateY(0) scale(1); }

.signup-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.06);
    color: #475569;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.signup-popup-close:hover { background: rgba(220, 38, 38, 0.1); color: #dc2626; transform: rotate(90deg); }

.signup-popup-head {
    background: linear-gradient(135deg, #0054A6 0%, #1e40af 50%, #0f172a 100%);
    color: #fff;
    padding: 28px 24px 22px;
    border-radius: 18px 18px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.signup-popup-head::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.18), transparent 60%);
    pointer-events: none;
}

.signup-popup-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #7c2d12;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 8px 22px rgba(251, 191, 36, 0.45);
    position: relative;
    z-index: 1;
}

.signup-popup-head h2 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.signup-popup-head p {
    font-size: 13.5px;
    margin: 0;
    opacity: 0.92;
    position: relative;
    z-index: 1;
}

.signup-popup-head p strong { color: #fbbf24; }

.signup-popup-benefits {
    list-style: none;
    margin: 0;
    padding: 20px 24px 8px;
}

.signup-popup-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 13.5px;
    color: #334155;
    line-height: 1.45;
}

.signup-popup-benefits li:last-child { border-bottom: none; }

.signup-popup-benefits li i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.signup-popup-benefits li strong { color: #0f172a; font-weight: 700; }

.signup-popup-actions {
    padding: 14px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-popup-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0054A6, #003d7a);
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 6px 18px rgba(0, 84, 166, 0.35);
}

.signup-popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 84, 166, 0.45);
    color: #fff;
}

.signup-popup-btn-secondary {
    background: transparent;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.signup-popup-btn-secondary:hover { background: #f8fafc; color: #334155; border-color: #cbd5e1; }

.signup-popup-footer {
    text-align: center;
    padding: 0 24px 22px;
    font-size: 12.5px;
    color: #64748b;
}

.signup-popup-footer a {
    color: #0054A6;
    font-weight: 700;
    text-decoration: none;
}

.signup-popup-footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
    .signup-popup-head { padding: 22px 18px 18px; }
    .signup-popup-head h2 { font-size: 18px; }
    .signup-popup-benefits { padding: 16px 18px 4px; }
    .signup-popup-actions { padding: 12px 18px 14px; }
    .signup-popup-footer { padding: 0 18px 18px; }
}

/* ===== UNIVERSAL MOBILE NAV DRAWER ===== */
.mobile-nav-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    visibility: hidden;
}

.mobile-nav-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.mnav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-nav-drawer.open .mnav-overlay { opacity: 1; }

.mnav-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: #ffffff;
    box-shadow: 2px 0 24px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.open .mnav-panel { transform: translateX(0); }

.mnav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid #eef2f7;
    background: linear-gradient(135deg, #0054A6 0%, #003d7a 100%);
    flex-shrink: 0;
}

.mnav-logo { height: 32px; filter: brightness(0) invert(1); }

.mnav-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.mnav-close:hover { background: rgba(255, 255, 255, 0.28); }

.mnav-user-block { padding: 14px 16px; border-bottom: 1px solid #eef2f7; }

.mnav-user {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    padding: 8px 10px;
    border-radius: 10px;
    background: #f1f5f9;
}

.mnav-user i { font-size: 32px; color: #0054A6; }
.mnav-user-hi { font-size: 11px; color: #64748b; }
.mnav-user-name { font-size: 14px; font-weight: 700; }

.mnav-logout {
    display: block;
    margin-top: 8px;
    padding: 8px 10px;
    color: #dc2626;
    font-size: 13px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    background: #fef2f2;
    font-weight: 600;
}

.mnav-auth {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mnav-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}

.mnav-auth-primary { background: #0054A6; color: #fff; }
.mnav-auth-primary:hover { background: #003d7a; color: #fff; }
.mnav-auth-secondary { background: #f1f5f9; color: #0054A6; border: 1.5px solid #dbeafe; }
.mnav-auth-secondary:hover { background: #dbeafe; color: #003d7a; }

.mnav-links { flex: 1; padding: 8px 0; }

.mnav-link,
.mnav-group-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.mnav-link:hover,
.mnav-group-head:hover { background: #f8fafc; border-left-color: #0054A6; color: #0054A6; }

.mnav-link i,
.mnav-group-head span i {
    width: 22px;
    text-align: center;
    color: #64748b;
    margin-right: 10px;
    font-size: 15px;
}

.mnav-link:hover i,
.mnav-group-head:hover span i { color: #0054A6; }

.mnav-group-head > span { display: flex; align-items: center; }

.mnav-chev {
    color: #cbd5e1;
    font-size: 12px;
    transition: transform 0.25s;
}

.mnav-group.open .mnav-chev { transform: rotate(180deg); color: #0054A6; }

.mnav-sub {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
    background: #f8fafc;
}

.mnav-group.open .mnav-sub { max-height: 400px; }

.mnav-sub a {
    display: block;
    padding: 10px 18px 10px 52px;
    color: #475569;
    text-decoration: none;
    font-size: 13.5px;
    border-bottom: 1px solid #eef2f7;
}

.mnav-sub a:last-child { border-bottom: none; }
.mnav-sub a:hover { background: #e2e8f0; color: #0054A6; }

.mnav-footer {
    padding: 14px 16px 20px;
    border-top: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.mnav-phone,
.mnav-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.mnav-phone { background: #eff6ff; color: #0054A6; }
.mnav-wa { background: #25d366; color: #fff; }

body.mnav-lock { overflow: hidden; }

/* Show hamburger on tablet/mobile. Force it to appear in header. */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        margin-left: auto;
        border-radius: 8px;
        background: rgba(0, 84, 166, 0.08);
    }
    .mobile-menu-btn:hover { background: rgba(0, 84, 166, 0.15); }
    /* Pages with a static header: keep search-box from hogging width */
    .header-inner { gap: 8px; }
}

@media (max-width: 768px) {
    .mobile-menu-btn { width: 40px; height: 40px; font-size: 20px; }
}

/* ===== KURBAN BAYRAMI CTA (slider'ın hemen altı, anasayfaya özel) ===== */
.bayram-cta {
    background: linear-gradient(135deg, #0054A6 0%, #1a73e8 50%, #1ea7e0 100%);
    color: #fff;
    padding: 36px 0;
    position: relative;
    overflow: hidden;
}
.bayram-cta::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
}
.bayram-cta::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -30px;
    width: 240px; height: 240px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.bayram-cta-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.bayram-cta-icon {
    width: 96px; height: 96px;
    border-radius: 24px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.bayram-cta-text { min-width: 0; }
.bayram-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffd24a;
    color: #5a3d00;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.bayram-cta-title {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 6px;
    line-height: 1.25;
}
.bayram-cta-sub {
    font-size: 14px;
    opacity: 0.92;
    margin: 0 0 14px;
    line-height: 1.55;
}
.bayram-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.bayram-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
}
.bayram-cta-btn.primary {
    background: #fff;
    color: #0054A6;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.bayram-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.bayram-cta-btn.ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.55);
}
.bayram-cta-btn.ghost:hover {
    background: #25D366;
    border-color: #25D366;
}
.bayram-cta-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bcta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
}
.bcta-badge i { color: #ffd24a; font-size: 14px; }

@media (max-width: 900px) {
    .bayram-cta-inner { grid-template-columns: auto 1fr; }
    .bayram-cta-badges { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 600px) {
    .bayram-cta { padding: 24px 0; }
    .bayram-cta-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
    .bayram-cta-icon { width: 72px; height: 72px; font-size: 36px; margin: 0 auto; }
    .bayram-cta-title { font-size: 20px; }
    .bayram-cta-sub { font-size: 13px; }
    .bayram-cta-actions { justify-content: center; }
    .bayram-cta-badges { justify-content: center; }
    .bcta-badge { font-size: 11.5px; padding: 6px 10px; }
}

/* ===== DERİN DONDURUCU TİPLERİ (Yatay/Dikey/Mini) ===== */
.freezer-types {
    background: #f4f8fc;
    padding: 40px 0;
    border-top: 1px solid #e6eef7;
    border-bottom: 1px solid #e6eef7;
}
.freezer-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.ft-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    padding: 22px 22px 18px;
    border: 1.5px solid #e6eef7;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}
.ft-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0054A6, #1ea7e0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}
.ft-card:hover {
    border-color: #0054A6;
    box-shadow: 0 12px 28px rgba(0,84,166,0.12);
    transform: translateY(-4px);
}
.ft-card:hover::before { transform: scaleX(1); }
.ft-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f0fa, #d4e4f7);
    color: #0054A6;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
}
.ft-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a3552;
    margin: 0 0 8px;
}
.ft-card p {
    font-size: 13.5px;
    color: #5a6b80;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
}
.ft-tag {
    display: inline-block;
    background: #fff5dc;
    color: #8a5a00;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 4px;
}
.ft-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0054A6;
    font-weight: 700;
    font-size: 13px;
    margin-top: auto;
}
.ft-cta i { transition: transform 0.2s; }
.ft-card:hover .ft-cta i { transform: translateX(4px); }

@media (max-width: 900px) {
    .freezer-types-grid { grid-template-columns: 1fr; gap: 14px; }
    .freezer-types { padding: 28px 0; }
}
