/* ============================================
   TURGO NARGILE - Beyaz Temiz Tasarim
   Trendyol Layout / Professional E-Commerce
   ============================================ */

:root {
    --primary: #f27a1a;
    --primary-dark: #d96500;
    --primary-light: #fff3e6;
    --secondary: #f8f9fa;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --white: #ffffff;
    --border: #e8e8e8;
    --success: #00c853;
    --warning: #ffc107;
    --danger: #f44336;
    --info: #2196f3;
    --shadow: 0 1px 4px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --admin-sidebar-bg: #1a1a2e;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: #d0d0d0;
    font-size: 12px;
    padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-bar strong { color: var(--primary); }
.top-bar a:hover { color: var(--primary); }
.top-bar-divider { color: #555; }
.top-bar i { margin-right: 4px; }

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.main-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; gap: 24px; padding: 12px 0; }
.logo { flex-shrink: 0; }
.logo-img { height: 56px; width: auto; }
.search-bar { flex: 1; max-width: 600px; }
.search-form {
    display: flex;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.search-form:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(242,122,26,0.1); }
.search-form input { flex: 1; border: none; padding: 12px 16px; font-size: 14px; font-family: var(--font); outline: none; background: transparent; }
.search-form button { background: var(--primary); color: var(--white); border: none; padding: 0 20px; cursor: pointer; font-size: 16px; transition: var(--transition); }
.search-form button:hover { background: var(--primary-dark); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-action {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    font-size: 11px; color: var(--dark); position: relative; padding: 4px 8px; border-radius: var(--radius-sm);
}
.header-action:hover { color: var(--primary); background: var(--primary-light); }
.header-action i { font-size: 20px; color: var(--dark); }
.header-action:hover i { color: var(--primary); }
.cart-badge {
    position: absolute; top: -2px; right: 0;
    background: var(--primary); color: var(--white); font-size: 10px; font-weight: 700;
    min-width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; border: 2px solid var(--white);
}

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Category Nav */
.category-nav { background: var(--primary); }
.cat-list { display: flex; align-items: center; gap: 0; overflow-x: auto; scrollbar-width: none; }
.cat-list::-webkit-scrollbar { display: none; }
.cat-list li a {
    display: flex; align-items: center; gap: 6px;
    padding: 11px 16px; color: var(--white); font-size: 13px; font-weight: 500;
    white-space: nowrap; transition: var(--transition); border-bottom: 3px solid transparent;
}
.cat-list li a:hover, .cat-list li a.active { background: rgba(255,255,255,0.15); border-bottom-color: var(--white); }
.cat-list li a.highlight { background: var(--primary-dark); font-weight: 600; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; left: -320px; width: 300px; height: 100vh; background: var(--white); z-index: 9999; transition: left 0.3s ease; overflow-y: auto; box-shadow: var(--shadow-lg); }
.mobile-menu.open { left: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.mobile-logo { height: 36px; }
.mobile-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text); }
.mobile-nav a { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-bottom: 1px solid #f0f0f0; font-size: 14px; font-weight: 500; }
.mobile-nav a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-divider { height: 8px; background: var(--bg-alt); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; opacity: 0; visibility: hidden; transition: var(--transition); }
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* ============================================
   HERO SECTION - Clean White Theme
   ============================================ */
.hero {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
}
.hero-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(242,122,26,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
    position: absolute; width: 3px; height: 3px; background: rgba(242,122,26,0.2);
    border-radius: 50%; animation: float-particle 6s infinite ease-in-out;
}
.particle:nth-child(1) { top: 20%; left: 10%; }
.particle:nth-child(2) { top: 60%; left: 30%; animation-delay: 1s; width: 5px; height: 5px; }
.particle:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 80%; animation-delay: 3s; }
.particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { top: 10%; left: 90%; animation-delay: 0.5s; }
.particle:nth-child(7) { top: 70%; left: 15%; animation-delay: 2.5s; }
.particle:nth-child(8) { top: 40%; left: 60%; animation-delay: 1.5s; }
@keyframes float-particle { 0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; } 50% { transform: translateY(-20px) scale(1.5); opacity: 0.7; } }

.hero .container { display: flex; align-items: center; justify-content: space-between; gap: 80px; position: relative; z-index: 2; }
.hero-content { max-width: 580px; color: var(--white); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(242,122,26,0.15); border: 1px solid rgba(242,122,26,0.3);
    padding: 8px 16px; border-radius: 50px; font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 24px;
}
.hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 900; line-height: 1.12; margin-bottom: 24px; }
.hero-title .highlight { background: linear-gradient(135deg, var(--primary), #e8a87c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--primary); display: block; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* Hero Video */
.hero-visual { position: relative; width: 520px; height: 520px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.hero-video-wrapper { position: relative; width: 100%; height: 100%; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-video { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.1), rgba(242,122,26,0.05)); border-radius: 20px; pointer-events: none; }
.hero-video-glow {
    position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
    width: 70%; height: 30px; background: radial-gradient(ellipse, rgba(242,122,26,0.4), transparent 70%);
    border-radius: 50%; filter: blur(15px); animation: video-glow-pulse 3s ease-in-out infinite;
}
@keyframes video-glow-pulse { 0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); } 50% { opacity: 0.8; transform: translateX(-50%) scale(1.2); } }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
    font-family: var(--font); cursor: pointer; border: none; transition: var(--transition);
    text-align: center; justify-content: center; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(242,122,26,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #333; transform: translateY(-1px); }
.btn-success { background: var(--success); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 14px 36px; font-size: 15px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================
   SECTION TITLES
   ============================================ */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-light); color: var(--primary);
    padding: 6px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; margin-bottom: 12px;
}
.section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--dark); margin-bottom: 10px; }
.section-desc { color: var(--text-light); font-size: 15px; max-width: 550px; margin: 0 auto; }

/* ============================================
   CATEGORY CARDS (Brand Cards)
   ============================================ */
.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.category-card {
    background: var(--white); border-radius: var(--radius); padding: 20px 16px; text-align: center;
    box-shadow: var(--shadow); transition: var(--transition); cursor: pointer;
    border: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.category-img {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--border); transition: var(--transition);
}
.category-card:hover .category-img { border-color: var(--primary); transform: scale(1.05); }
.category-icon-fallback {
    width: 80px; height: 80px; border-radius: 50%; background: var(--primary-light);
    display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--primary);
}
.category-card h3 { font-size: 14px; font-weight: 600; color: var(--dark); }
.category-card p { font-size: 11px; color: var(--text-muted); line-height: 1.4; }

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }
.product-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: var(--transition); position: relative;
    border: 1px solid var(--border);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
a.product-card-img, div.product-card-img, .product-card-img {
    position: relative; aspect-ratio: 1; background: var(--bg-alt);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
    text-decoration: none; color: inherit; cursor: pointer;
}
.product-card-img .product-img {
    width: 100%; height: 100%; object-fit: cover; transition: var(--transition);
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-card-img .product-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #ebebeb); color: #bbb; font-size: 48px;
}
.product-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; }
.badge { padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.badge-discount { background: var(--danger); color: var(--white); }
.badge-new { background: var(--success); color: var(--white); }
.badge-hot { background: var(--primary); color: var(--white); }
.product-fav {
    position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%;
    background: var(--white); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1); transition: var(--transition); color: #ccc; font-size: 14px;
}
.product-fav:hover, .product-fav.active { color: var(--danger); transform: scale(1.1); }
.product-fav.active { background: #fce4ec; }
.product-card-body { padding: 14px; }
.product-brand { font-size: 11px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-card-title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-title a:hover { color: var(--primary); }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.stars { color: #ffc107; font-size: 11px; display: flex; gap: 1px; }
.rating-count { font-size: 11px; color: var(--text-muted); }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-current { font-size: 18px; font-weight: 800; color: var(--primary); }
.price-old { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.product-card-actions { display: flex; gap: 6px; }
.product-card-actions .btn { flex: 1; padding: 8px; font-size: 12px; }

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.feature-card {
    background: var(--white); border-radius: var(--radius); padding: 28px; text-align: center;
    box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.feature-icon {
    width: 60px; height: 60px; border-radius: 50%; background: var(--primary-light);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
    font-size: 24px; color: var(--primary);
}
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.feature-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ============================================
   SHOWCASE / WHOLESALE SECTION
   ============================================ */
.showcase-360 { background: var(--bg-alt); padding: 80px 0; position: relative; overflow: hidden; }
.showcase-360 .container { display: flex; align-items: center; gap: 60px; }
.showcase-visual { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 400px; position: relative; }
.showcase-video-container { width: 350px; height: 400px; position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); z-index: 2; }
.showcase-video { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.showcase-video-border { position: absolute; inset: 0; border-radius: var(--radius-lg); border: 2px solid rgba(242,122,26,0.2); pointer-events: none; }
.rotate-ring { position: absolute; border: 1px solid rgba(242,122,26,0.1); border-radius: 50%; pointer-events: none; }
.rotate-ring-1 { width: 350px; height: 350px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ring-rotate 25s linear infinite; }
.rotate-ring-2 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: ring-rotate 35s linear infinite reverse; border-style: dashed; opacity: 0.2; }
@keyframes ring-rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.showcase-content { flex: 1; }
.showcase-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.showcase-feature { display: flex; gap: 14px; align-items: flex-start; }
.showcase-feature-icon {
    width: 44px; height: 44px; border-radius: 10px; background: var(--primary-light);
    display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 18px; flex-shrink: 0;
}
.showcase-feature h4 { font-size: 15px; margin-bottom: 2px; color: var(--dark); }
.showcase-feature p { font-size: 13px; color: var(--text-light); }

/* Wholesale CTA */
.wholesale-cta {
    display: flex; align-items: center; gap: 16px; padding: 20px;
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9); border: 1px solid #c8e6c9;
    border-radius: var(--radius); margin-top: 20px;
}
.wholesale-cta i.fa-boxes { font-size: 32px; color: var(--success); }
.wholesale-cta strong { display: block; font-size: 15px; color: var(--dark); }
.wholesale-cta p { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.wholesale-cta .btn { margin-left: auto; flex-shrink: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
    background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
    transition: var(--transition); border: 1px solid var(--border);
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #e8a87c);
    display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 16px;
}
.testimonial-info h4 { font-size: 14px; }
.testimonial-info .stars { margin-top: 2px; }
.testimonial-text { font-size: 13px; color: var(--text-light); line-height: 1.6; font-style: italic; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)); padding: 50px 0;
    text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23fff' fill-opacity='0.04'%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");
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-banner p { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--primary); }

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header { background: var(--bg-alt); padding: 32px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { display: flex; gap: 8px; font-size: 13px; margin-bottom: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 2rem); color: var(--dark); }

/* ============================================
   LISTING PAGE
   ============================================ */
.listing-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 24px 0; }
.filters-sidebar {
    background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
    height: fit-content; position: sticky; top: 140px; border: 1px solid var(--border);
}
.filter-group { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-group h4 { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.filter-option { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: 13px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--primary); width: 15px; height: 15px; }
.price-range { display: flex; gap: 8px; align-items: center; }
.price-range input { width: 100%; padding: 8px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; }
.sort-bar {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px;
    background: var(--white); padding: 12px 16px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border);
}
.sort-bar .result-count { font-size: 13px; color: var(--text-light); }
.sort-options { display: flex; gap: 8px; align-items: center; }
.sort-options select { padding: 8px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-family: var(--font); cursor: pointer; }

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail { background: var(--white); border-radius: var(--radius); padding: 32px; margin: 32px 0; box-shadow: var(--shadow); border: 1px solid var(--border); }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.product-gallery { position: relative; }
.product-main-image {
    aspect-ratio: 1; background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-main-image img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius); padding: 8px; }
.product-main-image .product-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 64px; background: #f8f8f8; }
.product-info h1 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.product-info .product-brand { font-size: 13px; margin-bottom: 10px; }
.product-info .product-rating { margin-bottom: 16px; }
.product-detail-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.product-detail-price .price-current { font-size: 28px; font-weight: 900; }
.product-detail-price .price-old { font-size: 16px; }
.product-detail-price .discount-badge { background: var(--danger); color: var(--white); padding: 3px 10px; border-radius: 4px; font-size: 13px; font-weight: 700; }
.product-specs { margin-bottom: 20px; }
.product-spec { display: flex; padding: 8px 0; border-bottom: 1px solid #f5f5f5; font-size: 14px; }
.product-spec dt { width: 110px; color: var(--text-muted); font-weight: 500; }
.product-spec dd { color: var(--dark); font-weight: 600; }
.quantity-selector { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.quantity-selector label { font-size: 14px; font-weight: 600; }
.qty-control { display: flex; align-items: center; border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.qty-control button { width: 38px; height: 38px; border: none; background: var(--bg-alt); cursor: pointer; font-size: 16px; transition: var(--transition); }
.qty-control button:hover { background: var(--primary-light); color: var(--primary); }
.qty-control input { width: 48px; height: 38px; border: none; text-align: center; font-size: 15px; font-weight: 600; font-family: var(--font); }
.product-actions { display: flex; gap: 10px; }
.product-actions .btn { flex: 1; padding: 14px; font-size: 15px; }
.stock-info { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; font-size: 13px; }
.stock-info.in-stock { color: var(--success); }
.stock-info.low-stock { color: var(--warning); }
.stock-info.out-stock { color: var(--danger); }

/* Reviews */
.reviews-section { margin-top: 40px; padding-top: 40px; border-top: 1px solid var(--border); }
.reviews-summary { display: flex; gap: 40px; margin-bottom: 28px; align-items: center; }
.reviews-avg { text-align: center; }
.reviews-avg .big-rating { font-size: 42px; font-weight: 900; color: var(--dark); }
.review-bars { flex: 1; }
.review-bar { display: flex; align-items: center; gap: 8px; margin-bottom: 3px; font-size: 12px; }
.review-bar-fill { flex: 1; height: 6px; background: #eee; border-radius: 3px; overflow: hidden; }
.review-bar-fill span { display: block; height: 100%; background: #ffc107; border-radius: 3px; }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { padding: 18px; background: var(--bg-alt); border-radius: var(--radius-sm); }
.review-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.review-item-header .reviewer { font-weight: 600; font-size: 14px; }
.review-item-header .review-date { font-size: 12px; color: var(--text-muted); }
.review-item .review-text { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================
   CART
   ============================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; padding: 32px 0; }
.cart-items { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--border); }
.cart-item { display: flex; gap: 14px; padding: 18px; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
    width: 90px; height: 90px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
    overflow: hidden; flex-shrink: 0;
}
.cart-item-img img, .cart-item-img .product-img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.cart-item-img .product-placeholder, .cart-item-img .item-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 24px; background: #f8f8f8; }
.cart-item-info { flex: 1; }
.cart-item-info h3 { font-size: 14px; margin-bottom: 4px; }
.cart-item-info .product-brand { margin-bottom: 6px; }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--primary); text-align: right; min-width: 90px; }
.cart-item-remove { color: var(--text-muted); cursor: pointer; font-size: 16px; padding: 6px; }
.cart-item-remove:hover { color: var(--danger); }
.cart-summary {
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px;
    height: fit-content; position: sticky; top: 140px; border: 1px solid var(--border);
}
.cart-summary h3 { font-size: 16px; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; }
.summary-row.total { font-size: 18px; font-weight: 800; color: var(--primary); border-top: 2px solid var(--border); padding-top: 14px; margin-top: 8px; }
.coupon-form { display: flex; gap: 8px; margin: 12px 0; }
.coupon-form input { flex: 1; padding: 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; }

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 24px; padding: 32px 0; }
.checkout-form { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px 14px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-size: 14px; font-family: var(--font); transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(242,122,26,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.iban-info { background: var(--primary-light); border: 2px solid var(--primary); border-radius: var(--radius); padding: 20px; margin: 20px 0; }
.iban-info h4 { color: var(--primary-dark); margin-bottom: 10px; font-size: 15px; }
.iban-detail { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; border-bottom: 1px solid rgba(242,122,26,0.15); }
.iban-detail:last-child { border-bottom: none; }
.iban-detail .label { color: var(--text-light); }
.iban-detail .value { font-weight: 700; color: var(--dark); }
.iban-copy-btn {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
    padding: 6px 14px; background: var(--primary); color: var(--white);
    border: none; border-radius: var(--radius-sm); cursor: pointer; font-size: 12px; font-weight: 600;
}

/* ============================================
   ORDER TRACKING
   ============================================ */
.track-section { max-width: 700px; margin: 40px auto; padding: 0 20px; }
.track-form { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); text-align: center; border: 1px solid var(--border); }
.track-form h2 { font-family: var(--font-display); margin-bottom: 8px; }
.track-form p { color: var(--text-light); margin-bottom: 20px; font-size: 14px; }
.track-input-group { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.track-input-group input { flex: 1; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: var(--font); }
.track-input-group input:focus { border-color: var(--primary); outline: none; }
.order-status-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-top: 20px; border: 1px solid var(--border); }
.status-timeline { position: relative; padding: 16px 0; }
.status-step { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 28px; position: relative; }
.status-step:last-child { padding-bottom: 0; }
.status-step::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 2px; background: var(--border); }
.status-step:last-child::before { display: none; }
.status-step.completed::before { background: var(--success); }
.status-step.active::before { background: linear-gradient(to bottom, var(--primary), var(--border)); }
.status-icon {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
    background: var(--bg-alt); color: var(--text-muted); border: 2px solid var(--border); z-index: 1;
}
.status-step.completed .status-icon { background: var(--success); color: var(--white); border-color: var(--success); }
.status-step.active .status-icon { background: var(--primary); color: var(--white); border-color: var(--primary); animation: pulse-status 2s infinite; }
@keyframes pulse-status { 0%, 100% { box-shadow: 0 0 0 0 rgba(242,122,26,0.3); } 50% { box-shadow: 0 0 0 8px rgba(242,122,26,0); } }
.status-info h4 { font-size: 15px; margin-bottom: 3px; }
.status-info p { font-size: 12px; color: var(--text-muted); }
.status-info .status-date { font-size: 11px; color: var(--primary); font-weight: 600; margin-top: 3px; }
.cargo-track-info { background: var(--primary-light); border-radius: var(--radius-sm); padding: 14px; margin-top: 20px; display: flex; align-items: center; gap: 10px; }
.cargo-track-info i { font-size: 22px; color: var(--primary); }

/* ============================================
   AUTH
   ============================================ */
.auth-section { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.auth-card h2 { font-family: var(--font-display); text-align: center; margin-bottom: 6px; font-size: 26px; }
.auth-card .auth-desc { text-align: center; color: var(--text-light); font-size: 13px; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-light); }
.auth-footer a { color: var(--primary); font-weight: 600; }

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; position: relative; }
.admin-mobile-toggle { display: none; position: fixed; top: 12px; left: 12px; z-index: 1001; width: 40px; height: 40px; border-radius: 8px; background: var(--primary); color: white; border: none; font-size: 18px; cursor: pointer; box-shadow: var(--shadow-md); }
.admin-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }
.admin-sidebar { background: var(--admin-sidebar-bg); padding: 20px 0; color: var(--white); }
.admin-logo { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 12px; }
.admin-logo img { height: 32px; }
.admin-logo span { font-size: 11px; color: var(--primary); font-weight: 600; margin-top: 4px; display: block; }
.admin-nav a {
    display: flex; align-items: center; gap: 10px; padding: 10px 20px; font-size: 13px;
    color: rgba(255,255,255,0.7); transition: var(--transition); border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active { color: var(--white); background: rgba(255,255,255,0.05); border-left-color: var(--primary); }
.admin-nav a i { width: 18px; text-align: center; }
.admin-content { padding: 24px; background: var(--bg-alt); }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.admin-header h1 { font-size: 22px; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 20px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.stat-card .stat-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 10px; }
.stat-card .stat-icon.orange { background: var(--primary-light); color: var(--primary); }
.stat-card .stat-icon.green { background: #e8f5e9; color: var(--success); }
.stat-card .stat-icon.blue { background: #e3f2fd; color: var(--info); }
.stat-card .stat-icon.red { background: #fce4ec; color: var(--danger); }
.stat-card .stat-value { font-size: 24px; font-weight: 800; color: var(--dark); }
.stat-card .stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.admin-table-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--border); }
.admin-table-header { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid var(--border); }
.admin-table-header h3 { font-size: 15px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--bg-alt); padding: 10px 14px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--text-muted); letter-spacing: 0.5px; }
.admin-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); font-size: 13px; }
.admin-table tr:hover td { background: rgba(242,122,26,0.02); }
.admin-table .product-thumb { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; background: var(--bg-alt); }

.status-badge { display: inline-flex; align-items: center; gap: 3px; padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 600; }
.status-pending { background: #fff3e0; color: #e65100; }
.status-approved { background: #e3f2fd; color: #1565c0; }
.status-preparing { background: #fff8e1; color: #f57f17; }
.status-shipped { background: #e8f5e9; color: #2e7d32; }
.status-delivered { background: #e8f5e9; color: #1b5e20; }
.status-cancelled { background: #fce4ec; color: #c62828; }
.action-btns { display: flex; gap: 4px; }
.action-btn {
    width: 30px; height: 30px; border-radius: 6px; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 12px; transition: var(--transition);
}
.action-btn.edit { background: #e3f2fd; color: #1565c0; }
.action-btn.delete { background: #fce4ec; color: #c62828; }
.action-btn.view { background: #e8f5e9; color: #2e7d32; }
.action-btn:hover { transform: scale(1.1); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: var(--radius-lg); width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto; box-shadow: var(--shadow-lg); }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.modal-header h3 { font-size: 17px; }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted); }
.modal-body { padding: 20px; }
.modal-footer { padding: 14px 20px; border-top: 1px solid var(--border); display: flex; gap: 8px; justify-content: flex-end; }

/* Alerts */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-danger { background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }
.alert-warning { background: #fff8e1; color: #f57f17; border: 1px solid #ffecb3; }
.alert-info { background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }

/* Empty State */
.empty-state { text-align: center; padding: 50px 20px; }
.empty-state i { font-size: 56px; color: var(--border); margin-bottom: 14px; }
.empty-state h3 { font-size: 18px; margin-bottom: 6px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 4px; margin-top: 28px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; border: 1px solid var(--border); background: var(--white); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--dark); color: #aaa; padding-top: 0; }
.footer-wave { color: var(--dark); margin-top: -1px; }
.footer-wave svg { display: block; width: 100%; height: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; padding: 48px 0 32px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 13px; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-about p { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.footer-logo { height: 48px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 16px; transition: var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-contact li { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 13px; }
.footer-contact i { color: var(--primary); width: 16px; }
.footer-payment h4 { margin-top: 16px; }
.iban-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); padding: 6px 12px; border-radius: 6px; font-size: 12px; color: #ccc; }
.footer-bottom { text-align: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; }
.footer-note { color: #666; margin-top: 4px; }

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; width: 52px; height: 52px;
    background: #25d366; color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 26px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4); z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,0.5); }
.scroll-top {
    position: fixed; bottom: 84px; right: 28px; width: 40px; height: 40px;
    background: var(--primary); color: var(--white); border: none; border-radius: 50%; cursor: pointer;
    font-size: 16px; box-shadow: 0 3px 10px rgba(242,122,26,0.3); z-index: 999;
    opacity: 0; visibility: hidden; transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-2px); }

/* ============================================
   ANIMATIONS
   ============================================ */
.anim-hero { opacity: 0; transform: translateY(20px); animation: heroFadeIn 0.6s ease forwards; }
.hero-visual.anim-hero { transform: translateX(40px); animation: heroSlideIn 0.8s ease forwards; }
@keyframes heroFadeIn { to { opacity: 1; transform: translateY(0); } }
@keyframes heroSlideIn { to { opacity: 1; transform: translateX(0); } }
.anim-scroll { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
.anim-visible .anim-scroll { opacity: 1; transform: translateY(0); }

/* Toast */
.toast-container { position: fixed; top: 90px; right: 20px; z-index: 10000; display: flex; flex-direction: column; gap: 6px; }
.toast {
    background: var(--white); border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 10px; animation: toast-in 0.3s ease; font-size: 13px; min-width: 280px;
    border-left: 4px solid var(--success);
}
.toast.error { border-left-color: var(--danger); }
@keyframes toast-in { from { opacity: 0; transform: translateX(80px); } to { opacity: 1; transform: translateX(0); } }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE - TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .hero .container { flex-direction: column; text-align: center; padding: 40px 20px; gap: 32px; }
    .hero-visual { width: 280px; height: 280px; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; gap: 24px; }
    .showcase-360 .container { flex-direction: column; gap: 40px; }
    .showcase-visual { min-height: 300px; }
    .showcase-video-container { width: 280px; height: 320px; }
    .listing-layout { grid-template-columns: 1fr; }
    .filters-sidebar { display: none; }
    .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
    .cart-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; position: fixed; top: 0; left: 0; width: 260px; height: 100vh; z-index: 1000; overflow-y: auto; }
    .admin-sidebar.open { display: block; }
    .admin-mobile-toggle { display: flex; align-items: center; justify-content: center; }
    .admin-sidebar-overlay.open { display: block; }
    .admin-content { padding: 16px; padding-top: 60px; }
    .admin-header { flex-wrap: wrap; gap: 12px; }
    .admin-header h1 { font-size: 18px; }
    .admin-table { font-size: 12px; }
    .admin-table th, .admin-table td { padding: 8px 10px; }
    .admin-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-card { padding: 14px; }
    .stat-card .stat-value { font-size: 20px; }
}

/* ============================================
   RESPONSIVE - MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
    /* Header - daha kompakt */
    .top-bar .top-bar-left { display: none; }
    .top-bar { padding: 6px 0; font-size: 11px; }
    .header-actions span { display: none; }
    .header-actions { gap: 8px; }
    .header-action { padding: 4px; }
    .header-action i { font-size: 18px; }
    .mobile-menu-btn { display: flex; }
    .search-bar { display: none; }
    .logo-img { height: 42px; }
    .header-inner { padding: 8px 0; gap: 12px; }

    /* Kategori nav - mobilde daha kucuk */
    .category-nav { overflow-x: auto; }
    .cat-list li a { padding: 9px 12px; font-size: 12px; }

    /* Hero */
    .hero { min-height: auto; padding: 36px 0; }
    .hero-title { font-size: 1.8rem; margin-bottom: 14px; }
    .hero-desc { font-size: 14px; margin-bottom: 24px; }
    .hero-badge { font-size: 12px; padding: 6px 12px; margin-bottom: 16px; }
    .hero-visual { width: 220px; height: 220px; }
    .hero-stats { gap: 20px; margin-top: 24px; padding-top: 20px; }
    .hero-stat-num { font-size: 22px; }
    .hero-stat-label { font-size: 11px; }

    /* Sections - daha az padding */
    .section { padding: 36px 0; }
    .section-header { margin-bottom: 24px; }
    .section-title { font-size: 1.4rem; }
    .section-desc { font-size: 13px; }

    /* Kategori kartlari - mobilde 2x5 grid */
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-card { padding: 16px 12px; gap: 8px; }
    .category-img { width: 64px; height: 64px; }
    .category-icon-fallback { width: 64px; height: 64px; font-size: 22px; }
    .category-card h3 { font-size: 13px; }

    /* Urun kartlari */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-card-body { padding: 10px; }
    .product-card-title { font-size: 12px; }
    .product-brand { font-size: 10px; }
    .price-current { font-size: 15px; }
    .price-old { font-size: 11px; }
    .product-card-actions .btn { padding: 7px 4px; font-size: 11px; }
    .product-rating { margin-bottom: 4px; }
    .stars { font-size: 10px; }
    .rating-count { font-size: 10px; }
    .product-fav { width: 28px; height: 28px; font-size: 12px; top: 6px; right: 6px; }
    .badge { font-size: 10px; padding: 2px 6px; }

    /* Feature kartlari */
    .features-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .feature-card { padding: 20px 14px; }
    .feature-icon { width: 48px; height: 48px; font-size: 20px; margin-bottom: 10px; }
    .feature-card h3 { font-size: 13px; }
    .feature-card p { font-size: 12px; }

    /* Showcase */
    .showcase-360 { padding: 40px 0; }
    .showcase-visual { min-height: 250px; }
    .showcase-video-container { width: 220px; height: 260px; }
    .rotate-ring-1 { width: 260px; height: 260px; }
    .rotate-ring-2 { width: 320px; height: 320px; }
    .showcase-content .section-title { font-size: 1.3rem; }
    .showcase-feature { gap: 10px; }
    .showcase-feature-icon { width: 36px; height: 36px; font-size: 14px; }
    .showcase-feature h4 { font-size: 13px; }
    .showcase-feature p { font-size: 12px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
    .testimonial-card { padding: 20px; }

    /* CTA Banner */
    .cta-banner { padding: 36px 0; }
    .cta-banner h2 { font-size: 1.3rem; }
    .cta-banner p { font-size: 14px; margin-bottom: 16px; }

    /* Page header */
    .page-header { padding: 20px 0; }
    .page-header h1 { font-size: 1.2rem; }
    .breadcrumb { font-size: 12px; }

    /* Urun detay */
    .product-detail { padding: 16px; margin: 16px 0; }
    .product-detail-grid { gap: 20px; }
    .product-info h1 { font-size: 18px; }
    .product-detail-price .price-current { font-size: 24px; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { font-size: 14px; }
    .wholesale-cta { flex-direction: column; text-align: center; }

    /* Sepet */
    .cart-item { flex-wrap: wrap; gap: 10px; }
    .cart-item-img { width: 72px; height: 72px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-col { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-contact { display: flex; flex-direction: column; align-items: center; }
    .footer-about { text-align: center; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }

    /* Floating buttons - mobilde daha kucuk */
    .whatsapp-float { width: 46px; height: 46px; font-size: 22px; bottom: 16px; right: 16px; }
    .scroll-top { width: 36px; height: 36px; font-size: 14px; bottom: 70px; right: 18px; }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px)
   ============================================ */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero-title { font-size: 1.5rem; }
    .hero-visual { width: 180px; height: 180px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .products-grid { gap: 6px; }
    .product-card-body { padding: 8px; }
    .product-card-title { font-size: 11px; -webkit-line-clamp: 1; }
    .price-current { font-size: 14px; }
    .product-card-actions .btn { font-size: 10px; padding: 6px 2px; }
    .categories-grid { gap: 8px; }
    .category-card { padding: 12px 8px; }
    .category-img { width: 52px; height: 52px; }
    .category-card h3 { font-size: 11px; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { flex-direction: row; text-align: left; gap: 14px; padding: 16px; }
    .feature-icon { margin: 0; flex-shrink: 0; }
    .section { padding: 28px 0; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
    .main-header, .site-footer, .whatsapp-float, .scroll-top, .top-bar { display: none; }
    body { background: white; }
}
