:root {
  --bg: #fff;
  --surface: #f0f2f5;
  --border: rgba(0, 0, 0, 0.06);
  --text: #111318;
  --text2: rgba(17, 19, 24, 0.55);
  --text3: rgba(17, 19, 24, 0.28);
  --accent: #304E82;
  --accent-glow: rgba(48, 78, 130, 0.10);
  --nav-bg: rgba(255, 255, 255, 0.85);
  --hero-grad: #e8eef3;
  --footer-bg: #f0f2f5;
  --stat-bg: #f0f2f5;
  --card-hover: rgba(0, 0, 0, 0.12);
  --cta-bg: #304E82;
  --cta-text: #ffffff;
  --cta-hover: #243d6b;
}

[data-theme="dark"] {
  --bg: #1a2842;
  --surface: #243558;
  --border: rgba(255, 255, 255, 0.08);
  --text: #fafafa;
  --text2: rgba(255, 255, 255, 0.65);
  --text3: rgba(255, 255, 255, 0.35);
  --accent: #7eb8e0;
  --accent-glow: rgba(126, 184, 224, 0.15);
  --nav-bg: rgba(26, 40, 66, 0.92);
  --hero-grad: #1a2842;
  --footer-bg: #1a2842;
  --stat-bg: #243558;
  --card-hover: rgba(255, 255, 255, 0.15);
  --cta-bg: #304E82;
  --cta-text: #ffffff;
  --cta-hover: #3d62a3;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=EB+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap');

html { scroll-behavior: smooth }
body {
  font-family: 'EB Garamond', 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  letter-spacing: 0;
  line-height: 1.6;
  transition: background .5s, color .5s
}

.ctn { max-width: 1280px; margin: 0 auto; padding: 0 40px }
.sl {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--accent); margin-bottom: 16px
}
.st {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: var(--text);
  letter-spacing: -0.02em; line-height: 1.15; transition: color .5s
}
.sd {
  font-size: 17px; color: var(--text2); line-height: 1.7;
  max-width: 600px; font-weight: 400; margin-top: 16px;
  letter-spacing: 0; transition: color .5s
}
.al { width: 0; height: 1px; background: var(--accent); transition: width 1.2s cubic-bezier(.16,1,.3,1) .3s }
.al.v { width: 60px }
.rv { opacity: 0; transform: translateY(60px); transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1) }
.rv.v { opacity: 1; transform: translateY(0) }
.rv.d1 { transition-delay: .1s }
.rv.d2 { transition-delay: .2s }
.rv.d3 { transition-delay: .3s }

/* ── Nav ── */
.nv {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 40px;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .5s, border-color .5s
}
.nv.sc {
  /* Stil identic - nav-ul stă mereu solid */
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--border)
}
/* edit Marius — 23.06.2026 */
.nv-in {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 100px
}
.nv-logo { cursor: pointer; display: flex; align-items: center; text-decoration: none }
.nv-logo img { height: 250px; width: auto; display: block }

/* Dark mode: logo dinamic devine alb (filter brightness 0 + invert) */
[data-theme="dark"] .nv-logo img {
  filter: brightness(0) invert(1);
}
/* edit Marius — 22.06.2026 */
.nv-lnk { display: flex; gap: 6px; align-items: center; list-style: none }
.nv-lnk > li > a {
  background: transparent;
  color: #304E82;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .3s, color .3s;
  padding: 10px 16px;
  border-radius: 6px;
  display: block;
  box-shadow: none;
}
.nv-lnk > li > a:hover,
.nv-lnk > li.active > a,
.nv-lnk > li > a.active {
  background: #304E82;
  color: #ffffff;
}

/* Pe fundal albastru (dark mode) - text alb fără fundal default */
[data-theme="dark"] .nv-lnk > li > a {
  color: #ffffff;
}
[data-theme="dark"] .nv-lnk > li > a:hover,
[data-theme="dark"] .nv-lnk > li.active > a,
[data-theme="dark"] .nv-lnk > li > a.active {
  background: #304E82;
  color: #ffffff;
}

/* Dropdown */
.has-drop { position: relative }
/* Invisible bridge that keeps hover active across the visual gap */
.nv-lnk > .has-drop::before {
  content: ''; position: absolute;
  top: 100%; left: -20px; right: -20px; height: 14px;
}
.nv-lnk > .has-drop > .drop {
  position: absolute; top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 300; background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 6px; min-width: 200px; list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.1)
}
.nv-lnk > .has-drop:hover > .drop {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0)
}
.drop > li { position: relative; list-style: none }
.drop > li > a {
  display: flex !important; justify-content: space-between; align-items: center;
  padding: 10px 14px !important; border-radius: 7px;
  color: var(--text2) !important; font-size: 11px !important; font-weight: 500 !important;
  letter-spacing: 1px !important; text-transform: uppercase !important;
  text-decoration: none; white-space: nowrap;
  transition: color .2s, background .2s
}
.drop > li > a:hover { color: var(--text) !important; background: var(--surface) }
/* Bridge invizibil între item-ul has-drop și sub-dropdown */
.drop .has-drop::after {
  content: ''; position: absolute;
  top: 0; right: -10px; width: 16px; height: 100%;
  z-index: 401;
}
/* Item hover - păstrează evidențiat când navighezi spre sub-dropdown */
.drop .has-drop:hover > a { color: var(--text) !important; background: var(--surface) }
/* Nested dropdown */
.drop .drop {
  position: absolute; top: -6px; left: calc(100% + 2px);
  transform: translateX(-4px); opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  visibility: hidden;
  z-index: 400;
  background: var(--nav-bg); backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--border); border-radius: 12px;
  padding: 6px; min-width: 180px; list-style: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.1)
}
.drop .has-drop:hover > .drop,
.drop .has-drop > .drop:hover {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(0)
}
.drop .has-drop > a::after { content: '›'; font-size: 14px; color: var(--text3); margin-left: 8px; flex-shrink: 0 }

/* Delay pe închiderea dropdown-ului principal pentru a permite mișcarea mai relaxată */
.nv-lnk > .has-drop > .drop {
  transition-delay: 0s;
}
.nv-lnk > .has-drop:not(:hover) > .drop {
  transition-delay: .15s;
}

/* Theme toggle */
.tt {
  width: 40px; height: 40px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color .3s; flex-shrink: 0; margin-left: 8px
}
.tt:hover { border-color: var(--accent) }
.tt svg { width: 16px; height: 16px; stroke: var(--text2); fill: none; stroke-width: 1.5 }

/* Hamburger */
.nv-mob {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px
}
.nv-mob span { width: 22px; height: 1.5px; background: var(--text2); transition: all .3s; display: block }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 140px 40px 80px; overflow: hidden;
  background: linear-gradient(180deg, var(--hero-grad), var(--bg)); transition: background .5s
}
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 80% 60% at 50% 40%, var(--accent-glow), transparent) }
.hero-ring { position: absolute; top: 20%; left: 50%; transform: translate(-50%,-50%); border-radius: 50%; border: 1px solid var(--border); pointer-events: none }
.hero-ring.sm { width: 600px; height: 600px; opacity: .4 }
.hero-ring.lg { width: 900px; height: 900px; opacity: .2 }
.hero-ct { position: relative; z-index: 2 }
.hero-ey { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 32px }
.hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(40px,7vw,80px); font-weight: 400; color: var(--text); line-height: 1.15; margin-bottom: 28px; letter-spacing: -0.02em; max-width: 800px; transition: color .5s }
.hero h1 em { font-style: normal; color: var(--accent); font-weight: 300 }
.hero-sub { font-size: 17px; color: var(--text2); max-width: 460px; margin: 0 auto 44px; line-height: 1.7; font-weight: 400 }
.btn {
  background: var(--cta-bg); color: var(--cta-text); border: 1px solid var(--cta-bg);
  padding: 14px 40px; border-radius: 50px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
  transition: all .4s; font-family: inherit; text-decoration: none; display: inline-block;
  box-shadow: 0 2px 12px rgba(48, 78, 130, 0.15);
}
.btn:hover {
  background: var(--cta-hover); border-color: var(--cta-hover);
  color: #fff; box-shadow: 0 4px 18px rgba(48, 78, 130, 0.30);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--cta-bg); color: var(--cta-text); border-color: var(--cta-bg);
  box-shadow: 0 4px 18px rgba(48, 78, 130, 0.25);
}
.btn-accent:hover {
  background: var(--cta-hover); border-color: var(--cta-hover);
  box-shadow: 0 6px 24px rgba(48, 78, 130, 0.40);
  transform: translateY(-1px);
}
/* Variantă outline pentru cazuri secundare */
.btn-outline {
  background: transparent; color: var(--text); border: 1px solid var(--text3);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--cta-bg); color: var(--cta-text); border-color: var(--cta-bg);
}
.hero-vis {
  margin-top: 80px; width: 100%; max-width: 1100px; aspect-ratio: 16/7;
  border-radius: 20px; overflow: hidden; position: relative;
  border: 1px solid var(--border); background: var(--surface)
}
.hero-vis-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, var(--accent-glow), transparent 70%) }
.hero-vis-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; color: var(--text3) }
.hero-vis-ph svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: .7 }
.hero-vis-ph span { font-size: 13px; letter-spacing: 1px }

/* Video în hero-vis */
.hero-vis-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
}
.hero-vis-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}
/* Overlay subtil care integrează videoul cu designul (vignette + accent) */
.hero-vis-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 60%, rgba(0,0,0,0.15) 100%);
  pointer-events: none;
  border-radius: 20px;
}
.sh { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%) }
.sh div { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--text3)) }

/* ── Stats ── */
.stats { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--stat-bg); transition: background .5s }
.stats-g { display: grid; grid-template-columns: repeat(4,1fr); padding: 60px 0 }
.stat { text-align: center; opacity: 0; transform: translateY(20px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1) }
.stat+.stat { border-left: 1px solid var(--border) }
.stat.v { opacity: 1; transform: translateY(0) }
.stat-val { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(32px,4vw,44px); font-weight: 500; color: var(--text); letter-spacing: -0.02em; transition: color .5s }
.stat-lbl { font-size: 12px; color: var(--text3); margin-top: 8px; letter-spacing: 0.08em; text-transform: uppercase }

/* ── Sections ── */
.sec { padding: 140px 0 }
.sec-b { border-top: 1px solid var(--border) }
.pr { display: flex; gap: 64px; align-items: center; padding: 100px 0; flex-wrap: wrap }
.pr.flip { flex-direction: row-reverse }
.pr-info { flex: 1; min-width: 280px }
.pr-lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); margin-bottom: 16px; opacity: 0; transition: opacity .8s ease .2s }
.pr-ttl { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 48px; font-weight: 400; color: var(--text); margin: 20px 0 8px; letter-spacing: -0.02em; line-height: 1.15; opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(.16,1,.3,1) .3s }
.pr-spec { font-size: 16px; font-weight: 500; color: var(--accent); margin-bottom: 20px; opacity: 0; transition: opacity .8s ease .5s }
.pr-desc { font-size: 16px; color: var(--text2); line-height: 1.7; max-width: 420px; opacity: 0; transform: translateY(20px); transition: all .8s cubic-bezier(.16,1,.3,1) .5s }
.pr-link { display: inline-block; margin-top: 28px; font-size: 16px; color: var(--text2); text-decoration: none; border-bottom: 1px solid var(--text3); padding-bottom: 2px; transition: color .3s, border-color .3s; opacity: 0; cursor: pointer }
.pr-link:hover { color: var(--text); border-color: var(--text) }
.pr.v .pr-lbl, .pr.v .pr-spec, .pr.v .pr-link { opacity: 1 }
.pr.v .pr-ttl, .pr.v .pr-desc { opacity: 1; transform: translateY(0) }
.pr-vis { flex: 1; min-width: 320px; aspect-ratio: 4/3; background: var(--surface); border-radius: 16px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; opacity: 0; transform: translateX(40px) scale(.96); transition: all 1s cubic-bezier(.16,1,.3,1) .2s }
.pr.flip .pr-vis { transform: translateX(-40px) scale(.96) }
.pr.v .pr-vis { opacity: 1; transform: translateX(0) scale(1) }
.pr-vis-in { text-align: center; color: var(--text3); font-size: 13px; z-index: 1 }
.pr-vis-in svg { width: 44px; height: 44px; stroke: currentColor; fill: none; stroke-width: .8; display: block; margin: 0 auto 8px }
.pr-vis-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 70% 50%, var(--accent-glow), transparent 70%) }
.pr.flip .pr-vis-glow { background: radial-gradient(ellipse at 30% 50%, var(--accent-glow), transparent 70%) }

/* ── Battery / Cards grid ── */
.bat-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden }
.bat-c { background: var(--bg); padding: 48px; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; transition: background .5s }
.bat-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; border-radius: 50%; background: var(--accent-glow); filter: blur(60px); opacity: 0; transition: opacity .6s; pointer-events: none }
.bat-c:hover .bat-glow { opacity: 1 }
.bat-ico {
  position: relative;
  top: auto;
  right: auto;
  margin-bottom: 20px;
  color: var(--accent);
  opacity: 0.7;
}
.bat-ico svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1 }
.bat-ct { position: relative; z-index: 1 }
.bat-v { font-size: 32px; font-weight: 200; color: var(--accent); margin-bottom: 4px }
.bat-n { font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 12px }
.bat-d { font-size: 16px; color: var(--text2); line-height: 1.7 }

/* ── Accessories grid ── */
.ac-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px }
.ac-c { padding: 40px; border-radius: 16px; border: 1px solid var(--border); background: var(--bg); cursor: pointer; transition: border-color .4s }
.ac-c:hover { border-color: var(--card-hover) }
.ac-img { width: 100%; aspect-ratio: 3/2; background: var(--surface); border-radius: 10px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; color: var(--text3) }
.ac-img svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: .8 }
.ac-t { font-size: 18px; font-weight: 400; color: var(--text); margin-bottom: 8px }
.ac-d { font-size: 16px; color: var(--text2); line-height: 1.7 }

/* ── Contact ── */
.ct-g { display: flex; gap: 80px; flex-wrap: wrap }
.ct-g > div { flex: 1; min-width: 280px }
.ct-f { display: flex; flex-direction: column; gap: 16px }
.ct-f input, .ct-f textarea { background: transparent; border: none; border-bottom: 1px solid var(--border); padding: 16px 0; font-size: 16px; color: var(--text); outline: none; font-family: inherit; font-weight: 300; transition: border-color .3s }
.ct-f textarea { resize: none }
.ct-f input:focus, .ct-f textarea:focus { border-color: var(--accent) }
.ct-f input::placeholder, .ct-f textarea::placeholder { color: var(--text3) }

/* ── Footer ── */
.ft { border-top: 1px solid var(--border); padding: 48px 40px; background: var(--footer-bg); transition: background .5s }
.ft-in { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px }
/* edit Marius — 22.06.2026 */
.ft-logo { display: flex; align-items: center }
.ft-logo img { height: 50px; width: auto; display: block }
/* edit Marius — 23.06.2026 */
[data-theme="dark"] .ft-logo img {
  filter: brightness(0) invert(1);
}
.ft-lnk { display: flex; gap: 28px; flex-wrap: wrap }
.ft-lnk a { color: var(--text3); font-size: 12px; text-decoration: none; letter-spacing: 0.05em; transition: color .3s }
.ft-lnk a:hover { color: var(--text2) }
.ft-cp { font-size: 12px; color: var(--text3) }

/* ── Page header (inner pages) ── */
.page-hdr {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--hero-grad), var(--bg));
  border-bottom: 1px solid var(--border);
  transition: background .5s
}
.breadcrumb { font-size: 11px; color: var(--text3); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap }
.breadcrumb a { color: var(--text3); text-decoration: none; transition: color .2s }
.breadcrumb a:hover { color: var(--accent) }
.breadcrumb-sep { color: var(--text3) }

/* ── Product detail ── */
.prod-specs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
  gap: 1px; background: var(--border); border-radius: 12px; overflow: hidden; margin: 40px 0
}
.prod-spec-item { background: var(--bg); padding: 28px 32px }
.prod-spec-val { font-size: 28px; font-weight: 200; color: var(--accent); letter-spacing: -0.02em; margin-bottom: 4px }
.prod-spec-lbl { font-size: 11px; color: var(--text3); letter-spacing: 0.05em; text-transform: uppercase }
/* edit Marius — 22.06.2026 */
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 32px }
.benefits-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--text2); line-height: 1.6 }
.benefits-list li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><g transform='translate(30,30)'><path d='M 0,-22 Q 8,-18 10,-8 Q 4,-4 0,-2 Q -3,-6 -5,-12 Q -3,-18 0,-22 Z' fill='%23304E82'/><path d='M 0,-22 Q 8,-18 10,-8 Q 4,-4 0,-2 Q -3,-6 -5,-12 Q -3,-18 0,-22 Z' fill='%23304E82' transform='rotate(120)'/><path d='M 0,-22 Q 8,-18 10,-8 Q 4,-4 0,-2 Q -3,-6 -5,-12 Q -3,-18 0,-22 Z' fill='%23304E82' transform='rotate(240)'/><circle cx='0' cy='0' r='4' fill='%23304E82'/></g></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Model grid ── */
.model-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden }
.model-card { background: var(--bg); padding: 40px; position: relative; overflow: hidden; transition: background .3s; cursor: pointer; text-decoration: none; display: block; color: inherit }
.model-card:hover { background: var(--surface) }
.model-card-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; border-radius: 50%; background: var(--accent-glow); filter: blur(60px); opacity: 0; transition: opacity .6s; pointer-events: none }
.model-card:hover .model-card-glow { opacity: 1 }
.model-card-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px }
.model-card-kw { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 36px; font-weight: 400; color: var(--text); letter-spacing: -0.02em; margin-bottom: 4px }
.model-card-hp { font-size: 16px; color: var(--text3); margin-bottom: 16px }
.model-card-desc { font-size: 16px; color: var(--text2); line-height: 1.7 }

/* ── Series cards (motoare.html) ── */
.series-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden }
.series-card {
  background: var(--bg); display: flex; gap: 60px; align-items: center;
  padding: 60px; transition: background .3s; flex-wrap: wrap; text-decoration: none; color: inherit
}
.series-card:hover { background: var(--surface) }
.series-info { flex: 1; min-width: 260px }
.series-img { flex: 1; min-width: 260px; display: flex; align-items: center; justify-content: center }
.series-img img { max-width: 100%; max-height: 260px; object-fit: contain }
.series-img-ph { width: 100%; aspect-ratio: 4/3; background: var(--surface); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text3); font-size: 13px; flex-direction: column; gap: 10px }
.series-img-ph svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: .8 }
.series-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px }
.series-kw { font-size: clamp(36px,4vw,52px); font-weight: 200; color: var(--text); letter-spacing: -2px; margin-bottom: 4px }
.series-hp { font-size: 16px; color: var(--accent); margin-bottom: 20px }
.series-desc { font-size: 16px; color: var(--text2); line-height: 1.8; max-width: 440px }
.series-models { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap }
/* edit Marius — 22.06.2026 */
.series-model-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  background: #304E82;
  border: 1px solid #304E82;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .3s, border-color .3s, transform .2s, box-shadow .3s;
  box-shadow: 0 2px 8px rgba(48, 78, 130, 0.15);
}
.series-model-link:hover {
  color: #ffffff;
  background: #243d6b;
  border-color: #243d6b;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(48, 78, 130, 0.30);
}

/* ── Home explore cards ── */
.explore-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden }
.explore-c { background: var(--bg); padding: 48px; display: flex; flex-direction: column; gap: 16px; text-decoration: none; color: inherit; transition: background .3s; position: relative; overflow: hidden }
.explore-c:hover { background: var(--surface) }
.explore-c-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 240px; height: 240px; border-radius: 50%; background: var(--accent-glow); filter: blur(80px); opacity: 0; transition: opacity .6s; pointer-events: none }
.explore-c:hover .explore-c-glow { opacity: 1 }
.explore-c-lbl { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent) }
.explore-c-ttl { font-size: 28px; font-weight: 200; color: var(--text); letter-spacing: -1px }
.explore-c-desc { font-size: 16px; color: var(--text2); line-height: 1.7; flex: 1 }
.explore-c-arr { font-size: 20px; color: var(--text3); align-self: flex-end; transition: transform .3s }
.explore-c:hover .explore-c-arr { transform: translateX(4px) }

/* ── IoT cards ── */
.iot-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px }
.iot-card { padding: 40px; border-radius: 16px; border: 1px solid var(--border); background: var(--bg); position: relative; overflow: hidden; transition: border-color .4s }
.iot-card:hover { border-color: var(--card-hover) }
.iot-card-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 200px; border-radius: 50%; background: var(--accent-glow); filter: blur(60px); opacity: 0; transition: opacity .6s; pointer-events: none }
.iot-card:hover .iot-card-glow { opacity: 1 }
.iot-ico { width: 44px; height: 44px; margin-bottom: 20px; color: var(--accent) }
.iot-ico svg { width: 44px; height: 44px; stroke: currentColor; fill: none; stroke-width: .8 }
.iot-t { font-size: 18px; font-weight: 400; color: var(--text); margin-bottom: 10px }
.iot-d { font-size: 14px; color: var(--text2); line-height: 1.7 }

/* ── Autonomie table ── */
.av-row { display: flex; gap: 80px; align-items: flex-start; flex-wrap: wrap }
.av-lake-card { flex: 1.2; min-width: 320px; border-radius: 16px; padding: 32px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 32px }
.av-lake-wrap { width: 100%; aspect-ratio: 1/0.78 }
.av-lake-wrap svg { width: 100%; height: 100%; display: block }
.av-lap-note { font-size: 11px; color: var(--text3); text-align: center; font-style: italic; padding-top: 12px }
.av-tbl-wrap { flex: 1; min-width: 280px; display: flex; flex-direction: column; justify-content: center }
.av-tbl { width: 100%; border-collapse: collapse; height: 100% }
.av-tbl thead tr { border-bottom: 1px solid var(--border) }
.av-tbl th { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--text3); padding-bottom: 20px; padding-right: 24px; text-align: left }
.av-tbl th:not(:first-child) { text-align: right }
.av-tbl th .u { font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 9px }
.av-tbl tbody tr { cursor: pointer; transition: background .3s }
.av-tbl tbody tr.active { background: rgba(26,95,138,.07); border-radius: 8px }
.av-tbl td { padding: 24px 12px; border-bottom: 1px solid var(--border); text-align: right; vertical-align: middle }
.av-tbl tbody tr:last-child td { border-bottom: none }
.av-tbl td:first-child { text-align: left; padding-left: 12px }
.av-t-pct { font-size: 15px; font-weight: 600; letter-spacing: 1px; color: var(--text); text-transform: uppercase }
.av-tbl tbody tr.active .av-t-pct { color: var(--accent) }
.av-t-val { font-size: clamp(22px,2.8vw,32px); font-weight: 200; color: var(--text); letter-spacing: -1px; line-height: 1; display: block; transition: color .2s }
.av-tbl tbody tr.active .av-t-val { color: var(--accent) }
.av-t-unit { font-size: 10px; color: var(--text2); letter-spacing: 1px; text-transform: uppercase; display: block; margin-top: 2px }
.av-t-bar-wrap { display: flex; align-items: center; gap: 14px; min-width: 140px }
.av-t-bar { height: 3px; background: var(--border); border-radius: 2px; flex: 1; min-width: 60px; position: relative; overflow: hidden }
.av-t-bar::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 0; background: var(--text3); border-radius: 2px; transition: width 1s cubic-bezier(.16,1,.3,1) }
.av-tbl tbody tr.active .av-t-bar::after { background: var(--accent) }
.av-t-laps { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; min-width: 28px; text-align: right }
.av-tbl tbody tr.active .av-t-laps { color: var(--accent) }

/* ── Responsive ── */
@media(max-width:960px) {
  .ctn { padding: 0 24px }
  .nv {
    padding: 0 16px;
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  /* Nav mai mic pe mobile pentru a păstra mai mult spațiu vertical */
  .nv-in { height: 70px }
  .nv-logo img { height: 48px; max-width: 130px; object-fit: contain }
  .nv-mob { display: flex }
  .nv-lnk {
    display: none; position: fixed; top: 110px; left: 0; right: 0;
    background: var(--bg); /* opac complet */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 8px 0; flex-direction: column; gap: 0; z-index: 102;
    max-height: calc(100vh - 110px); overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    width: 100%;
    box-sizing: border-box;
  }
  .nv-lnk.open { display: flex }
  .nv-lnk > li {
    width: 100%;
    box-sizing: border-box;
  }
  .nv-lnk > li > a {
    background: transparent !important;
    color: var(--text) !important;
    box-shadow: none !important;
    padding: 16px 24px !important;
    font-size: 14px;
    font-weight: 600;
    display: block;
    border: none !important;
    border-radius: 0 !important;
    transform: none !important;
    width: 100%;
    box-sizing: border-box;
  }
  .nv-lnk > li > a:hover,
  .nv-lnk > li > a:active {
    background: var(--surface) !important;
    color: var(--accent) !important;
    box-shadow: none !important;
  }
  /* Separator subtile între linkuri */
  .nv-lnk > li + li > a {
    border-top: 1px solid var(--border) !important;
  }

  /* Săgeată ▼ după elementele cu dropdown pe mobile - indicator vizual */
  .nv-lnk > .has-drop > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .nv-lnk > .has-drop > a::after {
    content: "▼";
    font-size: 9px;
    color: var(--text3);
    margin-left: 12px;
    transition: transform .3s ease, color .3s ease;
    display: inline-block;
  }
  .nv-lnk > .has-drop.mob-open > a::after {
    transform: rotate(180deg);
    color: var(--accent);
  }

  /* Dropdown intern - integrat în meniu, indentat, NU absolute */
  .nv-lnk > .has-drop > .drop {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: all !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--surface) !important;
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 0 !important;
    list-style: none;
  }
  .nv-lnk > .has-drop.mob-open > .drop {
    display: block !important;
  }
  /* Sub-dropdown (în interiorul dropdown-ului) */
  .drop .drop {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: all !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(0,0,0,0.03) !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 0 !important;
    display: none !important;
    list-style: none;
  }
  .drop .has-drop.mob-open > .drop {
    display: block !important;
  }
  /* Linkuri în dropdown */
  .drop > li > a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px 14px 40px !important;
    font-size: 13px !important;
    color: var(--text) !important;
    text-decoration: none;
    border: none !important;
    border-top: 1px solid var(--border) !important;
  }
  .drop .drop > li > a {
    padding-left: 56px !important;
    font-size: 13px !important;
  }
  /* Săgeată pe sub-dropdown-uri */
  .drop .has-drop > a::after {
    content: "▼";
    font-size: 9px;
    color: var(--text3);
    margin-left: 12px;
    transition: transform .3s ease, color .3s ease;
    display: inline-block;
  }
  .drop .has-drop.mob-open > a::after {
    transform: rotate(180deg);
    color: var(--accent);
  }

  .stats-g { grid-template-columns: repeat(2,1fr) }
  .stat+.stat { border-left: none }
  .pr, .pr.flip { flex-direction: column; gap: 40px }
  .bat-g, .ac-g, .explore-g, .iot-grid { grid-template-columns: 1fr }
  .ct-g, .av-row { flex-direction: column; gap: 40px }
  .hero { padding: 150px 24px 60px }
  .sec { padding: 80px 0 }
  .pr { padding: 60px 0 }
  .ft-in { flex-direction: column; text-align: center }
  .ft-lnk { justify-content: center }
  .nv-mob { display: flex }
  .nv-lnk {
    display: none; position: fixed; top: 120px; left: 0; right: 0;
    background: var(--bg); /* opac complet, nu transparent */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px; flex-direction: column; gap: 0; z-index: 102;
    max-height: calc(100vh - 120px); overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .series-card { flex-direction: column; gap: 40px; padding: 40px 32px }
  .model-grid { grid-template-columns: 1fr }
  .page-hdr { padding: 150px 0 60px }
}

/* ── Image Slider ── */
.img-slider { overflow: hidden }
.slider-track { display: flex; height: 100%; transition: transform .45s cubic-bezier(.16,1,.3,1); will-change: transform }
.slider-track img { min-width: 100%; width: 100%; height: 100%; object-fit: contain; background: var(--surface); display: block }
.slider-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: 1px solid rgba(0,0,0,.08);
  cursor: pointer; font-size: 20px; display: flex; align-items: center; justify-content: center;
  z-index: 10; opacity: 0; transition: opacity .2s; color: #111;
  box-shadow: 0 2px 8px rgba(0,0,0,.12); line-height: 1; font-weight: 300
}
.img-slider:hover .slider-arr { opacity: 1 }
.slider-arr.prev { left: 10px }
.slider-arr.next { right: 10px }
.slider-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10 }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: background .2s, transform .2s }
.slider-dot.on { background: #fff; transform: scale(1.3) }

/* ═══════════════════════════════════════════════════════════
   ── ÎMBUNĂTĂȚIRI DESIGN v2 (text mai aerisit) ──
   ═══════════════════════════════════════════════════════════ */

/* ── Titluri H1 mai responsive cu mai mult text ── */
.page-hdr .st {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -1px;
  line-height: 1.15;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.page-hdr {
  text-align: center;
  padding: 140px 0 80px;
}
.page-hdr .breadcrumb { justify-content: center }
.page-hdr .sl { text-align: center }
.page-hdr .sd {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 680px;
  margin-top: 24px;
}

/* Hero H1 - puțin mai mic pentru a încăpea mai mult text */
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  max-width: 900px;
  line-height: 1.1;
}
.hero-sub {
  max-width: 580px;
  font-size: 16px;
}
.hero-ey { max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6 }

/* ── Carduri explore (homepage) - egalează înălțimea ── */
.explore-c {
  min-height: 280px;
  padding: 40px 36px;
}
.explore-c-ttl {
  font-size: 22px;
  line-height: 1.3;
  min-height: 56px;
}
.explore-c-desc {
  font-size: 14px;
  line-height: 1.75;
}
.explore-c-arr {
  margin-top: auto;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ── Produs detail - descrieri mai aerisite ── */
.pr-info { max-width: 540px }
/* edit Marius — 22.06.2026 */
.pr-desc {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.85;
}
.pr-ttl {
  font-size: clamp(32px, 4vw, 44px);
  margin: 16px 0 12px;
}

/* ── Liste beneficii: spațiere mică, elice ca marker ── */
.benefits-list {
  gap: 6px;
  margin-top: 28px;
}
.benefits-list li {
  font-size: 16px;
  line-height: 1.6;
  padding-left: 4px;
}
.benefits-list li::before {
  margin-top: 4px;
  font-size: 12px;
}

/* ── prod-specs: text lung încape mai bine ── */
.prod-specs {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.prod-spec-item {
  padding: 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.prod-spec-val {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.prod-spec-lbl {
  font-size: 11px;
  line-height: 1.55;
  letter-spacing: 1.5px;
  white-space: normal;
}

/* ── Carduri baterie/aplicații (bat-c) - text aerisit ── */
.bat-c {
  min-height: 280px;
  padding: 40px 36px;
}
.bat-v {
  font-size: 28px;
  margin-bottom: 6px;
}
.bat-n {
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 14px;
  min-height: 46px;
}
.bat-d {
  font-size: 13.5px;
  line-height: 1.75;
}

/* ── Model grid (Sea Elf) ── */
.model-card {
  padding: 32px 28px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.model-card-tag { margin-bottom: 16px }
.model-card-kw {
  font-size: 30px;
  margin-bottom: 6px;
}
.model-card-hp {
  font-size: 13px;
  margin-bottom: 18px;
}
.model-card-desc {
  font-size: 13.5px;
  line-height: 1.75;
}

/* ── Accessories grid (3 controlere) ── */
.ac-c {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.ac-t {
  font-size: 17px;
  margin-bottom: 10px;
}
.ac-d {
  font-size: 13.5px;
  line-height: 1.75;
}

/* ── Series cards (pagina motoare) ── */
.series-card {
  padding: 56px 56px;
  gap: 50px;
}
.series-tag {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.series-desc {
  font-size: 14.5px;
  max-width: 480px;
  line-height: 1.8;
}
.series-hp {
  font-size: 14px;
  margin-bottom: 18px;
}

/* ── Stats - text de subsol mai aerisit ── */
.stat-lbl {
  font-size: 10.5px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  margin-top: 10px;
  padding: 0 8px;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Secțiune .st generic mai aerisit ── */
.st {
  line-height: 1.2;
}
.sd {
  font-size: 16px;
  line-height: 1.85;
}

/* ── Paragrafe descriere produs cu spațiu între ele ── */
.pr-desc + .pr-desc { margin-top: 18px }

/* ── Section CTA central (Gata să începeți?) - mai îngrijit ── */
.sec[style*="text-align"] .sd,
.sec .ctn[style*="text-align"] .sd {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ajustare cu logo Livoltek ── */
.ft-in img { order: 0 }

/* ── Mobile fine-tuning ── */
@media (max-width: 960px) {
  .page-hdr .st { font-size: clamp(26px, 7vw, 36px) }
  .hero h1 { font-size: clamp(32px, 9vw, 48px) }
  .explore-c, .bat-c { padding: 32px 28px; min-height: auto }
  .explore-c-ttl, .bat-n { min-height: auto }
  .series-card { padding: 40px 28px; gap: 32px }
  .pr-desc { max-width: 100% }
  .benefits-list li { font-size: 14px }
  .prod-specs { grid-template-columns: 1fr 1fr }
  .stats-g { grid-template-columns: 1fr 1fr }
}

@media (max-width: 560px) {
  .prod-specs { grid-template-columns: 1fr }
  .ac-g, .iot-grid { grid-template-columns: 1fr }
}

/* ── prod-specs în interior layout 2 coloane (despre-noi) ── */
.ct-g .prod-specs {
  grid-template-columns: 1fr 1fr;
  margin: 0;
}
.ct-g .prod-spec-item {
  padding: 28px 24px;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ct-g .prod-spec-val {
  font-size: 32px;
  font-weight: 200;
  margin-bottom: 10px;
}
.ct-g .prod-spec-lbl {
  font-size: 11px;
  line-height: 1.6;
}

/* ── Secțiunea cu CTA central (Gata să începeți?) - aerisire ── */
.sec .ctn[style*="text-align:center"] .st,
.sec .ctn[style*="text-align: center"] .st {
  margin-bottom: 4px;
}
.sec .ctn[style*="text-align:center"] .sd,
.sec .ctn[style*="text-align: center"] .sd {
  margin-top: 16px;
  margin-bottom: 36px;
  font-size: 16px;
}

/* ── Hero pe homepage: padding mai relaxat ── */
.hero { padding: 180px 40px 100px }
.hero-ct .btn { margin-top: 8px }

/* ── Espace under page-hdr titles ── */
.page-hdr .sl { margin-bottom: 20px }

/* ── series-card alignment când avem 3 linkuri în models ── */
.series-models { gap: 10px; margin-top: 28px }

/* ── Footer center alignment ── */
.ft-in { gap: 32px }

/* ═══════════════════════════════════════════════════════════
   ── DESPRE NOI: Valori, Gamă motoare, Echipamente ──
   ═══════════════════════════════════════════════════════════ */

/* ── Carduri Valori (5 carduri stacked elegant cu numere mari) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.value-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px 28px 36px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .3s, background .3s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface) 100%);
}

.value-card-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(70px);
  opacity: 0;
  transition: opacity .6s;
  pointer-events: none;
}
.value-card:hover .value-card-glow { opacity: .8 }

.value-card-num { display: none }

.value-card-t {
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.value-card-t::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  margin: 16px auto 0;
  opacity: .6;
}
.value-card-d {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* Tablet: 5 → 3 sus + 2 jos centrat */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .value-card { min-height: 280px }
  .value-card:nth-child(1) { grid-column: 1 / span 2 }
  .value-card:nth-child(2) { grid-column: 3 / span 2 }
  .value-card:nth-child(3) { grid-column: 5 / span 2 }
  .value-card:nth-child(4) { grid-column: 2 / span 2 }
  .value-card:nth-child(5) { grid-column: 4 / span 2 }
}

/* Mobile mic: 1 coloană */
@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; gap: 12px }
  .value-card,
  .value-card:nth-child(1),
  .value-card:nth-child(2),
  .value-card:nth-child(3),
  .value-card:nth-child(4),
  .value-card:nth-child(5) {
    grid-column: auto;
    min-height: auto;
    padding: 32px 28px;
  }
  .value-card-num { font-size: 52px; margin-bottom: 20px }
}

/* ── Explore grid cu 2 carduri (ambarcatiuni - Multiscop + 360 Pro) ── */
.explore-g:has(> .explore-c:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* ── Subtitluri produs (H3, H4) ── */
.pr-h3 {
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1.4;
  margin: 24px 0 20px;
  max-width: 520px;
}
.pr-h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 36px 0 4px;
}

/* ═══════════════════════════════════════════════════════════
   ── OPTIMIZĂRI MOBIL v3 (pentru textele noi v2) ──
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
  /* ── Subtitluri H3/H4 pe paginile produs ── */
  .pr-h3 {
    font-size: 18px;
    line-height: 1.35;
    margin: 20px 0 16px;
  }
  .pr-h4 {
    font-size: 11px;
    letter-spacing: 2px;
    margin: 28px 0 4px;
  }

  /* ── Hero pe pagini produs/categorie ── */
  .page-hdr {
    padding: 100px 0 50px;
  }
  .page-hdr .sd {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 16px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 8px;
  }
  .hero-ey {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 0 16px;
    line-height: 1.5;
  }

  /* ── Produs detail - ttl mai mic și descriere aerisită ── */
  .pr-ttl {
    font-size: 38px;
  }
  .pr-spec {
    font-size: 13px;
    line-height: 1.5;
  }
  .pr-lbl {
    font-size: 10.5px;
    letter-spacing: 2.5px;
  }
  .pr-desc {
    font-size: 15px;
    line-height: 1.8;
  }
  .pr-link {
    font-size: 13px;
    margin-top: 24px;
    display: inline-block;
  }

  /* ── Beneficii list - mai compact ── */
  .benefits-list { gap: 12px; margin-top: 24px }
  .benefits-list li {
    font-size: 14px;
    line-height: 1.65;
    padding-left: 4px;
  }

  /* ── Tabel autonomie EDP - text mai mic, mai citibil ── */
  .av-table { font-size: 12px }
  .av-table th, .av-table td { padding: 8px 4px }
  .av-table .av-t-pct, .av-table .av-t-val { font-size: 12.5px }

  /* ── Stats bar ── */
  .stat-val { font-size: 28px }
  .stat-lbl { font-size: 10px; line-height: 1.5; padding: 0 4px }

  /* ── Cards (explore, bat) ── */
  .explore-c {
    min-height: auto;
    padding: 32px 24px;
  }
  .explore-c-ttl {
    font-size: 18px;
    line-height: 1.35;
    min-height: auto;
    margin-bottom: 12px;
  }
  .explore-c-desc {
    font-size: 13.5px;
    line-height: 1.7;
  }
  .explore-c-arr {
    font-size: 12px;
    margin-top: 20px;
  }

  /* ── Section spacing redus pe mobil ── */
  .sec { padding: 60px 0 }
  .sec .st { font-size: clamp(22px, 6.5vw, 32px) }
  .sec .sd { font-size: 15px; line-height: 1.75 }

  /* ── Series card (motoare gama) ── */
  .series-tag {
    font-size: 10px;
    letter-spacing: 2px;
    line-height: 1.5;
  }
  .series-kw { font-size: 36px }
  .series-hp { font-size: 13px; margin-bottom: 14px }
  .series-desc {
    font-size: 14px;
    line-height: 1.75;
    max-width: 100%;
  }
  .series-models {
    flex-wrap: wrap;
    gap: 8px;
  }
  .series-model-link {
    padding: 8px 14px;
    font-size: 10px;
  }

  /* ── Model card (Sea-Elf, E-Engine) ── */
  .model-card {
    padding: 28px 22px;
    min-height: auto;
  }
  .model-card-tag { margin-bottom: 12px }
  .model-card-kw { font-size: 26px }
  .model-card-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  /* ── Battery cards (configurații + aplicații ambarcațiuni) ── */
  .bat-c {
    padding: 32px 24px;
    min-height: auto;
  }
  .bat-v { font-size: 24px }
  .bat-n {
    font-size: 16px;
    line-height: 1.35;
    min-height: auto;
    margin-bottom: 12px;
  }
  .bat-d {
    font-size: 13px;
    line-height: 1.7;
  }

  /* ── Accessories cards (controlere) ── */
  .ac-c { padding: 28px 22px }
  .ac-t {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .ac-d {
    font-size: 13px;
    line-height: 1.7;
  }

  /* ── Despre noi - ct-g specs interior ── */
  .ct-g .prod-spec-val { font-size: 26px }
  .ct-g .prod-spec-lbl { font-size: 10px }

  /* ── Breadcrumb pe mobil ── */
  .breadcrumb {
    font-size: 11px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ── Slider arrows - mereu vizibili pe mobile ── */
  .slider-arr { opacity: 1 !important; width: 32px; height: 32px; font-size: 18px }
  .slider-arr.prev { left: 6px }
  .slider-arr.next { right: 6px }

  /* ── Btn - mai citibil pe mobil ── */
  .btn { padding: 12px 22px; font-size: 12px }
}

@media (max-width: 560px) {
  /* ── Foarte mic - layout 1 coloană unde mai trebuia ── */
  .ctn { padding: 0 18px }
  .nv { padding: 0 16px }

  .pr-ttl { font-size: 32px }
  .pr-h3 { font-size: 17px }

  .hero { padding: 160px 18px 50px }
  .hero h1 { font-size: clamp(28px, 9.5vw, 40px); padding: 0 4px }

  .page-hdr .st { font-size: clamp(24px, 8vw, 32px) }
  .page-hdr { padding: 160px 0 40px }

  .sec { padding: 50px 0 }
  .sec .st { font-size: clamp(20px, 7vw, 28px) }

  /* Tabelele EDP pe ecrane foarte mici - hide coloana Timp dacă e prea înghesuit */
  .av-table th:nth-child(3),
  .av-table td:nth-child(3) { font-size: 11px }

  /* Stats bar pe mobile mic */
  .stats-g { gap: 24px }
  .stat-val { font-size: 24px }

  /* Reduce padding section CTA */
  .sec .ctn[style*="text-align"] { padding-left: 16px; padding-right: 16px }

  /* Buton 100% width pe mobile mic în secțiuni CTA */
  .sec .ctn[style*="text-align:center"] .btn,
  .sec .ctn[style*="text-align: center"] .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
}

/* ── Mobile foarte mic (≤380px) - phone-uri mici ── */
@media (max-width: 380px) {
  .ctn { padding: 0 14px }
  .pr-ttl { font-size: 28px }
  .hero h1 { font-size: clamp(24px, 9vw, 34px) }
  .page-hdr .st { font-size: clamp(22px, 8vw, 28px) }
  .benefits-list li { font-size: 13.5px }
  .pr-desc { font-size: 14px }
  .sec { padding: 40px 0 }

  /* Card spacing redus */
  .explore-c, .bat-c, .ac-c { padding: 26px 20px }
}

/* ═══════════════════════════════════════════════════════════
   ── PRELOADER + LOADER TRANZIȚIE PAGINĂ ──
   ═══════════════════════════════════════════════════════════ */

.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 1;
  transition: opacity .5s ease, visibility .5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Pentru tranziția între pagini, vrem să apară rapid */
.preloader.transition {
  transition: opacity .3s ease, visibility .3s ease;
}

.preloader.transition.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.preloader-propeller {
  width: 80px;
  height: 80px;
  animation: propellerSpin 1s linear infinite;
}

.preloader-propeller .prop-blade {
  fill: var(--accent);
}

.preloader-propeller .prop-hub {
  fill: var(--accent);
  filter: brightness(0.7);
}

@keyframes propellerSpin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}

.preloader-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text2);
  opacity: 0;
  animation: fadeInText .8s ease .3s forwards;
}

@keyframes fadeInText {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Eliminat scroll-ul cât e preloader-ul vizibil */
html.preloading,
html.preloading body {
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════
   ── SLIDER HOMEPAGE (înlocuiește hero) - design integrat ──
   ═══════════════════════════════════════════════════════════ */

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(480px, 75vh, 760px);
  overflow: hidden;
  background: var(--surface);
}

/* Fade jos - integrează slider-ul cu fundalul paginii (light/dark aware) - subtil */
.hero-slider::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
  z-index: 5;
  opacity: 0.7;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.slide.active .slide-bg img {
  transform: scale(1);
}

.slide-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #304E82 0%, #1a2842 100%);
  z-index: -1;
}

/* Overlay cu gradient lateral - mai elegant */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(26, 40, 66, 0.75) 0%,
    rgba(26, 40, 66, 0.55) 30%,
    rgba(26, 40, 66, 0.25) 60%,
    rgba(26, 40, 66, 0.15) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px;
}

.slide-content-inner {
  max-width: 580px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease .3s, transform 1s ease .3s;
}

.slide.active .slide-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.slide-eyebrow {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.slide-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.7);
}

.slide-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 28px;
}

.slide-title em {
  font-style: italic;
  color: #ffffff;
  font-weight: 500;
  display: block;
}

.slide-subtitle {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  line-height: 1.65;
  letter-spacing: 0;
  max-width: 480px;
}

.slide-cta {
  background: var(--cta-bg);
  color: #ffffff;
  border-color: var(--cta-bg);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.slide-cta:hover {
  background: #fff;
  color: #304E82;
  border-color: #fff;
}

/* Nav butoane - subtile, doar săgeată */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.8);
  width: 48px;
  height: 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .3s, transform .3s;
  padding: 0;
}

.slider-nav:hover { color: #fff }
.slider-nav.prev:hover { transform: translateY(-50%) translateX(-4px) }
.slider-nav.next:hover { transform: translateY(-50%) translateX(4px) }

.slider-nav svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.2;
}

.slider-nav.prev { left: 24px }
.slider-nav.next { right: 24px }

/* Dots - linii orizontale subtile, aliniate stânga ca textul */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
  max-width: 1280px;
  width: 100%;
  padding: 0 40px;
  justify-content: flex-start;
}

.slider-dot {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  transition: background .3s, width .3s;
}

.slider-dot:hover { background: rgba(255,255,255,0.6) }

.slider-dot.active {
  background: #ffffff;
  width: 80px;
}

/* Mobile */
@media (max-width: 960px) {
  .hero-slider {
    height: clamp(440px, 65vh, 560px);
  }
  .slider-nav {
    width: 36px; height: 60px;
  }
  .slider-nav.prev { left: 8px }
  .slider-nav.next { right: 8px }
  .slider-nav svg { width: 26px; height: 26px }
  .slide-content { padding: 32px 24px }
  .slide-eyebrow { font-size: 10px; margin-bottom: 16px }
  .slide-eyebrow::before { width: 24px }
  .slide-title { font-size: clamp(28px, 7vw, 42px); margin-bottom: 18px }
  .slide-subtitle { font-size: 15px; margin-bottom: 28px }
  .slide-cta { padding: 14px 28px }
  .slider-dots { bottom: 24px; padding: 0 24px }
  .slider-dot { width: 36px }
  .slider-dot.active { width: 60px }
  .slide-overlay {
    background: linear-gradient(180deg,
      rgba(26, 40, 66, 0.55) 0%,
      rgba(26, 40, 66, 0.65) 100%);
  }
}

@media (max-width: 560px) {
  .hero-slider { height: 480px; margin-top: 110px }
}


/* ═══════════════════════════════════════════════════════════
   ── BARA DE SUS (Top Bar) ──
   ═══════════════════════════════════════════════════════════ */

.tb {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  background: #304E82;
  color: #fff;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tb-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tb-info {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.tb-it {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity .2s;
  white-space: nowrap;
}
.tb-it:hover { opacity: 0.75 }
.tb-it svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.tb-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Selector limbă */
.tb-lang { position: relative }
.tb-lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s;
}
.tb-lang-btn:hover { background: rgba(255,255,255,0.1) }
.tb-lang-btn svg { width: 12px; height: 12px }

.tb-lang-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #fff;
  color: #1a1a1a;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  min-width: 140px;
  display: none;
  overflow: hidden;
}
.tb-lang-menu.open { display: block }
.tb-lang-opt {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s;
  color: #1a1a1a;
}
.tb-lang-opt:hover { background: #f0f2f5 }

/* Social media */
.tb-social {
  display: flex;
  gap: 4px;
}
.tb-soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: background .2s;
}
.tb-soc:hover { background: rgba(255,255,255,0.15) }
.tb-soc svg {
  width: 15px;
  height: 15px;
}

/* Ascund TOATE elementele Google Translate - inclusiv loading indicators */
body { top: 0 !important; position: static !important; }
.skiptranslate { display: none !important }
.goog-te-banner-frame, .goog-te-banner-frame.skiptranslate { display: none !important }
.goog-te-gadget { font-size: 0 !important }
.goog-te-gadget > span { display: none !important }
.goog-te-gadget-simple { display: none !important }
.goog-te-menu-frame { display: none !important }

/* Container div ascuns complet */
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

/* Loading indicator Google Translate - ascund */
.goog-tooltip, .goog-tooltip:hover { display: none !important }
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
/* Iframe Google Translate ascuns */
iframe.goog-te-menu-frame, iframe.skiptranslate {
  display: none !important;
  visibility: hidden !important;
}

/* Adjust nav să stea sub bara */
.nv {
  top: 40px !important;
}

/* Ajustez padding-top pentru zonele principale - 40 (bară) + 100 (nav) = 140 spațiu rezervat */
.hero { padding-top: 180px }
.page-hdr { padding-top: 180px }
/* edit Marius — 23.06.2026 */
.hero-slider { margin-top: 100px }

/* Responsive */
@media (max-width: 960px) {
  .tb-in { padding: 0 16px; gap: 12px; height: 40px }
  .tb { font-size: 11.5px }
  .tb-info { gap: 14px }
  .tb-it-addr { display: none } /* ascund adresa pe mobil */
  .tb-it span { font-size: 11.5px }
  .tb-right { gap: 10px }
  .tb-lang-btn { padding: 4px 8px; font-size: 11px }
  .tb-soc { width: 26px; height: 26px }
  .tb-soc svg { width: 14px; height: 14px }
}

@media (max-width: 560px) {
  .tb-info { gap: 8px }
  .tb-it span { display: none } /* arăt doar iconițele pe mobil mic */
  .tb-it svg { width: 16px; height: 16px }
  .tb-it { padding: 4px }
}

/* ═══════════════════════════════════════════════════════════
   ── ÎMBUNĂTĂȚIRI v15 ──
   ═══════════════════════════════════════════════════════════ */

/* Imagini în cardurile "explore-c" (Despre noi - gama de motoare) */
.explore-c-img {
  position: relative;
  width: 100%;
  height: 180px;
  margin: -12px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.explore-c-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .5s ease;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.15));
}

.explore-c:hover .explore-c-img img {
  transform: scale(1.06);
}

[data-theme="dark"] .explore-c-img img {
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

/* Footer social media */
.ft-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ft-soc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text2);
  text-decoration: none;
  transition: all .25s;
}
.ft-soc:hover {
  background: var(--cta-bg);
  border-color: var(--cta-bg);
  color: #ffffff;
  transform: translateY(-2px);
}
.ft-soc svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 960px) {
  .explore-c-img { height: 140px }
}

/* ═══════════════════════════════════════════════════════════
   ── GALERIE BATERIE ──
   ═══════════════════════════════════════════════════════════ */
.bat-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.bat-gallery-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bat-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}
.bat-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: contain;
}
[data-theme="dark"] .bat-gallery-item {
  background: #f5f7fa;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
[data-theme="dark"] .bat-gallery-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .bat-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bat-gallery-item { padding: 16px }
  .bat-gallery-item img { max-height: 320px }
}

/* ═══════════════════════════════════════════════════════════
   ── GALERIE AMBĂRCAȚIUNI (Multiscop, 360 PRO) ──
   ═══════════════════════════════════════════════════════════ */
.boat-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.boat-gallery-item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.boat-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
}
.boat-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
  box-sizing: border-box;
}
[data-theme="dark"] .boat-gallery-item {
  background: #f5f7fa;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
[data-theme="dark"] .boat-gallery-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
  .boat-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Variantă single - o singură poză centrată */
.boat-gallery-single {
  grid-template-columns: minmax(280px, 600px);
  justify-content: center;
}
.boat-gallery-single .boat-gallery-item {
  aspect-ratio: 1 / 1;
  max-width: 600px;
}

/* Variantă card cu poză reală (fără SVG generic) */
.ac-img-photo {
  background: #ffffff;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ac-img-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
  box-sizing: border-box;
}
[data-theme="dark"] .ac-img-photo {
  background: #f5f7fa;
  border-color: rgba(255,255,255,0.1);
}

/* Variantă pr-vis cu poză reală (înlocuie pr-vis-in cu SVG placeholder) */
.pr-vis-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  position: relative;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}
.pr-vis-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
[data-theme="dark"] .pr-vis-photo {
  background: #f5f7fa;
}

/* ═══════════════════════════════════════════════════════════
   ── Link logo Livoltek footer ──
   ═══════════════════════════════════════════════════════════ */
/* edit Marius — 22.06.2026 */
.ft-livoltek-link {
  display: inline-block;
  cursor: pointer;
  transition: opacity .3s;
}
.ft-livoltek-link:hover img {
  opacity: 1 !important;
}
