/*
Theme Name: Melih Perde
Theme URI: https://melihperde.com
Author: Melih Perde
Author URI: https://melihperde.com
Description: Modern ve minimalist perde e-ticaret teması. MelihPerde.com için özel tasarlanmıştır.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: melihperde
Tags: e-commerce, woocommerce, modern, minimalist, responsive
*/

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #eef2f7;
  --dark: #0d1b2a;
  --text: #1e3048;
  --muted: #6b84a0;
  --accent: #c9a84c;
  --accent-dark: #a07830;
  --red: #c0392b;
  --border: #d0dce8;
  --white: #ffffff;
  --card-bg: #f4f8fc;
  --green: #25d366;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: #b0c8e0;
  text-align: center;
  font-size: 12px;
  padding: 8px 20px;
  letter-spacing: 0.5px;
}
.top-bar span { margin: 0 16px; }
.top-bar strong { color: var(--accent); }

/* ===== HEADER ===== */
#masthead {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  overflow: visible;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
  overflow: visible;
}
#site-navigation { overflow: visible; }
#site-navigation .nav-menu { overflow: visible; }
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.site-logo span { color: var(--accent); }

/* Primary Navigation */
#site-navigation .nav-menu {
  display: flex;
  gap: 0;
}
#site-navigation .nav-menu li a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  padding: 0 16px;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
#site-navigation .nav-menu li a:hover,
#site-navigation .nav-menu li.current-menu-item > a {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

/* ── Dropdown menü — saf CSS hover ── */
#site-navigation .nav-menu li {
  position: relative;
  overflow: visible;
}
#site-navigation .nav-menu li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 10px;
  color: var(--muted);
}
/* Sub-menu varsayılan: gizli */
#site-navigation .sub-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute !important;
  top: 68px !important;
  left: 0 !important;
  min-width: 240px !important;
  background: #ffffff !important;
  border-top: 3px solid #c9a84c !important;
  border-left: 1px solid #e2e8f0 !important;
  border-right: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  border-radius: 0 0 12px 12px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.18) !important;
  z-index: 999999 !important;
  padding: 8px 0 !important;
  list-style: none !important;
  margin: 0 !important;
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  transform: translateY(-8px);
}
/* Hover ile aç */
#site-navigation .nav-menu li:hover > .sub-menu,
#site-navigation .nav-menu li.tp-open > .sub-menu {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}
#site-navigation .sub-menu li {
  display: block !important;
  position: static !important;
}
#site-navigation .sub-menu li a {
  height: auto !important;
  padding: 11px 20px !important;
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: #1e293b !important;
  border-bottom: none !important;
  border-left: none !important;
  display: block !important;
  white-space: nowrap !important;
  transition: background .15s, color .15s, padding .15s !important;
  line-height: 1.4 !important;
}
#site-navigation .sub-menu li a:hover {
  background: #fdf9f4 !important;
  color: #c9a84c !important;
  padding-left: 26px !important;
  border-bottom: none !important;
}
@keyframes tpDropIn {
  from { opacity:0; transform:translateY(-6px); }
  to   { opacity:1; transform:translateY(0); }
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-actions a {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
}
.header-actions a:hover { color: var(--accent-dark); }
.header-phone { color: var(--accent-dark) !important; font-weight: 600 !important; }
.cart-btn {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 13px !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s !important;
}
.cart-btn:hover { background: var(--accent-dark) !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark);
}

/* ===== HERO ===== */
/* ═══════════════════════════════
   NETFLIX-STYLE HERO
═══════════════════════════════ */
.nf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.nf-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.nf-hero:hover .nf-hero-bg { transform: scale(1); }
.nf-hero-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, #000 0%, rgba(0,0,0,.85) 30%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.1) 100%),
    linear-gradient(to right, rgba(0,0,0,.7) 0%, transparent 60%);
}
.nf-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 60px 80px;
}
.nf-hero-panel { display: none; }
.nf-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #c9a84c;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: .9;
}
.nf-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.nf-hero-title em {
  color: #c9a84c;
  font-style: italic;
  display: block;
}
.nf-hero-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}
.nf-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}
.nf-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #c9a84c;
  color: #0d1b2a;
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .3px;
  transition: all .2s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.nf-btn-primary:hover { background: #e8c060; transform: scale(1.03); color: #0d1b2a; }
.nf-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  transition: all .2s;
  text-decoration: none;
}
.nf-btn-secondary:hover { background: rgba(255,255,255,.25); color: #fff; }
.nf-btn-icon {
  width: 52px; height: 52px;
  border-radius: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  transition: all .2s;
}
.nf-btn-icon:hover { background: rgba(255,255,255,.25); }
.nf-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nf-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}
.nf-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  letter-spacing: .5px;
}
.nf-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}
/* Panel - sağ featured grid */
.nf-hero-panel {
  position: absolute;
  bottom: 60px;
  right: 60px;
  z-index: 3;
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Büyük featured kart */
.nf-panel-featured {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  text-decoration: none;
  flex-shrink: 0;
}
.nf-panel-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.nf-panel-featured:hover img { transform: scale(1.05); }
.nf-panel-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}
.nf-panel-featured-meta h3 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 2px 0 4px;
  line-height: 1.3;
}
/* Küçük kartlar */
.nf-panel-smalls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.nf-panel-small {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 120px;
  text-decoration: none;
}
.nf-panel-small img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.nf-panel-small:hover img { transform: scale(1.06); }
.nf-panel-small-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 12px;
}
.nf-panel-small-meta h4 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin: 2px 0 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Ortak */
.nf-panel-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c9a84c;
}
.nf-panel-price {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.nf-panel-price del { color: rgba(255,255,255,.4); font-weight: 400; }
.nf-panel-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}
.nf-panel-no-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d1b2a, #1a2d42);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
/* Eski panel kartlar (fallback) */
.nf-panel-card {
  background: rgba(13,27,42,.85);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  transition: border-color .2s, background .2s;
}
.nf-panel-card:hover { border-color: rgba(201,168,76,.5); background: rgba(13,27,42,.95); }
.nf-panel-wide { border-color: rgba(201,168,76,.35); }
.nf-panel-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.nf-panel-icon { font-size: 22px; flex-shrink: 0; }
.nf-panel-card strong { display: block; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.nf-panel-card p { font-size: 11px; color: rgba(255,255,255,.45); margin: 0; line-height: 1.4; }

/* Eski hero sınıflarını koru (diğer sayfalarda kullanılabilir) */
.hero-section { background: var(--dark); min-height: 420px; display: flex; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.18) 0%, transparent 60%), linear-gradient(135deg, #0d1b2a 0%, #162640 50%, #0d1b2a 100%); }
.hero-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px), repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,1) 40px, rgba(255,255,255,1) 41px); }
.hero-content { position: relative; max-width: 1280px; margin: 0 auto; padding: 48px 24px; display: flex; align-items: center; width: 100%; gap: 40px; }
.hero-text { flex: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(196,168,130,0.2); border: 1px solid rgba(196,168,130,0.4); color: var(--accent); padding: 5px 12px; border-radius: 20px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
/* Hero Banner */
.tp-hero-banner { margin-bottom: 24px; background-size: cover; background-position: center center; border-radius: 14px; padding: 20px 20px; position: relative; overflow: hidden; min-height: 200px; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.tp-hero-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.1) 100%); border-radius: 14px; pointer-events: none; }
.tp-hero-banner-badge { position: relative; z-index: 2; display: inline-block; background: rgba(201,168,76,.15); border: 1.5px solid #c9a84c; color: #c9a84c; padding: 5px 14px; border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }
.hero h1 { font-size: clamp(26px, 3.5vw, 42px); color: var(--white); line-height: 1.15; margin-bottom: 14px; font-weight: 600; }
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-desc { color: #7a9bbf; font-size: 14px; line-height: 1.6; margin-bottom: 24px; max-width: 480px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: var(--dark); padding: 14px 32px; border-radius: 8px; font-weight: 600; font-size: 14px; transition: all 0.2s; display: inline-block; }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.25); color: var(--white); padding: 14px 32px; border-radius: 8px; font-weight: 500; font-size: 14px; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.hero-stats { display: flex; gap: 32px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--accent); font-weight: 600; }
.hero-stat .label { font-size: 12px; color: #4a6080; margin-top: 2px; }
.hero-right { flex: 0 0 320px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hero-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 14px; transition: all 0.3s; cursor: pointer; }
.hero-card:hover { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.35); }
.hero-card.wide { grid-column: span 2; display: flex; align-items: center; gap: 12px; }
.hero-card-icon { font-size: 22px; }
.hero-card h3 { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 3px; font-family: 'DM Sans', sans-serif; }
.hero-card p { color: #4a6080; font-size: 11px; line-height: 1.4; }

/* Mobil */
@media (max-width: 900px) {
  .nf-hero-panel { display: none; }
  .nf-hero-inner { padding: 0 24px 48px; max-width: 100%; }
  .nf-hero { min-height: 85vh; }
}
@media (max-width: 600px) {
  .nf-hero { min-height: 92vh; }
  .nf-hero-title { font-size: 38px; }
  .nf-btn-primary, .nf-btn-secondary { padding: 14px 22px; font-size: 14px; }
  .nf-hero-stats { gap: 18px; }
  .nf-stat-num { font-size: 22px; }
}

/* ===== STEPS ===== */
/* ═══════════════════════════════
   HERO PRODUCT GRID
═══════════════════════════════ */
.hg-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3px;
  background: #111;
  height: 600px;
}
.hg-main {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  height: 600px;
}
.hg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 600px;
}
.hg-cell {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  height: 100%;
}
.hg-main img, .hg-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
  display: block;
}
.hg-main:hover img { transform: scale(1.03); }
.hg-cell:hover img { transform: scale(1.05); }
.hg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.9) 0%,
    rgba(0,0,0,.4) 40%,
    rgba(0,0,0,.05) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
}
.hg-top { display: flex; gap: 6px; flex-wrap: wrap; }
.hg-bottom { display: flex; flex-direction: column; gap: 3px; }
.hg-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .3px;
  line-height: 1;
}
.hg-badge-red  { background: #ef4444; color: #fff; }
.hg-badge-gold { background: #c9a84c; color: #000; }
.hg-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 2px;
}
.hg-main h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.25;
}
.hg-cell h3 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hg-price {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  line-height: 1.4;
}
.hg-price ins { text-decoration: none; }
.hg-price del { color: rgba(255,255,255,.38); font-weight: 400; font-size: 11px; margin-left: 4px; }
.hg-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #c9a84c;
  letter-spacing: .3px;
}
.hg-cta::after {
  content: "→";
  transition: transform .2s;
}
.hg-main:hover .hg-cta::after { transform: translateX(4px); }

@media (max-width: 1024px) {
  .hg-wrap { grid-template-columns: 1fr 1fr; height: 500px; }
  .hg-main { height: 500px; }
  .hg-grid { height: 500px; }
}
@media (max-width: 768px) {
  .hg-wrap { grid-template-columns: 1fr; height: auto; }
  .hg-main { height: 55vw; min-height: 220px; }
  .hg-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .hg-cell { height: 42vw; min-height: 160px; }
}
@media (max-width: 480px) {
  .hg-main { height: 64vw; }
  .hg-cell { height: 50vw; }
  .hg-main h2 { font-size: 16px; }
}

/* ═══════════════════════════════
   NETFLİX PRODUCT ROWS
═══════════════════════════════ */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #0a0f1a;
  padding: 4px 0 0;
}
.nf-feat-big, .nf-feat-small {
  display: block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.nf-feat-big { height: 340px; }
.nf-feat-smalls {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.nf-feat-small { height: 168px; }
.nf-feat-big img, .nf-feat-small img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.nf-feat-big:hover img, .nf-feat-small:hover img { transform: scale(1.05); }
.nf-feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  transition: background .3s;
}
.nf-feat-big:hover .nf-feat-overlay,
.nf-feat-small:hover .nf-feat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.1) 100%);
}
.nf-feat-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 4px;
}
.nf-feat-big h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.3;
}
.nf-feat-small h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nf-feat-price { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
.nf-feat-price del { color: rgba(255,255,255,.4); font-weight:400; font-size:11px; margin-left:4px; }
.nf-feat-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}
.nf-feat-noimg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d1b2a, #1a2d42);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}
@media (max-width: 768px) {
  .nf-featured-grid { grid-template-columns: 1fr; }
  .nf-feat-big { height: 260px; }
  .nf-feat-smalls { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .nf-feat-small { height: 160px; }
}
@media (max-width: 480px) {
  .nf-feat-big { height: 220px; }
  .nf-feat-small { height: 130px; }
}

/* ═══════════════════════════════
   NETFLİX PRODUCT ROWS
═══════════════════════════════ */
.nf-rows-wrap {
  background: #0a0f1a;
  padding: 8px 0 40px;
}
.nf-row {
  position: relative;
  padding: 32px 0 8px;
}
.nf-row:hover .nf-row-arrow { opacity: 1; }
.nf-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  margin-bottom: 16px;
}
.nf-row-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -.3px;
}
.nf-row-all {
  font-size: 13px;
  font-weight: 600;
  color: #c9a84c;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transition: opacity .2s;
}
.nf-row-all span { font-size: 18px; line-height: 1; }
.nf-row:hover .nf-row-all { opacity: 1; }
.nf-row-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 60px 16px;
}
.nf-row-track::-webkit-scrollbar { display: none; }
.nf-row-track .product-card-tp {
  flex: 0 0 200px;
  min-width: 200px;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  transform-origin: center;
}
.nf-row-track .product-card-tp:hover {
  transform: scale(1.06);
  z-index: 10;
  box-shadow: 0 16px 40px rgba(0,0,0,.7);
}
.nf-row-track .product-img-wrap {
  aspect-ratio: 2/3;
  border-radius: 6px 6px 0 0;
}
.nf-row-track .product-info-tp {
  background: #141b2d;
  border-radius: 0 0 6px 6px;
  padding: 10px 12px;
}
.nf-row-track .product-name-tp {
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nf-row-track .product-price-tp { font-size: 13px; }
.nf-row-track .price-current-tp { color: #c9a84c; font-weight: 700; }
.nf-row-track .price-original-tp { color: #64748b; font-size: 11px; text-decoration: line-through; margin-left: 4px; }
.nf-row-track .price-unit-tp { color: #475569; font-size: 10px; }
.nf-row-track .product-stars-tp { color: #c9a84c; font-size: 10px; }
.nf-row-track .product-badge-tp {
  top: 8px; left: 8px;
  font-size: 10px; padding: 2px 7px;
}
.nf-row-track .sales-bar { margin-top: 6px; }
.nf-row-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px; height: 80px;
  background: rgba(0,0,0,.75);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s, background .2s;
  display: flex; align-items: center; justify-content: center;
}
.nf-row-arrow:hover { background: rgba(0,0,0,.95); }
.nf-row-prev { left: 0; border-radius: 0 4px 4px 0; }
.nf-row-next { right: 0; border-radius: 4px 0 0 4px; }

@media (max-width: 900px) {
  .nf-row-header, .nf-row-track { padding-left: 20px; padding-right: 20px; }
  .nf-row-arrow { display: none; }
  .nf-row-track .product-card-tp { flex: 0 0 160px; min-width: 160px; }
  .nf-row-title { font-size: 17px; }
  .nf-row-all { opacity: 1; }
}
@media (max-width: 600px) {
  .nf-row-track .product-card-tp { flex: 0 0 140px; min-width: 140px; }
}

.steps-section {
  background: var(--white);
  padding: 36px 24px;
  border-bottom: 1px solid var(--border);
}
.steps-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: 42px;
  color: var(--accent);
  font-size: 18px;
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--dark);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}
.step-item h4 { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; letter-spacing: 0.5px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.step-item p { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ===== SECTIONS ===== */
.section-pad { padding: 64px 24px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--dark); }

.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: clamp(24px, 3vw, 34px);
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-desc { color: var(--muted); font-size: 15px; max-width: 560px; line-height: 1.6; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.view-all:hover { color: var(--dark); }

/* ===== TIMER BANNER ===== */
.timer-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a3050 100%);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.timer-info h3 { font-size: 20px; color: var(--white); margin-bottom: 4px; }
.timer-info p { color: #7a9bbf; font-size: 13px; }
.countdown { display: flex; gap: 12px; align-items: center; }
.count-block {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  min-width: 60px;
}
.count-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
  display: block;
  line-height: 1;
}
.count-label { font-size: 10px; color: #4a6080; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.count-sep { color: var(--accent); font-size: 20px; font-weight: 700; }

/* ===== PRODUCT GRID ===== */
.product-grid-tp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card-tp {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  position: relative;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-tp:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(13,27,42,.12); border-color: var(--accent); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--card-bg);
}
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.25,.8,.25,1); }
.product-card-tp:hover .product-img-wrap img { transform: scale(1.07); }
.product-badge-tp {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 4px 9px; border-radius: 5px; z-index: 2;
  letter-spacing: .3px;
}
.product-badge-tp.badge-new { background: var(--dark); top: 44px; }
.tp-badge-tukendi {
  position: absolute; top: 12px; left: 12px;
  background: #2d6a2d; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 4px 9px; border-radius: 5px; z-index: 2;
  letter-spacing: .5px; text-transform: uppercase;
}
.product-actions-tp {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px;
  background: linear-gradient(to top, rgba(13,27,42,.85) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
  z-index: 2;
  display: flex; gap: 8px;
}
.product-card-tp:hover .product-actions-tp { opacity: 1; transform: translateY(0); }
.action-btn-tp {
  flex: 1;
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 10px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  letter-spacing: .3px;
}
.action-btn-tp:hover { background: var(--accent-dark); color: var(--white); }
.product-info-tp { padding: 16px; }
.product-name-tp {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
}
.product-stars-tp { color: var(--accent); font-size: 12px; margin-bottom: 9px; letter-spacing: 1px; }
.product-stars-tp span { color: var(--muted); font-size: 11px; margin-left: 4px; letter-spacing: 0; }
.product-price-tp { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price-current-tp { font-size: 17px; font-weight: 700; color: var(--dark); }
.price-original-tp { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-unit-tp { font-size: 11px; color: var(--muted); }
.sales-bar { height: 4px; background: var(--border); border-radius: 2px; margin: 10px 0 6px; overflow: hidden; }
.sales-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); border-radius: 2px; }
.sales-text { font-size: 11px; color: var(--muted); display: flex; justify-content: space-between; }

/* ===== PROMO CARDS ===== */
.promo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.promo-card {
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.promo-card:hover { transform: translateY(-4px); }
.promo-dark { background: var(--dark); }
.promo-warm { background: linear-gradient(135deg, #c9a84c 0%, #a07830 100%); }
.promo-light { background: linear-gradient(135deg, #d8e8f4 0%, #b8ceE4 100%); }
.promo-stone { background: linear-gradient(135deg, #1e3a5a 0%, #0d1b2a 100%); }
.promo-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; color: rgba(255,255,255,0.6); }
.promo-light .promo-label { color: var(--muted); }
.promo-card h3 { font-size: 18px; font-weight: 600; line-height: 1.3; margin-bottom: 14px; color: var(--white); }
.promo-light h3 { color: var(--dark); }
.promo-price { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.promo-light .promo-price { color: var(--muted); }
.promo-link { font-size: 12px; font-weight: 600; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 6px; color: var(--accent); }
.promo-warm .promo-link, .promo-stone .promo-link { color: rgba(255,255,255,0.85); }
.promo-light .promo-link { color: var(--accent-dark); }
/* Kapak fotoğrafı varken metin okunabilirliği */
.promo-img-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 60%, rgba(0,0,0,.08) 100%);
    pointer-events: none;
    z-index: 0;
}
.promo-card[style*="background-image"] .promo-label,
.promo-card[style*="background-image"] h3,
.promo-card[style*="background-image"] .promo-price,
.promo-card[style*="background-image"] .promo-link { position: relative; z-index: 1; color: #fff !important; }
.promo-card[style*="background-image"] .promo-link { color: var(--accent) !important; }

/* ===== CATEGORY BANNERS ===== */
.cat-banners { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cat-banner {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  cursor: pointer;
  transition: transform 0.3s;
}
.cat-banner:hover { transform: scale(1.01); }
.cat-linen { background: linear-gradient(160deg, #c9a84c 0%, #8a6820 100%); }
.cat-sheer { background: linear-gradient(160deg, #1e4a7a 0%, #0d2a4a 100%); }
.cat-banner-content { position: relative; z-index: 2; }
.cat-banner h3 { font-size: 26px; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.cat-banner p { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 18px; line-height: 1.5; }
.btn-dark {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--accent-dark); }

/* ===== FEATURES SECTION ===== */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.feature-item {
  padding: 36px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.feature-item:last-child { border-right: none; }
.feature-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.feature-item p { color: #4a6080; font-size: 12.5px; line-height: 1.6; }

/* ===== FOOTER ===== */
#colophon {
  background: var(--dark);
  padding: 56px 24px 0;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-desc { color: #3a5070; font-size: 13px; line-height: 1.7; margin-bottom: 20px; margin-top: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--accent); font-size: 16px; }
.footer-contact-item p { color: #4a6080; font-size: 13px; line-height: 1.5; }
.footer-col h5 { color: var(--white); font-size: 13px; font-weight: 600; margin-bottom: 18px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col a { display: block; color: #4a6080; font-size: 13px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom p { color: #3a5070; font-size: 12px; }
.payment-badges { display: flex; gap: 8px; }
.payment-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 5px 10px;
  color: #3a5070;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}


/* ===== HEADER AUTH / USER MENU ===== */
.tp-auth-links { display: flex; align-items: center; gap: 6px; }
.tp-auth-sep { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1; }
.tp-login-link {
    font-size: 13px; font-weight: 600; color: var(--text);
    padding: 8px 14px; border-radius: 7px; border: 1.5px solid var(--border);
    transition: all .2s;
}
.tp-login-link:hover { border-color: var(--accent); color: var(--accent-dark); }
.tp-register-link {
    font-size: 13px; font-weight: 700; color: var(--white);
    padding: 8px 16px; border-radius: 7px;
    background: var(--accent); transition: all .2s;
}
.tp-register-link:hover { background: var(--accent-dark); }

/* User dropdown */
.tp-user-menu { position: relative; }
.tp-user-toggle {
    display: flex; align-items: center; gap: 8px;
    background: none; border: 1.5px solid var(--border);
    border-radius: 8px; padding: 7px 12px; cursor: pointer;
    font-family: 'DM Sans', sans-serif; transition: all .2s;
    color: var(--text);
}
.tp-user-toggle:hover { border-color: var(--accent); }
.tp-user-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--dark); color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.tp-user-name { font-size: 13px; font-weight: 600; color: var(--text); max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tp-user-caret { font-size: 10px; color: var(--muted); transition: transform .2s; }
.tp-user-toggle.open .tp-user-caret { transform: rotate(180deg); }

.tp-user-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); right: 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 8px; min-width: 200px;
    box-shadow: 0 8px 32px rgba(13,27,42,.12); z-index: 200;
}
.tp-user-dropdown.open { display: block; }
.tp-user-dropdown a {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 12px; border-radius: 8px; font-size: 13px;
    font-weight: 500; color: var(--text); transition: background .15s;
    white-space: nowrap;
}
.tp-user-dropdown a:hover { background: var(--cream); color: var(--dark); }
.tp-dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.tp-logout-link { color: #ef4444 !important; }
.tp-logout-link:hover { background: #fef2f2 !important; }


/* Giriş yapılmamışken Hesabım menü linkini gizle */
li.tp-hide-logged-out { display: none !important; }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ===== WOOCOMMERCE OVERRIDES ===== */
.woocommerce .woocommerce-notices-wrapper { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 0; padding: 0; }
.woocommerce ul.products li.product { margin: 0 !important; float: none !important; width: 100% !important; }
.woocommerce .price { color: var(--dark); font-weight: 700; }
.woocommerce .price del { color: var(--muted); font-weight: 400; }
.woocommerce a.button, .woocommerce button.button {
  background: var(--dark) !important;
  color: var(--white) !important;
  border-radius: 7px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--accent-dark) !important; }
.woocommerce a.button.alt, .woocommerce button.button.alt { background: var(--accent) !important; color: var(--dark) !important; }
.woocommerce a.button.alt:hover { background: var(--accent-dark) !important; color: var(--white) !important; }
.woocommerce .onsale { background: var(--red) !important; border-radius: 4px !important; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { color: var(--text); border-color: var(--border); }
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .product-grid-tp { grid-template-columns: repeat(3, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  #site-navigation { display: none; }
  #site-navigation.toggled { display: block; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px; z-index: 99; }
  #site-navigation.toggled .nav-menu { flex-direction: column; gap: 0; }
  #site-navigation.toggled .nav-menu li a { height: auto; padding: 12px 0; border-bottom: 1px solid var(--border); border-left: none; }
  .menu-toggle { display: block; order: 3; margin-left: auto; }
  .site-logo { order: 1; }
  .header-actions { order: 2; margin-left: auto; }
  .header-inner { justify-content: flex-start; }
  .product-grid-tp { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-inner { grid-template-columns: repeat(3, 1fr); }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-banners { grid-template-columns: 1fr; }
  .timer-banner { flex-direction: column; text-align: center; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 600px) {
  .product-grid-tp { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .steps-inner { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .header-actions .hide-mobile { display: none; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
  /* Footer bottom mobilde alt alta */
  .footer-bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
  .payment-badges { flex-wrap: wrap; gap: 6px; }
  /* Header taşmasın */
  .header-inner { overflow: visible; }
  /* Footer inner padding */
  .footer-inner { overflow: hidden; }
  #colophon { padding: 48px 16px 0; }
}

/* Mobil arama butonu (hero içinde) */
.show-mobile-only { display: none; }
@media (max-width: 900px) {
  .show-mobile-only { display: flex; }
}
.hero-search-mobile {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 13px 16px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  line-height: 0;
}
.hero-search-mobile:hover {
  border-color: var(--accent);
  color: var(--accent);
}

