﻿/* ===================================================
   GALAKSIHOME - Tek KullanÄ±mlÄ±k ÃœrÃ¼nler Katalog Sitesi
   CSS Stylesheet
   =================================================== */

/*
 * â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
 * â•‘           Ä°Ã‡Ä°NDEKÄ°LER (TOC)              â•‘
 * â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
 *
 *  1.  PRELOADER
 *  2.  CSS VARIABLES (Renkler, Tipografi, Spacing)
/* Ürün kart buton grubu */
.product-card-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
}

/* Sepete Ekle (kart içi) */
.btn-add-cart {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 44px;
    background: var(--primary, #1a237e);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.95rem; font-weight: 600;
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    white-space: nowrap;
    font-family: inherit;
    text-align: center;
}
.btn-add-cart:hover { background: #283593; transform: translateY(-1px); }
.btn-add-cart.in-cart {
    background: #e8f5e9; color: #2e7d32;
    border: 1.5px solid #a5d6a7; cursor: default;
}
.btn-add-cart.in-cart:hover { transform: none; background: #e8f5e9; }
[data-theme="dark"] .btn-add-cart.in-cart { background: #1b3a1e; color: #81c784; border-color: #2e5c30; }

/* Sepete Ekle tam genişlik (urun.html) */
.btn-add-cart-full {
    flex: unset;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 4px;
}

/* WA ikon butonu (küçük, kart içi) */
.btn-wa-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    background: #25d366; color: #fff;
    border-radius: 8px;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s;
    flex-shrink: 0;
}
.btn-wa-icon:hover { background: #1ebe5a; transform: translateY(-1px); }

.preloader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
}
.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: #00bfa5;
    border-radius: 3px;
    animation: preloaderSlide 1s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ============================================
   SKELETON LOADING
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}
.skeleton-card { min-height: 320px; border-radius: var(--radius-lg); }

.skeleton-category { min-height: 180px; border-radius: var(--radius-lg); }

@keyframes skeletonShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Dinamik render edilen kartlar için AOS'a bağımlı olmayan animasyon */
@keyframes ghFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.gh-fade-in {
    opacity: 0;
    animation: ghFadeUp 0.45s ease-out forwards;
}
@media (prefers-reduced-motion: reduce) {
    .gh-fade-in { animation: none; opacity: 1; }
}

/* -------- CSS Variables -------- */
:root {
    /* Colors */
    --primary: #1a237e;
    --primary-light: #283593;
    --primary-dark: #0d1642;
    --accent: #00bfa5;
    --accent-light: #1de9b6;
    --accent-dark: #00897b;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    --text-primary: #1a1a2e;
    --text-secondary: #555770;
    --text-light: #8c8fa3;
    --text-muted: #8c9ab0;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --border: #e8ecf4;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Layout */
    --header-height: 80px;
    --container-max: 1280px;
}

/* -------- Reset & Base -------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img { max-width: 100%; display: block; }

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* -------- Utility -------- */
.section { padding: 100px 0; overflow: hidden; }

.section-gray { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(26,35,126,0.08), rgba(0,191,165,0.08));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}

/* -------- Buttons -------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26,35,126,0.3);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,35,126,0.4); }

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: none;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,35,126,.3); }
[data-theme="dark"] .btn-outline-primary { color: #7986cb; border-color: #7986cb; }
[data-theme="dark"] .btn-outline-primary:hover { background: #7986cb; color: #fff; }

/* ============================================
   HEADER
   ============================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

#header.scrolled {
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img { height: 38px; filter: brightness(0) invert(1); }

/* Desktop Nav */
.nav-desktop { display: flex; gap: 8px; }

.nav-desktop .nav-link {
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 50px;
    transition: var(--transition);
}

.nav-desktop .nav-link:hover { color: var(--primary); background: rgba(26,35,126,0.06); }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(37,211,102,0.3);
}

.whatsapp-header-btn:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.whatsapp-header-btn i { font-size: 1.15rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
}

.nav-mobile.open { transform: translateY(0); opacity: 1; }

.nav-mobile .nav-link {
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-mobile .nav-link:hover { background: var(--off-white); color: var(--primary); }

.nav-mobile .whatsapp-mobile {
    background: var(--whatsapp);
    color: var(--white);
    text-align: center;
    margin-top: 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.nav-mobile .whatsapp-mobile:hover { background: var(--whatsapp-dark); }

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d1642 0%, #1a237e 40%, #283593 70%, #1a3a5c 100%);
    overflow: hidden;
    padding-top: var(--header-height);
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 60%;
    max-width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,191,165,0.15), transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 0;
    width: 50%;
    max-width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,35,126,0.2), transparent 70%);
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10px, -10px) scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 48px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 24px;
    border-radius: 50px;
    color: var(--accent-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Hero Features */
.hero-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    font-weight: 500;
}
.hero-features span i { color: var(--accent-light); font-size: .9rem; }

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.hero-buttons .btn { padding: 16px 36px; font-size: 1.05rem; }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 6px;
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.category-card:hover::before { transform: scaleX(1); }

.category-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(26,35,126,0.08), rgba(0,191,165,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.category-count {
    display: inline-block;
    background: var(--off-white);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
}

/* ============================================
   PRODUCTS
   ============================================ */
/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    max-width: 100%;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--white);
    border: 1px solid var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); }

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(26,35,126,0.3);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-card.hidden { display: none; }

.product-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--off-white), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-placeholder {
    font-size: 3.5rem;
    color: var(--gray-300);
    transition: var(--transition);
}

.product-card:hover .product-placeholder { color: var(--primary); transform: scale(1.1); }

/* product-badge styles are now handled per-context (e.g. .urun-detail overlay). */

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-specs {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Kartlardaki specs metninin kart yüksekliğini büyütmesini engellemek için satır sınırı ve üç nokta */
.product-card .product-specs {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; /* masaüstünde 4 satır göster, sonrası ... */
    overflow: hidden;
}

/* Liste görünümünde (daha dar) 3 satır göster */
.products-grid.list-view .product-specs {
    -webkit-line-clamp: 3;
}

.product-meta { margin-bottom: 16px; margin-top: auto; }



/* WhatsApp Product Button */
.btn-whatsapp-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-whatsapp-product:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.35);
}

.btn-whatsapp-product i { font-size: 1.2rem; }

/* Products CTA */
.products-cta {
    text-align: center;
    margin-top: 48px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gray-300);
}

.products-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 500;
}

/* ============================================
   FEATURES / NEDEN BIZ
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(26,35,126,0.08), rgba(0,191,165,0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   ABOUT / HAKKIMIZDA
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-badge { text-align: left; }

.about-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-highlights {
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.about-highlight i { color: var(--accent); font-size: 1.1rem; }

/* About Visual */
.about-visual {
    position: relative;
    overflow: visible;
    min-width: 0;
}

.about-image-placeholder {
    width: 100%;
    height: 440px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light), #3949ab);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 12px;
}

.about-image-placeholder i { font-size: 4rem; opacity: 0.6; }

.about-image-placeholder span {
    font-size: 1.8rem;
    font-weight: 700;
    opacity: 0.8;
}

.about-image-placeholder small {
    font-size: 1rem;
    opacity: 0.5;
    font-weight: 300;
}

.about-floating-card {
    position: absolute;
    bottom: -20px;
    left: 0;
    background: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 16px;
}

.floating-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.floating-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #283593, #1a3a5c);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,191,165,0.2), transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    word-wrap: break-word;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 42px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    animation: ctaPulse 2s infinite;
}

.btn-cta:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.6); }
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-icon.phone-icon { background: var(--primary); }

.contact-icon.email-icon { background: var(--accent); }

.contact-icon.location-icon { background: #e53935; }

.contact-details h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-details a,
.contact-details p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-primary);
}

.contact-details a:hover { color: var(--primary); }

.contact-map {
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    max-width: 100%;
}

.contact-map iframe { border-radius: var(--radius-lg); max-width: 100%; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { margin-bottom: 16px; }

.footer-logo { display: inline-block; }

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--accent-light); transform: translateX(4px); }

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.footer-bottom { padding: 24px 0; text-align: center; }

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    z-index: 998;
    transition: var(--transition);
    animation: whatsappBounce 3s infinite;
}

.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }

.floating-tooltip {
    position: absolute;
    right: 76px;
    background: var(--white);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    pointer-events: none;
    max-width: calc(100vw - 120px);
}

.floating-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--white);
}

.floating-whatsapp:hover .floating-tooltip { opacity: 1; transform: translateX(0); }

@keyframes whatsappBounce {
    0%, 100% { transform: translateY(0); }
    15% { transform: translateY(-8px); }
    30% { transform: translateY(0); }
    45% { transform: translateY(-4px); }
    60% { transform: translateY(0); }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet - Large */
@media (max-width: 768px) {
    .pp-categories { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
    .pp-categories::-webkit-scrollbar { display: none; }
    .pp-search-wrap { min-width: 0; }
    .products-grid.list-view { grid-template-columns: repeat(2, 1fr); }
    .products-grid.list-view .product-card { flex-direction: column; }
    .products-grid.list-view .product-image { width: 100%; height: 200px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-floating-card { left: 0; }
}

/* Tablet - Small */
@media (max-width: 480px) {
    .pp-categories { overflow-x: auto; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile {
        display: flex;
    }

    .whatsapp-header-btn span {
        display: none;
    }

    .whatsapp-header-btn {
        padding: 10px;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        justify-content: center;
    }

    .whatsapp-header-btn i {
        font-size: 1.3rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 40px 0 100px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: -0.5px;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-divider {
        height: 40px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .category-card {
        padding: 24px 16px;
    }

    .category-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .filter-bar {
        gap: 6px;
        margin-bottom: 32px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        display: flex;
        text-align: left;
        gap: 20px;
        padding: 24px;
    }

    .feature-icon {
        margin: 0;
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-image-placeholder {
        height: 300px;
    }

    .about-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -40px;
        margin-left: 20px;
        display: inline-flex;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }

    .floating-tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 42px;
        height: 42px;
    }

    .products-cta {
        padding: 28px 20px;
    }

    .hero-badge { font-size: 0.8rem; padding: 6px 16px; }
    /* Modal & Search */
    .product-modal { max-width: 100%; margin: 10px; max-height: 95vh; }
    .product-modal-image { height: 260px; }
    .product-modal-body { padding: 24px 20px; }
    .product-modal-body h2 { font-size: 1.3rem; }
    .search-bar { max-width: 100%; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 14px; padding: 16px; }
    /* Sections */
    .steps-grid { flex-direction: column; gap: 20px; }
    .step-connector { display: none; }
    /* Yorumlar mobil */
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
    .testimonial-card { padding: 22px 18px; gap: 12px; }
    .testimonial-card::before { font-size: 3.5rem; top: 14px; right: 16px; }
    .testimonial-text { font-size: 0.88rem; }
    .testimonial-avatar { width: 38px; height: 38px; font-size: 0.85rem; }
    /* Cart */
    .cart-float-btn { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 1.2rem; }
    .cart-toast { bottom: 80px; right: 12px; left: 12px; max-width: 100%; }
}

/* Mobile - Small */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content {
        padding: 30px 0 90px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: row;
        gap: 16px;
    }

    .stat-divider {
        display: block;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .cta-banner {
        padding: 50px 0;
    }

    .btn-cta {
        padding: 14px 24px;
        font-size: 0.95rem;
        white-space: normal;
    }
    /* Yorumlar - çok küçük ekran */
    .testimonial-card { padding: 18px 14px; text-align: center; }
    .testimonial-card::before { font-size: 2.8rem; top: 10px; right: 12px; }

    .cta-content h2 {
        font-size: 1.35rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ============================================
   SCROLL ANIMATIONS (fallback)
   ============================================ */
[data-aos] { transition-property: transform, opacity; }

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }

::-webkit-scrollbar-track { background: var(--gray-100); }

::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 4px; }

::-webkit-scrollbar-thumb:hover { background: var(--gray-500); }

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: rgba(26,35,126,0.15);
    color: var(--primary);
}

/* ============================================
   DARK MODE
   ============================================ */
.dark-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    flex-shrink: 0;
}
.dark-toggle:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

[data-theme="dark"] {
    --primary: #5c6bc0;
    --primary-light: #7986cb;
    --primary-dark: #0a0f2e;
    --accent: #26d9b8;
    --accent-light: #4aedc8;
    --white: #1a1e2e;
    --off-white: #151929;
    --gray-50: #1e2236;
    --gray-100: #1e2236;
    --gray-200: #2a2f45;
    --gray-300: #3a3f55;
    --gray-400: #5a5f75;
    --gray-500: #8a8fa5;
    --gray-600: #aab0c5;
    --gray-700: #c5cbd5;
    --gray-800: #e0e5ee;
    --gray-900: #f0f2f5;
    --text-primary: #e8eaf6;
    --text-secondary: #b0b8d0;
    --text-light: #7880a0;
    --text-muted: #7880a0;
    --bg-primary: #1a1e2e;
    --bg-secondary: #151929;
    --border: #2a2f45;
    --card-bg: #1e2236;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 14px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.35);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.4);
}

[data-theme="dark"] #header {
    background: rgba(26,30,46,0.95);
    border-bottom-color: rgba(255,255,255,0.06);
}
[data-theme="dark"] #header.scrolled {
    background: rgba(26,30,46,0.98);
    border-bottom-color: rgba(255,255,255,0.08);
}
[data-theme="dark"] .nav-mobile { background: #1a1e2e; border-bottom-color: #2a2f45; }

[data-theme="dark"] .dark-toggle {
    background: #2a2f45;
    border-color: #3a3f55;
    color: #ffd54f;
}
[data-theme="dark"] .hero-wave svg path { fill: #1a1e2e; }

[data-theme="dark"] .category-card,
[data-theme="dark"] .product-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .contact-card {
    background: #1e2236;
    border-color: #2a2f45;
}
[data-theme="dark"] .filter-btn {
    background: #1e2236;
    border-color: #3a3f55;
    color: var(--text-secondary);
}
[data-theme="dark"] .filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
[data-theme="dark"] .products-cta { background: #1e2236; border-color: #3a3f55; }

[data-theme="dark"] .product-image { background: linear-gradient(135deg, #1e2236, #252a40); }

[data-theme="dark"] .about-image-placeholder { background: linear-gradient(135deg, #1e2236, #283593); }

[data-theme="dark"] .about-floating-card { background: #1e2236; }

[data-theme="dark"] .contact-map { border-color: #2a2f45; }

[data-theme="dark"] #footer { background: #0a0f20; }

[data-theme="dark"] .footer-grid { border-bottom-color: rgba(255,255,255,0.06); }

[data-theme="dark"] tbody tr:hover { background: #1e2236; }

/* Dark-mode: make hero title text (non-highlighted lines) white for contrast */
[data-theme="dark"] .hero-content h1 {
    color: #727fc8 !important;
}
[data-theme="dark"] .logo { height: 38px; filter: brightness(0) invert(1); }


/* ============================================
   PRODUCT SEARCH BAR
   ============================================ */
.search-bar {
    max-width: 480px;
    margin: 0 auto 24px;
    position: relative;
}
.search-bar input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid var(--gray-300);
    border-radius: 50px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
}
.search-bar input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,35,126,0.08);
}
.search-bar input::placeholder { color: var(--text-light); }

.search-bar .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    pointer-events: none;
}
.search-bar .search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--text-secondary);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.search-bar .search-clear.visible { display: flex; }

.search-bar .search-clear:hover { background: var(--primary); color: #fff; }

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    display: none;
}
.no-results.visible { display: block; }

.no-results i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--gray-300);
}
.no-results p { font-size: 1.05rem; }

/* ============================================
   COOKIE / KVKK BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 20px 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    transform: translateY(100%);
    animation: cookieSlideUp 0.5s ease forwards;
}
.cookie-banner.visible { display: flex; }

.cookie-banner p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.5;
}
.cookie-banner p a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-accept {
    padding: 10px 28px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.cookie-accept:hover { opacity: 0.9; }

.cookie-reject {
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}
.cookie-reject:hover { border-color: var(--text-secondary); }

@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* ===================================================
   KiMLER KULLANIYOR â€” SEKTÃ–RLER
   =================================================== */

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 1024px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .sectors-grid { grid-template-columns: 1fr; gap: 16px; } }

.sector-card {
    background: var(--white, #fff);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid var(--border, #e8ecf4);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    position: relative;
    overflow: hidden;
}
.sector-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary, #1a237e), var(--accent, #00bfa5));
    opacity: 0;
    transition: opacity 0.22s;
}
.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26,35,126,.12);
    border-color: transparent;
}
.sector-card:hover::before { opacity: 1; }

.sector-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-light, #e8eaf6), #dde1f5);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--primary, #1a237e);
    transition: background 0.22s;
}
.sector-card:hover .sector-icon {
    background: linear-gradient(135deg, var(--primary, #1a237e), #283593);
    color: #fff;
}

.sector-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #1a1a2e);
    margin: 0;
}
.sector-card p {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.sector-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary, #1a237e);
    display: flex; align-items: center; gap: 6px;
    margin-top: 4px;
    transition: gap 0.2s;
}
.sector-card:hover .sector-link { gap: 10px; }

[data-theme="dark"] .sector-card { background: var(--card-bg, #1a2536); border-color: #2a3a50; }
[data-theme="dark"] .sector-card:hover { border-color: transparent; }
[data-theme="dark"] .sector-icon { background: linear-gradient(135deg, #1e2a3a, #243050); color: #90caf9; }
[data-theme="dark"] .sector-card h3 { color: #e0e6f0; }
[data-theme="dark"] .sector-card p,
[data-theme="dark"] .step-card p { color: #7a9ab8; }
[data-theme="dark"] .sector-link { color: #90caf9; }

/* ===================================================
   NASIL Ã‡ALIÅIR â€” 3 ADIM
   =================================================== */

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
    position: relative;
}

.step-card {
    flex: 1;
    background: var(--white, #fff);
    border-radius: 20px;
    padding: 36px 28px 32px;
    border: 1.5px solid var(--border, #e8ecf4);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.22s, box-shadow 0.22s;
    position: relative;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,35,126,.1); }

.step-number {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary, #1a237e), #283593);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(26,35,126,.3);
}

.step-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light, #e8eaf6), #dde1f5);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--primary, #1a237e);
    margin-top: 8px;
    transition: background 0.22s, color 0.22s;
}
.step-card:hover .step-icon {
    background: linear-gradient(135deg, var(--primary, #1a237e), #283593);
    color: #fff;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text, #1a1a2e);
    margin: 0;
}
.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary, #666);
    line-height: 1.65;
    margin: 0;
}

.step-connector {
    display: flex; align-items: center; justify-content: center;
    padding: 0 8px;
    font-size: 1.2rem;
    color: var(--border, #c8d0e0);
    flex-shrink: 0;
    margin-top: 80px;
}

.steps-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    flex-wrap: wrap;
}

[data-theme="dark"] .step-card { background: var(--card-bg, #1a2536); border-color: #2a3a50; }
[data-theme="dark"] .sector-icon,
[data-theme="dark"] .step-icon { background: linear-gradient(135deg, #1e2a3a, #243050); color: #90caf9; }
[data-theme="dark"] .sector-card h3,
[data-theme="dark"] .step-card h3 { color: #e0e6f0; }

/* ===================================================
   MÃœÅTERÄ° YORUMLARI â€” TESTÄ°MONÄ°ALS
   =================================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: var(--white, #fff);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid var(--border, #e8ecf4);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.22s, box-shadow 0.22s;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26,35,126,.1);
}

/* TÄ±rnak iÅŸareti dekorasyonu */
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px; right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-light, #e8eaf6);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-secondary, #555);
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border, #e8ecf4);
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary, #1a237e), #283593);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text, #1a1a2e);
}
.testimonial-info span { font-size: 0.78rem; color: var(--text-muted, #888); }

[data-theme="dark"] .testimonial-card { background: var(--card-bg, #1a2536); border-color: #2a3a50; }
[data-theme="dark"] .testimonial-card::before { color: #1e2a3a; }
[data-theme="dark"] .testimonial-text { color: #8899bb; }
[data-theme="dark"] .testimonial-info strong { color: #e0e6f0; }
[data-theme="dark"] .testimonial-author { border-color: #2a3a50; }

/* ===================================================
   TEKLÄ°F SEPETÄ° (cart.js)
   =================================================== */

/* ÃœrÃ¼n kart buton grubu */
.product-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Sepete Ekle (kart iÃ§i) */
.btn-add-cart {
    /* prominent but constrained button */
    flex: 1 1 auto;
    min-width: 0;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    height: 48px;
    background: var(--primary, #1a237e);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 0.98rem; font-weight: 700;
    max-width: calc(100% - 56px);
    cursor: pointer;
    transition: background 0.18s, transform 0.15s;
    white-space: nowrap;
    font-family: inherit;
    text-align: center;
}
.btn-add-cart:hover { background: #283593; transform: translateY(-1px); }
.btn-add-cart.in-cart {
    background: #e8f5e9; color: #2e7d32;
    border: 1.5px solid #a5d6a7; cursor: default;
}
.btn-add-cart.in-cart:hover { transform: none; background: #e8f5e9; }
[data-theme="dark"] .btn-add-cart.in-cart { background: #1b3a1e; color: #81c784; border-color: #2e5c30; }

/* Sepete Ekle tam geniÅŸlik (urun.html) */
.btn-add-cart-full {
    flex: unset;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 0.95rem;
    border-radius: 8px;
    margin-bottom: 4px;
}

/* WA ikon butonu (kÃ¼Ã§Ã¼k, kart iÃ§i) */
.btn-wa-icon {
    display: inline-flex; align-items: center; justify-content: center;
    box-sizing: border-box;
    width: 44px; height: 44px;
    background: #25d366; color: #fff;
    border-radius: 10px;
    font-size: 1.02rem;
    text-decoration: none;
    transition: background 0.18s, transform 0.15s;
    flex: 0 0 44px;
}
.btn-wa-icon:hover { background: #1ebe5a; transform: translateY(-1px); }

/* ÃœrÃ¼n detay sayfasÄ± CTA grubu */
.urun-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ---- Float Buton ---- */
.cart-float-btn {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--primary, #1a237e);
    color: #fff;
    border: none; cursor: pointer;
    font-size: 1.35rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(26,35,126,.35);
    z-index: 900;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cart-float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(26,35,126,.45); }

/* Bildirim rozeti */
.cart-badge {
    position: absolute;
    top: -2px; right: -2px;
    min-width: 20px; height: 20px;
    background: #e53935; color: #fff;
    border-radius: 10px;
    font-size: 0.72rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    padding: 0 5px;
    border: 2px solid #fff;
    line-height: 1;
}

/* ---- Overlay ---- */
.cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ---- Drawer ---- */
.cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 380px; max-width: 100vw; height: 100%;
    background: var(--white, #fff);
    z-index: 1001;
    display: flex; flex-direction: column;
    box-shadow: -4px 0 32px rgba(0,0,0,.14);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
@media (max-width: 420px) { .cart-drawer { width: 100vw; } }

.cart-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border, #e8ecf0);
    flex-shrink: 0;
}
.cart-drawer-header h2 {
    font-size: 1rem; font-weight: 700;
    color: var(--text, #1a1a2e);
    display: flex; align-items: center; gap: 8px;
    margin: 0;
}
.cart-drawer-header h2 i { color: var(--primary, #1a237e); }
.cart-drawer-count {
    font-size: 0.78rem; font-weight: 500;
    color: var(--text-muted, #888);
    background: var(--surface, #f4f6fa);
    padding: 2px 8px; border-radius: 10px;
}
.cart-drawer-close {
    width: 34px; height: 34px;
    border-radius: 8px;
    border: 1px solid var(--border, #e8ecf0);
    background: transparent; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary, #666); font-size: 0.9rem;
    transition: background 0.15s;
}
.cart-drawer-close:hover { background: var(--surface, #f4f6fa); }

/* ---- ÃœrÃ¼n listesi ---- */
.cart-item-list {
    flex: 1; overflow-y: auto;
    padding: 12px 16px;
    display: flex; flex-direction: column; gap: 8px;
}
.cart-item {
    display: flex; align-items: center; gap: 12px;
    background: var(--surface, #f8f9fa);
    border-radius: 12px;
    padding: 10px 12px;
    border: 1px solid var(--border, #e8ecf0);
}
.cart-item-img {
    width: 52px; height: 52px;
    border-radius: 8px; overflow: hidden;
    background: var(--white, #fff);
    border: 1px solid var(--border, #e8ecf0);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--gray-300, #ccc);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }

.cart-item-cat {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: .5px; color: var(--text-muted, #999);
    font-weight: 600;
}
.cart-item-name {
    font-size: 0.85rem; font-weight: 600;
    color: var(--text, #1a1a2e); line-height: 1.3;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-remove {
    width: 28px; height: 28px; border-radius: 6px;
    border: 1px solid var(--border, #e8ecf0);
    background: transparent; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary, #888); font-size: 0.8rem;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}
.cart-item-remove:hover { background: #fdecea; color: #c62828; border-color: #ef9a9a; }

/* BoÅŸ sepet */
.cart-empty {
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; gap: 10px;
    padding: 48px 20px; text-align: center;
    color: var(--text-secondary, #777); flex: 1;
}
.cart-empty i { font-size: 2.8rem; color: var(--gray-300, #ccc); }
.cart-empty p { font-size: 0.95rem; font-weight: 600; margin: 0; }
.cart-empty small { font-size: 0.82rem; }

/* ---- Footer ---- */
.cart-drawer-footer {
    padding: 16px 16px 20px;
    border-top: 1px solid var(--border, #e8ecf0);
    display: flex; flex-direction: column; gap: 10px;
    flex-shrink: 0;
}
.btn-cart-send {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25d366; color: #fff;
    border: none; border-radius: 12px;
    padding: 14px; font-size: 1rem; font-weight: 700;
    cursor: pointer; width: 100%;
    transition: background 0.18s;
    font-family: inherit;
}
.btn-cart-send:hover:not(:disabled) { background: #1ebe5a; }
.btn-cart-send:disabled { opacity: .45; cursor: not-allowed; }
.btn-cart-send i { font-size: 1.2rem; }
.btn-cart-clear {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    background: transparent; color: var(--text-secondary, #888);
    border: 1px solid var(--border, #ddd);
    border-radius: 10px; padding: 10px;
    font-size: 0.85rem; font-weight: 600;
    cursor: pointer; width: 100%;
    transition: background 0.15s, color 0.15s;
    font-family: inherit;
}
.btn-cart-clear:hover { background: #fdecea; color: #c62828; border-color: #ef9a9a; }

/* ---- Toast ---- */
.cart-toast {
    position: fixed;
    bottom: 100px; right: 24px;
    background: #1a237e; color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.88rem; font-weight: 500;
    box-shadow: 0 4px 20px rgba(0,0,0,.18);
    z-index: 1100;
    opacity: 0; transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    max-width: 300px;
    pointer-events: none;
}
.cart-toast.show { opacity: 1; transform: translateY(0); }
.cart-toast i { margin-right: 6px; }

/* ---- Dark Mode ---- */
[data-theme="dark"] .cart-drawer { background: #0f1923; }
[data-theme="dark"] .cart-item { background: #1a2536; border-color: #2a3a50; }
[data-theme="dark"] .cart-drawer-header,
[data-theme="dark"] .cart-drawer-footer { border-color: #2a3a50; }
[data-theme="dark"] .cart-drawer-close:hover { background: #1e2a3a; }
[data-theme="dark"] .cart-item-img { background: #1e2a3a; border-color: #2a3a50; }
[data-theme="dark"] .cart-item-name { color: #e0e6f0; }
[data-theme="dark"] .cart-drawer-count { background: #1e2a3a; }
[data-theme="dark"] .btn-cart-clear { border-color: #2a3a50; color: #8899aa; }
[data-theme="dark"] .btn-cart-clear:hover { background: #2a1515; color: #ef9a9a; border-color: #5c2626; }
[data-theme="dark"] .cart-item-remove { border-color: #2a3a50; color: #8899aa; }
[data-theme="dark"] .cart-toast { background: #1e3a5f; }

/* ===================================================
   BLUR-UP LAZY LOAD
   =================================================== */

/* Blur-wrap, flex container'larÄ± doldursun */
.product-image .blur-wrap,
.product-image > .blur-wrap {
    flex: 1;
    align-self: stretch;
}

/* Sarma kap: thumb arka plan olarak gÃ¶rÃ¼nÃ¼r, Ã¼stÃ¼ne full gÃ¶rsel geÃ§er */
.blur-wrap {
    position: relative;
    width: 100%; height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--surface, #eef0f4);
}

/* BulanÄ±k placeholder â€” thumb'Ä±n pseudo-element kopyasÄ± */
.blur-wrap::before {
    content: '';
    position: absolute;
    inset: -14px; /* kenar bulanÄ±klÄ±ÄŸÄ±nÄ± gizle */
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(16px);
    transform: scale(1.08);
    z-index: 0;
    transition: opacity 0.5s ease;
}

/* Tam gÃ¶rsel yÃ¼klenince placeholder kaybolur */
.blur-wrap.blur-done::before { opacity: 0; }

/* YÃ¼klenmemiÅŸ tam gÃ¶rsel â€” gizli */
img.lazy-full {
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.45s ease;
    display: block;
}

/* YÃ¼klenmiÅŸ tam gÃ¶rsel â€” gÃ¶rÃ¼nÃ¼r */
img.lazy-full.lazy-loaded { opacity: 1; }

/* Thumb yoksa (placeholder kart) doÄŸrudan gÃ¶ster */
.blur-wrap:not([style*="background-image"])::before { display: none; }

/* ===================================================
   SEPET ADET STEPERÄ°
   =================================================== */

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 6px;
    border: 1px solid var(--border, #e0e4ec);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
    height: 28px;
}

.qty-btn {
    width: 28px; height: 28px;
    background: var(--surface, #f4f6fa);
    border: none;
    cursor: pointer;
    font-size: 1rem; font-weight: 700;
    color: var(--text-secondary, #666);
    line-height: 1;
    transition: background 0.15s, color 0.15s;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-family: inherit;
}
.qty-btn:hover { background: var(--primary, #1a237e); color: #fff; }

.qty-val {
    min-width: 32px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text, #1a1a2e);
    padding: 0 4px;
    border-left: 1px solid var(--border, #e0e4ec);
    border-right: 1px solid var(--border, #e0e4ec);
    line-height: 28px;
    height: 28px;
    display: inline-block;
}

[data-theme="dark"] .cart-item-qty { border-color: #2a3a50; }
[data-theme="dark"] .qty-btn { background: #1e2a3a; color: #8899aa; }
[data-theme="dark"] .qty-btn:hover { background: #1a3a7e; color: #90caf9; }
[data-theme="dark"] .qty-val { color: #c8d6e8; border-color: #2a3a50; }

/* ============================================
   BLOG HOME PREVIEW (homepage section)
   ============================================ */
.blog-home-section { background: var(--bg-secondary); }
.blog-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 44px; }

.blog-home-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    box-shadow: 0 2px 8px rgba(0,0,0,.055);
}
.blog-home-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(26,35,126,.13); border-color: rgba(26,35,126,.15); }

.blog-home-thumb {
    display: block; position: relative; height: 200px;
    overflow: hidden; text-decoration: none; flex-shrink: 0;
    background: linear-gradient(135deg, #e8ecf4 0%, #dce4f8 100%);
}
.blog-home-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-home-card:hover .blog-home-thumb img { transform: scale(1.06); }
.blog-home-no-img {
    width: 100%; height: 100%; display: flex; align-items: center;
    justify-content: center; font-size: 3rem; color: #a8b4d4;
}
.blog-home-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary); color: #fff;
    font-size: .7rem; font-weight: 700;
    padding: 4px 11px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: .05em;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.blog-home-body  { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-home-date  { font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-home-date i { margin-right: 5px; color: var(--primary); opacity: .6; }
.blog-home-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.42; }
.blog-home-body h3 a { color: var(--text-primary); text-decoration: none; transition: color .2s; }
.blog-home-body h3 a:hover { color: var(--primary); }
.blog-home-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-home-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-size: .84rem; font-weight: 600; margin-top: 14px; text-decoration: none; transition: gap .2s; }
.blog-home-link:hover { gap: 10px; }
.blog-home-cta { text-align: center; margin-top: 8px; }

[data-theme="dark"] .blog-home-section { background: var(--bg-secondary); }
[data-theme="dark"] .blog-home-card { background: var(--card-bg); border-color: var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.25); }
[data-theme="dark"] .blog-home-card:hover { box-shadow: 0 18px 44px rgba(0,0,0,.35); border-color: #3a4460; }
[data-theme="dark"] .blog-home-thumb { background: linear-gradient(135deg, #1e2540 0%, #1a2048 100%); }
[data-theme="dark"] .blog-home-no-img { color: #3a4a6a; }

@media (max-width: 1024px) { .blog-home-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .blog-home-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================
   BLOG — Listing & Single Post
   ============================================ */

/* Blog Hero */
/* ── Blog Hero ── */
.blog-hero {
    background: linear-gradient(135deg, #0d1642 0%, #1a237e 55%, #00796b 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(0,191,165,.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,255,255,.06) 0%, transparent 50%);
    pointer-events: none;
}
.blog-hero-inner { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.blog-hero .section-badge {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(6px);
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 600; margin-bottom: 20px;
}
.blog-hero-inner h1 {
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.22;
}
.blog-hero-inner p { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.6; }

/* Filter */
.blog-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.blog-filter-btn {
    background: var(--bg-secondary);
    border: 1.5px solid var(--border);
    color: var(--text-muted);
    padding: 7px 20px;
    border-radius: 22px;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 500;
    transition: .2s;
}
.blog-filter-btn:hover, .blog-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 600;
}

/* Blog Section */
.blog-section { background: var(--bg-secondary); }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-loading { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--text-muted); font-size: 1.5rem; }
.blog-empty { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--text-muted); font-size: 1rem; }

/* Blog Card */
.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    box-shadow: 0 2px 8px rgba(0,0,0,.055);
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(26,35,126,.13);
    border-color: rgba(26,35,126,.15);
}
.blog-card-thumb { display: block; position: relative; height: 210px; overflow: hidden; background: linear-gradient(135deg, #e8ecf4 0%, #f0f4fc 100%); text-decoration: none; flex-shrink: 0; }
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-card-no-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, #e8ecf8 0%, #dce4f8 100%);
    color: #a8b4d4;
}
.blog-card-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary); color: #fff;
    font-size: .7rem; font-weight: 700;
    padding: 4px 11px; border-radius: 20px;
    text-transform: uppercase; letter-spacing: .05em;
    box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; gap: 14px; font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-card-meta i { margin-right: 4px; color: var(--primary); opacity: .6; }
.blog-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.42; }
.blog-card h3 a { color: var(--text-primary); text-decoration: none; transition: color .2s; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card-excerpt { font-size: .85rem; color: var(--text-muted); line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 4px; }
.blog-card-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-size: .84rem; font-weight: 600;
    margin-top: 14px; text-decoration: none; transition: gap .2s;
}
.blog-card-link:hover { gap: 10px; }

/* Pagination */
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.blog-page-btn { background: var(--bg-secondary); border: 1px solid var(--border); color: var(--text-muted); width: 40px; height: 40px; border-radius: 10px; cursor: pointer; font-size: .9rem; transition: .2s; }
.blog-page-btn:hover, .blog-page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Single Post ── */
.post-hero { position: relative; padding: 80px 0 50px; background: var(--bg-secondary); overflow: hidden; }
.post-hero-img { position: absolute; inset: 0; z-index: 0; }
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.75) 100%); }
.post-hero .container { position: relative; z-index: 1; }
.post-hero-inner { max-width: 780px; }
.post-hero-img ~ * .post-hero-inner * { color: #fff !important; }
.post-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-muted); margin-bottom: 16px; }
.post-breadcrumb a { color: var(--primary); }
.post-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; line-height: 1.3; margin-bottom: 16px; }
.post-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: .83rem; color: var(--text-muted); }
.post-meta i { margin-right: 5px; }
.post-cat-badge { background: var(--primary); color: #fff; padding: 3px 12px; border-radius: 20px; font-size: .75rem; font-weight: 700; }

/* Post Layout */
.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.post-content { background: var(--card-bg, #fff); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.post-lead { font-size: 1.1rem; color: var(--text-secondary, #475569); line-height: 1.7; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); font-style: italic; }
.post-body { line-height: 1.8; color: var(--text-primary); }
.post-body h2 { font-size: 1.4rem; font-weight: 700; margin: 32px 0 14px; color: var(--heading, #1e293b); }
.post-body h3 { font-size: 1.15rem; font-weight: 700; margin: 24px 0 10px; }
.post-body p { margin-bottom: 16px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 16px; }
.post-body li { margin-bottom: 6px; }
.post-body img { max-width: 100%; border-radius: 10px; margin: 16px 0; }
.post-body a { color: var(--primary); }
.post-body blockquote { border-left: 4px solid var(--primary); padding: 12px 20px; margin: 20px 0; background: var(--bg-secondary); border-radius: 0 8px 8px 0; }

/* Share */
.post-share { display: flex; align-items: center; gap: 10px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-share span { font-size: .85rem; color: var(--text-muted); font-weight: 600; }
.post-share-btn { width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: transform .2s; color: #fff; }
.post-share-btn:hover { transform: scale(1.12); }
.post-share-btn.whatsapp { background: #25d366; }
.post-share-btn.linkedin { background: #0a66c2; }
.post-share-btn.twitter { background: #000; }
.post-share-btn.copy { background: var(--bg-secondary); color: var(--text-muted); border: 1px solid var(--border); }

/* Sidebar */
.post-sidebar-card { background: var(--card-bg, #fff); border: 1px solid var(--border); border-radius: 14px; padding: 20px; position: sticky; top: 80px; }
.post-sidebar-title { font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 16px; display: flex; align-items: center; gap: 7px; }
.sidebar-post-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); text-decoration: none; transition: .15s; }
.sidebar-post-item:last-child { border-bottom: none; }
.sidebar-post-item:hover { opacity: .8; }
.sidebar-post-item img { width: 48px; height: 40px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.sidebar-post-no-img { width: 48px; height: 40px; border-radius: 6px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; color: var(--border); flex-shrink: 0; }
.sidebar-post-item div { flex: 1; overflow: hidden; }
.sidebar-post-item strong { display: block; font-size: .82rem; color: var(--text-primary); line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sidebar-post-item span { font-size: .75rem; color: var(--text-muted); }

/* Related Posts */
.related-posts { margin-top: 60px; }
.related-title { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .post-layout { grid-template-columns: 1fr; }
    .post-sidebar { order: -1; }
    .post-sidebar-card { position: static; }
}
@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .post-content { padding: 24px 18px; }
    .post-hero { padding: 50px 0 36px; }
}

/* Dark mode */
[data-theme="dark"] .blog-hero { background: linear-gradient(135deg, #0a0f2e 0%, #101d52 55%, #00574a 100%); }
[data-theme="dark"] .blog-section { background: var(--bg-secondary); }
[data-theme="dark"] .blog-filter-btn { background: #1e2236; border-color: #2a2f45; color: #7880a0; }
[data-theme="dark"] .blog-card { background: var(--card-bg); border-color: var(--border); box-shadow: 0 2px 8px rgba(0,0,0,.25); }
[data-theme="dark"] .blog-card:hover { box-shadow: 0 18px 44px rgba(0,0,0,.35); border-color: #3a4460; }
[data-theme="dark"] .blog-card-no-img { background: linear-gradient(135deg, #1e2540 0%, #1a2048 100%); color: #3a4a6a; }
[data-theme="dark"] .blog-card-thumb { background: #151929; }
[data-theme="dark"] .post-content { background: var(--card-bg); border-color: var(--border); }
[data-theme="dark"] .post-sidebar-card { background: var(--card-bg); border-color: var(--border); }
[data-theme="dark"] .post-body h2, [data-theme="dark"] .post-body h3 { color: #e0e6f0; }
[data-theme="dark"] .blog-page-btn { background: #1e2236; border-color: #2a2f45; color: #7a9ab8; }

/* ───────────────────────────────────────────────
   HAKKIMIZDA PAGE
─────────────────────────────────────────────── */
.about-hero {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #006064 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 70% at 80% 50%, rgba(0,188,212,.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 80%, rgba(255,255,255,.06) 0%, transparent 50%);
    pointer-events: none;
}
.about-hero-inner { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.about-hero .section-badge {
    background: rgba(255,255,255,.15);
    color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(6px);
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 600; margin-bottom: 20px;
}
.about-hero-inner h1 {
    font-size: clamp(1.8rem, 4vw, 2.9rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.22;
}
.about-hero-inner h1 span { color: #80deea; }
.about-hero-inner p { color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.6; }

/* About Story */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-story-content .section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(37,99,235,.08); color: #2563eb;
    border: 1px solid rgba(37,99,235,.2);
    padding: 5px 14px; border-radius: 20px; font-size: .8rem; font-weight: 600; margin-bottom: 16px;
}
.about-story-content h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-primary); margin: 0 0 20px; line-height: 1.25; }
.about-story-content p { color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }

.about-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.about-stat { text-align: center; }
.about-stat-number { display: block; font-size: 2rem; font-weight: 800; color: #2563eb; line-height: 1; }
.about-stat-label { display: block; font-size: .78rem; color: var(--text-secondary); margin-top: 4px; font-weight: 500; }

.about-visual-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow .2s, transform .2s;
}
.about-visual-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); transform: translateY(-2px); }
.about-visual-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(37,99,235,.1); color: #2563eb;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.about-visual-card h3 { font-size: .95rem; font-weight: 700; color: var(--text-primary); margin: 0 0 4px; }
.about-visual-card p { font-size: .82rem; color: var(--text-secondary); margin: 0; line-height: 1.5; }

/* Values */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.about-value-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: box-shadow .2s, transform .2s;
}
.about-value-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,.08); transform: translateY(-3px); }
.about-value-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 18px;
}
.about-value-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin: 0 0 8px; }
.about-value-card p { font-size: .85rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* Sectors */
.about-sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 48px;
}
.about-sector-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 24px 16px;
    text-align: center;
    transition: box-shadow .2s, transform .2s, border-color .2s;
}
.about-sector-item:hover { box-shadow: 0 8px 24px rgba(37,99,235,.12); border-color: #2563eb; transform: translateY(-2px); }
.about-sector-item i { font-size: 2rem; color: #2563eb; margin-bottom: 12px; display: block; }
.about-sector-item span { font-size: .85rem; font-weight: 600; color: var(--text-primary); }

@media (max-width: 900px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-stats { gap: 20px; }
}

[data-theme="dark"] .about-hero { background: linear-gradient(135deg, #0a0d2e 0%, #0a2060 50%, #003d44 100%); }
[data-theme="dark"] .about-visual-card,
[data-theme="dark"] .about-value-card,
[data-theme="dark"] .about-sector-item { background: var(--card-bg); border-color: var(--border); }

/* ───────────────────────────────────────────────
   ÜRÜN DETAY SAYFASI (/urun)
─────────────────────────────────────────────── */
.urun-breadcrumb {
    background: var(--gray-100);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: var(--primary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb i { color: var(--text-muted); font-size: 0.7rem; }

.urun-detail { padding: 60px 0 80px; }
.urun-detail-grid {
    display: grid;
    /* Görsel alanı solda çok büyük görünüyordu; masaüstünde soldan sağa 30%/45% olarak ayarlıyoruz */
    grid-template-columns: 34% 46%;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) {
    .urun-detail-grid { grid-template-columns: 1fr; gap: 32px; }
}

.urun-img-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    user-select: none;
    touch-action: pan-y;
}
.urun-main-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}
.urun-img-placeholder {
    width: 100%;
    min-height: 360px;
    border-radius: var(--radius-lg);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--primary);
    opacity: .35;
}
.urun-gallery {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.urun-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s;
}
.urun-thumb:hover { border-color: var(--primary); transform: scale(1.08); }
.urun-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary); }

.urun-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    transition: background .18s, transform .15s;
    z-index: 2;
}
.urun-nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.urun-nav-prev { left: 10px; }
.urun-nav-next { right: 10px; }

/* Ürün detay sayfasında badge'i görselin üzerinde göster (daha belirgin) */
.urun-detail .product-badge {
    /* fallback when badge stays in info column */
    position: relative;
}

/* Badge moved into image wrapper */
.urun-img-frame .product-badge,
.urun-img-frame .moved-badge {
    position: absolute;
    top: 12px; /* adjust if you want it lower/higher */
    left: 10px; /* closer to the circled lamp area */
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(26,35,126,0.18);
    backdrop-filter: blur(4px);
}
.urun-img-frame .product-badge.new,
.urun-img-frame .moved-badge.new { background: linear-gradient(135deg, var(--accent-light), var(--accent)); }

@media (max-width: 768px) {
    /* Mobilde overlay sorun olmasın, badge satır içi olsun */
    .urun-detail .product-badge { position: static; box-shadow: none; display: inline-flex; margin-bottom: 8px; }
}

/* Katalog / ana sayfa kartlarındaki badge (küçük pill, görselin üzerinde) */
.products-grid .product-card { position: relative; }
.products-grid .product-card .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 20;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.products-grid .product-card .product-badge.new { background: var(--accent); }

@media (max-width: 768px) {
    .products-grid .product-card .product-badge { top: 10px; left: 10px; font-size: 0.72rem; padding: 5px 8px; }
}

/* ---- Ürün Fiyat ---- */
.urun-price-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 16px 0;
}
.urun-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -.5px;
}
.urun-price-label {
    font-size: .85rem;
    color: var(--text-muted);
}
.product-price {
    font-size: .95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 4px 0 8px;
}
@media (max-width: 540px) {
    .urun-nav-btn { width: 34px; height: 34px; font-size: .85rem; }
    .urun-img-frame { aspect-ratio: 1 / 1; }
}

.urun-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text);
    margin: 10px 0 16px;
    line-height: 1.25;
}
.urun-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.urun-specs {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
}
.urun-specs h3 {
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.urun-specs-content { font-size: .88rem; color: var(--text-muted); line-height: 1.8; }


/* ───────────────────────────────────────────────
   TÜM ÜRÜNLER SAYFASI (/urunler)
─────────────────────────────────────────────── */

/* Hero */
.pp-hero {
    background: linear-gradient(135deg, #0d1642 0%, #1a237e 55%, #283593 100%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.pp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 80% at 90% 50%, rgba(0,191,165,.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 5% 80%, rgba(255,255,255,.05) 0%, transparent 50%);
    pointer-events: none;
}
.pp-hero-inner { text-align: center; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.pp-hero .section-badge {
    background: rgba(255,255,255,.15); color: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px);
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 16px; border-radius: 20px; font-size: .82rem; font-weight: 600; margin-bottom: 18px;
}
.pp-hero-inner h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: #fff;
    margin: 0 0 12px; line-height: 1.2;
}
#totalProductCount { color: rgba(255,255,255,.7); font-size: .95rem; margin: 0; }

/* Main layout */
.pp-main { background: var(--bg-secondary); padding: 40px 0 80px; }

/* Sticky filter bar */
.pp-sticky {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: var(--header-height);
    z-index: 90;
    transition: box-shadow .2s;
}
.pp-sticky.shadow { box-shadow: 0 4px 16px rgba(0,0,0,.08); }

/* Category tags */
.pp-categories {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 12px;
}
.cat-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 18px; border-radius: 22px;
    border: 1.5px solid var(--border);
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-size: .85rem; font-weight: 500;
    cursor: pointer; transition: .18s;
    white-space: nowrap;
}
.cat-tag:hover { border-color: var(--primary); color: var(--primary); }
.cat-tag.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; box-shadow: 0 3px 10px rgba(26,35,126,.25); }
.cat-count { font-size: .75rem; opacity: .75; }

/* Toolbar */
.pp-toolbar {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

/* Search */
.pp-search-wrap {
    position: relative; flex: 1; min-width: 200px; max-width: 400px;
    display: flex; align-items: center;
}
.pp-search-wrap i {
    position: absolute; left: 14px; color: var(--text-muted); font-size: .9rem; pointer-events: none;
}
.pp-search-wrap input {
    width: 100%; padding: 9px 38px 9px 38px;
    border: 1.5px solid var(--border); border-radius: 22px;
    font-size: .9rem; font-family: inherit;
    background: var(--bg-primary); color: var(--text-primary);
    outline: none; transition: border-color .18s, box-shadow .18s;
}
.pp-search-wrap input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,35,126,.08); }
.pp-search-wrap input::placeholder { color: var(--text-muted); }
.pp-search-clear {
    position: absolute; right: 10px;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--border); color: var(--text-muted);
    border: none; cursor: pointer; display: none;
    align-items: center; justify-content: center; font-size: .75rem;
    transition: .15s;
}
.pp-search-clear.visible { display: flex; }
.pp-search-clear:hover { background: var(--primary); color: #fff; }

/* Sort select */
.pp-sort {
    padding: 9px 14px; border-radius: 22px;
    border: 1.5px solid var(--border);
    background: var(--bg-primary); color: var(--text-secondary);
    font-size: .88rem; font-family: inherit;
    outline: none; cursor: pointer;
    transition: border-color .18s;
}
.pp-sort:focus { border-color: var(--primary); }

/* View buttons */
.pp-view-btns { display: flex; gap: 4px; flex-shrink: 0; }
.view-btn {
    width: 36px; height: 36px; border-radius: 8px;
    border: 1.5px solid var(--border); background: var(--bg-primary);
    color: var(--text-muted); font-size: .9rem;
    cursor: pointer; transition: .18s;
    display: flex; align-items: center; justify-content: center;
}
.view-btn:hover { border-color: var(--primary); color: var(--primary); }
.view-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Results info */
.pp-results-info {
    font-size: .88rem; color: var(--text-muted);
    padding: 20px 0 12px;
    min-height: 20px;
}

/* No results */
.pp-no-results {
    text-align: center; padding: 80px 20px;
    color: var(--text-muted); display: none;
}
.pp-no-results i { font-size: 3rem; color: var(--border); margin-bottom: 16px; display: block; }
.pp-no-results h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.pp-no-results p { font-size: .9rem; margin-bottom: 20px; }

/* List view */
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { flex-direction: row; }
.products-grid.list-view .product-image { width: 180px; height: auto; min-height: 160px; flex-shrink: 0; border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
.products-grid.list-view .product-info { padding: 20px 24px; }

/* Dark mode */
[data-theme="dark"] .pp-hero { background: linear-gradient(135deg, #0a0f2e 0%, #101d52 55%, #1a2060 100%); }
[data-theme="dark"] .pp-sticky { background: var(--bg-primary); border-color: var(--border); }
[data-theme="dark"] .cat-tag { background: var(--bg-primary); border-color: var(--border); color: var(--text-muted); }
[data-theme="dark"] .cat-tag.active { background: var(--primary); border-color: var(--primary); color: #fff; }
[data-theme="dark"] .pp-search-wrap input { background: var(--bg-primary); border-color: var(--border); color: var(--text-primary); }
[data-theme="dark"] .pp-sort { background: var(--bg-primary); border-color: var(--border); color: var(--text-secondary); }
[data-theme="dark"] .view-btn { background: var(--bg-primary); border-color: var(--border); color: var(--text-muted); }
[data-theme="dark"] .view-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

@media (max-width: 768px) {
    .pp-categories { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; }
    .pp-categories::-webkit-scrollbar { display: none; }
    .pp-search-wrap { min-width: 0; }
    .products-grid.list-view { grid-template-columns: repeat(2, 1fr); }
    .products-grid.list-view .product-card { flex-direction: column; }
    .products-grid.list-view .product-image { width: 100%; height: 200px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

    /* conservative CTA sizes for mobile: slightly smaller but not stacked */
    .btn-add-cart { height: 40px; font-size: 0.5rem; }
    .btn-wa-icon { width: 40px; height: 40px; font-size: 0.98rem; 
    padding-right: 32px; padding-left: 32px;
}
}
