/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
#products { scroll-margin-top: 80px; }
:root {
  --blue: #2563eb; --blue-d: #1d4ed8; --blue-l: #eff6ff; --blue-m: #bfdbfe;
  --blue-glow: rgba(37, 99, 235, 0.15);
  --text: #0f172a; --text2: #475569; --text3: #94a3b8;
  --bg: #f1f5f9; --bg2: #ffffff; --border: #e2e8f0; --border2: #cbd5e1;
  --green: #059669; --green-bg: #ecfdf5;
  --red: #dc2626; --red-bg: #fef2f2;
  --amber-bg: #fffbeb;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.18);
  --radius: 10px; --radius-lg: 16px;
}
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.6; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 16px; }

/* ── BANNER ── */
.banner { background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 50%, #1e40af 100%); color: #fff; text-align: center; padding: 10px 20px; font-size: 13px; font-weight: 500; font-family: 'Plus Jakarta Sans', sans-serif; display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; overflow: hidden; }
.banner strong { font-weight: 700; }
.banner-badge { background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.25); padding: 3px 10px; border-radius: 20px; font-size: 11.5px; font-weight: 700; letter-spacing: .3px; }
.timer { font-weight: 700; background: rgba(0, 0, 0, 0.2); padding: 3px 10px; border-radius: 6px; font-family: 'Inter', monospace; font-size: 13px; border: 1px solid rgba(255, 255, 255, 0.1); letter-spacing: .5px; }
.banner-link { color: #fde68a; font-weight: 700; cursor: pointer; text-decoration: none; transition: color .2s; }

/* ── NAVBAR ── */
nav { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.nav-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; padding: 0 16px; height: 70px; }
.logo-wrap { padding-right: 24px; border-right: 1px solid var(--border); margin-right: 8px; }
.logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 900; color: var(--blue); letter-spacing: -0.5px; display: flex; align-items: center; gap: 6px; text-decoration: none; }
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px var(--blue-m); display: inline-block; }
.logo span { color: var(--text); }
.nav-menu { display: flex; align-items: center; flex: 1; }
.nav-item { padding: 0 12px; font-size: 13px; font-weight: 600; color: var(--text2); cursor: pointer; transition: color .2s; white-space: nowrap; font-family: 'Plus Jakarta Sans', sans-serif; text-decoration: none; }
.nav-item:hover, .nav-item.active { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 8px; padding-left: 16px; border-left: 1px solid var(--border); margin-left: auto; }
.nav-btn { padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: all .2s; white-space: nowrap; border: none; text-decoration: none; display: inline-block; }
.btn-ghost { background: transparent; border: 1.5px solid var(--border2); color: var(--text2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }
.btn-panel { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3); }
.btn-panel:hover { background: var(--blue-d); box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil Menü */
.mobile-menu { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: #fff; border-bottom: 1px solid var(--border); padding: 20px; flex-direction: column; gap: 15px; box-shadow: var(--shadow-md); z-index: 99; }
.mobile-menu.open { display: flex; }
.mobile-menu .nav-item { padding: 10px 0; border-bottom: 1px solid var(--bg); }
.mobile-menu .nav-right { border: none; padding: 0; margin: 0; flex-direction: column; width: 100%; gap: 10px; }
.mobile-menu .nav-btn { width: 100%; text-align: center; }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, #0f1f4a 0%, #1e3a8a 40%, #2563eb 75%, #3b82f6 100%); padding: 72px 0 60px; text-align: center; position: relative; overflow: hidden; }
.hero-inner { max-width: 680px; margin: 0 auto; padding: 0 20px; position: relative; }
.hero-kw { display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.9); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 20px; margin-bottom: 22px; font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: .4px; text-transform: uppercase; }
.hero-kw-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 6px #4ade80; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .5; } }
.hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 44px; font-weight: 900; color: #fff; line-height: 1.12; letter-spacing: -1.5px; margin-bottom: 16px; }
.hero h1 span { color: transparent; background: linear-gradient(135deg, #fde68a, #fbbf24); -webkit-background-clip: text; background-clip: text; }
.hero p { color: rgba(255, 255, 255, 0.75); font-size: 16px; margin-bottom: 36px; line-height: 1.75; }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 12px; }
.h-btn-white { background: #fff; border: none; color: var(--blue); padding: 14px 30px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; cursor: pointer; transition: all .25s; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); text-decoration: none; display: inline-block; }
.h-btn-white:hover { background: #f0f9ff; transform: translateY(-2px); }
.h-btn-outline { background: rgba(255, 255, 255, 0.08); border: 1.5px solid rgba(255, 255, 255, 0.35); color: #fff; padding: 12px 24px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .25s; text-decoration: none; display: inline-block; }
.h-btn-outline:hover { background: rgba(255, 255, 255, 0.15); }
.hero-stats { display: flex; align-items: stretch; justify-content: center; margin-top: 48px; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 14px; overflow: hidden; max-width: 500px; margin-left: auto; margin-right: auto; backdrop-filter: blur(10px); }
.h-stat { flex: 1; padding: 18px 12px; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.h-stat:last-child { border-right: none; }
.h-stat strong { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.h-stat span { font-size: 11px; color: rgba(255, 255, 255, 0.55); font-weight: 500; }

/* ── CATEGORY TABS ── */
.cat-section { background: var(--bg2); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.cat-tabs { display: flex; overflow-x: auto; gap: 2px; padding: 0 2px; }
.cat-tabs::-webkit-scrollbar { height: 0; }
.cat-tab { padding: 14px 18px; font-size: 13px; font-weight: 600; color: var(--text2); cursor: pointer; white-space: nowrap; border-bottom: 2px solid transparent; transition: all .2s; font-family: 'Plus Jakarta Sans', sans-serif; border-radius: 6px 6px 0 0; text-decoration: none; display: block; }
.cat-tab:hover, .cat-tab.on { color: var(--blue); background: var(--blue-l); }
.cat-tab.on { border-bottom-color: var(--blue); }

/* ── MAIN LAYOUT ── */
.main-layout { display: grid; grid-template-columns: 224px 1fr; gap: 24px; padding: 28px 0 44px; }
.sidebar-box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.sidebar-title { background: linear-gradient(135deg, var(--blue) 0%, #3b82f6 100%); color: #fff; padding: 11px 16px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; }
.sidebar-list { padding: 6px 0; }
.sidebar-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 16px; font-size: 13px; color: var(--text2); cursor: pointer; transition: all .18s; border-left: 3px solid transparent; text-decoration: none; }
.sidebar-item:hover { color: var(--blue); background: var(--blue-l); border-left-color: var(--blue-m); }
.sidebar-item.on { color: var(--blue); font-weight: 600; background: var(--blue-l); border-left-color: var(--blue); }
.s-count { background: var(--bg); color: var(--text3); font-size: 11px; padding: 2px 8px; border-radius: 12px; font-weight: 600; }
.sidebar-item.on .s-count { background: var(--blue-m); color: var(--blue); }
.sidebar-promo { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); border-radius: var(--radius); padding: 20px; text-align: center; color: #fff; box-shadow: var(--shadow-blue); position: relative; overflow: hidden; }
.sidebar-promo h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 800; margin-bottom: 7px; }
.sidebar-promo p { font-size: 12px; color: rgba(255, 255, 255, 0.75); margin-bottom: 14px; line-height: 1.55; }
.sidebar-promo button { background: #fff; color: var(--blue); border: none; padding: 9px; border-radius: 8px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; cursor: pointer; width: 100%; transition: all .2s; }

/* ── PROD GRID ── */
.prod-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.prod-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800; color: var(--text); }
.prod-sort select { border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; font-size: 13px; color: var(--text2); background: var(--bg2); cursor: pointer; outline: none; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.p-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); cursor: pointer; transition: all .25s; position: relative; }
.p-card:hover { border-color: rgba(37, 99, 235, 0.3); box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1); transform: translateY(-2px); }
.p-img { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.p-badge { position: absolute; top: 12px; right: 12px; padding: 4px 12px; border-radius: 20px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.2); z-index: 10; }
.b-pop { background: #f59e0b; }
.b-new { background: #10b981; }
.b-sale { background: #ef4444; }
.p-body { padding: 18px; }
.p-cat { font-size: 11px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.p-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.p-desc { font-size: 12.5px; color: var(--text2); margin-bottom: 18px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.p-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.p-price del { display: block; font-size: 11px; color: var(--text3); margin-bottom: -2px; }
.p-price strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 900; color: var(--text); }
.p-actions { display: flex; gap: 6px; }
.p-btn { padding: 7px 12px; border-radius: 7px; font-size: 12px; font-weight: 700; text-decoration: none; transition: all .2s; }
.p-view { background: var(--bg); color: var(--text2); }
.p-view:hover { background: var(--border); color: var(--text); }
.p-buy { background: var(--blue); color: #fff; }
.p-buy:hover { background: var(--blue-d); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25); }

/* ── WHY SECTION ── */
.why-section { background: var(--bg2); padding: 60px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: var(--bg); border-radius: var(--radius-lg); transition: all .2s; }
.why-card:hover { background: var(--blue-l); transform: translateY(-2px); }
.why-icon { width: 48px; height: 48px; background: #fff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--blue); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.why-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.why-p { font-size: 12.5px; color: var(--text2); line-height: 1.6; }

/* ── BLOG ── */
.section-pad { padding: 60px 0; }
.sec-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sec-hd h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 900; color: var(--text); }
.sec-hd a { font-size: 13px; color: var(--blue); font-weight: 600; cursor: pointer; text-decoration: none; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.b-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; transition: all .25s; }
.b-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-m); }
.b-thumb { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 60px; }
.b-body { padding: 20px; }
.b-cat { font-size: 11px; font-weight: 800; color: var(--blue); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.b-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.4; }
.b-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text3); font-weight: 500; }

/* ── FOOTER ── */
footer { background: #0f172a; padding: 52px 0 0; margin-top: 60px; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.footer-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3); }
.footer-logo span { color: #fde68a; }
.footer-about { font-size: 13px; color: rgba(255, 255, 255, 0.45); line-height: 1.8; }
.footer-h { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11.5px; font-weight: 800; color: rgba(255, 255, 255, 0.8); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.footer-link { display: block; font-size: 13px; color: rgba(255, 255, 255, 0.4); margin-bottom: 9px; cursor: pointer; transition: color .2s; text-decoration: none; }
.footer-link:hover { color: rgba(255, 255, 255, 0.85); }
.footer-bottom { background: rgba(0, 0, 0, 0.3); padding: 16px 0; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.3); }
.footer-bottom a { color: rgba(255, 255, 255, 0.4); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu, .nav-right, .logo-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }
  .logo-wrap { display: block; border: none; padding: 0; }
  
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 14px; }
  .hero-stats { flex-wrap: wrap; }
  .h-stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .h-stat:nth-child(2) { border-right: none; }
  
  .main-layout { grid-template-columns: 1fr; }
  .sidebar-box, .sidebar-promo { display: none; }
  
  .prod-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  
  .banner { font-size: 10px; padding: 6px 10px; flex-wrap: wrap; gap: 4px; line-height: 1.2; }
  .banner strong { font-size: 10px; }
  .banner-badge { display: none; }
  .timer { font-size: 10px; padding: 2px 6px; }
  .banner-link { font-size: 10px; }
}

/* ── PRODUCT PAGE ── */
.breadcrumb { padding: 20px 0; display: flex; gap: 8px; font-size: 12px; color: var(--text3); font-weight: 500; align-items: center; }
.breadcrumb a { color: var(--text3); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--blue); }

.product-grid { display: grid; grid-template-columns: 1fr 380px; gap: 32px; margin: 32px 0 48px; }
.product-main { background: var(--bg2); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm); }
.product-gallery { height: 460px; display: flex; align-items: center; justify-content: center; font-size: 100px; border-bottom: 1px solid var(--border); background-size: contain !important; }
.product-content { padding: 32px; }
.product-tag { display: inline-block; padding: 4px 12px; background: var(--blue-l); color: var(--blue); border-radius: 20px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.product-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.5px; color: var(--text); }
.product-desc { font-size: 15px; color: var(--text2); margin-bottom: 28px; line-height: 1.8; }

.tabs { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab { padding: 12px 24px; font-weight: 700; color: var(--text3); cursor: pointer; border-bottom: 2px solid transparent; transition: all .2s; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; }
.tab.active { color: var(--blue); border-bottom-color: var(--blue); }

.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; padding: 16px; background: var(--bg); border-radius: 12px; transition: all .2s; }
.feature-item:hover { background: var(--blue-l); }
.feature-icon { color: var(--blue); font-size: 22px; flex-shrink: 0; }
.feature-text h4 { font-size: 14px; font-weight: 800; margin-bottom: 4px; color: var(--text); }
.feature-text p { font-size: 12px; color: var(--text2); }

.product-sidebar { position: sticky; top: 100px; height: fit-content; }
.price-card { background: var(--bg2); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 28px; box-shadow: var(--shadow-md); }
.price-tag { margin-bottom: 24px; }
.price-tag del { display: block; color: var(--text3); font-size: 14px; margin-bottom: 4px; }
.price-tag strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 900; color: var(--text); }
.price-tag .discount-badge { display: inline-block; background: #fef3c7; color: #d97706; font-size: 11px; font-weight: 800; padding: 3px 10px; border-radius: 20px; margin-left: 10px; vertical-align: middle; }

.buy-btn, .demo-btn, .admin-demo-btn { width: 100%; padding: 11px; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; cursor: pointer; transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 7px; margin-bottom: 12px; text-decoration: none; border: none; }
.buy-btn { background: var(--blue); color: #fff; }
.buy-btn:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3); }
.demo-btn { background: var(--bg2); color: var(--blue); border: 2px solid var(--blue-m); }
.demo-btn:hover { background: var(--blue-l); border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12); }
.admin-demo-btn { background: #0f172a; color: #fff; }
.admin-demo-btn:hover { background: #1e293b; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(15, 23, 42, 0.25); }

.sidebar-info { margin-top: 20px; padding: 16px; background: var(--blue-l); border-radius: 12px; border: 1px solid var(--blue-m); }
.info-item { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; color: var(--text2); }
.info-item strong { color: var(--text); }
.guarantee-box { margin-top: 16px; padding: 14px; background: var(--green-bg); border-radius: 10px; border: 1px solid #a7f3d0; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--green); font-weight: 600; }

.related-section { padding: 40px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ── ADDITIONAL RESPONSIVE ── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .product-title { font-size: 22px; }
  .product-gallery { height: 280px; font-size: 64px; }
  .product-content { padding: 20px 16px; }
  .related-grid { grid-template-columns: 1fr; }
  .tabs { overflow-x: auto; }
  .tab { padding: 10px 16px; white-space: nowrap; }
}

/* ══════════════════════════════════════════════
   MOBİL UYUMLULUK — EKSİK NOKTALAR
   ══════════════════════════════════════════════ */

/* Genel güvenlik */
img, video, iframe { max-width: 100%; height: auto; }
table { width: 100%; }

/* Banner — çok küçük ekranlarda timer gizle */
@media (max-width: 400px) {
  .timer { display: none; }
  .banner { gap: 6px; }
}

/* Hero — küçük telefon */
@media (max-width: 400px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 26px; letter-spacing: -1px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .h-btn-white, .h-btn-outline { width: 100%; text-align: center; }
  .hero-stats { margin-top: 32px; }
  .h-stat { flex: 0 0 50%; }
}

/* Ürün grid — 2 sütun tablet, 1 sütun telefon zaten var; küçük telefonda card padding */
@media (max-width: 400px) {
  .p-body { padding: 14px 12px; }
  .p-name { font-size: 14px; }
  .p-actions { flex-direction: column; gap: 6px; }
  .p-btn { width: 100%; text-align: center; }
}

/* Category tabs — kaydırmalı, parmak dostu */
.cat-tabs { -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.cat-tab { scroll-snap-align: start; }
@media (max-width: 480px) {
  .cat-tab { padding: 12px 14px; font-size: 12px; }
}

/* Ürün detay sayfası */
@media (max-width: 480px) {
  .product-title { font-size: 20px; }
  .price-tag strong { font-size: 28px; }
  .features-list { grid-template-columns: 1fr; }
  .tabs { gap: 0; }
  .tab { font-size: 13px; padding: 10px 14px; }
  .product-content { padding: 16px; }
}

/* Footer — 480px altında tek sütun */
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  footer { padding: 36px 0 0; }
}

/* Why section */
@media (max-width: 480px) {
  .why-section { padding: 40px 0; }
  .why-card { padding: 16px; }
}

/* Blog */
@media (max-width: 480px) {
  .b-thumb { height: 110px; font-size: 44px; }
  .b-title { font-size: 14px; }
}

/* Checkout — buton ve form */
@media (max-width: 480px) {
  .checkout-wrap { margin: 20px auto; }
}

/* Genel wrap padding küçük ekranda */
@media (max-width: 360px) {
  .wrap { padding: 0 12px; }
  .hero-inner { padding: 0 14px; }
}

/* ══════════════════════════════════════════════
   TAM RESPONSIVE — EKSİK & GELİŞTİRİLMİŞ KISIMLAR
   ══════════════════════════════════════════════ */

/* ── GENEL GÜVENLİK ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
img, video, iframe, embed, object { max-width: 100%; height: auto; display: block; }
input, textarea, select, button { max-width: 100%; }
table { width: 100%; table-layout: auto; }
pre, code { overflow-x: auto; max-width: 100%; }

/* ── HERO SLIDER (index.php inline style) ── */
@media (max-width: 1024px) {
  .hs-right { width: 400px; }
  .hs-img-emoji, .hs-img-box { width: 380px; height: 260px; }
  .hs-title { font-size: 28px; }
}
@media (max-width: 768px) {
  .hs-slide { padding: 32px 20px 60px; min-height: auto; flex-direction: column; gap: 20px; align-items: flex-start; }
  .hs-left { padding-right: 0; width: 100%; }
  .hs-right { width: 100%; justify-content: center; }
  .hs-img-emoji, .hs-img-box { width: 100%; max-width: 320px; height: 220px; font-size: 64px; margin: 0 auto; }
  .hs-title { font-size: 22px; letter-spacing: -0.4px; }
  .hs-desc { font-size: 13px; max-width: 100%; }
  .hs-btns { flex-wrap: wrap; padding-right: 0; }
  .hs-btn-main, .hs-btn-out { padding: 10px 20px; font-size: 12px; }
}
@media (max-width: 480px) {
  .hs-slide { padding: 24px 16px 52px; }
  .hs-title { font-size: 20px; }
  .hs-kw { font-size: 10px; padding: 4px 10px; }
  .hs-btns { flex-direction: column; gap: 8px; }
  .hs-btn-main, .hs-btn-out { width: 100%; text-align: center; padding: 12px; }
  .hs-img-emoji, .hs-img-box { max-width: 260px; height: 180px; font-size: 52px; }
  .hs-price-new { font-size: 20px; }
}

/* ── NAVBAR — logo-wrap görünürlük fix ── */
@media (max-width: 768px) {
  .nav-inner { position: relative; }
  nav { position: sticky; top: 0; z-index: 100; }
}

/* ── BANNER — çok dar ekranlar ── */
@media (max-width: 360px) {
  .banner { flex-direction: column; padding: 8px 10px; font-size: 9px; }
  .timer { font-size: 9px; }
}

/* ── CAT SECTION — parmak dostu ── */
@media (max-width: 768px) {
  .cat-section { overflow: hidden; }
  .cat-tabs { padding: 0; }
  .cat-tab { min-width: fit-content; }
}

/* ── MAIN LAYOUT SIDEBAR — tablet görünümü ── */
@media (max-width: 1024px) {
  .main-layout { grid-template-columns: 200px 1fr; gap: 16px; }
}
@media (max-width: 900px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar-box, .sidebar-promo { display: none; }
}

/* ── PRODUCT GRID — tablet 2 sütun ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .p-img { height: 120px; font-size: 40px; }
  .p-body { padding: 12px 10px; }
  .p-name { font-size: 13px; }
  .p-desc { display: none; }
  .p-footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  .p-actions { width: 100%; }
  .p-btn { flex: 1; text-align: center; font-size: 11px; padding: 7px 6px; }
}
@media (max-width: 360px) {
  .prod-grid { grid-template-columns: 1fr; }
}

/* ── PROD HEADER ── */
@media (max-width: 600px) {
  .prod-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .prod-sort select { width: 100%; }
}

/* ── WHY SECTION — tablet ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── BLOG GRID ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .b-thumb { height: 100px; font-size: 40px; }
  .b-body { padding: 14px; }
  .b-title { font-size: 14px; }
  .b-meta { flex-wrap: wrap; gap: 6px; }
}

/* ── FOOTER — tablet ── */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  footer { padding: 36px 0 0; }
  .footer-logo { font-size: 18px; }
  .footer-bottom p { font-size: 11px; }
}

/* ── PRODUCT DETAIL PAGE ── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr 340px; gap: 20px; }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .product-gallery { height: 340px; }
  .features-list { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .product-gallery { height: 260px; font-size: 72px; }
  .product-content { padding: 20px 16px; }
  .product-title { font-size: 22px; }
  .product-desc { font-size: 14px; }
  .price-tag strong { font-size: 30px; }
  .features-list { grid-template-columns: 1fr; }
  .tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 0; }
  .tab { white-space: nowrap; font-size: 13px; padding: 10px 14px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 400px) {
  .product-gallery { height: 200px; font-size: 56px; }
  .product-title { font-size: 19px; }
  .price-tag strong { font-size: 26px; }
  .buy-btn, .demo-btn, .admin-demo-btn { font-size: 12px; padding: 10px; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ── BREADCRUMB ── */
@media (max-width: 480px) {
  .breadcrumb { flex-wrap: wrap; gap: 4px; padding: 12px 0; font-size: 11px; }
}

/* ── SECTION PADDING ── */
@media (max-width: 768px) {
  .section-pad { padding: 40px 0; }
  .why-section { padding: 40px 0; }
}
@media (max-width: 480px) {
  .section-pad { padding: 28px 0; }
  .why-section { padding: 28px 0; }
}

/* ── SEC-HD ── */
@media (max-width: 480px) {
  .sec-hd { flex-direction: column; align-items: flex-start; gap: 6px; }
  .sec-hd h2 { font-size: 16px; }
}

/* ── HERO (standard, non-slider) ── */
@media (max-width: 768px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 28px; letter-spacing: -1px; }
  .hero p { font-size: 14px; margin-bottom: 24px; }
  .hero-btns { flex-wrap: wrap; gap: 10px; }
}
@media (max-width: 480px) {
  .hero { padding: 36px 0 32px; }
  .hero h1 { font-size: 24px; }
  .hero-btns { flex-direction: column; }
  .h-btn-white, .h-btn-outline { width: 100%; text-align: center; }
}
@media (max-width: 360px) {
  .hero h1 { font-size: 20px; }
  .hero-stats { margin-top: 24px; }
}

/* ── HAKKIMIZDA / İLETİŞİM / SAYFA genel içerik ── */
@media (max-width: 768px) {
  .page-content { padding: 28px 0; }
}
@media (max-width: 480px) {
  .page-content { padding: 20px 0; }
}

/* ── BLOG DETAY SAYFASI ── */
@media (max-width: 768px) {
  .blog-detail-grid { grid-template-columns: 1fr !important; }
}

/* ── OVERFLOW KORUMA ── */
body { overflow-x: hidden; }
.wrap { overflow-x: hidden; }
