/* header.css — unicArts Classic & Modern Mix */

:root {
  --bg: #fbfbfc;
  --card: #fff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --shadow: 0 10px 25px rgba(17,24,39,0.06);
  --radius: 16px;
  --wa: #25D366;
  --container: 1100px;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

header.siteHeader {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: transparent;
}

.headerInner { position: relative; padding: 10px 0 12px; }

/* ✅ GENEL GÖRÜNÜM: Striped Gradient Korundu */
.navBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 10px 0 12px;
  padding: 12px 14px;
  background: #CCCCCC;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(17,24,39,0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; color: var(--text); }
.brandLogo { height: 56px; width: auto; filter: drop-shadow(0 6px 10px rgba(0,0,0,0.25)); }

.navRight { display: flex; gap: 10px; align-items: center; }

/* ✅ MODERN BUTONLAR */
.btn {
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}

.ghost:hover { background: #111827; color: #fff; border-color: #111827; }

/* ✅ MODERN WHATSAPP */
.btn-wa {
  background: #ffffff;
  color: #25D366;
  border: 1.5px solid #25D366;
}
.btn-wa:hover { background: #25D366; color: #ffffff; box-shadow: 0 6px 15px rgba(37,211,102,0.3); }

/* ✅ MODERN GOOGLE BUTONU (Resmi Tasarım) */
.googleBtn {
  background: #fff !important;
  border: 1px solid #dadce0 !important;
  color: #3c4043 !important;
  gap: 10px !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1) !important;
}
.googleBtn:hover { background: #f8f9fa !important; box-shadow: 0 4px 10px rgba(0,0,0,0.12) !important; }

.activeNav { border-color: #c62828; box-shadow: 0 0 0 2px rgba(198,40,40,0.1); }

/* SEPET BADGE */
.cartBadge {
  background: #111827; color: #fff;
  padding: 2px 7px; border-radius: 99px; font-size: 11px; margin-left: 6px;
}

/* ✅ HAMBURGER */
.hamburger {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.1);
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.hambWrap { display: flex; flex-direction: column; gap: 4px; width: 18px; }
.hambLine { height: 2px; background: #111827; border-radius: 10px; }

/* ✅ MODERN DRAWER (Glassmorphism) */
.mobileOverlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none; transition: 0.3s; z-index: 9998;
}
.mobileOverlay.show { opacity: 1; pointer-events: auto; }

.mobileDrawer {
  position: fixed; top: 0; right: 0; height: 100vh; width: 320px;
background: #CCCCCC;
backdrop-filter: none;
-webkit-backdrop-filter: none;
  z-index: 9999; padding: 24px; transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column; gap: 15px;
}
.mobileDrawer.show { transform: translateX(0); }

.closeBtn { align-self: flex-end; background: none; border: none; font-size: 20px; cursor: pointer; }

@media (max-width: 760px) { .navRight { display: none; } }