/* Eksendoo Shared Components */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: calc(44px * var(--density));
  padding: 0 18px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .05s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  user-select: none;
  cursor: pointer;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: var(--primary-ink); }
.btn-primary:hover { background: var(--primary-600); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: transparent; }
.btn-ghost:hover { background: var(--surface-2); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { opacity: 0.9; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { opacity: 0.9; }
.btn-sm { height: calc(34px * var(--density)); padding: 0 12px; font-size: 13px; }
.btn-lg { height: calc(54px * var(--density)); padding: 0 24px; font-size: 16px; }
.btn-xs { height: calc(28px * var(--density)); padding: 0 10px; font-size: 12px; }
.btn-icon { width: calc(40px * var(--density)); padding: 0; }
.btn-icon-sm { width: calc(34px * var(--density)); padding: 0; }
.btn-full { width: 100%; }

/* ===== Inputs ===== */
.input, .select, .textarea {
  width: 100%;
  height: calc(44px * var(--density));
  padding: 0 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.textarea { height: auto; padding: 12px 14px; min-height: 96px; font-size: 16px; }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--primary);
  box-shadow: var(--ring);
}
.input::placeholder { color: var(--ink-4); }
.input-sm { height: calc(36px * var(--density)); padding: 0 10px; font-size: 13px; }
input[aria-invalid="true"],
textarea[aria-invalid="true"] { border-color: var(--danger) !important; }
ul.errorlist {
  color: var(--danger);
  font-size: 0.82rem;
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--pad-card);
}
.card-flat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.card-hover {
  transition: transform .15s, box-shadow .15s;
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

/* ===== Badges / Chips ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  background: var(--surface-2);
  color: var(--ink-2);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.badge-primary { background: var(--primary-50); color: var(--primary-600); border-color: transparent; }
.badge-success { background: rgba(27,122,62,0.1); color: var(--success); border-color: transparent; }
.badge-warn    { background: rgba(199,119,0,0.1); color: var(--warn); border-color: transparent; }
.badge-danger  { background: rgba(180,35,24,0.1); color: var(--danger); border-color: transparent; }
.badge-navy    { background: rgba(14,42,71,0.08); color: var(--eks-navy); border-color: transparent; }
.badge-dark    { background: var(--ink); color: var(--bg); border-color: transparent; }
.badge-lg { height: 30px; padding: 0 14px; font-size: 13px; }

/* ===== Dividers ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ===== Table ===== */
.eks-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.eks-table th {
  text-align: left;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}
.eks-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  vertical-align: middle;
}
.eks-table tr:last-child td { border-bottom: none; }
.eks-table tr:hover td { background: var(--bg-soft); }

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-3);
  z-index: 999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 50px rgba(37,211,102,0.4);
}

/* ===== Toast messages ===== */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast-msg {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 18px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  font-size: 14px;
  font-weight: 500;
  min-width: 280px;
  max-width: 400px;
  pointer-events: all;
  animation: slideIn .3s ease;
}
.toast-icon { color: var(--eks-green); font-size: 18px; flex-shrink: 0; }
.toast-close {
  background: transparent;
  border: none;
  color: var(--ink-3);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ===== Pagination ===== */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; flex-wrap: wrap; }
.page-item .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, border-color .15s;
}
.page-item.active .page-link {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.page-item .page-link:hover { background: var(--surface-2); }

/* ===== Mobile nav ===== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--bg);
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-3);
}
.mobile-nav-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--ink-3);
  cursor: pointer;
  margin-bottom: 8px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s;
}
.mobile-nav-link:hover { background: var(--surface-2); }

/* ===== Accordion ===== */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}
.accordion-content { display: none; padding-bottom: 14px; font-size: 14px; color: var(--ink-2); }
.accordion-item.open .accordion-content { display: block; }
.accordion-item.open .accordion-chevron { transform: rotate(180deg); }
.accordion-chevron { transition: transform .2s; color: var(--ink-3); }

/* ===== Step indicator (checkout) ===== */
.step-indicator { display: flex; gap: 0; }
.step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-4);
}
.step-item::before {
  content: '';
  position: absolute;
  top: 16px;
  left: calc(50% + 16px);
  right: calc(-50% + 16px);
  height: 2px;
  background: var(--border);
}
.step-item:last-child::before { display: none; }
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: var(--surface);
  color: var(--ink-3);
  position: relative;
  z-index: 1;
}
.step-item.active .step-num { border-color: var(--primary); background: var(--primary); color: #fff; }
.step-item.active { color: var(--primary); }
.step-item.done .step-num { border-color: var(--success); background: var(--success); color: #fff; }
.step-item.done { color: var(--success); }

/* ===== Quantity stepper ===== */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--border); }
.qty-input {
  width: 52px;
  height: 36px;
  border: none;
  border-left: 1px solid var(--border-strong);
  border-right: 1px solid var(--border-strong);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

/* ===== Stars ===== */
.stars { display: inline-flex; gap: 1px; color: #E5A300; }
.stars svg { display: block; }

/* ===== Form label ===== */
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-2);
}
.form-group { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }

/* ===== Utility helpers ===== */
.text-muted { color: var(--ink-3); }
.text-strong { font-weight: 700; }
.price { font-size: 22px; font-weight: 800; color: var(--ink); font-family: var(--font-display); }
.price-sm { font-size: 16px; font-weight: 700; }
.price-lg { font-size: 28px; font-weight: 800; }
.strikethrough { text-decoration: line-through; color: var(--ink-4); }
.mono { font-family: var(--font-mono); }
.uppercase { text-transform: uppercase; letter-spacing: 0.06em; }
.section { padding: 48px 0; }
.section-sm { padding: 24px 0; }

/* ===== B2B Sidebar layout ===== */
.b2b-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 100vh;
}
.b2b-sidebar {
  background: var(--eks-navy);
  color: rgba(255,255,255,0.85);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.b2b-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.b2b-nav-link:hover,
.b2b-nav-link.active { background: rgba(255,255,255,0.1); color: #fff; }
.b2b-content { background: var(--bg-soft); padding: 32px; overflow-y: auto; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .eks-container { padding: 0 16px; }
  .hide-mobile { display: none !important; }
  .b2b-layout { grid-template-columns: 1fr; }
  .b2b-sidebar { display: none; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* ===== Header: utility bar (top dark band) ===== */
.eks-utility-bar { background: var(--ink); color: var(--bg); font-size: 11.5px; }
.eks-utility-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.eks-utility-bar a { color: inherit; opacity: .85; transition: opacity .15s; }
.eks-utility-bar a:hover { opacity: 1; }
.eks-utility-bar-group { display: flex; gap: 18px; align-items: center; }
.eks-utility-bar-item { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Mode switch (B2C / B2B toggle) ===== */
.eks-mode-switch {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 10px;
  padding: 3px;
  border: 1px solid var(--border);
}
.eks-mode-switch a {
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: background .15s, color .15s, box-shadow .15s;
}
.eks-mode-switch a.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.eks-mode-switch a:hover:not(.active) { color: var(--ink); }
.eks-mode-switch .sub {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--ink-3);
  margin-top: 1px;
}

/* ===== Header search ===== */
.eks-search { flex: 1; position: relative; min-width: 0; }
.eks-search input {
  width: 100%;
  height: 40px;
  padding: 0 14px 0 40px;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  font-size: 16px;
}
.eks-search .icon {
  position: absolute;
  left: 14px;
  top: 12px;
  color: var(--ink-3);
  pointer-events: none;
}
.eks-search .submit {
  position: absolute;
  right: 6px;
  top: 6px;
  height: 28px;
  padding: 0 10px;
  background: var(--primary);
  color: var(--primary-ink);
  border-radius: 7px;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.eks-search .submit:hover { background: var(--primary-600); }

/* ===== Icon button (header right cluster) ===== */
.eks-icon-btn {
  height: 40px;
  padding: 0 12px 0 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  transition: background .15s;
}
.eks-icon-btn:hover { background: var(--surface-2); }
.eks-icon-btn .count {
  position: absolute;
  top: 4px;
  left: 22px;
  background: var(--primary);
  color: var(--primary-ink);
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Category nav (under main header) ===== */
.eks-catnav { border-top: 1px solid var(--border); background: var(--bg); }
.eks-catnav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 4px;
  align-items: center;
  overflow-x: auto;
}
.eks-catnav .primary {
  background: var(--primary);
  color: var(--primary-ink);
  height: 40px;
  padding: 0 14px;
  border: 0;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.eks-catnav a {
  background: transparent;
  border: 0;
  height: 40px;
  padding: 0 12px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: color .15s;
}
.eks-catnav a:hover { color: var(--primary); }
.eks-catnav a.cta { color: var(--eks-gold); font-weight: 700; }

/* ===== Section title (kicker + h2 + action) ===== */
.eks-section-title { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.eks-section-title .kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.eks-section-title h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.eks-section-title .action {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

/* ===== KPI card ===== */
.eks-kpi {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.eks-kpi-row { display: flex; justify-content: space-between; align-items: flex-start; }
.eks-kpi-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.eks-kpi-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-top: 8px;
  letter-spacing: -.02em;
}
.eks-kpi-hint { font-size: 11px; color: var(--ink-2); margin-top: 4px; }
.eks-kpi-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eks-kpi-bar { margin-top: 10px; height: 4px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.eks-kpi-bar > span { display: block; height: 4px; border-radius: 999px; }
.eks-kpi.tone-primary .eks-kpi-icon { background: rgba(225,29,46,.12); color: var(--primary); }
.eks-kpi.tone-primary .eks-kpi-bar > span { background: var(--primary); }
.eks-kpi.tone-warn    .eks-kpi-icon { background: rgba(199,119,0,.12); color: var(--warn); }
.eks-kpi.tone-warn    .eks-kpi-bar > span { background: var(--warn); }
.eks-kpi.tone-success .eks-kpi-icon { background: rgba(27,122,62,.12); color: var(--success); }
.eks-kpi.tone-success .eks-kpi-bar > span { background: var(--success); }
.eks-kpi.tone-accent  .eks-kpi-icon { background: rgba(14,42,71,.10); color: var(--accent); }
.eks-kpi.tone-accent  .eks-kpi-bar > span { background: var(--accent); }

/* ===== Status pill ===== */
.eks-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
}
.eks-status-pill.paid     { background: rgba(27,122,62,.12);  color: var(--success); }
.eks-status-pill.pending  { background: rgba(199,119,0,.12);  color: var(--warn); }
.eks-status-pill.preparing{ background: rgba(225,29,46,.12);  color: var(--primary); }
.eks-status-pill.shipped  { background: rgba(14,42,71,.12);   color: var(--accent); }
.eks-status-pill.cancelled{ background: rgba(180,35,24,.12);  color: var(--danger); }

/* ===== Pagination ===== */
.eks-pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
}
.eks-pagination a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: border-color .15s, background .15s;
}
.eks-pagination a.active {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: var(--primary);
}
.eks-pagination a:hover:not(.active) { border-color: var(--primary); }

/* ===== Welcome bar (B2B header) ===== */
.eks-welcome-bar { background: var(--ink); color: var(--bg); }
.eks-welcome-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.eks-welcome-bar .tier-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--eks-saffron);
  text-transform: uppercase;
}
.eks-welcome-bar .greet {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: -.01em;
}
.eks-welcome-bar .actions { display: flex; gap: 10px; }

/* ===== Outline button variant ===== */
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--surface-2); }
.btn-outline.on-dark {
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-outline.on-dark:hover { background: rgba(255,255,255,.08); }

/* ===== Logo lockup ===== */
.eks-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.eks-logo svg { flex-shrink: 0; }
.eks-logo .brand { display: flex; flex-direction: column; line-height: 1; }
.eks-logo .name {
  font-size: 19px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -.02em;
}
.eks-logo .sub {
  font-size: 9px;
  color: var(--ink-3);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.eks-logo .eks-logo-img {
  display: block;
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.eks-logo .brand-sub-only { justify-content: center; }
@media (max-width: 640px) {
  .eks-logo .eks-logo-img { height: 36px; }
}

/* ===== Product card ===== */
.eks-product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.eks-product-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.eks-product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.eks-product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface-2);
  overflow: hidden;
}
.eks-product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eks-product-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 48px;
}
.eks-card-badge {
  position: absolute;
  z-index: 2;
}
.eks-card-badge.top-left { top: 10px; left: 10px; }
.eks-card-badge.top-right { top: 10px; right: 10px; }
.eks-product-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.eks-product-card-body .brand {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eks-product-card-body .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eks-product-card-body .certs { display: flex; gap: 6px; margin-top: 4px; }
.eks-cert-mini {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
  font-size: 11px;
}
.eks-product-card-body .price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}
.eks-product-card-body .price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}
.eks-product-card-body .list-price {
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: line-through;
}
.eks-product-card-action { padding: 0 14px 14px; }

/* ===== Spec table ===== */
.eks-spec-table { width: 100%; border-collapse: collapse; }
.eks-spec-table th, .eks-spec-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 13px;
}
.eks-spec-table th { font-weight: 600; color: var(--ink-2); width: 40%; }
.eks-spec-table td { color: var(--ink); }

/* ===== Delivery info ===== */
.eks-delivery-info { display: flex; flex-direction: column; gap: 12px; }
.eks-delivery-info-row {
  display: flex; gap: 12px; align-items: center;
  padding: 12px; background: var(--surface-2); border-radius: 10px;
}
.eks-delivery-info-row i {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.eks-delivery-info-row strong { display: block; font-size: 13px; font-weight: 600; color: var(--ink); }
.eks-delivery-info-row span { font-size: 11px; color: var(--ink-3); }

/* ===== Tab nav ===== */
.eks-tab-nav {
  display: flex; gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  overflow-x: auto;
}
.eks-tab-nav-item {
  background: transparent; border: 0;
  padding: 14px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-3); cursor: pointer;
  position: relative; white-space: nowrap;
}
.eks-tab-nav-item.active { color: var(--ink); }
.eks-tab-nav-item.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--primary);
}
.eks-tab-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px; padding: 0 6px;
  background: var(--surface-2); color: var(--ink-2);
  border-radius: 9px;
  font-size: 10px; font-weight: 700; margin-left: 6px;
}

/* ===== Filter sidebar ===== */
.eks-filter-sidebar {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px;
  position: sticky; top: 180px; height: fit-content;
}
.eks-filter-group { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border); }
.eks-filter-group:last-of-type { border-bottom: 0; }
.eks-filter-title {
  font-size: 11px; font-weight: 700; color: var(--ink);
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 12px;
}
.eks-filter-price-row { display: flex; gap: 8px; }
.eks-filter-price-row input {
  flex: 1; height: 36px; padding: 0 10px;
  border-radius: 8px; border: 1px solid var(--border-strong);
  background: var(--surface); font-size: 13px;
}
.eks-filter-check {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; font-size: 13px; color: var(--ink); cursor: pointer;
}
.eks-filter-check input { width: 16px; height: 16px; accent-color: var(--primary); }

/* ===== Order summary ===== */
.eks-order-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  position: sticky; top: 180px;
}
.eks-order-summary-title { font-size: 16px; font-weight: 700; margin-bottom: 18px; }
.eks-order-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 13px; color: var(--ink-2);
}
.eks-order-summary-row strong { color: var(--ink); font-weight: 600; }
.eks-order-summary-row.eks-discount strong { color: var(--success); }
.eks-order-summary-row.eks-total { padding-top: 14px; font-size: 16px; }
.eks-order-summary-row.eks-total strong {
  font-size: 22px; font-family: var(--font-display);
}
.eks-order-summary-divider { height: 1px; background: var(--border); margin: 8px 0; }
.eks-free { color: var(--success); font-weight: 700; }

/* ===== Address card ===== */
.eks-address-card {
  display: flex; gap: 14px; padding: 18px;
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--surface); align-items: center;
}
.eks-address-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-50); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.eks-address-card-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.eks-address-card-body strong { font-size: 14px; color: var(--ink); }
.eks-address-card-body span { font-size: 12px; color: var(--ink-2); }

/* ===== Hero ===== */
.eks-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 60%, var(--accent) 100%);
  color: #fff;
  padding: 56px 24px;
  border-radius: 0 0 24px 24px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.eks-hero-inner { max-width: 700px; }
.eks-hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; opacity: .85; margin-bottom: 14px; }
.eks-hero-title { font-family: var(--font-display); font-size: clamp(40px, 5vw, 56px); font-weight: 800; line-height: 1.02; letter-spacing: -.03em; margin: 0; text-wrap: balance; }
.eks-hero-sub { font-size: 15px; line-height: 1.55; opacity: .92; margin-top: 18px; max-width: 460px; }
.eks-hero-cta { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.eks-hero-stats { display: flex; gap: 24px; margin-top: 32px; font-size: 12px; opacity: .9; flex-wrap: wrap; }
.eks-hero-stats span { display: inline-flex; align-items: center; gap: 6px; }

/* ===== Trust strip ===== */
.eks-trust-strip-wrap { max-width: var(--container); margin: -20px auto 0; padding: 0 24px; position: relative; z-index: 2; }
.eks-trust-strip { display: grid; grid-template-columns: repeat(4,1fr); background: var(--surface); border-radius: 14px; border: 1px solid var(--border); box-shadow: var(--shadow-2); }
.eks-trust-item { display: flex; align-items: center; gap: 12px; padding: 18px; border-right: 1px solid var(--border); }
.eks-trust-item:last-child { border-right: 0; }
.eks-trust-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-50); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.eks-trust-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.eks-trust-item span { font-size: 11px; color: var(--ink-3); }

/* ===== Section wrapper ===== */
.eks-section { max-width: var(--container); margin: 56px auto 0; padding: 0 24px; }

/* ===== Category grid ===== */
.eks-cat-grid { display: grid; grid-template-columns: repeat(8,1fr); gap: 12px; margin-top: 24px; }
.eks-cat-tile { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; transition: all .15s; }
.eks-cat-tile:hover { border-color: var(--primary); transform: translateY(-2px); }
.eks-cat-tile-icon { font-size: 28px; }
.eks-cat-tile-name { font-size: 12px; font-weight: 600; color: var(--ink); text-align: center; line-height: 1.2; }

/* ===== Product grid ===== */
.eks-product-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 24px; }

/* ===== Editorial banners ===== */
.eks-editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eks-editorial-card { background: var(--accent); color: #fff; border-radius: 18px; padding: 32px 36px; min-height: 160px; position: relative; transition: transform .15s; display: block; }
.eks-editorial-card:hover { transform: translateY(-2px); }
.eks-editorial-card.eks-editorial-saffron { background: var(--eks-saffron); color: #1a1814; }
.eks-editorial-card .kicker { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-bottom: 8px; }
.eks-editorial-card h3 { font-size: 28px; font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.05; margin: 0; }
.eks-editorial-card p { font-size: 13px; margin-top: 8px; opacity: .85; }
.eks-editorial-card .btn-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; font-size: 12px; font-weight: 700; }

/* ===== B2B teaser ===== */
.eks-b2b-teaser { background: var(--ink); color: var(--surface); border-radius: 24px; padding: 56px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.eks-b2b-teaser h2 { font-family: var(--font-display); font-size: 36px; line-height: 1.1; letter-spacing: -.025em; margin: 12px 0; }
.eks-b2b-teaser p { font-size: 14px; opacity: .8; line-height: 1.6; }
.eks-b2b-teaser .actions { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.eks-b2b-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.eks-b2b-teaser-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 16px; }
.eks-b2b-teaser-card .icon { width: 32px; height: 32px; border-radius: 8px; background: var(--eks-saffron); color: #1a1814; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.eks-b2b-teaser-card .title { font-size: 12px; opacity: .7; }
.eks-b2b-teaser-card .value { font-size: 14px; font-weight: 700; margin-top: 4px; }

@media (max-width: 1024px) {
  .eks-cat-grid { grid-template-columns: repeat(4,1fr); }
  .eks-product-grid { grid-template-columns: repeat(3,1fr); }
  .eks-trust-strip { grid-template-columns: 1fr 1fr; }
  .eks-trust-item { border-right: 0; border-bottom: 1px solid var(--border); }
  .eks-b2b-teaser { grid-template-columns: 1fr; padding: 32px; }
  .eks-editorial-grid { grid-template-columns: 1fr; }
}

/* ===== Breadcrumb ===== */
.eks-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: var(--ink-3); margin-bottom: 14px; flex-wrap: wrap; }
.eks-breadcrumb i { font-size: 9px; }
.eks-breadcrumb a { color: inherit; }
.eks-breadcrumb a:hover { color: var(--primary); }
.eks-breadcrumb span { color: var(--ink); font-weight: 600; }

/* ===== Listing header ===== */
.eks-listing-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; gap: 24px; flex-wrap: wrap; }
.eks-listing-header h1 { font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -.025em; margin: 0; }
.eks-listing-header .muted { font-size: 13px; color: var(--ink-2); margin-top: 6px; }
.eks-listing-controls { display: flex; gap: 10px; align-items: center; }
.eks-sort-form select { height: 36px; padding: 0 12px; border-radius: 8px; border: 1px solid var(--border-strong); background: var(--surface); font-size: 12px; cursor: pointer; }
.eks-view-toggle { display: flex; background: var(--surface-2); border-radius: 8px; padding: 3px; }
.eks-view-toggle a { width: 30px; height: 30px; border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--ink-2); }
.eks-view-toggle a.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-1); }

/* ===== Listing body grid ===== */
.eks-listing-body { display: grid; grid-template-columns: 260px 1fr; gap: 24px; }
.eks-product-grid-4 { grid-template-columns: repeat(4,1fr); }

/* ===== Product list (compact rows) ===== */
.eks-product-list { display: flex; flex-direction: column; gap: 12px; }
.eks-product-row { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px; display: grid; grid-template-columns: 100px 1fr auto auto; gap: 16px; align-items: center; }
.eks-product-row .thumb { width: 100px; height: 100px; background: var(--surface-2); border-radius: 8px; overflow: hidden; display: block; }
.eks-product-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.eks-product-row .info .brand { font-size: 10px; font-weight: 700; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; }
.eks-product-row .info h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin: 4px 0; }
.eks-product-row .info .certs { display: flex; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.eks-product-row .price { text-align: right; }
.eks-product-row .price strong { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); display: block; }
.eks-product-row .price span { display: block; font-size: 11px; color: var(--ink-3); }

/* ===== Empty state ===== */
.eks-empty { text-align: center; padding: 64px 24px; color: var(--ink-3); }
.eks-empty i { margin-bottom: 16px; opacity: .5; }
.eks-empty p { margin-bottom: 24px; font-size: 14px; }

@media (max-width: 1024px) {
  .eks-listing-body { grid-template-columns: 1fr; }
  .eks-product-grid-4 { grid-template-columns: repeat(2,1fr); }
  .eks-filter-sidebar { position: static; }
}

/* ===== PDP ===== */
.eks-pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 24px; }
.eks-pdp-gallery .main { aspect-ratio: 1; background: var(--surface-2); border-radius: 16px; overflow: hidden; position: relative; }
.eks-pdp-gallery .main img { width: 100%; height: 100%; object-fit: cover; }
.eks-pdp-gallery .thumbs { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 12px; }
.eks-pdp-gallery .thumb { aspect-ratio: 1; background: var(--surface-2); border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; padding: 0; }
.eks-pdp-gallery .thumb:hover { border-color: var(--primary); }
.eks-pdp-gallery .thumb img { width: 100%; height: 100%; object-fit: cover; }
.eks-pdp-info .brand { font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; }
.eks-pdp-info h1 { font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 8px 0; }
.eks-pdp-info .meta { display: flex; gap: 16px; align-items: center; font-size: 12px; color: var(--ink-3); }
.eks-pdp-info .stock.in { color: var(--success); }
.eks-pdp-info .stock.out { color: var(--danger); }
.eks-pdp-info .certs { display: flex; gap: 8px; margin: 16px 0; flex-wrap: wrap; }
.eks-pdp-buybox { background: var(--surface-2); border-radius: 14px; padding: 20px; margin: 20px 0; }
.eks-pdp-buybox .price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.eks-pdp-buybox .price { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--ink); }
.eks-pdp-buybox .list-price { font-size: 14px; color: var(--ink-3); text-decoration: line-through; }
.eks-pdp-buybox .qty-form { display: flex; gap: 10px; align-items: stretch; }
.qty-stepper { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 10px; padding: 2px; }
.qty-stepper button { width: 32px; height: 36px; border: 0; background: transparent; cursor: pointer; font-size: 16px; }
.qty-stepper input { width: 50px; text-align: center; border: 0; background: transparent; font-size: 14px; font-weight: 600; }
.eks-pdp-tabs { margin: 56px 0; }
.eks-tab-panels [data-tab-panel] { padding: 24px 0; font-size: 14px; line-height: 1.6; color: var(--ink); }

@media (max-width: 1024px) {
  .eks-pdp-grid { grid-template-columns: 1fr; }
}

/* ===== Cart layout (Sprint 1 — F1) ===== */
.eks-cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; margin-top: 24px; align-items: start; }
.eks-cart-items { display: flex; flex-direction: column; gap: 12px; }
.eks-cart-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; display: grid; grid-template-columns: 80px 1fr auto auto auto; gap: 16px; align-items: center; }
.eks-cart-item .thumb { width: 80px; height: 80px; background: var(--surface-2); border-radius: 8px; overflow: hidden; display: block; }
.eks-cart-item .thumb img { width: 100%; height: 100%; object-fit: cover; }
.eks-cart-item .info .brand { font-size: 10px; font-weight: 700; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; }
.eks-cart-item .info h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin: 4px 0; }
.eks-cart-item .price-each { font-size: 11px; color: var(--ink-3); }
.eks-cart-item .line-total { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--ink); min-width: 90px; text-align: right; }
.eks-cart-item .qty-form { display: inline-flex; align-items: center; gap: 4px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 10px; padding: 2px 4px; }
.eks-cart-item .qty-form .qty-step-btn { width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; font-size: 18px; font-weight: 600; color: var(--ink-2); }
.eks-cart-item .qty-form .qty-value { min-width: 28px; text-align: center; font-size: 14px; font-weight: 600; color: var(--ink); }
.eks-cart-summary { position: sticky; top: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.eks-cart-trust { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; font-size: 11px; color: var(--ink-3); }
.eks-cart-trust span { display: inline-flex; align-items: center; gap: 6px; }
.btn-icon-sm { width: 34px; height: 34px; padding: 0; }
.eks-empty { background: var(--surface); border: 1px dashed var(--border); border-radius: 14px; padding: 64px 24px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; color: var(--ink-3); margin-top: 24px; }
.eks-empty p { font-size: 15px; color: var(--ink-2); margin: 0; }

@media (max-width: 1024px) {
  .eks-cart-layout { grid-template-columns: 1fr; }
  .eks-cart-summary { position: static; }
  .eks-cart-item { grid-template-columns: 60px 1fr; }
  .eks-cart-item .thumb { width: 60px; height: 60px; }
  .eks-cart-item .line-total, .eks-cart-item .qty-form { grid-column: 2; justify-self: start; }
}

/* ===== Stepper (Sprint 1 — F2) ===== */
.eks-stepper { display: flex; gap: 8px; margin: 24px 0; }
.eks-stepper .step { flex: 1; padding: 14px 16px; background: var(--surface-2); border-radius: 10px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-3); }
.eks-stepper .step span { width: 24px; height: 24px; background: var(--ink-3); color: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
.eks-stepper .step.active { background: var(--primary-50); color: var(--primary); }
.eks-stepper .step.active span { background: var(--primary); color: var(--primary-ink, #fff); }
.eks-stepper .step.done span { background: var(--success); color: #fff; }

/* ===== Checkout layout ===== */
.eks-checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
.eks-checkout-main { display: flex; flex-direction: column; gap: 16px; }
.eks-checkout-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.eks-checkout-card h2 { font-size: 18px; font-weight: 700; margin: 0 0 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--ink-2); }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid label span { font-weight: 600; }
.form-grid input { height: 40px; padding: 0 12px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); font-size: 16px; color: var(--ink); }
.form-grid input:focus { border-color: var(--primary); outline: 0; box-shadow: 0 0 0 3px var(--primary-50); }
.field-err { color: var(--danger); font-size: 11px; margin-top: 2px; }
.eks-checkout-side .eks-checkout-summary-wrap { position: sticky; top: 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }

/* ===== Delivery options ===== */
.eks-delivery-options { display: flex; flex-direction: column; gap: 10px; }
.eks-delivery-opt { display: flex; gap: 12px; padding: 14px; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; align-items: center; transition: border-color .15s, background .15s; }
.eks-delivery-opt:has(input:checked) { border-color: var(--primary); background: var(--primary-50); }
.eks-delivery-opt input { accent-color: var(--primary); }
.eks-delivery-opt .opt-body { flex: 1; }
.eks-delivery-opt strong { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.eks-delivery-opt span { font-size: 12px; color: var(--ink-3); }

/* ===== Payment grid ===== */
.eks-payment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.eks-payment-opt { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px; border: 1px solid var(--border); border-radius: 10px; cursor: pointer; transition: border-color .15s, background .15s; }
.eks-payment-opt:has(input:checked) { border-color: var(--primary); background: var(--primary-50); }
.eks-payment-opt input { display: none; }
.eks-payment-opt i { font-size: 24px; color: var(--ink-2); }
.eks-payment-opt:has(input:checked) i { color: var(--primary); }
.eks-payment-opt span { font-size: 12px; font-weight: 600; color: var(--ink); }
.eks-payment-hint { margin-top: 14px; padding: 12px; background: var(--primary-50); border-left: 3px solid var(--primary); border-radius: 6px; font-size: 12px; color: var(--ink-2); line-height: 1.5; }
.eks-payment-hint i { color: var(--primary); margin-right: 4px; }

/* (eski .eks-trust-badges basit stili kaldırıldı — yeni zengin stiller dosyanın altında) */

@media (max-width: 1024px) {
  .eks-checkout-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .eks-payment-grid { grid-template-columns: 1fr; }
  .eks-stepper { flex-wrap: wrap; }
  .eks-stepper .step { flex: 0 1 calc(50% - 4px); }
  .eks-checkout-side .eks-checkout-summary-wrap { position: static; }
}

/* ===== Auth forms ===== */
.eks-auth-wrap { max-width: 460px; margin: 56px auto; padding: 0 24px; }
.eks-auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }
.eks-auth-card h1 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin: 0 0 8px; }
.eks-auth-card p { font-size: 14px; color: var(--ink-2); margin-bottom: 24px; }
.eks-auth-form { display: flex; flex-direction: column; gap: 14px; }
.eks-auth-form label { display: flex; flex-direction: column; gap: 4px; font-size: 12px; color: var(--ink-2); font-weight: 600; }
.eks-auth-form input { height: 44px; padding: 0 14px; border: 1px solid var(--border-strong); border-radius: 10px; background: var(--surface); font-size: 16px; }
.eks-auth-form input:focus { border-color: var(--primary); outline: 0; box-shadow: 0 0 0 3px var(--primary-50); }
.eks-auth-divider { text-align: center; position: relative; margin: 24px 0 16px; }
.eks-auth-divider::before { content: ''; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--border); }
.eks-auth-divider span { background: var(--surface); padding: 0 12px; position: relative; font-size: 12px; color: var(--ink-3); }
.eks-auth-error { background: rgba(180,35,24,.1); color: var(--danger); padding: 12px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }
.eks-auth-error div { padding: 2px 0; }
.eks-auth-bottom-link { display: block; text-align: center; margin-top: 16px; font-size: 12px; color: var(--ink-3); }
.eks-auth-bottom-link:hover { color: var(--primary); }

/* ===== Account layout ===== */
.eks-account-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; margin-top: 24px; }
.eks-account-nav { display: flex; flex-direction: column; gap: 4px; }
.eks-account-nav a { padding: 12px 14px; border-radius: 10px; color: var(--ink-2); display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; transition: background .15s, color .15s; }
.eks-account-nav a:hover { background: var(--surface-2); color: var(--ink); }
.eks-account-nav a.active { background: var(--primary-50); color: var(--primary); }
.eks-order-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.eks-order-table th, .eks-order-table td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; }
.eks-order-table th { font-size: 11px; font-weight: 700; color: var(--ink-3); letter-spacing: .06em; text-transform: uppercase; }

@media (max-width: 1024px) {
  .eks-account-layout { grid-template-columns: 1fr; }
}

/* ===== B2B Dashboard ===== */
.eks-kpi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 24px 0; }

.eks-action-tiles { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 14px; margin: 24px 0; }
.eks-action-tile { border-radius: 16px; padding: 24px; min-height: 200px; display: block; transition: transform .15s; position: relative; overflow: hidden; }
.eks-action-tile:hover { transform: translateY(-2px); }
.eks-action-tile.primary { background: var(--primary); color: var(--primary-ink); }
.eks-action-tile.accent { background: var(--accent); color: #fff; }
.eks-action-tile.neutral { background: var(--surface); color: var(--ink); border: 1px solid var(--border); }
.eks-action-tile i { font-size: 32px; opacity: .9; }
.eks-action-tile h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin: 12px 0 4px; letter-spacing: -.02em; }
.eks-action-tile p { font-size: 13px; opacity: .9; line-height: 1.5; margin-bottom: 18px; max-width: 280px; }
.eks-action-tile small { font-size: 11px; opacity: .75; }
.eks-action-tile .actions { display: flex; gap: 8px; }
.btn-light { background: #fff; color: var(--primary); border: 0; height: 32px; padding: 0 12px; border-radius: 8px; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; }
.btn-light-outline { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); height: 32px; padding: 0 12px; border-radius: 8px; font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; }

.eks-dashboard-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 14px; margin-top: 24px; }
.eks-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.eks-card-header h2 { font-size: 14px; font-weight: 700; margin: 0; }
.eks-card-header .action { color: var(--primary); font-size: 12px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }

.eks-template-list { display: flex; flex-direction: column; gap: 10px; }
.eks-template-row { padding: 14px; border: 1px solid var(--border); border-radius: 10px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.eks-template-row strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.eks-template-row span { font-size: 11px; color: var(--ink-3); }

.muted { color: var(--ink-3); font-size: 14px; text-align: center; padding: 24px; }

@media (max-width: 1024px) {
  .eks-kpi-grid { grid-template-columns: 1fr 1fr; }
  .eks-action-tiles { grid-template-columns: 1fr; }
  .eks-dashboard-split { grid-template-columns: 1fr; }
}

/* ===== B2B cart quick actions ===== */
.eks-cart-quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.eks-quick-tile { display: flex; gap: 12px; padding: 14px; background: var(--primary-50); border: 1px solid transparent; border-radius: 10px; align-items: center; color: var(--primary); transition: background .15s, color .15s; text-decoration: none; }
.eks-quick-tile:hover { background: var(--primary); color: var(--primary-ink, #fff); }
.eks-quick-tile i { font-size: 20px; flex-shrink: 0; }
.eks-quick-tile span { font-size: 13px; line-height: 1.4; }
.eks-quick-tile strong { font-weight: 700; }

@media (max-width: 768px) {
  .eks-cart-quick-actions { grid-template-columns: 1fr; }
}

/* ===== Order template card ===== */
.eks-template-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.eks-template-card-body { padding: 18px; flex: 1; }
.eks-template-card h3 { font-size: 15px; font-weight: 700; margin: 0 0 6px; }
.eks-template-card p { font-size: 12px; color: var(--ink-3); margin: 0 0 12px; }
.eks-template-card .meta { display: flex; gap: 14px; font-size: 11px; color: var(--ink-3); margin: 10px 0; flex-wrap: wrap; }
.eks-template-card .meta i { color: var(--primary); margin-right: 4px; }
.eks-template-card .total { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--ink); }
.eks-template-card .actions { padding: 0 18px 18px; }

/* ===== Order timeline ===== */
.eks-order-timeline { display: flex; gap: 0; margin: 24px 0; padding: 24px; background: var(--surface-2); border-radius: 14px; }
.eks-timeline-step { flex: 1; position: relative; text-align: center; padding: 0 8px; }
.eks-timeline-step:not(:last-child)::after { content: ''; position: absolute; top: 22px; right: -50%; width: 100%; height: 2px; background: var(--border); z-index: 0; }
.eks-timeline-step.done:not(:last-child)::after { background: var(--success); }
.eks-timeline-step .dot { width: 44px; height: 44px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; position: relative; z-index: 1; color: var(--ink-3); }
.eks-timeline-step.done .dot { background: var(--success); border-color: var(--success); color: #fff; }
.eks-timeline-step.current .dot { background: var(--primary); border-color: var(--primary); color: #fff; }
.eks-timeline-step .label { font-size: 12px; font-weight: 600; color: var(--ink); }
.eks-timeline-step .date { font-size: 10px; color: var(--ink-3); margin-top: 2px; }

@media (max-width: 768px) {
  .eks-order-timeline { flex-direction: column; gap: 12px; }
  .eks-timeline-step:not(:last-child)::after { display: none; }
}

/* ===== Error pages ===== */
.eks-error-page {
  max-width: 600px;
  margin: 96px auto;
  padding: 0 24px;
  text-align: center;
}
.eks-error-code {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 16px;
}
.eks-error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  margin: 0 0 12px;
}
.eks-error-page p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.eks-error-page .actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Sprint 5: JS-supporting styles ===== */

/* Sticky header shrink */
.eks-header { transition: box-shadow .2s; }
.eks-header--scrolled { box-shadow: 0 4px 12px rgba(20,17,14,0.06); }
.eks-header--scrolled .eks-utility-bar { display: none; }

/* Mobile menu */
.eks-mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
}
.eks-mobile-toggle:hover { background: var(--surface-2); }

@media (max-width: 1024px) {
  /* Catnav: yatay scroll edilebilir — kategoriler her zaman görünür */
  .eks-catnav { width: 100%; max-width: 100vw; overflow: hidden; }
  .eks-catnav-inner {
    padding: 0 16px;
    gap: 2px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .eks-catnav-inner::-webkit-scrollbar { display: none; }
  /* Flex spacer mobilde scroll'u bozar — gizle */
  .eks-catnav-inner > span[style*="flex:1"] { display: none; }
  .eks-catnav-inner > * { flex-shrink: 0; }
  /* Hamburger gizli — kategoriler zaten görünür */
  .eks-mobile-toggle { display: none; }
  /* Header main row sıkıştırma */
  .eks-mode-switch { display: none; }
  .eks-header-right .eks-icon-btn span:not(.count) { display: none; }
  .eks-icon-btn { width: 40px; padding: 0; justify-content: center; }
  .eks-logo .brand .sub { display: none; }
}

/* ===== Mobil: header satırını kısalt + product grid 2 kolon ===== */
@media (max-width: 768px) {
  .eks-header-main-inner { padding: 8px 12px !important; gap: 8px; }
  .eks-search input { height: 36px; }
  .eks-search .submit { height: 32px; padding: 0 12px; font-size: 11px; }
  .eks-icon-btn { height: 36px; width: 36px; }
  .eks-logo svg { width: 28px; height: 28px; }
  .eks-logo .brand .name { font-size: 15px; }
  /* Catnav kısaltma */
  .eks-catnav a, .eks-catnav .primary { height: 36px; padding: 0 10px; font-size: 12px; }
  /* Product grid → 2 kolon */
  .eks-product-grid,
  .eks-product-grid-4 { grid-template-columns: repeat(2, 1fr) !important; gap: 12px; }
  .eks-cat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile filter drawer */
.eks-filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20,17,14,0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.eks-filter-backdrop--visible { opacity: 1; pointer-events: auto; }

@media (max-width: 1024px) {
  .eks-filter-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    bottom: 0;
    width: 300px;
    z-index: 200;
    overflow-y: auto;
    transition: left .25s ease-out;
    border-radius: 0;
    border: 0;
    box-shadow: var(--shadow-3);
  }
  .eks-filter-sidebar--drawer-open { left: 0; }
}

.eks-filter-open-btn { display: none; }
@media (max-width: 1024px) {
  .eks-filter-open-btn { display: inline-flex; }
}

/* Toast slide-in */
#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast-msg {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--success);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-2);
  font-size: 13px;
  color: var(--ink);
  min-width: 280px;
  max-width: 420px;
  transform: translateX(110%);
  opacity: 0;
  transition: transform .25s ease-out, opacity .25s;
}
.toast-msg--visible { transform: translateX(0); opacity: 1; }
.toast-msg--success { border-left-color: var(--success); }
.toast-msg--info { border-left-color: var(--info); }
.toast-msg--warn { border-left-color: var(--warn); }
.toast-msg--danger { border-left-color: var(--danger); }
.toast-icon { color: var(--success); flex-shrink: 0; }
.toast-close { background: transparent; border: 0; color: var(--ink-3); font-size: 20px; line-height: 1; cursor: pointer; padding: 0 4px; }

/* Cart badge pop animation */
.eks-icon-btn .count { transition: transform .15s; }
@keyframes eks-count-pop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.eks-count--pop { animation: eks-count-pop .3s ease; }

/* Lazy image fade-in */
img[loading="lazy"] { opacity: 0; transition: opacity .3s; }
img[loading="lazy"].eks-img--loaded { opacity: 1; }
img[loading="lazy"]:not([src]) { opacity: 1; }

/* ===== A11y: global focus-visible (K-1) ===== */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}
.btn:focus-visible,
.eks-icon-btn:focus-visible,
.qty-btn:focus-visible,
.qty-step-btn:focus-visible,
.eks-cart-item .qty-form .qty-step-btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  box-shadow: none;
}
.btn-b2b-primary:focus-visible,
.btn-b2b-secondary:focus-visible,
.btn-b2b-danger:focus-visible {
  outline: 3px solid var(--eks-navy);
  outline-offset: 2px;
}

/* ===== B2B button variants (K-4) ===== */
.btn-b2b-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  background: var(--eks-navy);
  color: #fff;
  border: none;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s, background .15s;
}
.btn-b2b-primary:hover { opacity: .88; }
.btn-b2b-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-b2b-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 16px;
  background: transparent;
  color: var(--eks-navy);
  border: 1px solid var(--eks-navy);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
}
.btn-b2b-secondary:hover { background: rgba(14,42,71,.06); }

.btn-b2b-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: transparent;
  color: var(--danger);
  border: 1px solid var(--danger);
  border-radius: var(--r-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
}
.btn-b2b-danger:hover { background: rgba(180,35,24,.08); }

/* ===== Responsive: 768px (M-3 cat grid) ===== */
@media (max-width: 768px) {
  .eks-cat-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Responsive: 640px (M-8 B2B teaser) ===== */
@media (max-width: 640px) {
  .eks-b2b-teaser { padding: 24px 20px; gap: 24px; }
  .eks-b2b-teaser h2 { font-size: clamp(22px, 6vw, 36px); }
  .eks-b2b-teaser-grid { grid-template-columns: 1fr; }
  .eks-welcome-bar .actions { width: 100%; justify-content: flex-start; }
}

/* ===== Responsive: 480px (M-1 footer, M-2 product grid, M-4 header) ===== */
@media (max-width: 480px) {
  /* M-2: product grid 1 col on tiny screens */
  .eks-product-grid,
  .eks-product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  /* M-3: cat grid 2 col */
  .eks-cat-grid { grid-template-columns: repeat(2, 1fr); }
  /* M-4: header search */
  .eks-search { min-width: 120px; }
  .eks-header-main-inner { gap: 8px; padding: 12px 16px; }
  /* Mi-4: stepper sıkıştırma */
  .eks-stepper .step { flex: 0 1 calc(50% - 4px); font-size: 11px; padding: 10px 8px; gap: 6px; }
  .eks-stepper .step span { width: 20px; height: 20px; font-size: 11px; }
  /* Listing header h1 ölçek */
  .eks-listing-header h1 { font-size: clamp(22px, 6vw, 32px); }
}

/* ===== Responsive: 360px (M-2 product grid tek kolon) ===== */
@media (max-width: 360px) {
  .eks-product-grid,
  .eks-product-grid-4 { grid-template-columns: 1fr; }
}

/* ===== Mi-6: welcome bar flex-wrap ===== */
.eks-welcome-bar-inner { flex-wrap: wrap; }

/* ===== Utility bar: mobilde sadece dil + Blog + Pomoć ===== */
@media (max-width: 768px) {
  .eks-util-hide-mobile { display: none !important; }
  .eks-utility-bar-inner { justify-content: center; }
}

/* ===== Trust badges — ödeme + kargo güven göstergeleri ===== */
.eks-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.eks-trust-group { display: flex; flex-direction: column; gap: 8px; }
.eks-trust-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eks-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.eks-trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  min-height: 32px;
  min-width: 56px;
  box-shadow: 0 1px 1px rgba(20,17,14,0.04);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  line-height: 1;
}
.eks-trust-badge i { font-size: 12px; color: var(--ink-3); }

/* Visa rozetı — lacivert wordmark sarı altçizgi */
.bw-visa {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 14px;
  letter-spacing: -.02em;
  color: #1A1F71;
  position: relative;
  padding-bottom: 3px;
}
.bw-visa::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #F7B600;
}

/* Mastercard / Maestro — iki daire */
.bw-mc, .bw-maestro {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  position: relative;
  padding: 0 2px;
}
.bw-mc .mc-c1, .bw-maestro .mc-c1 {
  width: 14px; height: 14px; border-radius: 50%;
  background: #EB001B;
}
.bw-mc .mc-c2, .bw-maestro .mc-c2 {
  width: 14px; height: 14px; border-radius: 50%;
  background: #F79E1B;
  margin-left: -6px;
  mix-blend-mode: multiply;
}
.bw-maestro .mae-blue { background: #0099DF; }
.bw-maestro .mae-red { background: #ED0006; }
.bw-mc em, .bw-maestro em {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: .02em;
  color: var(--ink-2);
  margin-left: 4px;
}

/* DinaCard — Sırp ulusal kart sistemi */
.bw-dina {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: -.01em;
  color: #FFFFFF;
  background: linear-gradient(135deg, #E30613 0%, #B30510 100%);
  padding: 3px 8px;
  border-radius: 3px;
}

.eks-trust-3ds {
  background: var(--primary-50);
  border-color: var(--primary);
  color: var(--primary);
}
.eks-trust-3ds i { color: var(--primary); }

/* Gerçek logo rozetleri — kart en-boy oranını koruyacak şekilde */
.eks-trust-badge.eks-logo {
  padding: 6px 12px;
  min-height: 40px;
  min-width: 64px;
}
.eks-trust-badge.eks-logo img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
}
.eks-trust-badge.eks-logo[title="Halkbank Srbija"] img,
.eks-trust-badge.eks-logo[title="DinaCard"] img { max-width: 56px; }
.eks-trust-badge.eks-logo[title="Mastercard"] img,
.eks-trust-badge.eks-logo[title="Visa"] img { max-width: 60px; }
@media (max-width: 640px) {
  .eks-trust-badge.eks-logo { min-height: 34px; padding: 4px 9px; }
  .eks-trust-badge.eks-logo img { height: 22px; max-width: 60px; }
}

.eks-ship i { color: var(--accent); }
.eks-ship-own { background: var(--primary); color: #FFFFFF; border-color: var(--primary); }
.eks-ship-own i { color: var(--accent); }

/* Variants */
.eks-trust-footer { padding: 16px 0; }
.eks-trust-checkout, .eks-trust-basket {
  margin-top: 16px;
  padding: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

@media (max-width: 640px) {
  .eks-trust-badges { gap: 14px; }
  .eks-trust-badge { padding: 5px 8px; font-size: 10.5px; min-height: 28px; }
  .eks-ship-own span,
  .eks-ship span { display: inline; }
}

/* ===== Mobil sticky PDP CTA — masaüstünde gizli ===== */
.eks-pdp-sticky-mobile { display: none; }
.eks-pdp-sticky-spacer { display: none; }
@media (max-width: 768px) {
  .eks-pdp-sticky-spacer { display: block; height: 84px; }
}
@media (max-width: 768px) {
  .eks-pdp-sticky-mobile {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 18px rgba(20,17,14,0.08);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 12px;
    align-items: center;
  }
  .eks-pdp-sticky-mobile .sticky-price { flex: 1; display: flex; flex-direction: column; line-height: 1.15; }
  .eks-pdp-sticky-mobile .sticky-price .p { font-weight: 800; font-size: 18px; color: var(--ink); }
  .eks-pdp-sticky-mobile .sticky-price .s { font-size: 12px; color: var(--ink-3); }
  .eks-pdp-sticky-mobile .sticky-price .s.in { color: var(--success); }
  .eks-pdp-sticky-mobile .sticky-price .s.out { color: var(--danger); }
  .eks-pdp-sticky-mobile .btn { flex: 0 0 auto; min-width: 140px; }
  /* mobilde alt navigasyon engelini önlemek için içerik padding */
  body.has-sticky-pdp { padding-bottom: 76px; }
}
