/* Fishmekan — Design System */
:root {
  --abyss: #164264;
  --deep: #1d527a;
  --ocean: #266a96;
  --tide: #3281b0;
  --wave: #4599c9;
  --surface: #60b0dc;
  --glow: #7fc7ea;
  --mist: #c8e4f2;
  --foam: #eef6fb;
  --pearl: #fafcfe;
  --coral: #ff8b6b;
  --gold: #d4a574;

  --text: #e6f3fb;
  --text-muted: #8ba8c4;
  --text-dim: #536a85;

  --border: rgba(168, 216, 240, 0.1);
  --border-strong: rgba(168, 216, 240, 0.2);

  --font-serif: 'Afacad', 'Geist', -apple-system, sans-serif;
  --font-sans: 'Afacad', 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(5, 13, 26, 0.3);
  --shadow: 0 8px 32px rgba(5, 13, 26, 0.4);
  --shadow-lg: 0 24px 64px rgba(5, 13, 26, 0.5);
  --shadow-glow: 0 0 40px rgba(74, 159, 212, 0.3);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--abyss);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: radial-gradient(ellipse at top, #2e6c98 0%, var(--abyss) 45%, #0f2f4a 100%);
  background-attachment: fixed;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Typography utilities */
.serif { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.02em; }
.mono { font-family: var(--font-mono); }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--glow);
  font-family: var(--font-mono);
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.25rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }

.text-lg { font-size: 1.125rem; line-height: 1.55; }
.text-muted { color: var(--text-muted); }
.text-dim { color: var(--text-dim); }

/* Container */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 32px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--glow);
  color: var(--abyss);
}
.btn-primary:hover {
  background: var(--mist);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--foam);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--glow);
}
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(22, 66, 100, 0.6);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
/* Bigger transparent logo, no white card behind it (Enes feedback). */
.logo-img {
  height: 96px;
  width: auto;
  display: block;
  background: transparent;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45));
  transition: transform 0.4s var(--ease);
}
.logo-img:hover { transform: scale(1.03); }
@media (max-width: 768px) {
  .logo-img { height: 72px; }
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}
.nav-links a:hover { color: var(--foam); }
.nav-links a.active {
  color: var(--foam);
  background: rgba(74, 159, 212, 0.12);
}
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-family: var(--font-mono);
}
.lang-toggle button {
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--text-dim);
  transition: all 0.2s;
}
.lang-toggle button.on {
  background: var(--glow);
  color: var(--abyss);
}

/* Cart icon */
.cart-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.cart-btn:hover { border-color: var(--glow); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--coral);
  color: var(--abyss);
  font-size: 10px;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
}

/* Sections */
section { position: relative; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}
/* Bubble-fish canvas: same height as hero, but spans full viewport width
   regardless of container (Enes feedback). */
.hero-canvas {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(5,13,26,0.4) 70%, var(--abyss) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
}
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--glow);
  font-weight: 400;
}
.hero-lede {
  max-width: 560px;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.stat {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--foam);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num em { color: var(--glow); font-style: italic; }
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Section header */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 48px;
  flex-wrap: wrap;
}
.sec-head-left { max-width: 720px; }
.sec-head h2 { margin-top: 16px; }

/* Product filter bar */
.filter-bar {
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(15, 40, 71, 0.4);
  border: 1px solid var(--border);
  border-radius: 999px;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  backdrop-filter: blur(12px);
}
.filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.filter-chip:hover { color: var(--foam); }
.filter-chip.on {
  background: var(--glow);
  color: var(--abyss);
  font-weight: 500;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .product-grid { grid-template-columns: 1fr; } .stat-strip { grid-template-columns: repeat(2, 1fr); } .stat { border-bottom: 1px solid var(--border); } }

.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 40, 71, 0.5) 0%, rgba(10, 22, 40, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.product-visual {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ocean), var(--deep));
}
.product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(74, 159, 212, 0.25) 0%, transparent 50%);
}
.product-illo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(5, 13, 26, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--mist);
  z-index: 2;
}
.product-tag.rare { color: var(--gold); border-color: rgba(212, 165, 116, 0.3); }
.product-tag.new { color: var(--coral); border-color: rgba(255, 139, 107, 0.3); }
.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.product-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--foam);
  line-height: 1.15;
}
.product-latin {
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 2px;
}
.product-origin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.product-specs {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.product-spec { display: flex; flex-direction: column; gap: 2px; }
.product-spec-val { color: var(--foam); font-size: 13px; }

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-price-label {
  font-size: 10px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-price-val {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--foam);
}
.add-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--glow);
  color: var(--abyss);
  display: grid;
  place-items: center;
  transition: all 0.2s;
  font-size: 18px;
  font-weight: 500;
}
.add-btn:hover { background: var(--mist); transform: scale(1.08); }
.add-btn.added { background: #3fb27a; color: white; }

/* Feature grid (About page bits) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 40px;
  background: linear-gradient(180deg, rgba(15, 40, 71, 0.3), rgba(10, 22, 40, 0.6));
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(74, 159, 212, 0.12);
  color: var(--glow);
  display: grid;
  place-items: center;
}
.feature-title { font-size: 20px; font-family: var(--font-serif); font-weight: 600; color: var(--foam); }
.feature-desc { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* Big showcase */
.showcase {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, #0a1f3a 0%, #0a1628 50%, #041226 100%);
  padding: 80px 60px;
  border: 1px solid var(--border);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .showcase-grid { grid-template-columns: 1fr; } .showcase { padding: 48px 32px; } }
.showcase-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at center, var(--tide) 0%, var(--deep) 70%);
  position: relative;
  overflow: hidden;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-rows: 180px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--ocean), var(--deep));
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.gallery-item:hover { transform: scale(1.01); box-shadow: var(--shadow-lg); }
.gallery-item svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.gallery-item .gallery-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--foam);
  z-index: 2;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,13,26,0.7) 100%);
  z-index: 1;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.form-field { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(15, 40, 71, 0.3);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--foam);
  font-family: var(--font-sans);
  font-size: 15px;
  transition: all 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--glow);
  background: rgba(15, 40, 71, 0.5);
}
.form-textarea { min-height: 120px; resize: vertical; font-family: var(--font-sans); }
.form-error { color: var(--coral); font-size: 12px; margin-top: 6px; font-family: var(--font-mono); }

.info-block {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.info-block:last-child { border-bottom: 1px solid var(--border); }
.info-label {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.info-value { font-size: 17px; color: var(--foam); }

/* Footer */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 120px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--glow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* Cart drawer */
.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 26, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--deep);
  border-left: 1px solid var(--border);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.drawer-head h3 { font-size: 22px; font-weight: 700; }
.drawer-close {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  display: grid; place-items: center;
  font-size: 20px; color: var(--text-muted);
}
.drawer-close:hover { background: rgba(255,255,255,0.1); color: var(--foam); }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 28px; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-item-visual {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--tide), var(--deep));
  position: relative; overflow: hidden;
}
.cart-item-name { font-family: var(--font-serif); font-weight: 600; font-size: 17px; color: var(--foam); }
.cart-item-latin { font-size: 11px; color: var(--text-dim); font-style: italic; margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-qty button {
  width: 26px; height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  font-size: 14px; color: var(--foam);
}
.cart-qty button:hover { background: rgba(255,255,255,0.12); }
.cart-qty-val { font-family: var(--font-mono); font-size: 13px; min-width: 20px; text-align: center; }
.cart-item-price { font-family: var(--font-serif); font-size: 16px; color: var(--foam); }
.cart-item-remove { font-size: 11px; color: var(--text-dim); margin-top: 6px; }
.cart-item-remove:hover { color: var(--coral); }
.drawer-foot {
  padding: 24px 28px;
  border-top: 1px solid var(--border);
  background: rgba(5, 13, 26, 0.5);
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
}
.cart-total-label { color: var(--text-muted); font-size: 13px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.cart-total-val { font-family: var(--font-serif); font-weight: 700; font-size: 32px; color: var(--foam); }
.cart-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.cart-empty-icon { font-size: 40px; margin-bottom: 16px; opacity: 0.4; }

/* Tweaks */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 300px;
  background: rgba(5, 13, 26, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 20px;
  z-index: 500;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
}
.tweaks-panel h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweak { margin-bottom: 14px; }
.tweak-label { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; display: flex; justify-content: space-between; }
.tweak-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opt {
  padding: 6px 10px;
  font-size: 11px;
  font-family: var(--font-mono);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.tweak-opt.on { background: var(--glow); color: var(--abyss); border-color: var(--glow); }
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}
.tweak-swatch.on { border-color: var(--foam); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Page transitions */
.page {
  animation: pageIn 0.6s var(--ease-out);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--foam);
  color: var(--abyss);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transition: transform 0.4s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* Map */
.map-wrap {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--ocean);
  position: relative;
}

/* Marquee */
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text-dim);
}
.marquee-track span { display: flex; align-items: center; gap: 60px; }
.marquee-dot { color: var(--glow); }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* Utilities */
.grid { display: grid; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4 { gap: 16px; }
.gap-2 { gap: 8px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.relative { position: relative; }

/* ──────────────────────────────────────────────
   Fishmekan additions — Enes feedback (2026-04-22)
   ────────────────────────────────────────────── */

/* B2B notice — appears in 2-3 spots */
.b2b-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(74,159,212,0.10), rgba(74,159,212,0.02));
  border: 1px solid var(--border-strong);
  font-size: 14px;
  color: var(--mist);
}
.b2b-strip--hero {
  background: rgba(5,13,26,0.55);
  backdrop-filter: blur(6px);
  border-color: rgba(127,199,234,0.35);
  max-width: 620px;
}
.b2b-strip--vertical { flex-direction: column; align-items: flex-start; gap: 6px; padding: 16px 18px; }
.b2b-strip--full { width: 100%; }
.b2b-strip-mark {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--glow);
  color: var(--abyss);
  font-weight: 600;
  flex-shrink: 0;
}
.b2b-strip-text { line-height: 1.45; }
.b2b-pill {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px;
  color: var(--mist);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Section header */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
}
.sec-head-left { max-width: 760px; }
.sec-head-left h2 { margin-top: 14px; }
.sec-head-sub {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 600px;
}
.section-tinted {
  background: linear-gradient(180deg, transparent, rgba(15,40,71,0.35) 50%, transparent);
}

/* Featured fish card — no specs/prices, image + name + Latin + origin */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .featured-grid { grid-template-columns: 1fr; } }
.featured-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.featured-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.featured-visual {
  position: relative;
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(74,159,212,0.18), rgba(5,13,26,0.55));
  overflow: hidden;
  display: grid;
  place-items: center;
}
.featured-visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 30%, rgba(127,199,234,0.15), transparent 40%),
    radial-gradient(circle at 75% 70%, rgba(94,204,192,0.12), transparent 40%);
  pointer-events: none;
}
.featured-body {
  padding: 22px 24px 24px;
}
.featured-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--foam);
  letter-spacing: -0.01em;
}
.featured-latin {
  font-style: italic;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 4px;
}
.featured-origin {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.featured-flag { font-size: 18px; line-height: 1; }

/* Country grid (10 tiles) */
.country-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 1024px) { .country-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .country-grid { grid-template-columns: 1fr; } }
.country-tile {
  padding: 28px 20px 26px;
  background: linear-gradient(180deg, rgba(15,40,71,0.32), rgba(10,22,40,0.55));
  transition: background 0.3s;
}
.country-tile:hover {
  background: linear-gradient(180deg, rgba(15,40,71,0.5), rgba(10,22,40,0.7));
}
.country-tile.placeholder {
  opacity: 0.45;
  font-style: italic;
}
.country-flag { font-size: 30px; margin-bottom: 12px; line-height: 1; }
.country-name {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--foam);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.country-what {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* About prose */
.about-prose p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  max-width: 760px;
}
.about-prose p + p { margin-top: 18px; }

/* Branches grid (about page) */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 720px;
}
@media (max-width: 640px) { .branch-grid { grid-template-columns: 1fr; } }
.branch-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}
.branch-card svg { color: var(--glow); flex-shrink: 0; }
.branch-city {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--foam);
  letter-spacing: -0.01em;
}
.branch-area {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Contact + suppliers form polish */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
@media (max-width: 640px) { .form-grid-2 { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--glow);
  background: rgba(255,255,255,0.06);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-error {
  margin-top: 6px;
  font-size: 12px;
  color: var(--coral);
  font-family: var(--font-mono);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-block {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}
.info-block-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--glow);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.info-block-head svg { color: var(--glow); }
.info-value {
  font-size: 15px;
  color: var(--foam);
  line-height: 1.5;
}
.info-value a { border-bottom: 1px dotted var(--border-strong); }
.info-value a:hover { color: var(--glow); border-color: var(--glow); }
.contact-social {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--glow);
  border-bottom: 1px solid transparent;
}
.contact-social a:hover { border-color: var(--glow); }

/* Suppliers page prose + form */
.suppliers-prose p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  max-width: 820px;
}
.suppliers-prose p + p { margin-top: 14px; }
.suppliers-tr {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.suppliers-tr p { color: var(--text-muted); font-size: 15px; }
.suppliers-form { max-width: 820px; }

/* Buttons additions */
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }

/* Consent banner — KVKK */
.consent-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  max-width: 980px;
  margin: 0 auto;
  animation: consentIn 0.4s var(--ease-out);
}
@keyframes consentIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.consent-text {
  flex: 1;
  font-size: 14px;
  color: var(--mist);
  line-height: 1.5;
}
.consent-actions { display: flex; gap: 10px; flex-shrink: 0; }
@media (max-width: 640px) {
  .consent-banner { flex-direction: column; align-items: stretch; gap: 14px; }
  .consent-actions { justify-content: flex-end; }
}

/* Hero CTAs spacing tweak */
.hero-cta { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

/* ──────────────────────────────────────────────
   Mobile responsiveness — hamburger + drawer + tweaks
   Breakpoint: 880px (below this = mobile/tablet)
   ────────────────────────────────────────────── */

.nav-hamburger {
  display: none;
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: var(--foam);
  transition: all 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); border-color: var(--glow); }
.nav-hamburger:active { transform: scale(0.96); }

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(5,13,26,0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 380px);
  background: linear-gradient(180deg, #0e2a44 0%, #081a2c 100%);
  border-left: 1px solid var(--border-strong);
  box-shadow: -24px 0 64px rgba(0,0,0,0.5);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.nav-drawer-head .logo-img { height: 56px; }
.nav-drawer-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--foam);
  transition: all 0.2s;
}
.nav-drawer-close:hover { background: rgba(255,255,255,0.1); border-color: var(--glow); }

.nav-drawer-links {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}
.nav-drawer-links li { padding: 0 16px; }
.nav-drawer-links a {
  display: flex;
  align-items: center;
  padding: 18px 16px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--mist);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav-drawer-links a:hover { background: rgba(255,255,255,0.04); color: var(--foam); }
.nav-drawer-links a.active {
  color: var(--abyss);
  background: var(--glow);
}

.nav-drawer-lang {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nav-drawer-lang-label {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.nav-drawer-foot {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-drawer-link-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mist);
  text-decoration: none;
}
.nav-drawer-link-row:hover { color: var(--glow); }

/* Mobile toggles — switch nav presentation under 880px */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-hamburger { display: grid; }
  .nav .lang-toggle { display: none; }   /* moved into drawer */
  .nav-inner { padding: 0; }
  .nav { padding: 8px 0; }
}
@media (min-width: 881px) {
  .nav-hamburger { display: none; }
  .nav-scrim { display: none; }
  .nav-drawer { display: none; }
}

/* Tighten hero a bit on phones (canvas already full-width) */
@media (max-width: 880px) {
  .hero { min-height: 92vh; padding-top: 88px; }
  .hero-content { padding: 56px 0 80px; }
  .hero h1 { font-size: clamp(2.6rem, 11vw, 4.5rem); }
  .hero-lede { font-size: 1rem; margin-bottom: 32px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { padding: 14px 22px; font-size: 15px; }
  .b2b-strip { padding: 12px 16px; gap: 10px; font-size: 13px; }
  .b2b-strip-mark { padding: 3px 8px; font-size: 10px; }
}

/* Section padding shrinks on mobile */
@media (max-width: 880px) {
  .section-pad { padding: 72px 0; }
  .section-pad-sm { padding: 48px 0; }
  .container { padding: 0 22px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
  .sec-head .btn { align-self: flex-start; }
}

/* Stat strip — 2x2 below 640 already; soften padding on phones */
@media (max-width: 880px) {
  .stat { padding: 28px 22px; }
  .stat-num { font-size: 38px; }
}

/* Featured / country grids already responsive — give extra mobile padding */
@media (max-width: 480px) {
  .featured-visual { height: 200px; }
  .country-tile { padding: 24px 18px 22px; }
}

/* Gallery — fill width on mobile (override inline span styles) */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 220px;
  }
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

/* Contact form: full-width inputs are already 1-col under 960px */
@media (max-width: 880px) {
  .contact-grid { gap: 32px; }
  .info-block { padding: 16px 18px; }
  .form-input, .form-textarea, .form-select { font-size: 16px; } /* prevent iOS zoom on focus */
}

/* Footer — stack to single col on phones */
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
}

/* Consent banner — already stacks below 640 (.consent-actions). Make buttons full-width. */
@media (max-width: 640px) {
  .consent-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .consent-actions .btn { flex: 1; justify-content: center; }
}

/* Suppliers prose */
@media (max-width: 880px) {
  .suppliers-prose p { font-size: 16px; }
  .about-prose p { font-size: 16px; }
}

/* About branch grid */
@media (max-width: 480px) {
  .branch-card { padding: 18px 18px; gap: 12px; }
  .branch-city { font-size: 19px; }
}
