/* ============================================================
   Kurumsal E-Ticaret Stili - Endüstriyel & Modern
   ============================================================ */

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font, 'Inter', sans-serif);
  color: var(--text, #111827);
  background: var(--bg, #ffffff);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar-info span { margin-right: 20px; }
.topbar-info i { color: var(--primary); margin-right: 6px; }
.topbar-actions { display: flex; gap: 20px; align-items: center; }
.topbar-actions a { color: rgba(255,255,255,0.85); transition: color .2s; }
.topbar-actions a:hover { color: var(--primary); }

.lang-switcher { position: relative; }
.lang-btn { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 999px; cursor: pointer; font-size: 12px; }
.lang-drop { position: absolute; top: 100%; right: 0; background: white; color: var(--text); box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; margin-top: 6px; min-width: 160px; padding: 6px 0; display: none; z-index: 100; }
.lang-switcher:hover .lang-drop { display: block; }
.lang-drop a { display: block; padding: 8px 14px; font-size: 13px; color: var(--text); }
.lang-drop a:hover { background: #f3f4f6; color: var(--primary); }

/* ============================================================
   HEADER
   ============================================================ */
.header { background: var(--bg); border-bottom: 1px solid #e5e7eb; }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; padding: 20px 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  position: relative;
  transform: rotate(-45deg);
}
.logo-mark::before {
  content: ''; position: absolute; inset: 8px;
  background: var(--secondary); border-radius: 4px;
}
.logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; color: var(--secondary); letter-spacing: -0.5px; }

.search-bar { display: flex; background: #f3f4f6; border-radius: 999px; overflow: hidden; border: 2px solid transparent; transition: border-color .2s; }
.search-bar:focus-within { border-color: var(--primary); background: white; }
.search-bar input { flex: 1; border: 0; background: transparent; padding: 12px 20px; outline: none; font-size: 14px; }
.search-bar button { background: var(--primary); color: white; border: 0; padding: 0 24px; cursor: pointer; font-size: 15px; }
.search-bar button:hover { filter: brightness(1.1); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-icon { position: relative; width: 44px; height: 44px; background: var(--secondary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
.cart-icon:hover { transform: scale(1.05); }
.cart-count { position: absolute; top: -4px; right: -4px; background: var(--primary); color: white; font-size: 11px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Main Nav */
.mainnav { background: var(--secondary); }
.mainnav-inner { display: flex; align-items: center; gap: 24px; }

.cat-mega { position: relative; }
.cat-btn { background: var(--primary); color: white; border: 0; padding: 14px 24px; font-weight: 600; cursor: pointer; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.cat-mega-drop { position: absolute; top: 100%; left: 0; background: white; color: var(--text); box-shadow: 0 20px 40px rgba(0,0,0,0.15); min-width: 280px; padding: 12px 0; display: none; z-index: 100; }
.cat-mega:hover .cat-mega-drop { display: block; }
.cat-mega-drop a { display: block; padding: 10px 20px; font-size: 14px; }
.cat-mega-drop a:hover { background: #f3f4f6; color: var(--primary); }

.nav-links { display: flex; gap: 4px; list-style: none; flex: 1; }
.nav-links a { display: block; padding: 14px 18px; color: white; font-size: 14px; font-weight: 500; transition: background .2s, color .2s; }
.nav-links a:hover { background: rgba(255,255,255,0.06); color: var(--accent); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; cursor: pointer; border: 2px solid transparent; transition: all .25s; text-align: center; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.btn-outline { background: transparent; color: var(--text); border-color: currentColor; }
.btn-outline:hover { background: var(--primary); color: white; border-color: var(--primary); }
.btn-dark { background: var(--secondary); color: white; }
.btn-dark:hover { background: var(--primary); }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--secondary); color: white; overflow: hidden; min-height: 520px; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, var(--primary), transparent 60%); opacity: 0.35; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; padding: 80px 20px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 999px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(38px, 5vw, 60px); font-weight: 700; line-height: 1.05; margin: 20px 0; letter-spacing: -1.5px; }
.hero-title span { color: var(--primary); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual .badge-circle { position: absolute; width: 140px; height: 140px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; font-weight: 700; padding: 20px; top: -20px; right: -10px; transform: rotate(-15deg); font-size: 14px; }
.hero-img-wrap { background: white; border-radius: 12px; padding: 24px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.hero-img-wrap img { border-radius: 8px; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stats .stat h3 { color: var(--primary); font-size: 30px; font-family: 'Space Grotesk', sans-serif; }
.hero-stats .stat p { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-eyebrow { color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 4vw, 42px); font-weight: 700; margin: 10px 0; letter-spacing: -1px; }
.section-desc { color: #6b7280; max-width: 640px; margin: 0 auto; }

/* Categories Grid */
.cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.cat-card { position: relative; padding: 40px 24px; background: white; border: 1px solid #e5e7eb; border-radius: 12px; text-align: center; transition: all .3s; overflow: hidden; }
.cat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: var(--primary); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card i { font-size: 40px; color: var(--primary); margin-bottom: 12px; }
.cat-card h3 { font-size: 16px; margin-bottom: 4px; }
.cat-card small { color: #9ca3af; font-size: 12px; }

/* ============================================================
   PRODUCT FILTER TABS (istenen: üstte tab olarak filtreleme)
   ============================================================ */
.filter-tabs-wrap { background: white; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); padding: 20px; margin-bottom: 30px; }
.filter-tabs { display: flex; gap: 4px; border-bottom: 2px solid #e5e7eb; overflow-x: auto; scrollbar-width: none; }
.filter-tabs::-webkit-scrollbar { display: none; }
.filter-tab { background: transparent; border: 0; padding: 14px 20px; font-size: 14px; font-weight: 600; color: #6b7280; cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; white-space: nowrap; display: flex; align-items: center; gap: 8px; transition: all .2s; }
.filter-tab:hover { color: var(--primary); }
.filter-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.filter-tab .count { background: #f3f4f6; padding: 2px 8px; border-radius: 999px; font-size: 11px; }
.filter-tab.active .count { background: var(--primary); color: white; }

.filter-panel { padding: 20px 0; display: none; }
.filter-panel.active { display: block; animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.filter-options { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-chip { padding: 8px 16px; background: #f3f4f6; border-radius: 999px; font-size: 13px; cursor: pointer; border: 2px solid transparent; transition: all .2s; }
.filter-chip:hover { background: #e5e7eb; }
.filter-chip.selected { background: var(--primary); color: white; border-color: var(--primary); }
.filter-range { display: flex; gap: 12px; align-items: center; }
.filter-range input { flex: 1; padding: 10px 14px; border: 1px solid #e5e7eb; border-radius: 8px; }
.filter-active { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; padding-top: 12px; border-top: 1px dashed #e5e7eb; margin-top: 12px; }
.filter-active-chip { background: var(--primary); color: white; padding: 4px 10px 4px 14px; border-radius: 999px; font-size: 12px; display: inline-flex; align-items: center; gap: 6px; }
.filter-active-chip button { background: transparent; border: 0; color: white; cursor: pointer; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product-card { background: white; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; transition: all .3s; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: transparent; }
.product-card .thumb { position: relative; aspect-ratio: 1; overflow: hidden; background: #f9fafb; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 6px; }
.badge { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-danger { background: #ef4444; color: white; }
.badge-warning { background: #f59e0b; color: white; }
.badge-info { background: #3b82f6; color: white; }
.badge-success { background: #10b981; color: white; }
.badge-sale { background: var(--primary); color: white; }

.product-card .actions-hover { position: absolute; top: 10px; right: 10px; display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(10px); transition: all .3s; }
.product-card:hover .actions-hover { opacity: 1; transform: translateX(0); }
.actions-hover button, .actions-hover a { width: 36px; height: 36px; background: white; border: 0; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.1); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--secondary); transition: all .2s; }
.actions-hover button:hover, .actions-hover a:hover { background: var(--primary); color: white; }

.product-card .info { padding: 16px; }
.product-card .brand { color: #9ca3af; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.product-card .title { font-size: 15px; font-weight: 600; margin: 4px 0 10px; line-height: 1.35; min-height: 42px; }
.product-card .title a { color: var(--text); }
.product-card .title a:hover { color: var(--primary); }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; color: var(--secondary); }
.price-old { color: #9ca3af; text-decoration: line-through; font-size: 13px; margin-right: 6px; }
.product-card .add-btn { background: var(--secondary); color: white; border: 0; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; transition: all .2s; }
.product-card .add-btn:hover { background: var(--primary); transform: rotate(90deg); }

/* ============================================================
   SHOP LAYOUT
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; }
.shop-sidebar { position: sticky; top: 20px; align-self: start; }
.sidebar-block { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.sidebar-block h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; color: var(--secondary); }
.sidebar-block ul { list-style: none; }
.sidebar-block li a { display: block; padding: 8px 0; color: #6b7280; font-size: 14px; border-bottom: 1px dashed #f3f4f6; }
.sidebar-block li a:hover { color: var(--primary); padding-left: 6px; }

.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding: 16px 20px; background: white; border-radius: 12px; border: 1px solid #e5e7eb; }
.shop-header .count { color: #6b7280; font-size: 14px; }
.shop-header select { padding: 8px 14px; border: 1px solid #e5e7eb; border-radius: 8px; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.product-gallery .main-img { border-radius: 12px; overflow: hidden; background: #f9fafb; aspect-ratio: 1; margin-bottom: 12px; }
.product-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.thumbs img { border: 2px solid transparent; border-radius: 6px; cursor: pointer; }
.thumbs img.active { border-color: var(--primary); }
.pd-brand { color: var(--primary); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; }
.pd-title { font-family: 'Space Grotesk', sans-serif; font-size: 34px; margin: 10px 0; letter-spacing: -0.8px; }
.pd-meta { display: flex; gap: 20px; color: #6b7280; font-size: 14px; margin-bottom: 20px; }
.pd-price-row { display: flex; align-items: baseline; gap: 14px; margin: 20px 0; padding: 20px; background: #f9fafb; border-radius: 12px; }
.pd-price { font-family: 'Space Grotesk', sans-serif; font-size: 40px; color: var(--primary); font-weight: 700; }
.pd-actions { display: flex; gap: 12px; align-items: center; margin: 20px 0; }
.qty-selector { display: flex; align-items: center; border: 2px solid #e5e7eb; border-radius: 999px; overflow: hidden; }
.qty-selector button { background: transparent; border: 0; width: 40px; height: 40px; cursor: pointer; font-size: 16px; }
.qty-selector input { border: 0; width: 50px; text-align: center; font-weight: 600; }

.pd-tabs { margin-top: 40px; border-top: 1px solid #e5e7eb; padding-top: 30px; }
.pd-tab-heads { display: flex; gap: 4px; border-bottom: 2px solid #e5e7eb; }
.pd-tab-head { padding: 14px 22px; background: transparent; border: 0; border-bottom: 3px solid transparent; margin-bottom: -2px; font-weight: 600; cursor: pointer; color: #6b7280; }
.pd-tab-head.active { color: var(--primary); border-bottom-color: var(--primary); }
.pd-tab-body { padding: 24px 0; display: none; }
.pd-tab-body.active { display: block; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.form-control, input[type=text], input[type=email], input[type=password], input[type=tel], input[type=number], input[type=date], textarea, select {
  width: 100%; padding: 12px 14px; border: 1px solid #e5e7eb; border-radius: 8px; font-family: inherit; font-size: 14px; outline: none; transition: border-color .2s;
}
.form-control:focus, input:focus, textarea:focus, select:focus { border-color: var(--primary); }
textarea { min-height: 100px; resize: vertical; }

.auth-page { min-height: calc(100vh - 200px); display: flex; align-items: center; justify-content: center; padding: 40px 20px; background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%); }
.auth-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.08); max-width: 460px; width: 100%; border: 1px solid #e5e7eb; }
.auth-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; margin-bottom: 8px; }
.auth-card .lead { color: #6b7280; margin-bottom: 24px; }

.alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--secondary); color: rgba(255,255,255,0.75); padding: 60px 0 20px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: white; margin-bottom: 18px; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color .2s; }
.footer li a:hover { color: var(--primary); }
.footer-col p { margin-bottom: 8px; font-size: 14px; }
.footer-col p i { color: var(--primary); margin-right: 8px; }
.newsletter-form { display: flex; gap: 8px; margin-top: 12px; }
.newsletter-form input { flex: 1; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); color: white; border-radius: 999px; font-size: 13px; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button { padding: 10px 18px; font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.pay-icons { display: flex; gap: 12px; font-size: 22px; color: rgba(255,255,255,0.5); }

/* ============================================================
   AI ASSISTANT
   ============================================================ */
.ai-widget { position: fixed; bottom: 24px; right: 24px; z-index: 999; }
.ai-toggle { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; border: 0; cursor: pointer; font-size: 24px; box-shadow: 0 10px 30px rgba(249,115,22,0.4); position: relative; }
.ai-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; opacity: 0.6; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }
.ai-box { position: absolute; bottom: 80px; right: 0; width: 360px; max-width: calc(100vw - 40px); background: white; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.2); overflow: hidden; display: none; }
.ai-widget.open .ai-box { display: block; animation: aiUp .3s; }
@keyframes aiUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.ai-head { background: var(--secondary); color: white; padding: 16px; display: flex; justify-content: space-between; align-items: center; }
.ai-head small { display: block; opacity: 0.7; font-size: 12px; }
.ai-head button { background: transparent; border: 0; color: white; cursor: pointer; }
.ai-body { padding: 16px; max-height: 380px; overflow-y: auto; }
.ai-msg { padding: 10px 14px; border-radius: 12px; margin-bottom: 10px; font-size: 14px; max-width: 85%; }
.ai-bot { background: #f3f4f6; }
.ai-user { background: var(--primary); color: white; margin-left: auto; }
.ai-input { border-top: 1px solid #e5e7eb; padding: 10px; display: flex; gap: 8px; }
.ai-input input { flex: 1; border: 1px solid #e5e7eb; padding: 8px 12px; border-radius: 999px; outline: none; }
.ai-input button { width: 40px; height: 40px; background: var(--primary); color: white; border: 0; border-radius: 50%; cursor: pointer; }

/* WhatsApp */
.whatsapp-float { position: fixed; bottom: 24px; left: 24px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: white; display: flex; align-items: center; justify-content: center; font-size: 30px; box-shadow: 0 10px 30px rgba(37,211,102,0.4); z-index: 998; transition: transform .3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--secondary); color: white; padding: 20px; z-index: 1000; border-top: 3px solid var(--primary); }
.cookie-inner { display: grid; grid-template-columns: 2fr 2fr auto; gap: 30px; align-items: center; }
.cookie-text strong { color: var(--primary); }
.cookie-text p { font-size: 13px; opacity: 0.85; margin-top: 4px; }
.cookie-controls { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; }
.cookie-controls label { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.cookie-btns { display: flex; gap: 10px; }

/* ============================================================
   ADMIN
   ============================================================ */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--secondary); color: white; padding: 20px 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-brand { padding: 0 20px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.admin-brand a { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: white; }
.admin-brand small { color: var(--primary); text-transform: uppercase; letter-spacing: 2px; font-size: 10px; }
.admin-nav { padding: 20px 0; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 10px 20px; color: rgba(255,255,255,0.7); font-size: 14px; transition: all .2s; border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.05); color: white; border-left-color: var(--primary); }
.admin-nav a i { width: 20px; text-align: center; }
.admin-nav .nav-group { padding: 12px 20px 8px; color: rgba(255,255,255,0.4); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; }

.admin-main { background: #f9fafb; }
.admin-topbar { background: white; padding: 16px 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e5e7eb; }
.admin-content { padding: 30px; }
.admin-content h1 { font-family: 'Space Grotesk', sans-serif; margin-bottom: 24px; }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }
.stat-card { background: white; border-radius: 12px; padding: 24px; border: 1px solid #e5e7eb; position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; right: 0; width: 80px; height: 80px; background: var(--primary); opacity: 0.08; border-radius: 50%; transform: translate(30px, -30px); }
.stat-card h5 { color: #6b7280; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.stat-card .val { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; margin-top: 8px; color: var(--secondary); }

.admin-panel { background: white; border-radius: 12px; padding: 24px; border: 1px solid #e5e7eb; margin-bottom: 24px; }
.admin-panel h3 { margin-bottom: 20px; font-size: 18px; }

.table { width: 100%; border-collapse: collapse; }
.table th { text-align: left; padding: 12px; background: #f9fafb; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: #6b7280; border-bottom: 2px solid #e5e7eb; }
.table td { padding: 12px; border-bottom: 1px solid #f3f4f6; font-size: 14px; }
.table tr:hover { background: #f9fafb; }
.table .actions { display: flex; gap: 6px; }
.table .actions a, .table .actions button { padding: 6px 10px; border-radius: 6px; font-size: 12px; border: 1px solid #e5e7eb; background: white; cursor: pointer; }
.table .actions a:hover { background: var(--primary); color: white; border-color: var(--primary); }

.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--secondary) 0%, #000 100%); padding: 20px; }
.admin-login-card { background: white; padding: 40px; border-radius: 16px; max-width: 400px; width: 100%; box-shadow: 0 30px 80px rgba(0,0,0,0.3); }

.tab-heads { display: flex; gap: 4px; border-bottom: 2px solid #e5e7eb; margin-bottom: 24px; overflow-x: auto; }
.tab-heads button { padding: 12px 20px; background: transparent; border: 0; border-bottom: 3px solid transparent; margin-bottom: -2px; cursor: pointer; font-weight: 600; color: #6b7280; white-space: nowrap; }
.tab-heads button.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-body { display: none; }
.tab-body.active { display: block; }

.chip { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; background: #f3f4f6; }
.chip-success { background: #d1fae5; color: #065f46; }
.chip-warning { background: #fef3c7; color: #92400e; }
.chip-danger { background: #fee2e2; color: #991b1b; }
.chip-info { background: #dbeafe; color: #1e40af; }

/* ============================================================
   TK - Türk Kurumsal Site Stilleri (gokyuzubilgisayar.com tarzı)
   ============================================================ */
body { font-family: var(--font); }

/* Top Bar */
.tk-topbar { background: #0f172a; color: rgba(255,255,255,0.75); font-size: 13px; padding: 8px 0; }
.tk-topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.tk-topbar-left span { margin-right: 22px; display: inline-flex; align-items: center; gap: 6px; }
.tk-topbar-left i { color: var(--primary); }
.tk-topbar-right { display: flex; gap: 18px; align-items: center; }
.tk-topbar-right a { color: rgba(255,255,255,0.75); transition: color .2s; }
.tk-topbar-right a:hover { color: var(--primary); }
.tk-lang { position: relative; padding-bottom: 8px; margin-bottom: -8px; }
.tk-lang button { background: transparent; color: rgba(255,255,255,0.75); border: 0; cursor: pointer; font-size: 13px; padding: 6px 10px; }
.tk-lang-drop { position: absolute; top: 100%; right: 0; background: white; min-width: 160px; box-shadow: 0 10px 30px rgba(0,0,0,0.18); border-radius: 8px; padding: 6px 0; display: none; z-index: 1000; margin-top: 0; }
.tk-lang:hover .tk-lang-drop, .tk-lang.open .tk-lang-drop, .tk-lang-drop:hover { display: block; }
.tk-lang-drop a { display: block; padding: 10px 16px; color: #0f172a !important; font-size: 13px; }
.tk-lang-drop a:hover { background: #f8fafc; color: var(--primary) !important; }
.hide-mobile { display: inline-flex; }

/* Header */
.tk-header { background: white; border-bottom: 1px solid #e5e7eb; }
.tk-header-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; padding: 20px 20px; }
.tk-logo { display: flex; align-items: center; gap: 14px; }
.tk-logo-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 22px; border-radius: 6px;
  box-shadow: 0 6px 15px rgba(249,115,22,0.35);
}
.tk-logo-text h1 { font-size: 22px; margin: 0; font-weight: 800; color: #0f172a; letter-spacing: -0.5px; }
.tk-logo-text small { color: #64748b; font-size: 12px; font-weight: 500; }

.tk-search { display: flex; border: 2px solid #e5e7eb; border-radius: 6px; overflow: hidden; transition: border-color .2s; }
.tk-search:focus-within { border-color: var(--primary); }
.tk-search input { flex: 1; border: 0; padding: 12px 18px; outline: none; font-size: 14px; }
.tk-search button { background: var(--primary); color: white; border: 0; padding: 0 22px; cursor: pointer; font-size: 15px; }
.tk-search button:hover { background: #ea580c; }

.tk-header-actions { display: flex; gap: 6px; align-items: center; }
.tk-icon-btn {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 16px; color: #64748b; font-size: 11px; font-weight: 600;
  border-radius: 6px; transition: all .2s;
}
.tk-icon-btn i { font-size: 20px; color: #0f172a; }
.tk-icon-btn:hover { background: #f8fafc; color: var(--primary); }
.tk-icon-btn:hover i { color: var(--primary); }
.tk-cart em { position: absolute; top: 2px; right: 6px; background: var(--primary); color: white; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-style: normal; }

/* Ana Menü */
.tk-mainnav { background: #0f172a; }
.tk-mainnav-inner { display: flex; justify-content: space-between; align-items: center; }
.tk-nav-links { list-style: none; display: flex; margin: 0; padding: 0; }
.tk-nav-links > li { position: relative; }
.tk-nav-links > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 16px 22px; color: white; font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; transition: all .2s;
}
.tk-nav-links > li > a:hover { background: rgba(255,255,255,0.06); color: var(--primary); }
.tk-drop {
  position: absolute; top: 100%; left: 0;
  background: white; min-width: 260px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-radius: 0 0 6px 6px; padding: 8px 0;
  display: none; z-index: 100;
  border-top: 3px solid var(--primary);
}
.tk-nav-links > li.has-drop:hover .tk-drop { display: block; }
.tk-drop a { display: block; padding: 10px 20px; color: #0f172a; font-size: 13px; font-weight: 500; }
.tk-drop a:hover { background: #f8fafc; color: var(--primary); padding-left: 26px; }

/* Mega Menu */
.tk-nav-links > li.has-mega { position: static; }
.tk-mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: white; box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  padding: 28px 40px; display: none; gap: 28px; z-index: 30;
  border-top: 3px solid var(--primary);
}
.tk-nav-links > li.has-mega:hover .tk-mega { display: grid; }
.tk-mega-col { display: flex; flex-direction: column; gap: 8px; }
.tk-mega-heading { margin: 0 0 8px; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); padding-bottom: 8px; border-bottom: 2px solid #f1f5f9; }
.tk-mega-col a { color: #0f172a; font-size: 14px; font-weight: 500; padding: 6px 0; text-decoration: none; transition: all .15s; }
.tk-mega-col a:hover { color: var(--primary); padding-left: 6px; }
.tk-mega-banner {
  background-size: cover; background-position: center;
  border-radius: 12px; min-height: 200px; display: block;
  position: relative; overflow: hidden;
}
.tk-mega-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,0.55), transparent); }

/* Mega Menu Ürün Kartları */
.tk-mega-prod { display:flex; gap:10px; padding:8px; border-radius:8px; align-items:center; text-decoration:none; color:#0f172a; transition:all .15s; }
.tk-mega-prod:hover { background:#f8fafc; transform:translateX(4px); }
.tk-mega-prod img, .tk-mega-prod-noimg { width:56px; height:56px; object-fit:cover; border-radius:6px; background:#f1f5f9; flex-shrink:0; display:flex; align-items:center; justify-content:center; color:#94a3b8; }
.tk-mega-prod strong { font-size:13px; line-height:1.3; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }

/* Mobile menu toggle - hide on desktop */
.tk-mobile-toggle { display: none !important; }
@media (max-width: 900px) {
  .tk-mobile-toggle { display: inline-flex !important; }
}

/* ==============================================
   MOBİL UYUMLULUK (Ana Site + Admin Panel)
   ============================================== */
@media (max-width: 900px) {
  /* Site geneli */
  .container { padding: 0 16px; }
  h1, .tk-slide-inner h1 { font-size: 26px !important; line-height:1.2 !important; }
  h2, .tk-h2 { font-size: 22px !important; }

  /* Topbar - küçült ve wrap */
  .tk-topbar-inner { flex-wrap:wrap !important; font-size:11px !important; padding:8px 16px !important; gap:8px !important; }
  .tk-topbar-inner > * { flex:0 0 auto !important; }
  .tk-topbar-inner .lang-switch { margin-left:auto; }

  /* Header logo + arama */
  .tk-header-inner { flex-wrap:wrap !important; gap:12px !important; padding:12px 16px !important; }
  .tk-header-inner .tk-logo { flex:1 1 auto; }
  .tk-header-inner .tk-search { order:5; flex:0 0 100%; }
  .tk-header-inner .tk-header-actions { margin-left:auto; }
  .tk-header-actions .tk-action { padding:6px !important; font-size:11px !important; }
  .tk-header-actions .tk-action span { display:none; }

  /* Ana menü hamburger'a dön */
  .tk-mainnav { position:relative; }
  .tk-mainnav-inner { padding:8px 16px !important; display:flex !important; align-items:center; }
  .tk-nav-links {
    display:none !important;
    position:absolute; top:100%; left:0; right:0;
    background:white; flex-direction:column;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:50; padding:12px 0;
    max-height: 80vh; overflow-y:auto;
  }
  .tk-nav-links.mobile-open { display:flex !important; }
  .tk-nav-links li { width:100%; list-style:none; margin:0; }
  .tk-nav-links > li > a {
    padding:14px 20px !important; display:block !important;
    border-bottom:1px solid #f1f5f9;
    color:#0f172a !important; text-decoration:none !important;
    font-size:14px !important; font-weight:600 !important;
  }
  .tk-nav-links > li > a:hover { background:#f8fafc; color:var(--primary) !important; }
  .tk-nav-links .tk-drop, .tk-nav-links .tk-mega {
    position:static !important; display:none !important;
    box-shadow:none !important; padding:0 !important; grid-template-columns:1fr !important;
    border-top:1px solid #f1f5f9; background:#f8fafc;
  }
  .tk-nav-links li.has-drop.mobile-open .tk-drop,
  .tk-nav-links li.has-mega.mobile-open .tk-mega { display:flex !important; flex-direction:column; }
  .tk-mega-col a, .tk-drop a { padding-left:36px !important; font-size:13px !important; color:#475569 !important; }
  .tk-mega-banner { display:none !important; }
  .tk-mega-prod img, .tk-mega-prod-noimg { width:40px; height:40px; }
  .tk-mobile-toggle {
    display:inline-flex !important; align-items:center; justify-content:center;
    background:var(--primary); color:white; border:none;
    padding:10px 14px; border-radius:8px; font-size:16px; cursor:pointer;
    margin-right:12px; flex-shrink:0;
  }
  .tk-online-btn { padding:8px 14px !important; font-size:11px !important; }

  /* Hero */
  .tk-slide { min-height: 340px !important; }
  .tk-slide-inner { padding: 20px 16px !important; text-align:left !important; }
  .tk-slide-mini-stats { display:none !important; }
  .tk-slide-hero-visual { display:none !important; }
  .tk-slide-actions { flex-wrap:wrap; }
  .tk-slide-actions .btn-tk { flex:1 1 auto; text-align:center; justify-content:center; }
  .tk-slide-arrow { display:none !important; }

  /* Sections */
  .tk-section { padding: 30px 0 !important; }
  .tk-section-head { text-align:center; }
  .tk-about-grid, .tk-features-grid, .tk-services, .tk-brands, .tk-sectors, .tk-cats-grid, .tk-stats-grid {
    grid-template-columns: 1fr !important; gap: 16px !important;
  }
  .tk-features-grid, .tk-stats-grid { grid-template-columns: 1fr 1fr !important; }
  .tk-cats-grid, .tk-sectors { grid-template-columns: 1fr 1fr !important; }
  .tk-cta { padding: 30px 20px !important; flex-direction:column !important; text-align:left; }
  .tk-cta-actions { width:100%; }
  .tk-cta-actions .btn-tk { flex:1 1 auto; text-align:center; justify-content:center; }

  /* Footer */
  .tk-footer-grid { grid-template-columns: 1fr !important; gap:24px !important; }

  /* Hero campaign */
  .hero-campaign .container { flex-direction:column; text-align:center; gap:14px !important; }
  .hero-campaign h2 { font-size:20px !important; }

  /* Shop */
  .shop-layout, .shop-grid { grid-template-columns: 1fr !important; }
  .shop-table { display:block; overflow-x:auto; font-size:12px; }
  .shop-table thead { display:none; }
  .shop-table tbody tr { display:block; border:1px solid #e5e7eb; border-radius:10px; padding:12px; margin-bottom:10px; }
  .shop-table td { display:block; padding:4px 0 !important; border:none !important; }
  .shop-table td::before { content:attr(data-label); font-weight:700; color:#64748b; font-size:11px; text-transform:uppercase; display:block; }
  .shop-filters { position:static !important; margin-bottom:16px; }

  /* Cart & Checkout */
  .cart-layout { grid-template-columns: 1fr !important; }
  .cart-summary { position:static !important; }

  /* Account */
  .account-layout { grid-template-columns: 1fr !important; }
  .account-nav { flex-direction:row; overflow-x:auto; white-space:nowrap; padding:8px 0; }
  .account-nav a { flex:0 0 auto; padding:10px 14px; font-size:13px; }
  .account-hero { flex-direction:column; text-align:center; gap:16px; align-items:center; }
  .account-hero .acc-hero-avatar { margin:0 auto; }
  .analytics-cards { grid-template-columns: 1fr 1fr !important; }
}

/* ==============================================
   ADMIN PANEL MOBİL UYUMLULUK
   ============================================== */
@media (max-width: 900px) {
  body.admin, .admin-body { overflow-x:hidden; }
  .admin-layout, .admin-shell {
    grid-template-columns: 1fr !important;
    display:block !important;
  }
  .admin-sidebar, aside.admin-sidebar {
    position:fixed !important; left:-280px; top:0; bottom:0; width:260px;
    z-index:999; overflow-y:auto; transition:left .3s;
    background:white; box-shadow:0 0 30px rgba(0,0,0,.15);
  }
  .admin-sidebar.mobile-open { left:0 !important; }
  .admin-topbar, .admin-header {
    padding:12px 16px !important;
    position:sticky; top:0; z-index:100; background:white; border-bottom:1px solid #e5e7eb;
    display:flex !important; align-items:center; gap:12px;
  }
  .admin-mobile-toggle {
    display:inline-flex !important; align-items:center; justify-content:center;
    background:#f97316; color:white; border:none; padding:8px 12px;
    border-radius:8px; font-size:18px; cursor:pointer;
  }
  .admin-main, main.admin-main { padding:16px !important; }
  .admin-panel, .s-card { padding:16px !important; }
  h1 { font-size:22px !important; }
  .form-row { grid-template-columns:1fr !important; }
  .settings-layout { grid-template-columns:1fr !important; gap:16px !important; }
  .settings-tabs { display:flex; overflow-x:auto; white-space:nowrap; padding:8px 0; gap:6px; }
  .settings-tabs .s-tab { flex:0 0 auto; padding:10px 14px; font-size:13px; }
  .settings-tabs .s-tab span { display:none; }
  .settings-tabs .s-tab i { font-size:16px; }
  table { font-size:13px; }
  table th, table td { padding:8px 6px !important; }
  .btn { padding:8px 12px !important; font-size:13px !important; }
  .btn-lg { padding:10px 18px !important; font-size:14px !important; }
  .sec-panel, .split { grid-template-columns:1fr !important; }
  .wg-item, .slide-item, .menu-item, .sec-item {
    grid-template-columns:1fr !important;
    display:flex !important; flex-direction:column; gap:10px !important;
  }
  .wg-place { width:100%; }
  input, select, textarea { font-size:16px !important; /* iOS zoom fix */ }
}
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  h1, .tk-slide-inner h1 { font-size: 22px !important; }
  h2, .tk-h2 { font-size: 18px !important; }
  .tk-cats-grid, .tk-sectors, .analytics-cards { grid-template-columns: 1fr !important; }
  .tk-features-grid, .tk-stats-grid { grid-template-columns: 1fr !important; }
}

.tk-online-btn {
  background: var(--primary); color: white;
  padding: 12px 24px; border-radius: 4px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 8px;
  margin: 8px 0; transition: all .2s;
  box-shadow: 0 4px 12px rgba(249,115,22,0.3);
}
.tk-online-btn:hover { background: #ea580c; color: white; transform: translateY(-2px); }

/* Slider */
.tk-slider { position: relative; overflow: hidden; background: #0f172a; }
.tk-slide { position: relative; min-height: 520px; display: none; align-items: center; background-size: cover; background-position: center; }
.tk-slide.active, .tk-hero-carousel[data-count="1"] .tk-slide { display: flex; }
.tk-slide-overlay { position: absolute; inset: 0; z-index: 0; }
.tk-slide-nav { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.tk-slide-dot { width: 34px; height: 4px; border: none; background: rgba(255,255,255,0.4); cursor: pointer; padding: 0; border-radius: 2px; transition: all .2s; }
.tk-slide-dot.active { background: #f97316; width: 50px; }
.tk-slide-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.25); color: white; cursor: pointer; z-index: 5; transition: all .2s; }
.tk-slide-arrow:hover { background: rgba(249,115,22,.9); border-color: transparent; }
.tk-slide-arrow.prev { left: 20px; }
.tk-slide-arrow.next { right: 20px; }
.tk-slide-inner { position: relative; z-index: 2; }
.tk-slide-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(249,115,22,0.25), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(251,191,36,0.18), transparent 45%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0c1a2e 100%);
}
.tk-slide-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black, transparent 70%);
}
.tk-slide-bg::after {
  content: ''; position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 60%);
  filter: blur(60px);
}
.tk-slide-inner { position: relative; z-index: 2; color: white; padding: 70px 20px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; width: 100%; }
.tk-slide-inner > div:first-child { max-width: 720px; }
.tk-slide-hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.tk-slide-hero-visual .visual-circle {
  width: 380px; height: 380px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,115,22,0.3), rgba(251,191,36,0.15));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(249,115,22,0.3);
}
.tk-slide-hero-visual .visual-circle::before {
  content: ''; position: absolute; inset: -30px;
  border: 2px dashed rgba(249,115,22,0.3); border-radius: 50%;
  animation: rotateSlow 30s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }
.tk-slide-hero-visual i { font-size: 160px; color: var(--primary); filter: drop-shadow(0 10px 30px rgba(249,115,22,0.5)); }
.tk-slide-tag { display: inline-block; padding: 8px 18px; background: rgba(249,115,22,0.15); color: var(--primary); border: 1px solid rgba(249,115,22,0.4); border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.tk-slide h1 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 800; margin: 22px 0; line-height: 1.05; letter-spacing: -1.5px; }
.tk-slide h1 .highlight {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.tk-slide p { font-size: 17px; opacity: 0.85; margin-bottom: 30px; max-width: 560px; line-height: 1.6; }
.tk-slide-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.tk-slide-mini-stats { display: flex; gap: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); max-width: 560px; }
.tk-slide-mini-stats .ms { text-align: left; }
.tk-slide-mini-stats .ms h4 { color: var(--primary); font-size: 26px; font-weight: 800; margin: 0; }
.tk-slide-mini-stats .ms p { color: rgba(255,255,255,0.7); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin: 0; }

.btn-tk {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px; border-radius: 4px; font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px;
  border: 2px solid transparent; cursor: pointer; transition: all .3s;
}
.btn-tk-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-tk-primary:hover { background: #ea580c; border-color: #ea580c; color: white; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(249,115,22,0.4); }
.btn-tk-white { background: white; color: #0f172a; border-color: white; }
.btn-tk-white:hover { background: transparent; color: white; }
.btn-tk-dark { background: #0f172a; color: white; border-color: #0f172a; }
.btn-tk-dark:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); }
.btn-tk-lg { padding: 18px 40px; font-size: 15px; }

/* Features Bar */
.tk-features { background: white; padding: 30px 0; border-bottom: 1px solid #e5e7eb; }
.tk-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 30px; }
.tk-feature { display: flex; align-items: center; gap: 16px; }
.tk-feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05));
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 24px; border-radius: 50%;
}
.tk-feature h4 { font-size: 15px; margin: 0 0 2px; color: #0f172a; }
.tk-feature p { font-size: 12px; color: #64748b; margin: 0; }

/* Sections */
.tk-section { padding: 80px 0; }
.tk-section-head { text-align: center; margin-bottom: 50px; }
.tk-eyebrow { color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; }
.tk-h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 10px 0; letter-spacing: -1px; color: #0f172a; }
.tk-h2 span { color: var(--primary); }
.tk-section-desc { color: #64748b; max-width: 640px; margin: 0 auto; }

/* About */
.tk-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tk-about-img { position: relative; }
.tk-about-img img { width: 100%; border-radius: 10px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.tk-about-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 130px; height: 130px; background: var(--primary); color: white;
  border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 15px 30px rgba(249,115,22,0.5); transform: rotate(-8deg);
}
.tk-about-badge h3 { font-size: 34px; font-weight: 800; margin: 0; }
.tk-about-badge span { font-size: 10px; letter-spacing: 1px; }
.tk-lead { font-size: 16px; color: #475569; line-height: 1.7; margin: 20px 0; }
.tk-check-list { list-style: none; padding: 0; margin: 20px 0; }
.tk-check-list li { padding: 8px 0; display: flex; align-items: center; gap: 12px; color: #334155; }
.tk-check-list li i { color: #10b981; background: #d1fae5; padding: 4px; border-radius: 50%; font-size: 12px; }

/* Kategoriler Grid */
.tk-cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.tk-cat-card {
  background: white; border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all .3s; border: 1px solid transparent;
}
.tk-cat-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--primary); }
.tk-cat-img { aspect-ratio: 4/3; background-size: cover; background-position: center; position: relative; }
.tk-cat-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,23,42,0.5), transparent 60%); }
.tk-cat-body { padding: 20px; }
.tk-cat-body h3 { font-size: 17px; margin-bottom: 10px; color: #0f172a; font-weight: 700; }
.tk-cat-more { color: var(--primary); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* Hizmetler */
.tk-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.tk-service {
  background: white; padding: 40px 30px; border-radius: 10px;
  border: 1px solid #e5e7eb; position: relative; overflow: hidden;
  transition: all .3s;
}
.tk-service:hover { border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.08); transform: translateY(-4px); }
.tk-service:hover .tk-service-num { transform: scale(1.2); opacity: 0.3; }
.tk-service-num {
  position: absolute; top: 20px; right: 20px;
  font-size: 60px; font-weight: 800; color: var(--primary);
  opacity: 0.15; transition: all .3s; font-family: 'Poppins', sans-serif;
}
.tk-service > i {
  width: 60px; height: 60px; background: rgba(249,115,22,0.1);
  color: var(--primary); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
}
.tk-service h3 { font-size: 18px; margin-bottom: 10px; color: #0f172a; }
.tk-service p { color: #64748b; font-size: 14px; }

/* Stats */
.tk-stats-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: white;
}
.tk-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.tk-stat h3 { font-size: 52px; font-weight: 800; margin: 0; letter-spacing: -2px; }
.tk-stat p { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

/* Brands */
.tk-brands { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.tk-brand {
  background: white; padding: 30px 20px; border-radius: 8px;
  text-align: center; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 20px; color: #0f172a;
  border: 1px solid #e5e7eb; transition: all .3s;
}
.tk-brand:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-4px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); }

/* Sectors */
.tk-sectors-section { background: linear-gradient(135deg, #0f172a, #1e293b); color: white; }
.tk-sectors { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.tk-sector {
  padding: 30px 20px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  text-align: center; transition: all .3s;
}
.tk-sector:hover { background: rgba(249,115,22,0.15); border-color: var(--primary); transform: translateY(-4px); }
.tk-sector i { font-size: 34px; color: var(--primary); margin-bottom: 12px; }
.tk-sector span { display: block; font-weight: 600; }

/* CTA */
.tk-cta {
  background: var(--cta-bg, linear-gradient(135deg, #0f172a, #1e293b));
  border-radius: 16px; padding: 60px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap; color: var(--cta-text, #ffffff);
  position: relative; overflow: hidden;
}
.tk-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, var(--primary), transparent 70%); opacity: 0.3; }
.tk-cta > * { position: relative; z-index: 1; }
.tk-cta .tk-h2,
.tk-cta h1, .tk-cta h2, .tk-cta h3, .tk-cta p { color: var(--cta-text, #ffffff); }
.tk-cta .tk-h2 span { color: var(--cta-accent, var(--accent, #fbbf24)); }
.tk-cta .tk-eyebrow { color: var(--cta-accent, var(--accent, #fbbf24)); }
.tk-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer */
.tk-footer { background: #0f172a; color: white; padding: 60px 0 20px; margin-top: 80px; }
.tk-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.tk-footer-col h4 { color: white; font-size: 15px; margin-bottom: 20px; padding-bottom: 8px; border-bottom: 2px solid var(--primary); display: inline-block; }
.tk-footer-col ul { list-style: none; padding: 0; }
.tk-footer-col li { margin-bottom: 8px; }
.tk-footer-col li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color .2s; }
.tk-footer-col li a:hover { color: var(--primary); padding-left: 4px; }
.tk-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.tk-footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.08); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.tk-footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.tk-newsletter { display: flex; margin-top: 10px; border-radius: 4px; overflow: hidden; }
.tk-newsletter input { flex: 1; padding: 10px 14px; border: 0; outline: none; background: rgba(255,255,255,0.08); color: white; font-size: 13px; }
.tk-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.tk-newsletter button { padding: 10px 16px; background: var(--primary); color: white; border: 0; cursor: pointer; }
.tk-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.6); }
.tk-pay-icons { display: flex; gap: 14px; align-items: center; font-size: 20px; }

@media (max-width: 900px) {
  .tk-header-inner { grid-template-columns: 1fr auto; }
  .tk-search { grid-column: 1/-1; order: 3; }
  .tk-nav-links { display: none; }
  .tk-mainnav-inner { justify-content: center; }
  .tk-about-grid { grid-template-columns: 1fr; }
  .tk-footer-grid { grid-template-columns: 1fr 1fr; }
  .hide-mobile { display: none !important; }
}
.corp-hero {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0c1a2e 0%, #1e293b 100%);
  color: white;
  overflow: hidden;
}
.corp-hero-bg {
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(249,115,22,0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251,191,36,0.1), transparent 50%);
}
.corp-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.corp-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.corp-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.35);
  border-radius: 999px; color: var(--primary); font-size: 12px;
  font-weight: 700; letter-spacing: 2px;
}
.corp-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(249,115,22,0.2); animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%,100%{opacity:1;} 50%{opacity:0.5;} }
.corp-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 700; line-height: 1.05; letter-spacing: -1.5px;
  margin: 24px 0;
}
.corp-hero-title span {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.corp-hero-desc { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 32px; }
.corp-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-corp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 4px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; font-size: 13px;
  border: 2px solid transparent; cursor: pointer; transition: all 0.3s;
}
.btn-corp-primary {
  background: linear-gradient(135deg, var(--primary), #ea580c);
  color: white; box-shadow: 0 10px 30px rgba(249,115,22,0.4);
}
.btn-corp-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(249,115,22,0.6); }
.btn-corp-outline {
  background: transparent; color: var(--text);
  border-color: currentColor;
}
.btn-corp-outline:hover { background: var(--secondary); color: white; border-color: var(--secondary); }
.btn-corp-lg { padding: 20px 40px; font-size: 14px; }
.corp-badges { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.corp-badge { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 13px; }
.corp-badge i { color: var(--accent); }

.corp-hero-visual { position: relative; }
.corp-hero-card {
  background: white; padding: 12px; border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: perspective(1000px) rotateY(-8deg);
}
.corp-hero-card img { border-radius: 8px; width: 100%; }
.corp-stats-float {
  position: absolute; bottom: -30px; left: -30px;
  background: white; color: var(--text);
  padding: 20px; border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  display: flex; gap: 24px;
}
.stat-item { text-align: center; }
.stat-item h3 { font-family: 'Space Grotesk', sans-serif; color: var(--primary); font-size: 26px; }
.stat-item span { color: #64748b; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

/* Corporate Sections */
.corp-section { padding: 90px 0; }
.corp-section-head { text-align: center; margin-bottom: 50px; }
.corp-section-eyebrow { color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
.corp-section-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4vw, 48px); font-weight: 700; margin-top: 12px; letter-spacing: -1px; }

.corp-services { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.corp-service {
  padding: 40px 28px; background: white;
  border: 1px solid #e2e8f0; border-radius: 8px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.corp-service::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 0; background: var(--primary);
  transition: height 0.3s;
}
.corp-service:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); border-color: var(--primary); }
.corp-service:hover::before { height: 100%; }
.corp-service-icon {
  width: 60px; height: 60px; background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(251,191,36,0.1));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 26px; color: var(--primary);
}
.corp-service h3 { margin-bottom: 12px; font-size: 20px; }
.corp-service p { color: #64748b; margin-bottom: 16px; }
.corp-service a { color: var(--primary); font-weight: 600; font-size: 14px; }

/* About */
.corp-about { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.corp-check-list { list-style: none; padding: 0; }
.corp-check-list li { padding: 10px 0; display: flex; align-items: flex-start; gap: 12px; color: #334155; }
.corp-check-list i { color: var(--primary); margin-top: 4px; }
.corp-about-img { position: relative; }
.corp-about-img img { border-radius: 12px; width: 100%; }
.corp-experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: white;
  width: 140px; height: 140px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px rgba(249,115,22,0.4);
  transform: rotate(-8deg);
}
.corp-experience-badge h3 { font-family: 'Space Grotesk', sans-serif; font-size: 36px; }
.corp-experience-badge p { font-size: 11px; text-align: center; text-transform: uppercase; letter-spacing: 1px; }

/* Categories grid */
.corp-cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.corp-cat {
  padding: 32px 24px; background: white;
  border: 1px solid #e2e8f0; border-radius: 8px;
  transition: all 0.3s; text-align: left;
}
.corp-cat:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.corp-cat-icon { width: 56px; height: 56px; background: var(--secondary); color: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.corp-cat h3 { font-size: 17px; margin-bottom: 10px; color: var(--text); }
.corp-cat-link { color: var(--primary); font-size: 13px; font-weight: 600; }

/* Sectors */
.corp-sectors { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; }
.corp-sector { padding: 30px 20px; text-align: center; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; transition: all 0.3s; }
.corp-sector:hover { background: rgba(249,115,22,0.1); border-color: var(--primary); transform: translateY(-4px); }
.corp-sector i { font-size: 32px; color: var(--primary); margin-bottom: 12px; }
.corp-sector span { display: block; font-weight: 600; }

/* CTA */
.corp-cta {
  background: linear-gradient(135deg, var(--secondary), #0c1a2e);
  border-radius: 16px; padding: 50px;
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
  color: white; position: relative; overflow: hidden;
}
.corp-cta::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, var(--primary), transparent 70%); opacity: 0.3; }
.corp-cta h2 { font-family: 'Space Grotesk', sans-serif; font-size: 32px; margin-bottom: 8px; }
.corp-cta p { opacity: 0.8; }

/* Header Online Satış button */
.online-shop-btn {
  background: var(--primary) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px !important;
  box-shadow: 0 4px 12px rgba(249,115,22,0.3);
  transition: transform .2s;
}
.online-shop-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,0.5); color: white !important; }

/* ============================================================
   SHOP - E-COMMERCE TABLE VIEW (like screenshot)
   ============================================================ */
.shop-hero-strip {
  background: linear-gradient(135deg, var(--secondary), #1e293b);
  color: white; padding: 40px 0;
  border-bottom: 3px solid var(--primary);
}
.shop-hero-strip h1 { font-family: 'Space Grotesk', sans-serif; font-size: 32px; margin-bottom: 4px; }
.shop-hero-strip p { opacity: 0.8; font-size: 14px; }

.shop-table-section { padding: 30px 0 60px; background: #f1f5f9; min-height: 60vh; }

/* 4 Filter Columns */
.shop-filter-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px 30px;
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
}
.filter-col {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.filter-cat-btn {
  background: #7dd3fc;
  color: #0c4a6e;
  border: 0;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  cursor: default;
  width: 100%;
  text-align: center;
}
.filter-col select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: white;
  font-size: 14px;
  cursor: pointer;
}
.filter-col select:disabled { background: #f1f5f9; color: #94a3b8; cursor: not-allowed; }

/* Multi-select dropdown */
.multi-check-drop { position: relative; width: 100%; }
.multi-toggle {
  width: 100%; padding: 10px 14px;
  border: 1px solid #cbd5e1; border-radius: 6px;
  background: white; text-align: left;
  font-size: 14px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.multi-items {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: white; border: 1px solid #cbd5e1; border-radius: 6px;
  margin-top: 4px; max-height: 240px; overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 100;
}
.multi-items.open { display: block; }
.multi-items label {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px; cursor: pointer; font-size: 13px;
  transition: background 0.15s;
}
.multi-items label:hover { background: #f8fafc; }
.multi-items input[type=checkbox] { margin: 0; }

.shop-message-bar {
  background: #e2e8f0;
  padding: 10px 20px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #475569;
  text-align: center;
}
.shop-message-bar b { color: #0369a1; }

/* Aktif filtre chip'leri */
.active-filters {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 12px 18px; background: #fff7ed;
  border: 1px solid #fed7aa; border-radius: 6px;
  margin-bottom: 12px; font-size: 13px;
}
.active-filters strong { color: #9a3412; margin-right: 6px; }
.active-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; background: var(--primary); color: white;
  border-radius: 999px; font-size: 12px; font-weight: 600;
  transition: all 0.2s;
}
.active-chip:hover { background: #ea580c; color: white; transform: translateY(-1px); }
.active-chip.clear-all { background: #64748b; }
.active-chip.clear-all:hover { background: #dc2626; }

/* Product Table */
.shop-table-wrap { overflow-x: auto; background: white; border-radius: 6px; }
.shop-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1400px;
  font-size: 13px;
}
.shop-table th, .shop-table td {
  border: 1px solid #e2e8f0;
  padding: 8px 10px;
  text-align: center;
  vertical-align: middle;
}
.shop-table-filters th {
  background: #f8fafc;
  padding: 6px;
}
.shop-table-filters input {
  width: 100%;
  padding: 5px 8px;
  border: 1px solid #cbd5e1;
  border-radius: 3px;
  font-size: 12px;
}
.btn-search {
  background: var(--primary); color: white; border: 0;
  padding: 6px 14px; border-radius: 3px; font-size: 12px;
  font-weight: 600; cursor: pointer; white-space: nowrap;
}
.btn-search:hover { background: #ea580c; }

.shop-table-head th {
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 700;
  padding: 12px 8px;
  border-top: 2px solid #cbd5e1;
  border-bottom: 2px solid #cbd5e1;
  font-size: 13px;
}

.shop-table tbody tr:hover { background: #fef3c7; }
.shop-table tbody tr:nth-child(even) { background: #fafafa; }
.shop-table tbody tr:nth-child(even):hover { background: #fef3c7; }

.col-name { text-align: left !important; width: 180px; }
.prod-name-cell strong { display: block; font-size: 13px; color: #0f172a; }
.prod-name-cell small { color: #64748b; font-size: 11px; }
.col-image { width: 100px; }
.prod-thumbs { display: flex; gap: 4px; justify-content: center; }
.prod-thumbs img { width: 42px; height: 42px; object-fit: cover; border: 1px solid #e2e8f0; border-radius: 2px; }

.stock-num { font-weight: 700; color: #059669; }
.col-price { min-width: 100px; }
.price-eur { color: #64748b; font-size: 12px; }
.price-tl { color: #0f172a; font-weight: 600; }
.price-locked {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 12px;
  padding: 4px 8px; background: #fff7ed;
  border: 1px dashed var(--primary); border-radius: 4px;
}
.price-locked:hover { background: var(--primary); color: white; }
.price-locked-sm { color: #cbd5e1; }

.col-total { min-width: 90px; }
.total-tl { color: #0369a1; font-weight: 700; }

.col-cart { width: 130px; }
.cart-cell { display: flex; flex-direction: column; gap: 4px; }
.qty-select {
  padding: 4px 6px; border: 1px solid #cbd5e1; border-radius: 3px;
  width: 100%; font-size: 12px;
}
.btn-add-cart-sm {
  background: #fbbf24; color: #0c4a6e; border: 0;
  padding: 6px 8px; border-radius: 3px; font-weight: 700;
  font-size: 11px; cursor: pointer; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-add-cart-sm:hover:not(:disabled) { background: var(--primary); color: white; }

.shop-pagination {
  display: flex; align-items: center; gap: 4px; padding: 20px 0;
  flex-wrap: wrap;
}
.shop-pagination a {
  padding: 8px 14px; border: 1px solid #e2e8f0;
  background: white; color: #475569;
  border-radius: 3px; font-size: 13px; font-weight: 600;
  transition: all 0.2s;
}
.shop-pagination a:hover { background: var(--primary); color: white; border-color: var(--primary); }
.shop-pagination a.active { background: var(--primary); color: white; border-color: var(--primary); }
.shop-pagination a.disabled { opacity: 0.4; pointer-events: none; }
.pagination-info { margin-left: auto; color: #64748b; font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .search-bar { grid-column: 1 / -1; order: 3; }
  .hero-inner, .product-detail, .shop-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .cookie-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .corp-hero-inner, .corp-about { grid-template-columns: 1fr; }
  .corp-hero-visual { margin-top: 40px; }
  .shop-filter-row { grid-template-columns: 1fr; gap: 15px; padding: 20px; }
  .filter-cat-btn, .filter-col select { min-width: 100%; width: 100%; }
}

/* ============================================================
   ADMIN SETTINGS PAGE - Rewritten (Feb 2026)
   ============================================================ */
.settings-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; gap:20px; flex-wrap:wrap; }
.settings-layout { display:grid; grid-template-columns: 240px 1fr; gap:24px; align-items:flex-start; }
.settings-tabs { background:white; border:1px solid #e5e7eb; border-radius:12px; padding:8px; position:sticky; top:20px; }
.settings-tabs .s-tab { display:flex; align-items:center; gap:12px; padding:11px 14px; border-radius:8px; color:#475569; font-weight:500; font-size:14px; transition:all .15s; }
.settings-tabs .s-tab:hover { background:#f1f5f9; color:#0f172a; }
.settings-tabs .s-tab.active { background:linear-gradient(90deg, var(--primary), #ea580c); color:white; box-shadow:0 4px 12px rgba(249,115,22,0.3); }
.settings-tabs .s-tab.active i { color:white; }
.settings-tabs .s-tab i { width:18px; text-align:center; color:#94a3b8; }

.settings-body { min-height:400px; }
.s-card { background:white; border:1px solid #e5e7eb; border-radius:12px; padding:22px; margin-bottom:18px; }
.s-card-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; padding-bottom:12px; border-bottom:1px solid #f1f5f9; gap:12px; flex-wrap:wrap; }
.s-card-head h3 { margin:0; font-size:16px; font-weight:700; color:#0f172a; display:flex; align-items:center; gap:8px; }
.s-card-head h3 i { color:var(--primary); }
.s-grid { display:grid; gap:14px; }
.s-grid-2 { grid-template-columns:1fr 1fr; }
.s-grid-3 { grid-template-columns:1fr 1fr 1fr; }
.s-grid-4 { grid-template-columns:repeat(4,1fr); }

.s-toggle { display:flex; align-items:flex-start; gap:12px; padding:14px; background:#f8fafc; border:1px solid #e5e7eb; border-radius:8px; cursor:pointer; transition:all .15s; margin-bottom:8px; }
.s-toggle:hover { background:#f1f5f9; border-color:#cbd5e1; }
.s-toggle input[type=checkbox] { margin-top:3px; width:18px; height:18px; accent-color:var(--primary); flex-shrink:0; }
.s-toggle span { flex:1; font-size:14px; color:#0f172a; }
.s-toggle span small { color:#64748b; font-size:12px; }
.s-toggle-inline { padding:8px 12px; margin-bottom:0; background:transparent; border:0; }

.s-toggles-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }

.rate-grid { margin:0; }
.rate-tile { padding:16px; border-radius:10px; border:1px solid; }
.rate-tile .lbl { font-size:11px; font-weight:700; letter-spacing:1px; margin-bottom:4px; }
.rate-tile .val { font-size:24px; font-weight:800; color:#0f172a; font-family:'Space Grotesk',sans-serif; }
.rate-usd { background:#f0fdf4; border-color:#bbf7d0; } .rate-usd .lbl { color:#059669; }
.rate-eur { background:#eff6ff; border-color:#bfdbfe; } .rate-eur .lbl { color:#2563eb; }
.rate-gbp { background:#fef2f2; border-color:#fecaca; } .rate-gbp .lbl { color:#dc2626; }
.rate-time { background:#f8fafc; border-color:#e2e8f0; } .rate-time .lbl { color:#64748b; }

.settings-actions { position:sticky; bottom:0; margin-top:20px; padding:16px; background:linear-gradient(180deg, rgba(249,250,251,0) 0%, rgba(249,250,251,1) 30%); text-align:right; }

.btn-sm { padding:6px 12px; font-size:12px; }

@media (max-width:900px) {
  .settings-layout { grid-template-columns:1fr; }
  .settings-tabs { position:relative; top:auto; display:flex; overflow-x:auto; }
  .settings-tabs .s-tab span { display:none; }
  .s-grid-2, .s-grid-3, .s-grid-4 { grid-template-columns:1fr; }
  .s-toggles-grid { grid-template-columns:1fr; }
}

/* Cascade filter disabled state */
.filter-col select:disabled,
.filter-col .multi-toggle.disabled { opacity:0.5; cursor:not-allowed; background:#f1f5f9; }
.filter-col .filter-cat-btn.locked { opacity:0.6; position:relative; }
.filter-col .filter-cat-btn.locked::after { content:"\f023"; font-family:"Font Awesome 6 Free"; font-weight:900; margin-left:6px; font-size:10px; }

/* Text editor manager */
.texts-grid { display:grid; grid-template-columns:280px 1fr; gap:20px; align-items:flex-start; }
.texts-groups { background:white; border:1px solid #e5e7eb; border-radius:12px; padding:12px; position:sticky; top:20px; }
.texts-groups a { display:flex; justify-content:space-between; padding:10px 12px; border-radius:8px; color:#475569; font-weight:500; }
.texts-groups a.active { background:var(--primary); color:white; }
.texts-groups a .count { background:#f1f5f9; color:#64748b; padding:2px 8px; border-radius:10px; font-size:11px; }
.texts-groups a.active .count { background:rgba(255,255,255,0.25); color:white; }
.texts-list { background:white; border:1px solid #e5e7eb; border-radius:12px; overflow:hidden; }
.texts-row { display:grid; grid-template-columns:280px 1fr; gap:14px; padding:14px 18px; border-bottom:1px solid #f1f5f9; }
.texts-row:last-child { border-bottom:0; }
.texts-row .lbl { font-weight:600; font-size:13px; color:#0f172a; }
.texts-row .lbl small { display:block; color:#94a3b8; font-family:monospace; font-size:11px; font-weight:400; margin-top:3px; }
.texts-row input, .texts-row textarea { border:1px solid #e5e7eb; padding:8px 12px; border-radius:6px; font-size:14px; width:100%; font-family:inherit; }

/* Analytics */
.analytics-cards { display:grid; grid-template-columns:repeat(auto-fit, minmax(200px,1fr)); gap:16px; margin-bottom:24px; }
.a-card { background:white; border:1px solid #e5e7eb; border-radius:12px; padding:18px; }
.a-card .lbl { color:#64748b; font-size:12px; text-transform:uppercase; letter-spacing:1px; font-weight:600; }
.a-card .val { font-size:28px; font-weight:800; color:#0f172a; margin-top:6px; font-family:'Space Grotesk',sans-serif; }
.a-card .sub { color:#94a3b8; font-size:12px; margin-top:4px; }
.bar-row { display:grid; grid-template-columns:180px 1fr 60px; gap:12px; align-items:center; padding:8px 0; border-bottom:1px solid #f1f5f9; font-size:13px; }
.bar-fill { background:#f1f5f9; border-radius:6px; height:22px; overflow:hidden; position:relative; }
.bar-inner { background:linear-gradient(90deg, var(--primary), #ea580c); height:100%; border-radius:6px; transition:width .3s; }
.bar-row .cnt { text-align:right; font-weight:700; color:#0f172a; }

/* Sidebar badge for stock alerts */
.admin-nav .nav-badge { background:#dc2626; color:white; font-size:10px; padding:2px 7px; border-radius:10px; margin-left:6px; font-weight:700; }
.chip-sm { font-size:10px; padding:1px 6px; }
.chip-danger { background:#fee2e2; color:#dc2626; }
.chip-info { background:#dbeafe; color:#1e40af; }

/* Auth pages - improved */
.auth-page .form-group small { color:#94a3b8; font-size:11px; font-weight:400; }
.auth-page .alert-warning { background:#fef3c7; color:#92400e; border-left:3px solid #f59e0b; padding:12px 16px; border-radius:6px; margin:12px 0; }

/* POS provider cards */
.s-card [data-testid^="pos-card-"] { transition: transform .15s, box-shadow .15s; }
.s-card [data-testid^="pos-card-"]:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

/* ============================================================
   ACCOUNT PAGE (Customer Dashboard) — Feb 2026
   ============================================================ */
.account-page { padding: 40px 0 60px; background:#f8fafc; min-height:calc(100vh - 200px); }
.account-hero { display:flex; justify-content:space-between; align-items:center; background:white; padding:24px 28px; border-radius:16px; margin-bottom:20px; box-shadow:0 2px 8px rgba(0,0,0,0.04); gap:20px; flex-wrap:wrap; }
.account-hero > div:first-child { display:flex; align-items:center; gap:18px; }
.account-hero h1 { margin:0; font-size:22px; display:flex; align-items:center; gap:10px; font-family:'Space Grotesk',sans-serif; }
.acc-hero-avatar { width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg,#f97316,#ea580c); color:white; display:flex; align-items:center; justify-content:center; font-size:24px; font-weight:800; }
.acc-hero-meta { display:flex; gap:14px; color:#64748b; font-size:13px; align-items:center; flex-wrap:wrap; margin-top:6px; }
.btn-logout { background:#fee2e2 !important; color:#dc2626 !important; border-color:#fecaca !important; }
.btn-logout:hover { background:#dc2626 !important; color:white !important; }
.account-layout { display:grid; grid-template-columns:240px 1fr; gap:20px; align-items:flex-start; }
.account-nav { background:white; border-radius:12px; padding:10px; position:sticky; top:20px; }
.account-nav a { display:flex; align-items:center; gap:12px; padding:11px 14px; border-radius:8px; color:#475569; font-weight:500; font-size:14px; }
.account-nav a:hover { background:#f1f5f9; color:#0f172a; }
.account-nav a.active { background:linear-gradient(90deg,#f97316,#ea580c); color:white; box-shadow:0 4px 12px rgba(249,115,22,0.25); }
.account-nav a.active i { color:white; }
.account-nav a i { width:18px; text-align:center; color:#94a3b8; }
.account-nav .tab-logout { margin-top:6px; border-top:1px solid #f1f5f9; padding-top:12px; color:#dc2626; }
.account-nav .tab-logout i { color:#dc2626; }
.account-body { min-height:400px; }
.account-body .s-card { background:white; border-radius:12px; box-shadow:0 1px 3px rgba(0,0,0,0.05); padding:22px; margin-bottom:16px; border:1px solid #e5e7eb; }

/* ============================================================
   ADMIN LAYOUT — kayma önleme + tutarlı görünüm
   ============================================================ */
.admin-content { padding: 30px; max-width: 100%; box-sizing: border-box; }
.admin-content > * { max-width: 100%; box-sizing: border-box; }
.admin-content h1 { font-family: 'Space Grotesk', sans-serif; margin: 0 0 10px; }
.admin-content .settings-header { align-items:flex-start; }
.admin-content .analytics-cards { margin-bottom: 20px; }
.admin-content .s-card { margin-bottom: 18px; }
.admin-content .table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-content .table thead th { text-align:left; padding: 12px 14px; background:#f8fafc; border-bottom:2px solid #e5e7eb; font-weight:700; color:#475569; font-size:12px; text-transform:uppercase; letter-spacing:0.4px; }
.admin-content .table tbody td { padding: 12px 14px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.admin-content .table tbody tr:hover { background: #f8fafc; }
.admin-content .form-group { margin-bottom: 14px; }
.admin-content .form-group label { display: block; font-weight: 600; font-size: 13px; color: #334155; margin-bottom: 6px; }
.admin-content .form-group input, .admin-content .form-group select, .admin-content .form-group textarea { width: 100%; border: 1px solid #e5e7eb; border-radius: 8px; padding: 9px 12px; font-size: 14px; font-family: inherit; background: white; box-sizing: border-box; transition: border-color .15s, box-shadow .15s; }
.admin-content .form-group input:focus, .admin-content .form-group select:focus, .admin-content .form-group textarea:focus { outline: none; border-color: #f97316; box-shadow: 0 0 0 3px rgba(249,115,22,0.12); }

@media (max-width:1000px) {
  .account-layout { grid-template-columns: 1fr; }
  .account-nav { position:relative; top:auto; }
}

/* ============================================================
   ADMIN PAGE UNIVERSAL FIX — Feb 2026 (products/orders/quotes)
   ============================================================ */
.admin-content .table { table-layout: auto; }
.admin-content .table th, .admin-content .table td { word-break: break-word; overflow-wrap: anywhere; }
.admin-content .table td .actions { display: flex; gap: 6px; justify-content: flex-end; flex-wrap: wrap; }
.admin-content .table img { max-width: 60px; height: auto; border-radius: 6px; }
.admin-content .btn { padding: 8px 14px; border-radius: 6px; font-weight: 600; font-size: 13px; border: 1px solid transparent; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; cursor: pointer; }
.admin-content .btn-primary { background: linear-gradient(135deg, #f97316, #ea580c); color: white; border-color: #f97316; }
.admin-content .btn-primary:hover { background: linear-gradient(135deg, #ea580c, #dc2626); }
.admin-content .btn-outline { background: white; border-color: #cbd5e1; color: #475569; }
.admin-content .btn-outline:hover { background: #f8fafc; border-color: #94a3b8; }
.admin-content .btn-sm { padding: 5px 10px; font-size: 12px; }
.admin-content .alert { padding: 12px 16px; border-radius: 8px; margin-bottom: 14px; font-size: 14px; }
.admin-content .alert-success { background: #ecfdf5; color: #065f46; border-left: 3px solid #10b981; }
.admin-content .alert-danger { background: #fee2e2; color: #991b1b; border-left: 3px solid #dc2626; }
.admin-content .alert-warning { background: #fef3c7; color: #92400e; border-left: 3px solid #f59e0b; }
.admin-content .chip { display: inline-block; padding: 3px 10px; border-radius: 12px; font-size: 11px; font-weight: 600; background: #f1f5f9; color: #475569; text-transform: uppercase; letter-spacing: 0.4px; }
.admin-content .chip-success { background: #d1fae5; color: #065f46; }
.admin-content .chip-warning { background: #fef3c7; color: #92400e; }
.admin-content .chip-danger { background: #fee2e2; color: #dc2626; }
.admin-content .chip-info { background: #dbeafe; color: #1e40af; }
.admin-content .s-card { background: white; border: 1px solid #e5e7eb; border-radius: 12px; padding: 22px; margin-bottom: 18px; box-shadow: 0 1px 3px rgba(0,0,0,0.03); }
.admin-content h1, .admin-content h2, .admin-content h3 { font-family: 'Space Grotesk', sans-serif; color: #0f172a; }
.admin-content h1 { font-size: 26px; margin: 0 0 8px; }
.admin-content h2 { font-size: 20px; }
.admin-content h3 { font-size: 16px; margin: 0 0 12px; }

/* Products/Orders/Quotes — table rows */
.admin-content .table tr td { line-height: 1.5; }
.admin-content .table tr td strong { color: #0f172a; }
.admin-content .table tr td small { color: #94a3b8; font-size: 11px; }
