:root {
  --navy: #0a1d33;
  --navy-2: #102844;
  --cyan: #00b5d4;
  --cyan-soft: rgba(0, 181, 212, 0.14);
  --slate: #4b5d74;
  --muted: #64748b;
  --line: #dbe4ef;
  --line-2: #ebf0f6;
  --bg: #f4f7fb;
  --card: #ffffff;
  --dark: #071524;
  --shadow-sm: 0 10px 30px rgba(10, 29, 51, 0.05);
  --shadow: 0 18px 40px rgba(10, 29, 51, 0.08);
  --shadow-lg: 0 30px 80px rgba(10, 29, 51, 0.12);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, var(--bg) 100%);
  color: #0f172a;
  line-height: 1.7;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(1240px, 92vw); margin: 0 auto; }

.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.topbar-actions a { color: rgba(255,255,255,.88); }
.topbar-actions a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 228, 239, 0.95);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy) 0%, #143455 100%);
  color: white;
  font-size: 29px;
  font-weight: 900;
  letter-spacing: -0.05em;
  box-shadow: var(--shadow);
}
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong {
  color: var(--navy);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.brand-copy small {
  color: var(--cyan);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-links > a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}
.nav-links > a:hover,
.nav-links > a.active {
  background: #f2f7fb;
  color: var(--navy);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 14px;
  padding: 0;
  box-shadow: var(--shadow-sm);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
  border-radius: 10px;
}
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-2);
  background: rgba(255,255,255,.96);
}
.mobile-nav.open { display: block; }
.mobile-nav-inner {
  display: grid;
  gap: 6px;
  padding: 14px 0 18px;
}
.mobile-nav a {
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--navy);
  font-weight: 700;
}
.mobile-nav a.active,
.mobile-nav a:hover { background: #f2f7fb; }

.btn,
button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 16px;
  padding: 14px 20px;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover,
button:hover,
.button:hover { transform: translateY(-1px); }
.btn { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: white; box-shadow: var(--shadow); }
.btn.secondary { background: white; color: var(--navy); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.btn.ghost { background: var(--cyan-soft); color: var(--navy); }
.btn.small { padding: 10px 14px; border-radius: 14px; font-size: 13px; }
.btn-nav { margin-left: 8px; }

.section { padding: 84px 0; }
.section-muted { background: linear-gradient(180deg, rgba(235, 242, 249, .55), rgba(255,255,255,0)); }
.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, #143455 100%);
  color: white;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(219, 228, 239, 0.95);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.eyebrow.dark {
  background: rgba(255,255,255,.08);
  color: #a5f3fc;
  border-color: rgba(255,255,255,.12);
}
.section-head h1,
.section-head h2,
.hero-copy h1,
.page-hero h1,
.content h1,
.content h2,
.content h3,
.card h3,
.card h4 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--navy);
}
.section-head h2,
.content h1,
.page-hero h1 { font-size: clamp(34px, 4vw, 54px); }
.section-head p,
.hero-copy p,
.page-hero p,
.content p,
.card p { margin: 0; color: var(--muted); }
.section-dark .section-head h2,
.section-dark .section-head p { color: white; }
.section-dark .section-head p { color: rgba(255,255,255,.7); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 38px;
}
.hero:before,
.hero:after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: .9;
}
.hero:before {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -90px;
  background: radial-gradient(circle, rgba(0,181,212,.18), rgba(0,181,212,0));
}
.hero:after {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 30px;
  background: radial-gradient(circle, rgba(10,29,51,.12), rgba(10,29,51,0));
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  align-items: stretch;
}
.hero-copy,
.hero-card,
.page-hero-card,
.content,
.card,
.sidebar-box,
.filters,
.stat,
.kpi,
.notice,
.quote-feature,
.contact-card,
.cta-band,
.catalog-top,
.pill-grid a,
.pill-grid span {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(219, 228, 239, .95);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 30px;
  border-radius: var(--radius-lg);
}
.hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(42px, 5.8vw, 78px);
}
.hero-copy p {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 18px;
}
.hero-actions,
.inline-actions,
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions { margin-top: 26px; }
.hero-stats { margin-top: 22px; }
.hero-stat {
  min-width: 150px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(10,29,51,.03);
  border: 1px solid rgba(10,29,51,.06);
}
.hero-stat strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}
.hero-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #0c2037 0%, #102844 100%);
  color: white;
  border-color: rgba(255,255,255,.06);
  box-shadow: var(--shadow-lg);
}
.hero-card h3,
.page-hero-card h3,
.sidebar-box h3,
.catalog-top h3,
.contact-card h3,
.quote-feature h3,
.card h3,
.card h4 { font-size: 28px; }
.hero-card h3,
.hero-card p,
.hero-card li,
.hero-card .meta span,
.page-hero-card h3,
.page-hero-card p,
.page-hero-card li { color: white; }
.hero-card p,
.page-hero-card p { color: rgba(255,255,255,.76); }
.hero-points,
.info-list,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-points li,
.info-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero-points li:last-child,
.info-list li:last-child { border-bottom: none; }
.quote-chip-row,
.mini-list,
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.quote-chip-row span,
.mini-list span,
.mini-list a,
.pill-grid span,
.pill-grid a,
.meta span,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 12px;
}
.badge {
  background: var(--cyan-soft);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
}
.meta span,
.mini-list span,
.mini-list a,
.pill-grid span,
.pill-grid a {
  background: #f8fbff;
  border: 1px solid var(--line);
  color: var(--slate);
  font-size: 12px;
  font-weight: 700;
}
.stats,
.kpis,
.grid,
.cards-2,
.cards-3,
.cards-4,
.quote-box,
.two-col,
.footer-grid,
.catalog-layout,
.contact-grid,
.info-cards {
  display: grid;
  gap: 20px;
}
.grid.cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.kpis { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.quote-box, .two-col, .catalog-layout { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; }
.footer-grid { grid-template-columns: 1.2fr .9fr .9fr 1fr; }
.contact-grid { grid-template-columns: 1.15fr .85fr; }
.info-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card,
.content,
.sidebar-box,
.filters,
.stat,
.kpi,
.quote-feature,
.contact-card,
.catalog-top,
.page-hero-card {
  border-radius: var(--radius);
  padding: 26px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card h3 { font-size: 24px; }
.card p { font-size: 15px; line-height: 1.8; }
.card-footer,
.product-card .actions { margin-top: auto; }
.product-card { overflow: hidden; }
.product-card .actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 8px; }
.product-image {
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  border: 1px solid rgba(219, 228, 239, .95);
  background: linear-gradient(135deg, #edf5fb 0%, #f8fbff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image.empty::before {
  content: 'Teknik Ürün Görseli';
  color: #789;
  font-weight: 800;
}
.page-hero {
  padding: 42px 0 18px;
}
.page-hero-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: stretch;
}
.page-hero-copy {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.page-hero-copy h1 { margin-top: 16px; }
.page-hero-copy p { margin-top: 16px; font-size: 17px; }
.page-hero-card {
  background: linear-gradient(135deg, var(--navy) 0%, #133251 100%);
  border-color: rgba(255,255,255,.04);
  color: white;
}
.page-hero-card .meta span { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.14); color: white; }

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--slate); }

.filters {
  padding: 20px;
}
.filters form,
.admin-filters,
.form-grid {
  display: grid;
  gap: 14px;
}
.filters form { grid-template-columns: minmax(0, 1.8fr) repeat(2, minmax(0, 1fr)) auto; }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
input[type=text],
input[type=email],
input[type=password],
input[type=file],
textarea,
select {
  width: 100%;
  background: white;
  border: 1px solid #cfd9e5;
  color: #0f172a;
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus,
textarea:focus,
select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0,181,212,.12);
}
textarea { min-height: 150px; resize: vertical; }
.help { color: var(--muted); font-size: 13px; }
.small-muted { color: var(--muted); font-size: 14px; }
.notice { padding: 16px 18px; }
.notice.success { color: #166534; background: #ecfdf5; border-color: #86efac; }
.notice.error { color: #991b1b; background: #fef2f2; border-color: #fecaca; }
.notice.info { color: #1d4ed8; background: #eff6ff; border-color: #bfdbfe; }
.empty-state {
  padding: 34px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px dashed #c9d5e5;
  background: white;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.table-wrap { overflow-x: auto; }

.hero-ribbon,
.cta-band {
  border-radius: 30px;
  padding: 30px;
}
.hero-ribbon {
  background: linear-gradient(135deg, var(--navy) 0%, #163a5e 100%);
  color: white;
}
.hero-ribbon p,
.hero-ribbon h2,
.hero-ribbon h3,
.hero-ribbon li { color: white; }
.hero-ribbon p { color: rgba(255,255,255,.75); }
.cta-band {
  background: linear-gradient(135deg, #0d2238 0%, #183e61 52%, #00a8c5 130%);
  color: white;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.cta-band h2,
.cta-band p { color: white; }
.cta-band p { color: rgba(255,255,255,.75); }

.catalog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.catalog-top p { margin-top: 6px; }
.results-count {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,181,212,.09);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}
.sidebar-box {
  position: sticky;
  top: 104px;
}
.sidebar-box.dark {
  background: linear-gradient(135deg, var(--navy) 0%, #133251 100%);
  color: white;
  border-color: rgba(255,255,255,.04);
}
.sidebar-box.dark p,
.sidebar-box.dark li,
.sidebar-box.dark h3 { color: white; }
.sidebar-box.dark p { color: rgba(255,255,255,.75); }
.sidebar-box.dark .info-list li { border-bottom-color: rgba(255,255,255,.12); }
.quote-feature {
  background: linear-gradient(180deg, white 0%, #f8fbff 100%);
}
.contact-card {
  background: linear-gradient(180deg, white 0%, #f9fbfd 100%);
}

.site-footer {
  margin-top: 60px;
  padding: 58px 0 20px;
  background: linear-gradient(180deg, #081321 0%, #0d2035 100%);
  color: rgba(255,255,255,.78);
}
.site-footer h4 {
  margin: 0 0 14px;
  color: white;
  font-size: 17px;
  font-weight: 800;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.footer-brand strong { display: block; color: white; font-size: 20px; }
.footer-brand small { color: #7dd3fc; font-size: 12px; text-transform: uppercase; letter-spacing: .2em; font-weight: 800; }
.footer-lead { max-width: 360px; }
.footer-list { display: grid; gap: 10px; }
.footer-list a { color: rgba(255,255,255,.86); }
.footer-list a:hover { color: #fff; }
.footer-contact li { line-height: 1.8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.admin-shell { display: grid; grid-template-columns: 270px minmax(0, 1fr); min-height: 100vh; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px 18px;
  background: linear-gradient(180deg, #081321 0%, #0d2035 100%);
  color: white;
}
.admin-sidebar h2 { margin: 0 0 8px; }
.admin-sidebar p { color: rgba(255,255,255,.66); margin: 0 0 18px; }
.admin-menu { display: grid; gap: 8px; }
.admin-menu a {
  color: rgba(255,255,255,.88);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
}
.admin-menu a.active,
.admin-menu a:hover { background: rgba(255,255,255,.08); }
.admin-main { padding: 24px; }
.admin-card,
.login-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.admin-card { padding: 24px; margin-bottom: 20px; }
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background: linear-gradient(135deg, var(--navy) 0%, #123251 100%);
}
.login-card { width: min(480px, 100%); padding: 28px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.inline-actions { align-items: center; }

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-wrap,
  .footer-grid,
  .contact-grid,
  .quote-box,
  .two-col,
  .catalog-layout,
  .info-cards,
  .grid.cards-4,
  .grid.cards-3,
  .grid.cards-2,
  .stats,
  .kpis {
    grid-template-columns: 1fr;
  }

  .sidebar-box { position: static; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-block; }
  .topbar-copy { display: none; }
  .filters form,
  .admin-filters,
  .form-grid,
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: relative; height: auto; }
  .section { padding: 62px 0; }
  .hero { padding-top: 48px; }
}

@media (max-width: 640px) {
  .brand-copy strong { font-size: 16px; }
  .hero-copy,
  .hero-card,
  .page-hero-copy,
  .page-hero-card,
  .card,
  .content,
  .sidebar-box,
  .filters,
  .contact-card,
  .quote-feature,
  .cta-band,
  .catalog-top { padding: 22px; }
  .hero-actions,
  .inline-actions { display: grid; }
  .btn,
  .button,
  button { width: 100%; }
  .btn.small { width: auto; }
  .container { width: min(1240px, 94vw); }
}

/* --- V2 premium additions --- */
.brand-logo-image {
  width: clamp(210px, 22vw, 360px);
  height: auto;
}
.brand-logo,
.footer-brand-logo {
  display: flex;
  align-items: center;
}
.footer-logo-image {
  width: min(320px, 100%);
  height: auto;
  filter: brightness(0) invert(1);
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #f2f7fb;
  border: 1px solid var(--line);
}
.lang-switch a {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
.lang-switch a.active {
  background: white;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.mobile-lang-switch { justify-content: flex-start; margin-top: 6px; }
.product-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 4px;
}
.summary-pill {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.summary-pill strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 6px;
}
.summary-pill span {
  color: #1e293b;
  font-weight: 700;
}
.spec-grid-premium span {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, white 100%);
}
.premium-rfq-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  margin-top: 28px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(10,29,51,.96) 0%, rgba(16,40,68,.96) 100%);
  box-shadow: var(--shadow-lg);
}
.premium-rfq-band strong,
.premium-rfq-band p { color: white; }
.premium-rfq-band strong { display: block; font-size: 20px; margin-bottom: 4px; }
.premium-rfq-band p { max-width: 540px; color: rgba(255,255,255,.72); }
.quote-preview-card {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbff 0%, white 100%);
  border: 1px solid var(--line);
}
.quote-preview-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}
.admin-brand img {
  width: min(210px, 100%);
  margin-bottom: 10px;
}
.admin-brand p {
  color: rgba(255,255,255,.68);
  margin: 0 0 18px;
}
.admin-kpis {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.admin-quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 0;
}
.admin-quick-link {
  display: block;
  padding: 18px 20px;
  border-radius: 22px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.admin-quick-link strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}
.admin-quick-link span {
  color: var(--muted);
  font-size: 14px;
}
.admin-top .btn { min-width: 150px; }
@media (max-width: 1180px) {
  .product-summary-grid,
  .admin-kpis,
  .admin-quick-links { grid-template-columns: 1fr; }
  .premium-rfq-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .brand-logo-image { width: 220px; }
  .lang-switch { width: 100%; justify-content: space-between; }
}
