:root {
  --navy: #0b1f3a;
  --navy-deep: #061427;
  --navy-mid: #143056;
  --gold: #e8a317;
  --gold-soft: #f0c45a;
  --gold-dim: #b87d0e;
  --surface: #f4f6f9;
  --ink: #0b1f3a;
  --ink-muted: #4a5d75;
  --line: rgba(11, 31, 58, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.font-display { font-family: Syne, system-ui, sans-serif; }
.container { width: min(1120px, calc(100% - 2.5rem)); margin-inline: auto; }

.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.is-solid {
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(11, 31, 58, .06);
  backdrop-filter: blur(10px);
}
.site-header.is-transparent { background: transparent; box-shadow: none; border-bottom-color: transparent; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.5rem;
}
.header-logo { height: 3.25rem; width: auto; max-width: min(72vw, 22rem); object-fit: contain; }
@media (min-width: 768px) {
  .header-logo { height: 3.5rem; max-width: 28rem; }
}
.nav { display: none; align-items: center; gap: .25rem; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a { color: rgba(255,255,255,.8); padding: .5rem .75rem; font-size: .9rem; }
.nav a:hover, .nav a.active { color: var(--gold); }
.site-header.is-solid .nav a { color: rgba(11,31,58,.72); }
.site-header.is-solid .nav a:hover,
.site-header.is-solid .nav a.active { color: var(--gold-dim); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.25rem; border-radius: 2px; font-weight: 600; font-size: .9rem;
  border: 1px solid transparent; cursor: pointer; transition: .2s;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost-light {
  background: rgba(255,255,255,.05); color: #fff; border-color: rgba(255,255,255,.3);
}
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  background: transparent; color: var(--navy); border-color: rgba(11,31,58,.2);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dim); }

/* Eski hamburger / dropdown kaldırıldı — mobil alt bar kullanılıyor */
.menu-toggle, .mobile-nav { display: none !important; }

.hero {
  position: relative; isolation: isolate; min-height: 100svh; overflow: hidden;
  color: #fff; background: var(--navy-deep);
  display: flex; align-items: flex-end;
}
@media (min-width: 1024px) { .hero { align-items: center; } }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(6,20,39,.92), rgba(6,20,39,.75) 45%, rgba(6,20,39,.45)),
    linear-gradient(180deg, rgba(6,20,39,.4), transparent 40%, rgba(6,20,39,.95));
}
.hero-content {
  position: relative; z-index: 2; width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto; padding: 7rem 0 4rem;
}
.eyebrow {
  margin: 0 0 1rem; font-family: Syne, sans-serif; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold); font-size: .85rem; font-weight: 600;
}
.hero h1 {
  margin: 0; font-family: Syne, sans-serif; font-weight: 600;
  font-size: clamp(2.2rem, 6vw, 4.2rem); line-height: 1.05; letter-spacing: -.02em;
}
.hero p.lead { margin: 1.25rem 0 0; max-width: 36rem; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.section { padding: 4.5rem 0; }
.section-dark { background: var(--navy-deep); color: #fff; }
.section-white { background: #fff; }
.section-head { max-width: 40rem; margin-bottom: 2.5rem; }
.section-head .label {
  margin: 0 0 .75rem; font-size: .75rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-dim); font-weight: 600;
}
.section-dark .section-head .label { color: var(--gold); }
.section-head h2 {
  margin: 0; font-family: Syne, sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600;
}
.section-head p { margin: 1rem 0 0; color: var(--ink-muted); }
.section-dark .section-head p { color: rgba(255,255,255,.7); }

.grid-3 { display: grid; gap: 2rem; }
@media (min-width: 800px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.service-card { border-top: 1px solid var(--line); padding-top: 1.25rem; transition: border-color .2s; }
.service-card:hover { border-color: var(--gold); }
.service-card .num { font-size: .75rem; letter-spacing: .25em; color: var(--ink-muted); }
.service-card h3 { margin: .75rem 0 .5rem; font-family: Syne, sans-serif; font-size: 1.25rem; }
.service-card p { margin: 0; color: var(--ink-muted); font-size: .9rem; }

.project-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .project-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .project-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card {
  position: relative; display: block; overflow: hidden; background: var(--navy-deep); min-height: 260px;
}
.project-card img {
  width: 100%; height: 100%; min-height: 260px; object-fit: cover;
  transition: transform .7s;
}
.project-card:hover img { transform: scale(1.05); }
.project-card .meta {
  position: absolute; inset: auto 0 0 0; padding: 1.25rem;
  background: linear-gradient(transparent, rgba(6,20,39,.92));
}
.project-card .meta span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.project-card .meta h3 { margin: .4rem 0 0; font-family: Syne, sans-serif; color: #fff; font-size: 1.25rem; }

.cta-band {
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: end; justify-content: space-between;
}
.cta-band h2 { margin: .5rem 0 0; font-family: Syne, sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.page-hero {
  background: var(--navy-deep); color: #fff; padding: 7.5rem 0 3.5rem;
}
.page-hero h1 { margin: .5rem 0 0; font-family: Syne, sans-serif; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { margin: 1rem 0 0; max-width: 40rem; color: rgba(255,255,255,.7); }

.service-row {
  display: grid; gap: 1.25rem; border-top: 1px solid var(--line); padding: 2.5rem 0;
}
@media (min-width: 800px) { .service-row { grid-template-columns: 120px 1fr; gap: 2rem; } }
.service-row .idx { font-family: Syne, sans-serif; font-size: 1.8rem; color: rgba(232,163,23,.8); }
.service-row h2 { margin: 0; font-family: Syne, sans-serif; font-size: 1.6rem; }
.service-row p { margin: .75rem 0 0; color: var(--ink-muted); max-width: 40rem; }

.about-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.1fr .9fr; gap: 4rem; } }
.about-copy p { color: var(--ink-muted); font-size: 1.1rem; }
.about-panel {
  background: var(--navy-deep); color: #fff; padding: 2rem; position: relative; overflow: hidden;
}
.about-panel h3 { margin: 0; font-family: Syne, sans-serif; font-size: 2rem; line-height: 1.2; }
.about-panel p { color: rgba(255,255,255,.65); margin: 1.25rem 0 1.5rem; }
.value-card { border-top: 1px solid var(--line); padding-top: 1.25rem; }
.value-card h3 { margin: .5rem 0; font-family: Syne, sans-serif; }
.value-card p { margin: 0; color: var(--ink-muted); font-size: .9rem; }

.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { margin-bottom: 1.5rem; }
.contact-list .label { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-muted); margin: 0; }
.contact-list a { display: inline-block; margin-top: .4rem; font-size: 1.2rem; }
.contact-list a:hover { color: var(--gold-dim); }
.form-box { border: 1px solid var(--line); background: #fff; padding: 1.5rem; }
.form-box label { display: block; margin: 0 0 .4rem; font-size: .9rem; font-weight: 500; }
.form-box input, .form-box textarea {
  width: 100%; border: 1px solid var(--line); padding: .75rem 1rem; margin-bottom: 1rem;
  font: inherit; background: #fff; color: var(--navy);
}
.form-box input:focus, .form-box textarea:focus { outline: none; border-color: var(--gold); }
.form-box .form-check {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin: .25rem 0 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy);
  cursor: pointer;
}
.form-box .form-check input {
  width: 1.15rem;
  height: 1.15rem;
  margin: .15rem 0 0;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--navy);
  cursor: pointer;
}
.form-box .form-check a {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-box .form-check a:hover { color: var(--navy); }
.form-box .form-check em { color: #b45309; font-style: normal; }
.alert {
  padding: 1rem 1.25rem; margin-bottom: 1rem; border: 1px solid rgba(232,163,23,.4);
  background: rgba(11,31,58,.04);
}

.legal-doc {
  max-width: 46rem;
  color: var(--navy);
}
.legal-doc .legal-meta {
  margin: 0 0 1.75rem;
  font-size: .8rem;
  color: var(--ink-muted);
}
.legal-doc h2 {
  font-family: Syne, sans-serif;
  font-size: 1.2rem;
  margin: 2rem 0 .75rem;
}
.legal-doc p, .legal-doc li {
  color: var(--ink-muted);
  line-height: 1.7;
  font-size: .98rem;
}
.legal-doc ul {
  margin: .5rem 0 0;
  padding-left: 1.2rem;
}
.legal-doc li { margin-bottom: .4rem; }
.legal-doc a { color: var(--gold-dim); text-decoration: underline; text-underline-offset: 2px; }
.legal-doc a:hover { color: var(--navy); }
.legal-doc .legal-note {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

.site-footer {
  background: #fff; color: var(--navy); border-top: 1px solid var(--line);
  margin-top: auto;
}
.footer-grid {
  display: grid; gap: 2.5rem; padding: 3rem 0;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer-logo { width: min(100%, 28rem); height: auto; margin-bottom: 1.25rem; }
.footer-grid p { color: var(--ink-muted); font-size: .9rem; max-width: 24rem; }
.footer-grid h3 {
  margin: 0 0 1rem; font-family: Syne, sans-serif; font-size: .8rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dim);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid li a { color: rgba(11,31,58,.7); font-size: .9rem; }
.footer-grid li a:hover { color: var(--navy); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 1rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: space-between;
  font-size: .75rem; color: var(--ink-muted);
}
.footer-bottom a { color: var(--gold-dim); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: var(--navy); }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.flex-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

/* Referanslar slider */
.refs-section { padding: 3.5rem 0; background: #fff; border-top: 1px solid var(--line); overflow: hidden; }
.refs-section .section-head { margin-bottom: 1.75rem; }
.refs-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.refs-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: refs-scroll 35s linear infinite;
  will-change: transform;
}
.refs-viewport.is-paused .refs-track {
  animation-play-state: paused;
}
@keyframes refs-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ref-card {
  flex: 0 0 auto;
  width: 200px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafbfc;
  border: 1px solid rgba(11,31,58,.08);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.ref-card:hover {
  background: #fff;
  border-color: rgba(232,163,23,.45);
  box-shadow: 0 10px 28px rgba(11,31,58,.07);
}
.ref-card img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .2s;
}
.ref-card:hover img { transform: scale(1.04); }
.ref-card .ref-fallback {
  font-family: Syne, sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  letter-spacing: .02em;
}
@media (prefers-reduced-motion: reduce) {
  .refs-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .refs-viewport { mask-image: none; -webkit-mask-image: none; }
}

/* Ürün kataloğu — profesyonel vitrin */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.catalog-wide { width: min(1240px, calc(100% - 2rem)); margin-inline: auto; }

.catalog-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy-deep); color: #fff;
  padding: 7.5rem 0 3.75rem;
}
.catalog-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 80% at 85% 20%, rgba(232,163,23,.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(20,48,86,.9), transparent 50%),
    linear-gradient(135deg, #061427 0%, #0b1f3a 55%, #143056 100%);
}
.catalog-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px; opacity: .5;
}
.catalog-hero .container,
.catalog-hero .catalog-wide { position: relative; z-index: 1; }
.catalog-hero h1 {
  margin: .35rem 0 0; font-family: Syne, sans-serif; font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -.02em;
  max-width: 16ch;
}
.catalog-hero-lead {
  margin: 1.1rem 0 0; max-width: 34rem; color: rgba(255,255,255,.68); font-size: 1.05rem;
}

.catalog-shell {
  padding: 2.5rem 0 4.5rem;
  background: linear-gradient(180deg, #eef1f5 0%, var(--surface) 28%, #f7f8fa 100%);
}
.catalog-layout {
  display: grid; gap: 1.75rem; align-items: start;
}
@media (min-width: 980px) {
  .catalog-layout { grid-template-columns: 260px minmax(0, 1fr); gap: 2.25rem; }
}

.catalog-aside {
  background: #fff; border: 1px solid rgba(11,31,58,.1);
  padding: 1.35rem 1.25rem 1.5rem;
  position: sticky; top: 5.5rem;
}
@media (max-width: 979px) {
  .catalog-aside { position: static; }
   .catalog-aside .catalog-aside-block:nth-child(2),
  .catalog-aside .catalog-aside-actions { display: none; }
}
.catalog-aside-block { margin-bottom: 1.5rem; }
.catalog-aside-block h2 {
  margin: 0 0 .75rem; font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-muted); font-weight: 700;
}
.catalog-search-field {
  display: flex; align-items: center; gap: .65rem;
  border: 1px solid var(--line); background: var(--surface); padding: 0 .85rem;
}
.catalog-search-field svg { flex: 0 0 auto; color: var(--ink-muted); }
.catalog-search-field input {
  border: 0; background: transparent; width: 100%; height: 2.85rem;
  font: inherit; color: var(--navy); outline: none;
}
.catalog-cat-nav { display: flex; flex-direction: column; gap: .2rem; }
.catalog-cat-nav a {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .7rem .8rem; font-size: .92rem; color: var(--ink-muted);
  border: 1px solid transparent; transition: .2s;
}
.catalog-cat-nav a em {
  font-style: normal; font-size: .75rem; color: rgba(11,31,58,.4);
  font-variant-numeric: tabular-nums;
}
.catalog-cat-nav a:hover { color: var(--navy); background: var(--surface); }
.catalog-cat-nav a.is-active {
  background: var(--navy-deep); color: #fff; border-color: var(--navy-deep);
}
.catalog-cat-nav a.is-active em { color: var(--gold); }
.catalog-select {
  width: 100%; height: 2.85rem; border: 1px solid var(--line);
  background: var(--surface); font: inherit; color: var(--navy); padding: 0 .85rem;
}
.catalog-select:focus {
  outline: none; border-color: rgba(232,163,23,.7);
  box-shadow: 0 0 0 3px rgba(232,163,23,.14);
}
.catalog-aside-actions { display: flex; flex-wrap: wrap; gap: .5rem; }

.catalog-toolbar-bar {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: end; justify-content: space-between;
  margin-bottom: 1.25rem; padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(11,31,58,.1);
}
.catalog-count { margin: 0; font-size: 1.05rem; color: var(--navy); }
.catalog-count strong { font-family: Syne, sans-serif; font-size: 1.35rem; }
.catalog-context { margin: .25rem 0 0; font-size: .88rem; color: var(--ink-muted); }
.catalog-toolbar-mobile { display: none; min-width: min(100%, 220px); }
@media (max-width: 979px) {
  .catalog-toolbar-mobile { display: block; }
}

.catalog-mobile-cats {
  display: none; gap: .45rem; overflow-x: auto; padding-bottom: .35rem;
  margin-bottom: 1.35rem; -webkit-overflow-scrolling: touch;
}
@media (max-width: 979px) {
  .catalog-mobile-cats { display: flex; }
}
.catalog-pill {
  flex: 0 0 auto; padding: .55rem 1rem; font-size: .85rem; font-weight: 600;
  border: 1px solid var(--line); background: #fff; color: var(--ink-muted); white-space: nowrap;
}
.catalog-pill.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }

.catalog-empty {
  text-align: center; padding: 4.5rem 1.25rem;
  background: #fff; border: 1px solid var(--line);
}
.catalog-empty h3 { margin: .35rem 0 .5rem; font-family: Syne, sans-serif; font-size: 1.6rem; }
.catalog-empty p { color: var(--ink-muted); margin: 0 0 1.35rem; }

.product-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.product-grid-related { grid-template-columns: 1fr; }
@media (min-width: 700px) { .product-grid-related { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  background: #fff; border: 1px solid rgba(11,31,58,.1);
  min-height: 100%;
  animation: catalog-rise .55s ease both;
  animation-delay: calc(var(--i, 0) * 45ms);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.product-card:hover {
  border-color: rgba(232,163,23,.5);
  box-shadow: 0 22px 48px rgba(11,31,58,.12);
  transform: translateY(-3px);
}
@keyframes catalog-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .product-card { animation: none; }
}
.product-card-link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.product-card-media {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden;
  background: linear-gradient(145deg, #e8ecf1, #f7f8fa 40%, #dde3ea);
}
.product-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease, filter .35s;
}
.product-card:hover .product-card-media img {
  transform: scale(1.06); filter: brightness(.92);
}
.product-card-overlay {
  position: absolute; inset: auto 1rem 1rem auto;
  background: var(--gold); color: var(--navy-deep);
  font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  padding: .55rem .85rem; opacity: 0; transform: translateY(8px);
  transition: .25s;
}
.product-card:hover .product-card-overlay { opacity: 1; transform: translateY(0); }
.product-card-body {
  padding: 1.15rem 1.2rem 1.25rem; display: flex; flex-direction: column; flex: 1;
}
.product-card-top {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-bottom: .55rem;
}
.product-cat {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-dim); font-weight: 700;
}
.product-stock-pill {
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  padding: .28rem .5rem; border: 1px solid transparent;
}
.product-stock-pill.is-in { color: #1f6b3a; background: rgba(31,107,58,.08); border-color: rgba(31,107,58,.15); }
.product-stock-pill.is-order { color: #8a5a00; background: rgba(232,163,23,.12); border-color: rgba(232,163,23,.28); }
.product-stock-pill.is-out { color: #8a1f1f; background: rgba(176,0,32,.08); border-color: rgba(176,0,32,.18); }
.product-card-body h3 {
  margin: 0 0 .45rem; font-family: Syne, sans-serif;
  font-size: 1.15rem; line-height: 1.25; letter-spacing: -.01em;
}
.product-card-body p {
  margin: 0; color: var(--ink-muted); font-size: .9rem; line-height: 1.5; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card-foot {
  display: flex; align-items: baseline; justify-content: space-between; gap: .75rem;
  margin-top: 1rem; padding-top: .95rem; border-top: 1px solid rgba(11,31,58,.08);
}
.product-price { font-size: 1.15rem; color: var(--navy); font-family: Syne, sans-serif; font-weight: 600; }
.product-price.is-muted {
  color: var(--ink-muted); font-weight: 500; font-size: .85rem;
  font-family: "DM Sans", sans-serif;
}
.product-cta-hint {
  font-size: .8rem; font-weight: 600; color: var(--gold-dim);
  opacity: 0; transform: translateX(-4px); transition: .2s;
}
.product-card:hover .product-cta-hint { opacity: 1; transform: translateX(0); }

.catalog-cta {
  background: var(--navy-deep); color: #fff; padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.catalog-cta-inner {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: end; justify-content: space-between;
}
.catalog-cta h2 {
  margin: .35rem 0 .5rem; font-family: Syne, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.15;
}
.catalog-cta p { margin: 0; color: rgba(255,255,255,.65); max-width: 28rem; }
.catalog-cta-actions { display: flex; flex-wrap: wrap; gap: .65rem; }

.pd-wrap {
  padding: 6.5rem 0 4.5rem;
  background: linear-gradient(180deg, #eef1f5 0%, #fff 18%, #fff 100%);
}
.pd-breadcrumb {
  display: flex; flex-wrap: wrap; gap: .45rem; align-items: center;
  font-size: .85rem; color: var(--ink-muted); margin-bottom: 1.75rem;
}
.pd-breadcrumb a:hover { color: var(--gold-dim); }
.pd-grid {
  display: grid; gap: 2rem; align-items: start;
  background: #fff; border: 1px solid rgba(11,31,58,.1);
  padding: 1rem;
}
@media (min-width: 900px) {
  .pd-grid { grid-template-columns: 1.05fr .95fr; gap: 0; padding: 0; }
}
.pd-media {
  background: linear-gradient(145deg, #e8ecf1, #f7f8fa 45%, #dde3ea);
  overflow: hidden;
}
.pd-media img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.pd-info { padding: 1.25rem 1.25rem 1.5rem; }
@media (min-width: 900px) { .pd-info { padding: 2.5rem 2.75rem; } }
.pd-info h1 {
  margin: .85rem 0 0; font-family: Syne, sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.7rem); line-height: 1.12; letter-spacing: -.02em;
}
.pd-price {
  margin: 1rem 0 0; font-family: Syne, sans-serif;
  font-size: 1.85rem; font-weight: 600; color: var(--navy);
}
.pd-price.is-muted {
  font-size: 1.05rem; font-weight: 500; color: var(--ink-muted);
  font-family: "DM Sans", sans-serif;
}
.pd-summary { margin: 1rem 0 0; color: var(--ink-muted); font-size: 1.05rem; line-height: 1.55; }
.pd-body { margin-top: 1.35rem; color: var(--ink); line-height: 1.75; font-size: .98rem; }
.pd-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.pd-note { margin: 1rem 0 0; font-size: .85rem; color: var(--ink-muted); }
.pd-related { margin-top: 3.5rem; }
.pd-related-head {
  display: flex; align-items: end; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.25rem; padding-bottom: .85rem; border-bottom: 1px solid var(--line);
}
.pd-related-head h2 { margin: 0; font-family: Syne, sans-serif; font-size: 1.5rem; }
.pd-related-head a { font-size: .9rem; font-weight: 600; color: var(--gold-dim); }
.pd-related-head a:hover { color: var(--navy); }

.catalog-main { transition: opacity .2s ease; }
.catalog-main.is-loading { opacity: .42; pointer-events: none; }
.is-hidden { display: none !important; }

/* ——— Mobil alt bar + menü sheet ——— */
.m-dock,
.m-sheet { display: none; }

@media (max-width: 899px) {
  body { padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px)); }
  body.m-menu-open { overflow: hidden; }

  .m-dock {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    position: fixed;
    z-index: 80;
    left: 50%;
    bottom: calc(.65rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    width: min(420px, calc(100% - 1.1rem));
    background: #fff;
    border: 1px solid rgba(11,31,58,.08);
    border-radius: 1.35rem;
    box-shadow: 0 12px 40px rgba(11,31,58,.16);
    padding: .35rem .25rem .45rem;
    min-height: 4.1rem;
  }
  .m-dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    border: 0;
    background: transparent;
    color: var(--ink-muted);
    font: inherit;
    font-size: .62rem;
    font-weight: 600;
    line-height: 1.15;
    text-decoration: none;
    padding: .4rem .15rem;
    cursor: pointer;
    border-radius: .85rem;
    transition: background .2s, color .2s;
    -webkit-tap-highlight-color: transparent;
  }
  .m-dock-item.is-active {
    background: rgba(11,31,58,.06);
    color: var(--navy);
  }
  .m-dock-item.is-active .m-dock-ico { color: var(--gold-dim); }
  .m-dock-ico { display: flex; color: inherit; }
  .m-dock-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -1.35rem;
  }
  .m-dock-logo-wrap {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(11,31,58,.1);
    box-shadow: 0 8px 22px rgba(11,31,58,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .m-dock-logo-wrap img {
    width: 2.1rem;
    height: 2.1rem;
    object-fit: contain;
  }

  .m-sheet {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    pointer-events: none;
  }
  .m-sheet[hidden] { display: none !important; }
  .m-sheet.is-open { pointer-events: auto; }
  .m-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6,20,39,.45);
    opacity: 0;
    transition: opacity .28s ease;
  }
  .m-sheet.is-open .m-sheet-backdrop { opacity: 1; }
  .m-sheet-panel {
    position: absolute;
    inset: 0;
    background: #f3f5f8;
    display: flex;
    flex-direction: column;
    padding: max(1rem, env(safe-area-inset-top)) 1rem calc(1.25rem + env(safe-area-inset-bottom));
    transform: translateY(8%);
    opacity: 0;
    transition: transform .3s ease, opacity .28s ease;
  }
  .m-sheet.is-open .m-sheet-panel {
    transform: translateY(0);
    opacity: 1;
  }
  .m-sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }
  .m-sheet-brand {
    height: 2.6rem;
    width: auto;
    max-width: 70%;
    object-fit: contain;
  }
  .m-sheet-close {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: 0;
    background: rgba(11,31,58,.08);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .m-sheet-list {
    flex: 1;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    padding-bottom: 1rem;
  }
  .m-sheet-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    background: #fff;
    border: 1px solid rgba(11,31,58,.1);
    border-radius: .9rem;
    padding: 1rem 1.1rem;
    font-family: Syne, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  .m-sheet-link svg { color: rgba(11,31,58,.35); flex: 0 0 auto; }
  .m-sheet-link.is-active {
    background: rgba(232,163,23,.14);
    border-color: rgba(232,163,23,.35);
    color: var(--gold-dim);
  }
  .m-sheet-link.is-active svg { color: var(--gold-dim); }
  .m-sheet-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    padding-top: .5rem;
  }
  .m-sheet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.1rem;
    border-radius: .9rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
  }
  .m-sheet-btn-dark {
    background: var(--navy-deep);
    color: #fff;
  }
  .m-sheet-btn-light {
    background: #fff;
    color: var(--navy);
    border: 1px solid rgba(11,31,58,.18);
  }

  .site-footer { padding-bottom: .5rem; }
}

@media (min-width: 900px) {
  .m-dock, .m-sheet { display: none !important; }
}
