/* Yeni İş Promosyon — açık B2B vitrin (turuncu / cyan, okunaklı tipografi) */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;1,6..12,400&display=swap');

:root {
  --bg: #f4f6f9;
  --bg-elev: #ffffff;
  --surface: #eef1f5;
  --border: #dde3ea;
  --text: #1c2430;
  --muted: #5a6572;
  --accent: #0097d7;
  --accent-dim: #007bb3;
  --accent-orange: #f36f21;
  --accent-orange-dim: #d85f18;
  --mint: #0d9488;
  --danger: #dc2626;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(28, 36, 48, 0.08);
  --shadow-card: 0 4px 20px rgba(28, 36, 48, 0.06);
  --font-sans: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Nunito Sans', system-ui, sans-serif;
  --nav-dark: #2c3138;
  --header-stack-h: clamp(132px, 22vw, 168px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (max-width: 960px) {
  .layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }
}

/* Üst blok: iletişim + logo + koyu menü (yapışkan) */
.header-stack {
  grid-column: 1 / -1;
  grid-row: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-elev);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding-top: env(safe-area-inset-top, 0px);
  transition: transform 0.24s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.top-utility {
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}

.top-utility-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.45rem max(1.25rem, env(safe-area-inset-left, 0px)) 0.45rem max(1.25rem, env(safe-area-inset-right, 0px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.8rem;
}

.utility-item:hover {
  color: var(--accent);
}

.utility-item strong {
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
}

.utility-item small {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
}

.utility-item.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.utility-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(0, 151, 215, 0.12), rgba(243, 111, 33, 0.1));
  border: 1px solid var(--border);
}

.utility-icon--phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230097d7' stroke-width='2'%3E%3Cpath d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.utility-icon--mail {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23f36f21' stroke-width='2'%3E%3Cpath d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.main-nav {
  background: var(--nav-dark);
  color: #fff;
}

.main-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.35rem;
}

.main-nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}

.main-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.main-nav-link.is-active {
  background: var(--accent);
  color: #fff;
}

.main-nav-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  user-select: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-media {
  position: relative;
  width: auto;
  min-width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: conic-gradient(from 210deg, var(--accent) 0deg, var(--accent-orange) 120deg, #7dd3fc 240deg, var(--accent) 360deg);
  box-shadow: 0 4px 14px rgba(0, 151, 215, 0.25);
}

.brand-mark.is-hidden {
  display: none !important;
}

.brand-logo-img {
  position: relative;
  inset: auto;
  width: auto;
  max-width: 180px;
  height: 38px;
  border-radius: 0;
  object-fit: contain;
  display: none;
  box-shadow: none;
}

.brand-logo-img.is-shown {
  display: block;
}

.brand h1 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-tagline {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.search-wrap {
  position: relative;
}

.search-wrap input {
  width: min(320px, 50vw);
  padding: 0.65rem 1rem 0.65rem 2.4rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.search-wrap input::placeholder {
  color: var(--muted);
}

.search-wrap svg {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  opacity: 0.75;
}

.btn {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-orange) 0%, var(--accent-orange-dim) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(243, 111, 33, 0.35);
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(243, 111, 33, 0.4);
}

.btn-dealer {
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  transition: filter 0.15s, transform 0.15s;
}

.btn-dealer:hover {
  filter: brightness(1.06);
}

.btn-dealer:active {
  transform: scale(0.98);
}

.btn-ghost {
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-sm {
  padding: 0.38rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

@media (max-width: 960px) {
  .menu-toggle {
    display: flex;
  }
}

/* Sidebar */
.sidebar {
  grid-column: 1;
  grid-row: 2;
  border-right: 1px solid var(--border);
  background: var(--bg-elev);
  padding: 1.25rem 0 2rem;
  position: sticky;
  top: var(--header-stack-h);
  align-self: start;
  max-height: calc(100vh - var(--header-stack-h));
  overflow-y: auto;
  /* Sticky kalırken alttaki tam genişlik footer’ın üstüne binmesin */
  z-index: 0;
}

@media (max-width: 960px) {
  .sidebar {
    grid-column: 1;
    grid-row: 2;
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 200;
    max-height: none;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-right: none;
    padding-top: max(4rem, env(safe-area-inset-top, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
  }

  .sidebar.is-open {
    transform: translateX(0);
  }
}

.sidebar-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

@media (max-width: 960px) {
  .sidebar-close {
    display: block;
  }
}

.nav-section-title {
  padding: 0.5rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.nav-group {
  margin-bottom: 0.25rem;
}

.nav-cat-thumb {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}

.nav-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-link-label,
.nav-parent-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-parent-label {
  flex: 1;
  text-align: left;
}

.nav-parent {
  width: 100%;
  text-align: left;
  padding: 0.55rem 1.25rem;
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text);
  border-radius: 0;
}

.nav-parent:hover {
  background: rgba(0, 151, 215, 0.06);
}

.nav-parent .chev {
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s;
  opacity: 0.5;
  font-size: 0.65rem;
}

.nav-parent.is-expanded .chev {
  transform: rotate(90deg);
}

.nav-children {
  display: none;
  padding-left: 0.5rem;
}

.nav-parent.is-expanded + .nav-children {
  display: block;
}

.nav-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem 0.4rem 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  border-left: 2px solid transparent;
  margin-left: 0.75rem;
}

.nav-child .nav-link-label {
  flex: 1;
}

.nav-child:hover,
.nav-child.is-active {
  color: var(--accent-orange);
  border-left-color: var(--accent-orange);
}

.nav-leaf-only {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--muted);
}

.nav-leaf-only .nav-link-label {
  flex: 1;
}

.nav-leaf-only:hover,
.nav-leaf-only.is-active {
  color: var(--accent-orange);
  background: rgba(0, 151, 215, 0.06);
}

/* Main */
.main {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  padding: 0;
}

@media (max-width: 960px) {
  .main {
    grid-column: 1;
    grid-row: 2;
  }
}

.hero {
  padding: 2.25rem 1.75rem 2rem;
  background: linear-gradient(180deg, #eef6fb 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-cat-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.hero p {
  margin: 0 0 1.25rem;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-live {
  margin: 0 0 1.25rem;
  max-width: 640px;
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text);
  background: rgba(0, 151, 215, 0.08);
  border: 1px solid rgba(0, 151, 215, 0.25);
  border-radius: var(--radius-sm);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-stats div strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent-orange);
}

.hero-stats div span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.content {
  padding: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a:hover {
  color: var(--accent-orange);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.toolbar h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.sort-select {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.8rem;
}

/* Product grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.card:hover {
  border-color: rgba(0, 151, 215, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-img {
  aspect-ratio: 1;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-orange);
}

.card-body {
  padding: 1rem 1rem 1.1rem;
}

.card-body h4 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  min-height: 2.7em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.card-price small {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

/* Modal */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 36, 48, 0.45);
  backdrop-filter: blur(6px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px))
    max(0.75rem, env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
}

.overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 24px 60px rgba(28, 36, 48, 0.18);
  transform: scale(0.96);
  transition: transform 0.25s;
}

.overlay.is-visible .modal {
  transform: scale(1);
}

@media (max-width: 720px) {
  .modal {
    grid-template-columns: 1fr;
    max-height: min(92vh, 100dvh - 2rem);
    overflow-y: auto;
    width: min(100%, calc(100vw - 1.5rem));
  }
}

.modal-gallery {
  background: var(--surface);
  position: relative;
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  z-index: 2;
}

.modal-detail {
  padding: 1.5rem 1.5rem 1.75rem;
  overflow-y: auto;
}

.modal-detail h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
}

.modal-detail .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.modal-detail .price {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.modal-detail .stock {
  font-size: 0.8rem;
  color: var(--mint);
  font-weight: 700;
}

.modal-detail .stock.low {
  color: var(--danger);
}

.desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.specs {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.specs-row {
  display: grid;
  grid-template-columns: minmax(88px, 120px) 1fr;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.specs-row:last-child {
  border-bottom: none;
}

.specs-row dt {
  margin: 0;
  padding: 0.55rem 0.75rem;
  background: var(--surface);
  color: var(--muted);
  font-weight: 600;
}

.specs-row dd {
  margin: 0;
  padding: 0.55rem 0.75rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.site-footer {
  grid-column: 1 / -1;
  grid-row: 3;
  position: relative;
  z-index: 2;
  background: #1b1f26;
  color: rgba(255, 255, 255, 0.78);
  padding: 1.1rem 1.25rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 1.1rem 1.75rem;
  align-items: start;
}

@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-col--about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

.site-footer-heading {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer-links a:hover {
  color: #fff;
}

.site-footer-text {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  max-width: 32rem;
}

.site-footer-col--about .site-footer-text + .site-footer-text {
  margin-top: 0.45rem;
}

.site-footer-lead {
  margin: 0 0 0.4rem;
  max-width: 32rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer-bullets {
  margin: 0.45rem 0 0;
  padding: 0;
  max-width: 32rem;
  font-size: 0.74rem;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer-bar {
  max-width: 1200px;
  margin: 0.85rem auto 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-copy {
  margin: 0;
  font-size: 0.65rem;
  line-height: 1.35;
  font-weight: 500;
  text-align: center;
  color: rgba(255, 255, 255, 0.42);
}

/* —— Admin panel (vitin ile uyumlu) —— */
body.admin-mode .sidebar {
  display: none;
}

body.admin-mode .layout {
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
}

body.admin-mode .main {
  grid-column: 1;
  grid-row: 2;
}

body.admin-mode .site-footer {
  grid-column: 1;
  grid-row: 3;
}

body.admin-mode .search-wrap {
  opacity: 0.45;
  pointer-events: none;
}

body.admin-mode .top-utility,
body.admin-mode .main-nav {
  display: none;
}

body.admin-mode {
  --header-stack-h: 72px;
}

body.admin-mode .fab-whatsapp,
body.admin-mode .fab-scroll-top {
  display: none;
}

body.admin-mode .site-footer {
  display: none;
}

body.admin-mode .main {
  background: linear-gradient(180deg, #eef2f7 0%, var(--bg) 220px);
  min-height: calc(100vh - var(--header-stack-h));
}

/* Giriş */
.admin-login-page {
  min-height: calc(100vh - var(--header-stack-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
}

.admin-login-brand h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.admin-login-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--nav-dark);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}

.admin-login-submit {
  width: 100%;
  margin-top: 1rem;
}

.admin-login-foot {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.88rem;
}

.admin-login-foot a {
  color: var(--accent);
  font-weight: 700;
}

/* Uygulama iskelesi */
.admin-app {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 3rem;
  min-height: calc(100vh - var(--header-stack-h) - 2rem);
}

@media (max-width: 900px) {
  .admin-app {
    grid-template-columns: 1fr;
  }

  .admin-app-aside {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
  }
}

.admin-app-aside {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 0.85rem;
  align-self: start;
  box-shadow: var(--shadow-card);
}

.admin-aside-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.admin-aside-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent) 100%);
  flex-shrink: 0;
}

.admin-aside-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.admin-aside-sub {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

.admin-side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.admin-side-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s;
}

.admin-side-link:hover {
  background: rgba(0, 151, 215, 0.06);
  border-color: rgba(0, 151, 215, 0.15);
}

.admin-side-link.is-active {
  background: rgba(0, 151, 215, 0.1);
  border-color: rgba(0, 151, 215, 0.35);
  color: var(--accent-dim);
}

.admin-side-ic {
  width: 1.75rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
}

.admin-side-txt {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.admin-side-txt b {
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-side-txt small {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 600;
}

.admin-app-stage {
  padding: 0 0 0 1.25rem;
  min-width: 0;
}

@media (max-width: 900px) {
  .admin-app-stage {
    padding: 0;
  }
}

.admin-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  flex-wrap: wrap;
}

.admin-page-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.admin-page-sub {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 36rem;
}

.admin-page-header-aside {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.admin-exit-site {
  flex-shrink: 0;
}

.admin-page-body {
  min-width: 0;
}

/* Kartlar & özet */
.admin-callout {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.admin-callout--warn {
  background: rgba(243, 111, 33, 0.08);
  border: 1px solid rgba(243, 111, 33, 0.28);
  color: var(--text);
}

.admin-callout--info {
  background: rgba(0, 151, 215, 0.06);
  border: 1px solid rgba(0, 151, 215, 0.22);
  color: var(--text);
}

.admin-callout--info strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dim);
}

.admin-callout--warn strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-orange-dim);
}

.admin-callout p {
  margin: 0;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-stat-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-card);
}

.admin-stat-card-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.admin-stat-card-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.15;
  margin: 0.35rem 0;
}

.admin-stat-card-hint {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.admin-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
}

.admin-card-title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.admin-card-desc {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.admin-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.admin-footnote {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.admin-muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.admin-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0.75rem 0 0.35rem;
}

.admin-label:first-child {
  margin-top: 0;
}

.admin-input,
.admin-textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fafbfd;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.admin-input:focus,
.admin-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 151, 215, 0.12);
}

.admin-input--search {
  max-width: 280px;
}

.admin-textarea {
  resize: vertical;
  min-height: 100px;
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  cursor: pointer;
  font-weight: 600;
}

.admin-inline-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-end;
}

.admin-inline-fields .admin-input {
  flex: 1;
  min-width: 200px;
}

.admin-file-input {
  font-size: 0.82rem;
  width: 100%;
}

.admin-logo-preview-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.85rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  background: #f6f8fb;
  min-height: 5.5rem;
}

.admin-logo-preview-img {
  display: none;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #fff;
  flex-shrink: 0;
}

.admin-logo-preview-img.is-visible {
  display: block;
}

/* Kategori ağacı */
.admin-tree-panel {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1rem 1.15rem;
  box-shadow: var(--shadow-card);
}

.admin-tree-panel-title {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.admin-tree-root {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-tree-empty {
  list-style: none;
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-tree-node {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-tree-children {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.85rem;
  border-left: 2px solid rgba(0, 151, 215, 0.2);
}

.admin-tree-children.is-collapsed {
  display: none;
}

.admin-tree-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s;
}

.admin-tree-row:hover {
  border-color: rgba(0, 151, 215, 0.35);
}

.admin-tree-toggle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  cursor: pointer;
  font-size: 0.65rem;
  line-height: 1;
  flex-shrink: 0;
  color: var(--accent);
}

.admin-tree-toggle::before {
  content: '▼';
  display: block;
  transition: transform 0.2s;
}

.admin-tree-toggle[aria-expanded='false']::before {
  transform: rotate(-90deg);
}

.admin-tree-spacer {
  width: 1.75rem;
  flex-shrink: 0;
}

.admin-pill {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.admin-pill--folder {
  background: rgba(0, 151, 215, 0.12);
  color: var(--accent-dim);
  border: 1px solid rgba(0, 151, 215, 0.25);
}

.admin-pill--leaf {
  background: rgba(13, 148, 136, 0.12);
  color: var(--mint);
  border: 1px solid rgba(13, 148, 136, 0.28);
}

.admin-tree-info {
  flex: 1;
  min-width: 120px;
}

.admin-tree-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-code-inline {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--muted);
  font-family: ui-monospace, monospace;
}

.admin-tree-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-left: auto;
}

.admin-btn {
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
}

.admin-btn--sm {
  padding: 0.28rem 0.55rem;
  font-size: 0.72rem;
}

.admin-btn--ghost {
  background: transparent;
  border-color: var(--border);
}

.admin-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-btn--danger-ghost {
  background: transparent;
  border-color: rgba(220, 38, 38, 0.25);
  color: var(--danger);
}

.admin-btn--danger-ghost:hover {
  background: rgba(220, 38, 38, 0.06);
}

/* Ürün listesi */
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-toolbar-text {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.admin-toolbar-count {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
}

.admin-toolbar-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-toolbar-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
}

.admin-table-wrap--shadow {
  box-shadow: var(--shadow-card);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.admin-table th,
.admin-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.admin-table tbody tr:hover {
  background: rgba(0, 151, 215, 0.04);
}

.admin-table tbody tr.is-hidden {
  display: none;
}

.admin-table th {
  background: linear-gradient(180deg, #f0f3f8 0%, #e8ecf2 100%);
  color: var(--muted);
  font-weight: 800;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.admin-mono {
  font-family: ui-monospace, monospace;
  font-size: 0.76rem;
}

.admin-td-name {
  font-weight: 700;
  max-width: 220px;
}

.admin-td-actions {
  white-space: nowrap;
}

.admin-table-action {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  margin-right: 0.75rem;
  font-size: inherit;
  font-weight: 700;
  color: var(--accent);
  cursor: pointer;
  text-decoration: none;
}

.admin-table-action:hover {
  text-decoration: underline;
}

.admin-table-action--danger {
  color: var(--danger);
}

.admin-table-empty {
  text-align: center;
  color: var(--muted);
  padding: 2rem 1rem !important;
}

.admin-badge-warn {
  color: var(--danger);
  font-weight: 700;
  font-size: 0.78rem;
}

/* Ürün formu */
.admin-form-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 1.25rem;
  align-items: start;
}

@media (max-width: 900px) {
  .admin-form-layout {
    grid-template-columns: 1fr;
  }
}

.admin-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem 1.1rem;
  margin: 0 0 1rem;
  background: var(--bg-elev);
}

.admin-fieldset legend {
  padding: 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.admin-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 520px) {
  .admin-form-row-2 {
    grid-template-columns: 1fr;
  }
}

.admin-spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.5rem 1rem;
}

.admin-spec-cell .admin-label {
  margin-top: 0.5rem;
}

.admin-spec-cell:first-child .admin-label {
  margin-top: 0;
}

.admin-form-aside .admin-fieldset {
  position: sticky;
  top: 0.5rem;
}

.admin-img-preview-wrap {
  margin-top: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  overflow: hidden;
}

.admin-img-preview {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.admin-preview-hint {
  margin: 0;
  padding: 1rem;
  text-align: center;
}

.admin-form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.admin-vitrin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.admin-vitrin-slide {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
  margin-bottom: 0.85rem;
  background: var(--surface);
}

.admin-vitrin-slide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

/* Modal */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(28, 36, 48, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  animation: adminFadeIn 0.2s ease;
}

@keyframes adminFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.admin-modal {
  width: 100%;
  max-width: 420px;
  background: var(--bg-elev);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border);
}

.admin-modal-title {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.admin-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.15rem;
}

/* Sabit yukarı + WhatsApp */
.fab-scroll-top {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: calc(max(1.25rem, env(safe-area-inset-bottom, 0px)) + 56px + 0.75rem);
  z-index: 150;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(243, 111, 33, 0.42);
  transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
}

.fab-scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(243, 111, 33, 0.5);
  background: var(--accent-orange-dim);
  color: #fff;
}

.fab-whatsapp.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: not-allowed;
}

.fab-whatsapp {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 150;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

@media (max-width: 960px) {
  .fab-whatsapp {
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .fab-scroll-top {
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px) + 56px + 0.75rem);
  }
}

@media (max-width: 520px) {
  .top-utility-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* —— Ana sayfa: slider + karşılama + kategori vitrin —— */
.home-slider-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem 0;
}

.home-slider-viewport {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--nav-dark);
}

.home-slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-slider-track::-webkit-scrollbar {
  display: none;
}

.home-slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-height: clamp(200px, 32vw, 360px);
  max-height: 420px;
}

.home-slide > img {
  width: 100%;
  height: clamp(200px, 32vw, 360px);
  max-height: 420px;
  object-fit: cover;
}

.home-slide-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 24, 28, 0.75) 0%, rgba(20, 24, 28, 0.15) 45%, transparent 70%);
  pointer-events: none;
}

.home-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  z-index: 1;
}

.home-slide-caption strong {
  font-size: clamp(1.05rem, 2.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.home-slide-caption span {
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.92;
  max-width: 36rem;
}

.home-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: background 0.15s, transform 0.15s;
}

.home-slider-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.home-slider-prev {
  left: 0.65rem;
}

.home-slider-next {
  right: 0.65rem;
}

.home-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 0 0.25rem;
}

.home-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

.home-slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.home-welcome {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 0.5rem;
}

.home-welcome-inner {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.home-welcome-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.home-welcome-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.home-welcome-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.home-note-live {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--mint);
  font-weight: 600;
}

.hero-stats--compact {
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.home-welcome-cta {
  margin: 0;
}

.cat-showcase-section {
  padding-bottom: 2.5rem;
}

.cat-showcase-head {
  padding-bottom: 0.35rem;
}

.cat-showcase-head h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cat-showcase-sub {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.cat-showcase {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 1100px) {
  .cat-showcase {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .cat-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

.cat-tile {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28, 36, 48, 0.12);
  border-color: rgba(0, 151, 215, 0.35);
}

.cat-tile-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--surface) 0%, #e8ecf2 100%);
  overflow: hidden;
}

.cat-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-tile-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.5;
}

.cat-tile-caption {
  padding: 0.55rem 0.65rem;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--border);
}

.cat-tile-caption span {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--text);
}

.hero--compact {
  padding: 1.25rem 1.5rem;
}

.hero--compact .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-muted {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

/* Ana sayfa — Yeni ürünler yatay şerit */
.new-strip-section {
  background: linear-gradient(180deg, #eceff4 0%, #e4e8ef 100%);
  border-top: 1px solid var(--border);
  padding: 1.75rem 0 2.5rem;
  margin-top: 0.5rem;
}

.new-strip-inner {
  max-width: 1200px;
}

.new-strip-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.new-strip-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 0.45rem;
}

.new-strip-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 3px;
  border-radius: 2px;
  background: var(--accent-orange);
}

.new-strip-arrows {
  display: flex;
  gap: 0.4rem;
}

.new-strip-arrow {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.new-strip-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 151, 215, 0.06);
}

.new-strip-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.25rem 0 0.75rem;
  margin: 0 -0.25rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  scrollbar-width: thin;
}

.new-strip-scroll::-webkit-scrollbar {
  height: 6px;
}

.new-strip-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 99px;
}

.new-strip-empty {
  margin: 0;
  padding: 1.25rem 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
  background: var(--bg-elev);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

.np-card {
  flex: 0 0 min(260px, 78vw);
  scroll-snap-align: start;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s;
}

.np-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(28, 36, 48, 0.1);
}

.np-card-inner {
  position: relative;
  padding: 0.65rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.np-card-price {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 1;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.28rem 0.45rem;
  border-radius: 4px;
  line-height: 1.2;
}

.np-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.25rem 0 0.5rem;
}

.np-card-img img {
  max-height: 130px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.np-card-title {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.2em;
}

.np-card-meta {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.np-card-meta li {
  margin: 0.1rem 0;
}

.np-meta-k {
  color: var(--muted);
  font-weight: 700;
}

.np-meta-v {
  color: var(--text);
}

.np-btn-detail {
  margin-top: auto;
  width: 100%;
  padding: 0.45rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.np-card:hover .np-btn-detail {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 151, 215, 0.06);
}

.np-card-note {
  margin: 0.5rem 0 0;
  font-size: 0.62rem;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

/* —— Kurumsal CMS sayfaları (#/hakkimizda, duyurular, iletisim, bilgi/…) —— */
.cms-breadcrumb-bar {
  background: linear-gradient(180deg, #eef1f5 0%, #e4e9ef 100%);
  border-bottom: 1px solid var(--border);
}

.cms-breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.cms-breadcrumb-inner a {
  color: var(--accent);
  text-decoration: none;
}

.cms-breadcrumb-inner a:hover {
  text-decoration: underline;
}

.cms-bc-home {
  margin-right: 0.15rem;
  opacity: 0.65;
}

.cms-bc-sep {
  margin: 0 0.15rem;
  opacity: 0.5;
}

.cms-bc-current {
  color: var(--text);
}

.cms-page {
  padding: 1.5rem 1.25rem 2.5rem;
  max-width: 1100px;
}

.cms-page--about {
  background: var(--bg-elev);
}

.cms-hero {
  margin: 0 0 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  max-height: min(52vh, 420px);
}

.cms-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 420px);
  object-fit: cover;
}

.cms-hero--fallback {
  min-height: 200px;
  background: linear-gradient(135deg, #dfe6ee 0%, #c8d4e0 45%, #e8eef5 100%);
}

.cms-page-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.cms-page-title--list {
  margin-bottom: 1.25rem;
}

.cms-prose {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
}

.cms-prose p {
  margin: 0 0 0.85rem;
}

.cms-prose h2,
.cms-prose h3 {
  margin: 1.25rem 0 0.5rem;
  font-weight: 800;
  color: var(--text);
}

.cms-prose h3 {
  font-size: 1rem;
  color: #b45309;
}

.cms-prose ul {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
}

.cms-prose a {
  color: var(--accent);
  font-weight: 600;
}

.cms-contact-lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
  max-width: 40rem;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-card);
}

.contact-card strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-card span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.contact-address h2 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-address-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
}

.announce-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.announce-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elev);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.announce-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.65rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  border-bottom: 1px solid var(--border);
}

.announce-card-ic {
  font-size: 1.1rem;
  line-height: 1;
}

.announce-card-title {
  flex: 1;
  margin: 0;
  min-width: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.announce-card-date {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
}

.announce-card-body {
  padding: 1rem 1.1rem 1.25rem;
}

.cms-prose .announce-accent-red,
.announce-card-body .announce-accent-red {
  color: #b91c1c;
}

.cms-prose .announce-subheading,
.announce-card-body .announce-subheading {
  color: #b45309;
  font-size: 0.95rem;
}

.cms-prose .announce-note-label,
.announce-card-body .announce-note-label {
  color: #b91c1c;
}

.admin-announce-row {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--bg-elev);
}

.admin-announce-row-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.admin-announce-row-head .ann-title {
  flex: 1;
  min-width: 160px;
}

.admin-announce-row-head .ann-date {
  width: 11rem;
  flex-shrink: 0;
}

/* Mobil: taşma, güvenli alan, dokunma hedefleri */
@media (max-width: 960px) {
  .nav-parent,
  .nav-child,
  .nav-leaf-only {
    min-height: 44px;
    align-items: center;
  }

  .nav-parent {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .nav-child {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .sidebar-close {
    min-width: 44px;
    min-height: 44px;
    top: max(0.65rem, env(safe-area-inset-top, 0px));
    right: max(0.65rem, env(safe-area-inset-right, 0px));
  }
}

@media (max-width: 720px) {
  body {
    --header-stack-h: 25vh;
  }

  .header-stack {
    z-index: 220;
  }

  .header-stack.is-auto-hidden {
    transform: translateY(calc(-100% - 2px));
    box-shadow: none;
  }

  .top-utility-inner {
    padding-top: 0.26rem;
    padding-bottom: 0.26rem;
    gap: 0.45rem 0.75rem;
  }

  .utility-item {
    font-size: 0.7rem;
    gap: 0.3rem;
  }

  .utility-item strong {
    font-size: 0.7rem;
  }

  .utility-item small {
    display: none;
  }

  .utility-icon {
    width: 24px;
    height: 24px;
  }

  .site-header {
    gap: 0.45rem;
    padding-top: 0.44rem;
    padding-bottom: 0.44rem;
    padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  }

  .brand {
    min-width: 0;
  }

  .brand h1 {
    font-size: clamp(0.9rem, 4.1vw, 1.02rem);
    word-break: break-word;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'search search'
      'menu btnall';
    gap: 0.5rem;
    width: 100%;
    align-items: center;
  }

  .header-actions .search-wrap {
    grid-area: search;
    min-width: 0;
  }

  .header-actions .search-wrap input {
    width: 100%;
    max-width: none;
    font-size: 16px;
    min-height: 36px;
    padding: 0.5rem 0.8rem 0.5rem 2.15rem;
    font-size: 0.9rem;
  }

  .header-actions .menu-toggle {
    grid-area: menu;
    justify-self: start;
  }

  .header-actions > .btn-primary {
    grid-area: btnall;
    justify-self: end;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    font-size: 0.68rem;
    padding: 0.46rem 0.78rem;
  }

  .menu-toggle {
    min-width: 36px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.18rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-top: 0.22rem;
    padding-bottom: 0.22rem;
    padding-left: max(0.5rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.5rem, env(safe-area-inset-right, 0px));
  }

  .main-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .main-nav-link {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.27rem 0.46rem;
    font-size: 0.63rem;
    letter-spacing: 0.07em;
  }

  .main-nav-sep {
    flex: 0 0 auto;
    opacity: 0.38;
  }

  .content {
    padding: 1.1rem max(1rem, env(safe-area-inset-left, 0px)) 1.35rem max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 160px), 1fr));
    gap: 0.9rem;
  }

  .overlay {
    align-items: flex-start;
    padding-top: max(0.5rem, env(safe-area-inset-top, 0px));
  }

  .modal {
    width: min(100%, calc(100vw - 1.5rem));
    max-height: min(92vh, calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1rem));
  }
}

@media (max-width: 420px) {
  .top-utility-inner {
    gap: 0.45rem 0.8rem;
  }

  .utility-item {
    font-size: 0.66rem;
  }

  .utility-item strong {
    font-size: 0.66rem;
  }

  .brand h1 {
    font-size: 0.86rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .main-nav-link {
    min-height: 30px;
    padding: 0.24rem 0.42rem;
    font-size: 0.6rem;
  }
}

@media (max-width: 420px) {
  .specs-row {
    grid-template-columns: 1fr;
  }

  .specs-row dd {
    padding-top: 0.35rem;
    border-top: 1px solid var(--border);
  }
}
