/* Fuga POS — Premium Gastronomy POS Website */
:root {
  --bg: #ffffff;
  --bg-soft: #f7f8fa;
  --bg-dark: #0b0b0d;
  --bg-hero: #050b18;
  --text: #1a1a1e;
  --text-muted: #5c5f6a;
  --text-light: #f5f5f7;
  --text-soft: #c8c9d0;
  --primary: #f5a623;
  --primary-hover: #e09412;
  --primary-soft: rgba(245, 166, 35, 0.12);
  --border: #e6e8ee;
  --border-dark: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 40px rgba(15, 15, 20, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 15, 20, 0.14);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1200px;
  --nav-h: 76px;
  --transition: 0.22s ease;
}
.text-accent { color: var(--primary); }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* —— Top bar / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 11, 24, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}
.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #f5a623, #ffcf70, #c4782a, #f5a623);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}
.logo-mark span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-dark);
  box-shadow: inset 0 0 0 3px #f5a623;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.logo-text strong .text-accent { color: var(--primary); }
.logo-text small {
  color: var(--primary);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.nav-phone svg { width: 18px; height: 18px; color: var(--primary); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  width: 42px;
  height: 42px;
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #1a1200;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline-dark:hover {
  border-color: var(--text);
  background: var(--bg-soft);
}
.btn-lg { padding: 0.95rem 1.7rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; }

/* —— Hero —— */
.hero {
  position: relative;
  background: var(--bg-hero);
  color: #fff;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245, 166, 35, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(120, 80, 30, 0.15), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.55));
  z-index: 1;
  pointer-events: none;
}
.hero--photo::before {
  background: radial-gradient(ellipse 70% 50% at 20% 40%, rgba(245, 166, 35, 0.08), transparent 55%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse 70% 55% at 72% 42%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 18% 70%, rgba(245, 166, 35, 0.1), transparent 50%),
    linear-gradient(145deg, #050b18 0%, #0a1628 45%, #07101f 100%);
  background-size: auto, cover, cover, cover;
  background-position: center;
  z-index: 0;
}
.hero--photo .hero-bg {
  background-color: #0a0a0c;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  pointer-events: none;
}
/* full-width centered container inside flex hero */
.hero > .container.hero-inner,
.hero-inner.container {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  max-width: var(--container);
  margin-inline: auto;
  flex: 0 1 auto;
  box-sizing: border-box;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 4.5rem 0 5rem;
}
.hero--no-side .hero-inner {
  grid-template-columns: minmax(0, 1fr);
  max-width: var(--container);
  margin-inline: auto;
}
.hero--no-side .hero-content {
  max-width: 40rem;
}
.hero-content {
  min-width: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  width: 100%;
}
.hero-side-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 28px 50px rgba(0, 0, 0, 0.55));
  position: relative;
  z-index: 1;
}
.hero-side-glow {
  position: absolute;
  width: min(280px, 70%);
  height: min(280px, 70%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.28), transparent 70%);
  filter: blur(10px);
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
  white-space: pre-line;
}
.hero-content h1 .text-accent { color: var(--primary); }
.hero-content .lead {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 34rem;
  margin-bottom: 1.4rem;
  line-height: 1.55;
}
.hero-bullets {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.hero-bullets--grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.25rem;
  max-width: 34rem;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #e8e8ec;
  font-size: 0.95rem;
}
.hero-bullets .ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #1a1200;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-bullets .ico svg { width: 13px; height: 13px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.hero-ctas .btn svg { width: 18px; height: 18px; }

/* —— Hero product cluster —— */
.hero-cluster {
  position: relative;
  width: min(100%, 560px);
  height: 420px;
  margin-inline: auto;
}
.hc-label {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.45rem;
  font-weight: 500;
}
.hc-cloud {
  position: absolute;
  top: 0;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 4;
}
.hc-cloud-icon {
  width: 64px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #7dd3fc, #2563eb 70%);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.55);
}
.hc-cloud-icon svg { width: 28px; height: 28px; }
.hc-cloud span { font-size: 0.7rem; color: #93c5fd; font-weight: 600; }
.hc-pos {
  position: absolute;
  left: 8%;
  top: 12%;
  width: 58%;
  z-index: 3;
}
.hc-screen {
  background: #0f172a;
  border-radius: 12px 12px 6px 6px;
  border: 3px solid #1e293b;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  overflow: hidden;
}
.hc-screen-bar {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0.65rem;
  background: #1e3a8a;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
}
.hc-screen-body { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0.4rem; padding: 0.5rem; }
.hc-lines { display: flex; flex-direction: column; gap: 0.25rem; }
.hc-line {
  display: flex; justify-content: space-between; gap: 0.3rem;
  font-size: 0.58rem; color: #e2e8f0; background: rgba(255,255,255,0.04);
  padding: 0.22rem 0.35rem; border-radius: 4px;
}
.hc-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.3rem; }
.hc-tile {
  background: #fff; border-radius: 6px; padding: 0.3rem;
  text-align: center; color: #0f172a; font-size: 0.85rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.1rem;
}
.hc-tile small { font-size: 0.52rem; font-weight: 600; color: #475569; }
.hc-screen-foot {
  display: flex; justify-content: space-between; padding: 0.4rem 0.65rem;
  background: #f8fafc; color: #0f172a; font-size: 0.72rem;
}
.hc-total { color: #1e3a8a; }
.hc-btns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.25rem; padding: 0.4rem; background: #e2e8f0; }
.hc-btn { text-align: center; font-size: 0.55rem; font-weight: 700; padding: 0.28rem 0; border-radius: 4px; color: #fff; }
.hc-btn--g { background: #16a34a; }
.hc-btn--r { background: #dc2626; }
.hc-btn--o { background: #ea580c; }
.hc-btn--b { background: #2563eb; }
.hc-stand {
  width: 28%; height: 18px; margin: 0 auto;
  background: linear-gradient(180deg, #334155, #0f172a);
  border-radius: 0 0 6px 6px;
}
.hc-kitchen {
  position: absolute;
  right: 0;
  top: 28%;
  width: 42%;
  z-index: 2;
  background: #0b1220;
  border: 2px solid #1e293b;
  border-radius: 10px;
  padding: 0.45rem;
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}
.hc-k-head { display: flex; gap: 0.35rem; margin-bottom: 0.4rem; flex-wrap: wrap; }
.hc-k-head .dot {
  font-size: 0.52rem; font-weight: 700; padding: 0.12rem 0.35rem; border-radius: 4px; color: #fff;
}
.dot--n { background: #2563eb; }
.dot--p { background: #ea580c; }
.dot--d { background: #16a34a; }
.hc-k-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.3rem; }
.hc-k-col {
  background: #111827; border-radius: 6px; padding: 0.35rem; min-height: 54px;
}
.hc-k-col strong { display: block; font-size: 0.58rem; color: #f8fafc; }
.hc-k-col small { font-size: 0.5rem; color: #94a3b8; }
.hc-k-col--active { background: #1e3a8a; }
.hc-mobile {
  position: absolute;
  left: 42%;
  bottom: 2%;
  z-index: 5;
  width: 22%;
}
.hc-phone {
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 14px;
  padding: 0.35rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.hc-phone-notch {
  width: 36%; height: 5px; background: #1e293b; border-radius: 0 0 6px 6px; margin: 0 auto 0.35rem;
}
.hc-phone-body { background: #fff; border-radius: 8px; padding: 0.4rem; min-height: 90px; color: #0f172a; }
.hc-phone-body small { font-size: 0.55rem; font-weight: 700; }
.hc-phone-line {
  height: 5px; background: #e2e8f0; border-radius: 3px; margin: 0.3rem 0;
}
.hc-phone-line.short { width: 60%; }
.hc-phone-btn {
  margin-top: 0.45rem; background: var(--primary); color: #1a1200;
  font-size: 0.55rem; font-weight: 700; text-align: center; padding: 0.3rem; border-radius: 5px;
}
.hc-kiosk {
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 26%;
  z-index: 3;
}
.hc-kiosk-screen {
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 10px 10px 4px 4px;
  aspect-ratio: 3/4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; color: #fff; box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.hc-kiosk-emoji { font-size: 1.6rem; }
.hc-kiosk-screen small { font-size: 0.55rem; font-weight: 600; color: var(--primary); }
.hc-kiosk-body {
  width: 70%; height: 12px; margin: 0 auto;
  background: #e2e8f0; border-radius: 0 0 8px 8px;
}

/* —— Trust bar —— */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 0;
}
.trust-bar--dark {
  background: #0b1220;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.trust-bar--dark .trust-item strong { color: #f8fafc; }
.trust-bar--dark .trust-item span { color: #94a3b8; }
.trust-bar--dark .trust-item .ico {
  background: rgba(245, 166, 35, 0.12);
  color: var(--primary);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.trust-grid--5 { grid-template-columns: repeat(5, 1fr); }
.trust-grid--4 { grid-template-columns: repeat(4, 1fr); }
.trust-grid--3 { grid-template-columns: repeat(3, 1fr); }
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
}
.trust-item .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-item .ico svg { width: 20px; height: 20px; }
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.2;
}
.trust-item span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* —— Sections —— */
.section {
  padding: 4.5rem 0;
}
.section-soft { background: var(--bg-soft); }
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.section-head p {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
}

/* —— Categories —— */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4.2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: #1a1a1e;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-card-bg { transform: scale(1.06); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.cat-card-body {
  position: relative;
  z-index: 2;
  padding: 1.1rem;
  text-align: center;
}
.cat-card .cat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 0.6rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.cat-card .cat-icon svg { width: 20px; height: 20px; }
.cat-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
}
.cat-card p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.2rem;
}

/* —— Advantages —— */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.adv-card {
  text-align: center;
  padding: 0.5rem;
}
.adv-card .ico {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: grid;
  place-items: center;
}
.adv-card .ico svg { width: 26px; height: 26px; }
.adv-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.adv-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* —— Hardware / Products —— */
.hw-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.hw-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.hw-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.hw-card .thumb {
  height: 110px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.hw-card .thumb img {
  max-height: 100px;
  object-fit: contain;
}
.hw-card .thumb-placeholder {
  width: 88px;
  height: 88px;
  border-radius: 16px;
  background: linear-gradient(145deg, #2a2a30, #121216);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.hw-card .thumb-placeholder svg { width: 36px; height: 36px; }
.hw-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.hw-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.section-cta-wrap {
  text-align: center;
  margin-top: 2.25rem;
}

/* —— Products list page —— */
.page-hero {
  background: var(--bg-dark);
  color: #fff;
  padding: 3.5rem 0 2.75rem;
}
.page-hero h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.page-hero p { color: var(--text-soft); max-width: 36rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { opacity: 0.5; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  align-items: center;
}
.filters a, .filters .chip {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: #fff;
  transition: all var(--transition);
}
.filters a:hover, .filters a.active {
  background: var(--bg-dark);
  color: #fff;
  border-color: var(--bg-dark);
}
.search-box {
  display: flex;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.search-box input {
  border: 0;
  padding: 0.5rem 1rem;
  min-width: 200px;
  outline: none;
}
.search-box button {
  border: 0;
  background: var(--bg-dark);
  color: #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card .img-wrap {
  height: 180px;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--border);
}
.product-card .img-wrap img {
  max-height: 150px;
  object-fit: contain;
}
.product-card .body {
  padding: 1.15rem 1.2rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.product-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.product-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex: 1;
}
.product-card .meta {
  margin-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.product-card .price {
  font-weight: 700;
  color: var(--text);
}

/* —— Product detail —— */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}
.detail-media {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.detail-media img { max-height: 320px; object-fit: contain; }
.detail-body .type-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.detail-body h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.detail-body .lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}
.detail-body .content {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.detail-body .content p { margin-bottom: 0.85rem; }
.detail-body .content h2, .detail-body .content h3 { margin: 1.2rem 0 0.5rem; }
.detail-price {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.prose {
  max-width: 720px;
  line-height: 1.75;
}
.prose h2 { font-size: 1.5rem; margin: 1.5rem 0 0.6rem; }
.prose h3 { font-size: 1.2rem; margin: 1.2rem 0 0.5rem; }
.prose p { margin-bottom: 0.9rem; color: var(--text); }
.prose ul { margin: 0.5rem 0 1rem 1.2rem; list-style: disc; color: var(--text-muted); }

/* —— CTA band —— */
.cta-band {
  background: linear-gradient(135deg, #0b0b0d 0%, #1a1208 50%, #0d0d10 100%);
  color: #fff;
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(245, 166, 35, 0.15), transparent 60%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(1.5rem, 2.8vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.cta-inner p { color: var(--text-soft); margin-bottom: 1rem; }
.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.cta-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cta-contacts a:hover { color: var(--primary); }
.cta-contacts svg { width: 16px; height: 16px; }

/* —— Forms —— */
.form-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
}
.alert-success { background: #ecfdf3; color: #067647; border: 1px solid #abefc6; }
.alert-error { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }
.alert-info { background: #eff8ff; color: #175cd3; border: 1px solid #b2ddff; }

/* —— Footer —— */
.site-footer {
  background: #0b0b0d;
  color: var(--text-soft);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand p {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 280px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.28rem 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* —— Module cards (referans feature grid) —— */
.section-modules { background: #fff; padding-top: 3.25rem; }
.mod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.mod-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1rem 1rem;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mod-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.mod-card-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, #eff6ff, #dbeafe);
  color: #2563eb;
  display: grid; place-items: center;
  margin-bottom: 0.75rem;
}
.mod-card-icon svg { width: 22px; height: 22px; }
.mod-card h3 {
  font-size: 0.98rem; font-weight: 700; margin-bottom: 0.3rem; color: #0f172a;
}
.mod-card > p {
  font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; margin-bottom: 0.85rem;
  flex: 1;
}
.mod-card-preview {
  background: #f8fafc;
  border: 1px solid #eef2f7;
  border-radius: 10px;
  min-height: 92px;
  padding: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mp-pos, .mp-kds, .mp-cal, .mp-chart, .mp-book, .mp-qr { width: 100%; }
.mp-bar { height: 8px; background: #1e3a8a; border-radius: 3px 3px 0 0; margin-bottom: 0.3rem; }
.mp-row { height: 6px; background: #e2e8f0; border-radius: 3px; margin-bottom: 0.25rem; }
.mp-row.short { width: 55%; }
.mp-btns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.2rem; margin-top: 0.35rem; }
.mp-btns i { height: 10px; border-radius: 2px; background: #94a3b8; display: block; }
.mp-btns i:nth-child(1) { background: #16a34a; }
.mp-btns i:nth-child(2) { background: #dc2626; }
.mp-btns i:nth-child(3) { background: #ea580c; }
.mp-btns i:nth-child(4) { background: #2563eb; }
.mp-kds { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.3rem; }
.mp-col { background: #0f172a; border-radius: 6px; padding: 0.35rem; min-height: 64px; }
.mp-col b { display: block; height: 6px; width: 70%; background: #94a3b8; border-radius: 2px; margin-bottom: 0.3rem; }
.mp-col s { display: block; height: 4px; background: #334155; border-radius: 2px; margin-bottom: 0.2rem; text-decoration: none; }
.mp-col.on { background: #1e3a8a; }
.mp-cal-h { height: 10px; background: #e2e8f0; border-radius: 4px; margin-bottom: 0.4rem; }
.mp-cal-g { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.2rem; }
.mp-cal-g i { aspect-ratio: 1; border-radius: 3px; background: #eef2f7; display: block; }
.mp-cal-g i.on { background: #f5a623; }
.mp-bars { display: flex; align-items: flex-end; gap: 0.3rem; height: 48px; margin-bottom: 0.35rem; }
.mp-bars i { flex: 1; height: var(--h, 50%); background: linear-gradient(180deg, #60a5fa, #2563eb); border-radius: 3px 3px 0 0; display: block; }
.mp-stat { font-size: 0.72rem; font-weight: 700; color: #0f172a; }
.mp-datev {
  margin-top: 0.4rem; display: inline-block; font-size: 0.65rem; font-weight: 800;
  color: #fff; background: #16a34a; padding: 0.2rem 0.45rem; border-radius: 4px;
}
.mp-qr { text-align: center; }
.mp-qr-box {
  width: 48px; height: 48px; margin: 0 auto 0.3rem;
  background:
    linear-gradient(#0f172a 0 0) 0 0 / 40% 40%,
    linear-gradient(#0f172a 0 0) 100% 0 / 40% 40%,
    linear-gradient(#0f172a 0 0) 0 100% / 40% 40%,
    linear-gradient(#0f172a 0 0) 60% 60% / 20% 20%,
    #f8fafc;
  background-repeat: no-repeat;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
}
.mp-qr small { font-size: 0.65rem; color: #64748b; font-weight: 600; }

.footer-social { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.85rem; }
.footer-social a {
  font-size: 0.8rem; color: var(--text-soft); border: 1px solid var(--border-dark);
  padding: 0.25rem 0.55rem; border-radius: 6px;
}
.footer-social a:hover { color: var(--primary); border-color: var(--primary); }

/* —— Empty / 404 —— */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.empty-state h2 { color: var(--text); margin-bottom: 0.5rem; }

/* —— Responsive —— */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .adv-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
  .hw-grid { grid-template-columns: repeat(3, 1fr); }
  .mod-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid, .trust-grid--6, .trust-grid--5 { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero > .container.hero-inner,
  .hero-inner.container {
    width: min(100% - 1.5rem, var(--container));
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 0 3.5rem;
    text-align: left;
  }
  .hero--no-side .hero-content { max-width: none; }
  .hero-visual { order: -1; width: 100%; }
  .hero-side-img { max-width: min(380px, 100%); margin-inline: auto; }
  .hero-cluster { height: 360px; }
  .detail-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone span { display: none; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: rgba(11, 11, 13, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--border-dark);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-actions .btn-outline { display: none; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .hw-grid { grid-template-columns: 1fr 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .trust-grid, .trust-grid--6, .trust-grid--5, .trust-grid--4 { grid-template-columns: 1fr 1fr; }
  .hero-bullets--grid { grid-template-columns: 1fr; }
  .hero-cluster { height: 300px; transform: scale(0.92); transform-origin: top center; }
  .product-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-box { margin-left: 0; width: 100%; }
  .search-box input { flex: 1; min-width: 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

/* —— Google Translate (optional, admin toggle) —— */
.gtranslate-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 160px;
}
.gtranslate-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
#google_translate_element {
  max-width: 120px;
}
#google_translate_element .goog-te-gadget {
  font-family: var(--font) !important;
  font-size: 0 !important;
  color: transparent !important;
}
#google_translate_element .goog-te-gadget .goog-te-combo {
  font-size: 0.8rem !important;
  font-family: var(--font) !important;
  color: #0f172a !important;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 0.35rem 0.45rem;
  max-width: 118px;
  cursor: pointer;
}
/* Hide Google top banner */
.goog-te-banner-frame.skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-te-balloon-frame {
  display: none !important;
}
body { top: 0 !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
@media (max-width: 900px) {
  .gtranslate-label { display: none; }
  .gtranslate-wrap { max-width: 100px; }
}
