body {
  background: linear-gradient(180deg, var(--bg), color-mix(in oklab, var(--bg), black 6%));
  font-family: 'Satoshi', system-ui, Segoe UI, Roboto, Arial, sans-serif;
  transition: background-color .3s ease, color .3s ease;
}

html {
  font-size: 90%;
}

/* ===== Design system ===== */
:root{
  --bg:#0a0c12; --panel:#16181d; --panel-2:#1e222a; --text:#e6e6e6; --muted:#ffffff;
  --brand:#3aa0ff; --brand-2:#9b7cff; --ok:#27c37b; --warn:#ef4444;
  --ring: 0 0 0 2px color-mix(in oklab, var(--brand), transparent 65%);
  --radius:16px; --shadow:0 10px 30px rgba(0,0,0,.35);
}
/* Light theme (ok to keep even if toggle removed) */

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:linear-gradient(180deg,var(--bg), color-mix(in oklab, var(--bg), black 6%));
  color:var(--text);
  font-family:'Satoshi-Regular',system-ui,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.45;
  transition:background-color .3s ease,color .3s ease;
}
img{max-width:100%;display:block}
a{color:var(--text);text-decoration:none}
.container{width:min(1150px,100% - 2rem);margin-inline:auto}
.grid{display:grid;gap:24px}

/* ===== Buttons / Chips ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--brand);
  color: #0b0c0f;
  border: none;
  border-radius: 999px;
  padding: .9rem 1.2rem;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: var(--shadow);
  transition: transform .2s, filter .2s, background-color .2s, opacity .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: none; box-shadow: var(--ring); }

/* Ghost — puțin mai vizibil */
.btn.ghost {
  background: rgba(255, 255, 255, 0.06); /* mic fundal semi-opac */
  color: var(--text);
  border: 1px solid color-mix(in oklab, var(--text), transparent 60%);
}

/* Chip — transparent, dar vizibil (glass effect) */
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;

  background: color-mix(in oklab, var(--brand), transparent 70%);
  backdrop-filter: blur(6px) saturate(150%);
  -webkit-backdrop-filter: blur(6px) saturate(150%);

  color: white;
  border: 1px solid color-mix(in oklab, var(--brand), transparent 30%);

  padding: .4rem .9rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 0.3px;

  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.chip:hover {
  background: color-mix(in oklab, var(--brand), transparent 60%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

/* ===== Header / Nav ===== */
header {
  z-index: 50;
  background: rgba(12, 14, 18, 0.6);
}

.nav {
  display: flex; /* important pt. poziționare pe mobil */
  align-items: center;
  justify-content: space-between; /* împinge brand-ul la stânga și meniul la dreapta */
  padding: 1.4rem 2rem;
}

@media (max-width: 900px) {
  .nav {
    padding: 0.6rem 1rem; /* mai mic pe mobil */
  }
}

/* brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  height: 36px; /* micșorat pe mobil */
}

@media (max-width: 900px) {
  .brand img {
    height: 30px;
  }
}

/* nav links */
.nav-list {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-list a {
  opacity: 0.9;
  padding: 0.35rem 0.6rem;
  border-radius: 10px;
  transition: transform 0.15s ease, background-color 0.15s ease, opacity 0.15s ease;
}

.nav-list a:hover {
  opacity: 1;
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.06);
}

.nav-list a:active {
  transform: scale(0.98);
}

.nav-cta {
  gap: 0.6rem;
}

/* buton meniu mobil */
.mobile-toggle {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.25rem 0.4rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-list {
    display: none;
  }
  .mobile-toggle {
    display: block;
    margin-left: auto; /* se asigură că e în dreapta */
  }
}

/* ===== Hero ===== */
.hero {
  padding: 100px 0 60px;
}

/* Background image + darker overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.70), rgba(0, 0, 0, 0.70)), /* darker overlay */
    url('../img/shop-hero.jpg') center/cover no-repeat;
  filter: saturate(0.95) contrast(0.98) brightness(0.85);
  z-index: -1;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: flex;
  gap: .5rem;
  align-items: center;
  color: var(--muted);
}

.eyebrow i {
  font-style: normal;
  color: var(--ok);
}

h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.07;
  margin: .4rem 0 .8rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@media (max-width: 1000px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== Sections / Cards (scoped) ===== */
.section {
  padding: 64px 0;
}
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 10px;
  text-align: center;
}
.section .muted {
  color: var(--muted);
}

/* gridul pentru carduri din secțiuni */
.section .cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* card DOAR în contextul .section .cards (nu afectează alte .card) */
.section .cards .card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.section .cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}
.section .cards .card .title {
  font-weight: 800;
  margin: .2rem 0;
}
.section .cards .icon {
  font-size: 24px;
}

/* span utilitar – scos din global, valabil doar în .section .cards */
.section .cards .span-6 {
  grid-column: span 6;
}
@media (max-width: 900px) {
  .section .cards .span-6 {
    grid-column: span 12;
  }
}

/* ===== Promo grid (Products) — PROMO STYLE ===== */
.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.product-grid .product{
  display:flex;
  flex-direction:column;
  gap:12px;
  background: linear-gradient(145deg, rgba(255,90,90,.12), rgba(255,165,0,.08)); /* subtil dar mai "cald" */
  border: 2px solid rgba(255,70,70,.5);  /* bordură roșie transparentă */
  border-radius:16px;
  padding:14px;
  position:relative;        /* pt badge + stacking context control */
  z-index:0;                /* baza pentru ordonare */
  overflow:visible;         /* nu tăia imaginea când e scalată */
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-grid .product:hover{
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,70,70,.9);
  box-shadow: 0 10px 24px rgba(255,70,70,.35);
}

/* Badge promo colț dreapta-sus — întotdeauna deasupra */
.product-grid .product::before{
  content:"PROMO";
  position:absolute;
  top:10px;
  right:-8px;
  z-index:3; /* peste imagine */
  background:linear-gradient(135deg, #ff4d4d, #ff9900);
  color:#fff;
  font-size:0.75rem;
  font-weight:700;
  padding:4px 10px;
  border-radius: 0 8px 0 8px;
  box-shadow:0 3px 6px rgba(0,0,0,.25);
  transform:rotate(3deg);
}

/* imagine portret — se vede întreaga poză; zoom doar la hover pe card */
.product-grid .product .thumb{
  display:block;
  width:100%;
  aspect-ratio: 3 / 4;   /* portret */
  object-fit: contain;   /* fără tăiere */
  background: rgba(255,255,255,.1);
  border-radius:10px;
  padding:6px;
  position:relative;
  z-index:1;             /* sub badge-ul ::before */
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.product-grid .product:hover .thumb{
  transform: scale(1.03);
}

/* meta & preț */
.product-grid .price{
  font-weight:900;
  font-size:1.05rem;
  color:#ff4d4d; /* roșu clar pt preț promo */
  text-shadow: 0 0 6px rgba(255,80,80,.4);
}

.product-grid .product .meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color: var(--muted);
  font-size:.95rem;
}

/* Mobile */
@media (max-width: 900px){
  .product-grid{
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .product-grid .product,
  .product-grid .product .thumb{
    transition:none !important;
  }
}

/* ===== Testimonials ===== */
.row {
  display: flex;
  gap: 20px; /* puțin mai mult spațiu între carduri */
  flex-wrap: wrap;
}

.testi {
  flex: 1 1 380px; /* mai lat minim */
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px; /* mai mult spațiu între avatar și text */
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 22px; /* mai mult spațiu intern */
  border-radius: 14px;
}

.avatar {
  width: 140px;  
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== CTA Bar ===== */
.cta-bar{
  position:relative;
  background:linear-gradient(180deg,rgba(16,19,24,.6),rgba(16,19,24,.9));
  backdrop-filter:blur(8px);
  border-top:1px solid rgba(255,255,255,.06);
  padding:.8rem 0
}
.cta-bar .wrap{display:flex;gap:10px;flex-wrap:wrap;align-items:center;justify-content:center}

/* ===== Footer ===== */
footer{border-top:1px solid rgba(255,255,255,.08);padding:28px 0;color:var(--muted)}
footer a{color:var(--muted)}

/* ===== Legacy gallery constraints (kept, but our new grid overrides it) ===== */
#legacy-gallery{width:100%}

/* ===== Compact Photo Grid (our new JS gallery) ===== */
/* Space between the toggle button and the grid */
#gallery-section{ margin-top:12px; }
/* Toggle button icon spacing */
#toggle-gallery{ display:inline-flex;align-items:center;gap:.5rem; }

#legacy-gallery{
  display:grid !important;

  /* tiny square tiles */
  --gal-tile: 64px;          /* try 56–72px for 8–12 per row on desktop */
  --gal-col-gap: 6px;
  --gal-row-gap: 8px;

  grid-template-columns:repeat(auto-fill, var(--gal-tile)) !important;
  column-gap:var(--gal-col-gap) !important;
  row-gap:var(--gal-row-gap) !important;

  justify-content:center;    /* use 'start' for left align */
  align-items:start;
}

.center-btn{
  display: flex;
  justify-content: center; /* centers horizontally */
  margin: 2rem 0;          /* optional spacing */
}

/* tiles + hover */
#legacy-gallery a:focus-visible{ outline:2px solid #000; outline-offset:2px; }

/* ===== Icon spacing (buttons, chips, footer, contact) ===== */
.btn i,
.chip i,
footer a i{
  margin-right:.5rem;
  vertical-align:-0.125em;
  font-size:.95em;
}
/* spacing between contact text and buttons */
#contact .hero-cta{ margin-top:12px; }
/* footer icon subtlety */
footer a i{opacity:.9}
footer a:hover i{opacity:1}
/* CTA bar spacing tweak */
.cta-bar .container.wrap{ gap:8px; }

/* Smooth anchor offset for sticky header */

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn,.nav-list a{transition:none}
}

/* Offset pentru conținut, ca header-ul fix să nu îl acopere */
body{
  transition: padding-top .25s ease;
}

/* Header FIXED (robust pe toate browserele) */
header{
  transition: height .25s ease, background-color .2s ease, border-color .2s ease;
}

/* Logo scalat din variabile */
.brand img{
  transition: height .25s ease;
}

/* ===== Stare micșorată (aplică oricare din aceste hook-uri în JS) ===== */

/* ===== SPAȚIU VERTICAL CONSTANT pe butoanele din dreapta ===== */
/* astfel nu se lipesc sus/jos nici când header-ul intră în shrink */
.nav-cta a,
.nav-cta button,
.nav-cta .btn{
  padding-block: .6rem;   /* spațiu intern sus/jos */
  margin-block: .25rem;   /* spațiu extern minim față de marginile nav-ului */
  line-height: 1.15;
  transition: padding .2s ease, font-size .2s ease, transform .2s ease;
}

/* opțional: micșorare foarte ușoară a textului în stare shrink */
header.shrink .nav-cta .btn{
  font-size: .98rem;
}

/* Social links layout */

/* Make each chip a row with icon + text */

/* Icon styling */

/* === Contact grid layout === */

/* Card headings */
.card-title{
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 800;
}

/* --- Social card --- */

/* --- Contact info card --- */

/* --- Map card --- */

/* Tighter card padding for these three cards (optional) */

/* === Contact: socials inline (no card) === */

/* === Two-cards layout below socials === */
.contact-grid-2{
  grid-template-columns: 1fr 1fr;   /* map | contact */
  align-items: start;
  gap: 24px;
}
@media (max-width: 900px){
  .contact-grid-2{ grid-template-columns: 1fr; }
}

/* Map card visuals (reuse your previous) */
.card--map .map-embed{
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.card--map .map-embed iframe{
  display:block; width:100%; height:auto; aspect-ratio: 4 / 3; border:0;
}

/* Contact info list (reuse and polish) */
.card--contact .contact-list{
  list-style:none; padding:0; margin:0 0 14px;
  display:grid; gap:10px;
}
.card--contact .contact-list li a{
  display:grid; grid-template-columns: 22px 1fr; align-items:center; gap:10px;
  padding:8px 0; border-bottom:1px dashed rgba(255,255,255,.06);
}
.card--contact .contact-list li:last-child a{ border-bottom:0; }
.card--contact .contact-list i{ font-size:1rem; text-align:center; }

/* Tight padding for these contact cards */

/* Modal base */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal-content {
  background: var(--panel);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 420px;
  width: 100%;
  position: relative;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

/* Form */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.1);
  background: var(--panel-2);
  color: var(--text);
  font-size: 0.95rem;
}

.modal-content textarea {
  resize: vertical;
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  outline: none;
  border-color: var(--brand);
}

button,
.btn {
  cursor: pointer;
}

/* ===============================
   Modal (safety)
   =============================== */
.modal[hidden]{ display: none !important; }
.modal{ z-index: 2000; }                     /* peste header/CTA */
.modal-close{ position:absolute; top:8px; right:12px; z-index:1; }

/* Blochează scroll-ul fundalului când modalul e deschis */
.body--modal-open{ overflow: hidden; }

/* Lock pe body fără salt la top */
.body--modal-open{
  position: fixed;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

/* ===============================
   Fancy Floating Contact Button
   =============================== */
.fab-contact{
  position: fixed; left: 20px; bottom: 20px; z-index: 1200;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .7rem 1rem;
  border: 1px solid color-mix(in oklab, var(--brand), transparent 65%);
  border-radius: 999px;
  background: var(--brand);       /* culoarea butonului */
  color: #0b0c0f;                  /* contrast pe brand */
  box-shadow: var(--shadow);
  box-sizing: border-box;          /* pt. animarea width corectă */
  white-space: nowrap;             /* nu rupe textul pe 2 rânduri */
  cursor: pointer;
  transition:
    width .35s ease,               /* animație smooth de lățime (setată din JS) */
    padding .35s ease,
    opacity .25s ease,
    transform .2s ease,
    border-color .2s ease;
  will-change: width;
}
.fab-contact:hover{ transform: translateY(-2px); }
.fab-contact i{ font-size: 1.05rem; line-height: 1; }

/* Text fade (parent primește .text-fade-out din JS) */
.fab-contact .fab-text{ display:inline-block; transition: opacity .35s ease; }
.fab-contact.text-fade-out .fab-text{ opacity: 0; }

/* Ascundere când se suprapune cu CTA/footer sau manual (control din JS) */
.fab-contact.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

/* Mobile tweak */
@media (max-width: 600px){
  .fab-contact{ left: 14px; bottom: 14px; padding: .6rem .9rem; }
}

/* Preferință: reduce motion */
@media (prefers-reduced-motion: reduce){
  .fab-contact,
  .fab-contact .fab-text{
    transition: none !important;
  }
}

/* ===============================
   ✨ Subtle Creative FX Pack (updated)
   - proper layering
   - fallbacks for color-mix
   - isolated blending on team cards
   =============================== */

/* Ensure hero layers stack correctly:
   ::before (image/overlay) below, ::after (aurora) above it, content on top */
.hero{
  position: relative;
  isolation: isolate;            /* separate stacking context */
}
.hero > *{ position: relative; z-index: 1; }
.hero::before{ z-index: -2; }    /* your existing bg/overlay goes under aurora */

/* 1) Hero "aurora" accent (with fallback) */
.hero::after{
  content:"";
  position:absolute; inset:0; z-index:-1;
  pointer-events:none;
  mix-blend-mode: screen;
  animation: auroraFloat 16s ease-in-out infinite alternate;
  /* Fallback (no color-mix support) */
  background:
    radial-gradient(1200px 400px at 15% -20%, rgba(58,160,255,.15), transparent 60%),
    radial-gradient(900px 300px at 85% -10%, rgba(155,124,255,.14), transparent 60%);
}
@supports (color: color-mix(in oklab, white, black)){
  .hero::after{
    background:
      radial-gradient(1200px 400px at 15% -20%,
        color-mix(in oklab, var(--brand), transparent 85%), transparent 60%),
      radial-gradient(900px 300px at 85% -10%,
        color-mix(in oklab, var(--brand-2), transparent 86%), transparent 60%);
  }
}
@keyframes auroraFloat{
  0%   { transform: translateY(0) translateX(0); filter: blur(0px) saturate(1); }
  100% { transform: translateY(8px) translateX(-6px); filter: blur(1px) saturate(1.02); }
}

/* 2) Card glow border on hover (brand-tinted) */
.card{
  position: relative;
  overflow: clip;
}
.card::after{
  content:"";
  position:absolute; inset:-1px; border-radius:14px;
  background: conic-gradient(
    from 0deg,
    color-mix(in oklab, var(--brand), transparent 60%),
    transparent 30% 70%,
    color-mix(in oklab, var(--brand-2), transparent 60%)
  );
  opacity: 0;
  transition: opacity .25s ease;
  /* show only the border (mask border trick) */
  mask:
    linear-gradient(#000,#000) content-box,
    linear-gradient(#000,#000);
  -webkit-mask:
    linear-gradient(#000,#000) content-box,
    linear-gradient(#000,#000);
  padding:1px;
}
.card:hover::after{ opacity:.45; }

/* 3) CTA buttons: magnetic micro-move + magenta/blue highlight */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content:"";
  position:absolute; inset:-40%;
  /* fallback without color-mix */
  background:
    radial-gradient(330px 140px at var(--mx,50%) var(--my,50%), rgba(235, 103, 255, 0.402), transparent 65%),
    radial-gradient(330px 140px at var(--mx,55%) var(--my,52%), rgba(96, 206, 250, 0.18), transparent 68%);
  opacity: 0;
  transition: opacity .2s ease;
  mix-blend-mode: screen;
  pointer-events: none;
}

@supports (color: color-mix(in oklab, white, black)) {
  .btn::after {
    background:
      radial-gradient(330px 140px at var(--mx,50%) var(--my,50%),
        color-mix(in oklab, deeppink, transparent 80%), transparent 65%),
      radial-gradient(330px 140px at var(--mx,55%) var(--my,52%),
        color-mix(in oklab, deepskyblue, transparent 82%), transparent 68%);
  }
}

.btn:hover::after {
  opacity: .9;
}

/* 4) Scroll-reveal utility (add .fx-reveal to any block/card) */
.fx-reveal{
  opacity: 0; transform: translateY(18px) scale(.98);
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}
.fx-reveal.is-in{ opacity: 1; transform: none; }

/* 5) Floating accent dots for hero media (subtle depth) */

/* 6) Gallery tiles: tiny tilt on hover */
#legacy-gallery a{
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease;
}
#legacy-gallery a:hover{
  transform: translateY(-2px) rotate(.2deg) scale(1.01);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}

/* === Aurora effect for team cards (.testi) with isolated blending + fallbacks === */
.testi{
  position: relative;
  overflow: hidden;
  isolation: isolate;                /* keep blend within the card */
  background: var(--panel);          /* surface for 'screen' to blend with */
}
.testi::after{
  content:"";
  position:absolute; inset:0; z-index:0;
  mix-blend-mode: screen;
  pointer-events:none;
  opacity:.35;
  animation: auroraTeam 18s ease-in-out infinite alternate;
  /* Fallback (no color-mix) */
  background:
    radial-gradient(600px 250px at 20% -30%, rgba(58,160,255,.15), transparent 70%),
    radial-gradient(500px 200px at 80% -20%, rgba(155,124,255,.14), transparent 70%);
}
@supports (color: color-mix(in oklab, white, black)){
  .testi::after{
    background:
      radial-gradient(600px 250px at 20% -30%,
        color-mix(in oklab, var(--brand), transparent 85%), transparent 70%),
      radial-gradient(500px 200px at 80% -20%,
        color-mix(in oklab, var(--brand-2), transparent 86%), transparent 70%);
  }
}
@keyframes auroraTeam{
  0%   { transform: translateY(0) translateX(0); filter: blur(0px); }
  100% { transform: translateY(6px) translateX(-5px); filter: blur(1px); }
}
/* Ensure content above glow */
.testi > *{ position: relative; z-index: 1; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce){
  .hero::after,
  .btn::after,
  .fx-reveal,
  #legacy-gallery a,
  .testi::after{
    animation: none !important;
    transition: none !important;
  }
}

/* Classic text color fade to blue */
.contact-list a {
  color: inherit;                 /* keep whatever the normal text color is */
  transition: color 0.3s ease;    /* smooth fade */
}

.contact-list a:hover {
  color: #60a5fa;                  /* sky blue on hover */
}

/* ===== Scroll Banner ===== */
.scroll-banner {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(96,165,250,0.15), rgba(232,121,249,0.15));
  padding: 10px 0;
}

.scroll-container {
  display: flex;
  width: max-content;
  animation: scrollBanner 30s linear infinite;
}

.scroll-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  font-size: 1.1rem;
  white-space: nowrap;
  color: white;
  opacity: 0.85;
}

.scroll-item i {
  color: color-mix(in oklab, gold, white 15%);
  font-size: 0.9em;
}

@keyframes scrollBanner {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Optional: pause on hover */
.scroll-banner:hover .scroll-container {
  animation-play-state: paused;
}

/* Magnetic Green pt Call si WA */

.btn.magnetic-green::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  mix-blend-mode: screen;
  background:
    radial-gradient(330px 140px at var(--mx,50%) var(--my,50%), rgba(34,197,94,0.25), transparent 65%),
    radial-gradient(330px 140px at var(--mx,55%) var(--my,52%), rgba(132,225,173,0.20), transparent 68%);
}

@supports (color: color-mix(in oklab, white, black)) {
  .btn.magnetic-green::after {
    background:
      radial-gradient(330px 140px at var(--mx,50%) var(--my,50%),
        color-mix(in oklab, mediumseagreen, transparent 80%), transparent 65%),
      radial-gradient(330px 140px at var(--mx,55%) var(--my,52%),
        color-mix(in oklab, lightgreen, transparent 82%), transparent 68%);
  }
}

.btn.magnetic-green:hover::after {
  opacity: .9;
}

/* ===============================
   Mobile polish (≤ 600px)
   =============================== */
@media (max-width: 600px){

  /* Hero */
  .hero{ padding: 72px 0 36px; }
  .hero .wrap{ display: grid; grid-template-columns: 1fr; gap: 22px; }
  .hero-card{ padding: 16px; }
  .hero-cta{ gap: 8px; }
  .badge-row{ gap: 8px; }

  /* Reduce vizual FX în hero pe mobile (mai curat/performant) */
  .hero::after{ display: none; } /* opțional: ascunde aurora pe mobil */

  /* Buttons & chips: hit-area confortabilă, umbre mai soft */
  .btn{ padding: .8rem 1rem; box-shadow: 0 8px 20px rgba(0,0,0,.25); }
  .btn i{ font-size: 1em; }
  .chip{ font-size: .83rem; padding: .32rem .65rem; }

  /* Scroll banner */
  .scroll-banner{ padding: 8px 0; }
  .scroll-item{ font-size: .95rem; padding: 0 16px; }

  /* Cards in sections */
  .section .cards{ grid-template-columns: 1fr; gap: 14px; }
  .section .cards .card{ padding: 14px; border-radius: 12px; }
  .section .cards .icon{ font-size: 22px; }

  /* Testimonials / generic rows */
  .row{ gap: 12px; }
  .row > *{ flex: 1 1 100%; }

  /* Product grid (1 pe rând, imagini mai aerisite) */
  .product-grid{ gap: 14px; }
  .product-grid .product{ grid-column: 1 / -1; padding: 12px; border-radius: 12px; }
  .product-grid .product .thumb{
    padding: 4px; border-radius: 10px; /* un pic mai compact */
  }
  .product-grid .product .meta{ font-size: .92rem; }

  /* Gallery tiles (dacă folosești #legacy-gallery) — puțin mai mari pe mobil */
  #legacy-gallery{ --gal-tile: 72px; --gal-col-gap: 6px; --gal-row-gap: 8px; }

  /* Contact cards */
  .contact-grid-2{ grid-template-columns: 1fr; gap: 18px; }
  .card--map .map-embed iframe{ aspect-ratio: 3 / 2; }
  .card--contact .contact-list{ gap: 8px; }
  .card--contact .contact-list li a{ padding: 6px 0; grid-template-columns: 20px 1fr; }

  /* CTA bar (sticky jos) — mai compactă și fără overlap cu FAB */
  .cta-bar{ padding: .6rem 0; }
  .cta-bar .wrap{ gap: 8px; }
  .cta-bar .wrap .btn{ padding: .7rem 1rem; }

  /* FAB contact — poziție & dimensiuni mobile */
  .fab-contact{ left: 14px; bottom: 14px; padding: .6rem .9rem; }
  .fab-contact .fab-text{ font-size: .95rem; }

  /* Scroll to top button — mai mic & mai aproape de colț */
  #scrollTopBtn{ width: 44px; height: 44px; bottom: 16px; right: 16px; }

  /* Footer */
  footer{ margin-top: 40px; padding: 22px 0; }

  @media (max-width: 600px){
  @media (hover: none){
    .card::after{
      opacity: .35 !important;
      filter: blur(14px) saturate(1);
      animation: none !important;
    }
  }
  }

  #legacy-gallery a:hover{ transform: none; box-shadow: none; }

  /* Magnetic highlight pe butoane: menține, dar fă-l discret */
  .btn:hover::after{ opacity: .6; }

  /* Animațiile de intrare: distanță mai mică pe mobil */
  .fx-reveal{ transform: translateY(12px) scale(.995); }
}

/* Dropdown – funcționează și pe mobil */
.nav .has-dropdown{ position: relative; }
.nav .dropdown{
  position: absolute;
  inset: auto auto auto 0;
  min-width: 200px;
  display: none;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  z-index: 40;
}
.nav .has-dropdown.is-open > .dropdown{ display: block; }


/* ===============================
   Small tablets (600–900px): 2 produse / rând
   =============================== */
@media (min-width: 601px) and (max-width: 900px){
  .section .cards{ grid-template-columns: 1fr 1fr; }
  .product-grid .product{ grid-column: span 6; }
}

/* ===== Sticky header + mobile nav ===== */

/* Desktop nav-list */
.nav .nav-list{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* CTA grup */
.nav-cta{ display:flex; align-items:center; gap:10px; }

/* Mobile toggle: ascuns pe desktop */
.mobile-toggle{
  display: none;
  font-size: 1.25rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: .35rem .55rem;
  line-height: 1;
}

/* ===== Mobile layout ===== */
@media (max-width: 900px){
  .mobile-toggle{ 
    display: inline-flex; 
  }

  /* Bara de navigație devine container pentru dropdown */
  .nav{ 
    position: relative; 
  }

  /* Menul mobil: absolut sub bară, animat */
  .nav .nav-list{
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--panel, #121317);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    z-index: 60;

    /* layout */
    display: flex;
    flex-direction: column;
    gap: 6px;

    /* animație (stare închisă) */
    padding: 0 12px;           /* padding minimal când e închis */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;

    transition:
      max-height 0.35s ease,
      opacity 0.30s ease,
      transform 0.30s ease,
      padding 0.20s ease;
  }

  /* Stare deschisă: activată de JS cu .nav.open */
  .nav.open .nav-list{
    padding: 10px 12px;
    max-height: 500px;          /* suficient pentru toate linkurile */
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav .nav-list a{
    display: block;
    padding: 10px 8px;
  }

  /* Dropdown în meniul mobil */
  .nav .has-dropdown .dropdown{
    position: static;
    display: none;
    margin: 0 0 6px 8px;
    padding-left: 8px;
    border-left: 1px dashed rgba(255,255,255,.12);
    box-shadow: none;
    background: transparent;
  }
  .nav .has-dropdown.is-open > .dropdown{
    display: block;
  }

  /* CTA-urile, puțin mai compacte pe mobil */
  .nav-cta .btn{ 
    padding: .65rem .9rem; 
    font-size: .95rem; 
  }
}

/* Respectă preferința de reduce motion */
@media (prefers-reduced-motion: reduce){
  @media (max-width: 900px){
    .nav .nav-list{
      transition: none !important;
    }
  }
}

/* Bară internă */
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Evită cauzele comune care „distrug” sticky (pe header) */
header{
  transform: none !important;       /* în caz că alt CSS îi aplică transform */
  will-change: auto;
}

/* Nu tăia fluxul de scroll pe containerul principal (important pt sticky) */
html, body{ overflow-x: clip; }     /* ok; fără overflow-y pe containeri părinte */

/* contact button invizibil pe mobil */
@media (max-width: 900px) {
  #fabContact {
    display: none !important;
  }
}

/* === Magnetic Magenta === */
.btn.magnetic-magenta {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), 
              magenta, #6a00ff);
  color: #fff;
  transition: background-position 0.15s ease;
}

.btn.magnetic-magenta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), 
              rgba(255, 0, 255, 0.6), transparent 60%);
  transition: opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}

/* === Magnetic Green === */
.btn.magnetic-green {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), 
              #00ff99, #009966);
  color: #fff;
  transition: background-position 0.15s ease;
}

.btn.magnetic-green::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), 
              rgba(0, 255, 153, 0.6), transparent 60%);
  transition: opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}

/* ===== Butoane cu gradient magnetic — fără mișcare după mouse ===== */
.btn.magnetic-green,
.btn.magnetic-magenta,
.btn.magnetic-blue {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, color 0.3s ease, background-color 0.3s ease;
  background: transparent;
}

/* Strat de highlight */
.btn.magnetic-green::before,
.btn.magnetic-magenta::before,
.btn.magnetic-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.4s ease, opacity 0.4s ease;
  z-index: -1;
}

/* Culori la hover */
.btn.magnetic-green:hover::before {
  background: linear-gradient(135deg,
    rgba(0, 255, 128, 0.35) 0%,
    rgba(0, 200, 100, 0.25) 100%);
  opacity: 1;
}

.btn.magnetic-magenta:hover::before {
  background: linear-gradient(135deg,
    rgba(255, 0, 150, 0.35) 0%,
    rgba(200, 0, 120, 0.25) 100%);
  opacity: 1;
}

.btn.magnetic-blue:hover::before {
  background: radial-gradient(circle, 
    rgba(0, 150, 255, 0.25) 0%, 
    transparent 70%);
  opacity: 1;
}

/* Text/icoane mai luminoase la hover */
.btn.magnetic-green:hover,
.btn.magnetic-magenta:hover,
.btn.magnetic-blue:hover {
  color: #fff;
  transform: translateY(-2px); /* doar se ridică ușor */
}

/* Click feedback */
.btn.magnetic-green:active,
.btn.magnetic-magenta:active,
.btn.magnetic-blue:active {
  transform: translateY(-1px) scale(0.98);
}

.card.magnetic-card {
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}

/* strat de gradient dinamic */
.card.magnetic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), 
    rgba(0, 150, 255, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* hover vizibil */
.card.magnetic-card:hover::before {
  opacity: 1;
}

/* mic efect de ridicare */
.card.magnetic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* ascunde butoane whatsapp si call pe mobil */
@media (max-width: 900px) {
  .hide-mobile {
    display: none !important;
  }
}

/* Titlu mare cu gradient futurist alb-albastru */
.gradient-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff, #3b82f6 60%, #60a5fa);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

/* hero content */
.hero-content {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* umbră difuză pe text */
}

.hero-content .gradient-heading {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); /* puțin mai pronunțat pe titlu */
}

/* ===== Header / Nav ===== */
:root {
  --navH: 72px; /* mai înalt decât 64px pentru mai mult spațiu */
  --logoH: 36px;
  --navBg: color-mix(in oklab, var(--bg, #0b0c0f), transparent 10%);
}

/* Sticky by default */
header {
  position: sticky;
  top: 0;
  z-index: 1000; /* peste aurora/hero */
  background: var(--navBg);
  backdrop-filter: blur(10px); /* blur puțin mai pronunțat */
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* shadow subtil */
}

/* Desktop nav-list */
.nav .nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* CTA grup */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Dropdown */
.nav .has-dropdown {
  position: relative;
}

.nav .dropdown {
  position: absolute;
  inset: auto auto auto 0;
  min-width: 200px;
  display: none;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  z-index: 40;
}

.nav .has-dropdown.is-open > .dropdown {
  display: block;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  font-size: 1.25rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  padding: .35rem .55rem;
  line-height: 1;
}

/* ===== Mobile layout ===== */
@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--panel, #121317);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
      max-height 0.35s ease,
      opacity 0.30s ease,
      transform 0.30s ease,
      padding 0.20s ease;
  }

  .nav.open .nav-list {
    padding: 10px 12px;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav .nav-list a {
    display: block;
    padding: 10px 8px;
  }

  .nav .has-dropdown .dropdown {
    position: static;
    display: none;
    margin: 0 0 6px 8px;
    padding-left: 8px;
    border-left: 1px dashed rgba(255, 255, 255, .12);
    box-shadow: none;
    background: transparent;
  }

  .nav .has-dropdown.is-open > .dropdown {
    display: block;
  }

  .nav-cta .btn {
    padding: .65rem .9rem;
    font-size: .95rem;
  }
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  @media (max-width: 900px) {
    .nav .nav-list {
      transition: none !important;
    }
  }
}

/* ===== Promo Spot Slideshow (fade + dots, imagine încadrată complet) ===== */
#promoSpot{
  position: relative;
  overflow: hidden;
  background: transparent; /* fundal transparent */
}

#promoSpot .spot-frame{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  background: transparent; /* fără fundal */
}

/* Crossfade pe două imagini suprapuse */
#promoSpot .spot-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* încadrăm toată poza */
  padding: 6px;
  opacity: 0;
  transition: opacity .6s ease; /* fade smooth */
  will-change: opacity;
}
#promoSpot .spot-img.show{ opacity: 1; }

/* Dots */
#promoSpot .spot-dots{
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  display: flex; gap: 6px; justify-content: center; align-items: center;
  padding: 4px 0;
  pointer-events: auto;
}
#promoSpot .spot-dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.6);
  transform: scale(.9);
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
  opacity: .7;
  cursor: pointer;
}
#promoSpot .spot-dot[aria-selected="true"]{
  background: #3b82f6;
  border-color: #fff;
  transform: scale(1.1);
  opacity: 1;
}

/* Chip preț (dreapta sus peste imagine) — varianta accentuată */
.spot-price-chip{
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, var(--warn) 0%, #ff4d4d 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .3px;
  box-shadow:
    0 4px 8px rgba(0,0,0,.25),   /* umbră pentru detasare */
    0 0 10px rgba(255,0,0,.35);  /* glow discret */
  z-index: 5;
  pointer-events: none; /* nu blochează interacțiuni */
}

/* Respectă preferința de reduce motion */
@media (prefers-reduced-motion: reduce){
  #promoSpot .spot-img{ transition: none !important; }
}

/* ===== Ambience (Ken Burns continuu + crossfade) ===== */
.ambience{ position: relative; min-height: clamp(420px, 72vh, 820px); overflow:hidden; isolation:isolate; }
.ambience-bg{ position:absolute; inset:0; z-index:0; }
.ambience-mover{ position:absolute; inset:0; }

/* mișcare continuă a containerului – NU se resetează când schimbăm imaginea */
.ambience-mover{
  animation: ambience-move 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes ambience-move{
  0%   { transform: scale(1.08) translate3d(-1.5%, -1.5%, 0); }
  100% { transform: scale(1.18) translate3d( 1.5%,  1.5%, 0); }
}

/* fiecare slide ocupă tot spațiul; doar opacitatea se schimbă */
.ambience-slide{
  position:absolute; inset:0;
  background-size: cover;          /* fără margini vizibile */
  background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.ambience-slide.active{ opacity: 1; }

/* overlay întunecat pentru lizibilitate */
.ambience::after{
  content:""; position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(25,97,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(2,6,14,.45), rgba(2,6,14,.65));
}

/* conținut peste fundal */
.ambience-overlay{ position:relative; z-index:2; display:grid; place-items:center; text-align:center; padding:clamp(40px,8vw,120px) 0; }
.ambience-overlay .container{ width: var(--container); }
.ambience-overlay .lead{ max-width: 70ch; margin: 10px auto 16px; }

@media (prefers-reduced-motion: reduce){
  .ambience-mover{ animation: none !important; }
  .ambience-slide{ transition: none !important; }
}

.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: background-color .3s ease, transform .3s ease;
  z-index: 10;
}

.scroll-down:hover {
  background: rgba(0,0,0,0.65);
  transform: translateX(-50%) scale(1.1);
}

.scroll-down i {
  animation: bounceDown 1.4s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

/* Scroll smooth global */
html {
  scroll-behavior: smooth;
}

/* Footer */
.site-footer{
  background: rgba(12,14,18,.92);
  border-top: 1px solid rgba(255,255,255,.06);
  color: #e6e8ee;
  padding: clamp(28px, 5vw, 56px) 0 20px;
}

/* link-uri footer default */
.site-footer a{
  color: #e6e8ee;
  text-decoration: none;
  opacity:.95;
  position: relative;
  transition: color .2s ease, opacity .2s ease;
  padding-bottom: 2px;
}

/* underline animat */
.site-footer a::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  opacity:.95;
}

/* hover efect */
.site-footer a:hover{
  color: #3B82F6; /* albastru */
  opacity: 1;
}
.site-footer a:hover::after{
  transform: scaleX(1);
}

/* structură grid */
.footer-grid{
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(12, 1fr);
}
.fcol{ grid-column: span 3; display:flex; flex-direction:column; gap:10px; }
.fcol .ftitle{ font-weight: 800; font-size: 1.05rem; margin: 0 0 4px; }
.flist{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.flist i{ margin-right: 8px; opacity:.9; }

/* social icons */
.social{ list-style:none; display:flex; gap:10px; margin:8px 0 0; padding:0; }
.social a{
  width: 36px; height: 36px; display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.15); border-radius:10px;
  background: rgba(255,255,255,.04);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
/* dezactivăm underline pe social */
.social a::after{ content:none; }

.social a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.3);
}

/* newsletter */
.newsletter{ display:flex; gap:10px; align-items:center; }
.newsletter input[type="email"]{
  flex:1; min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: .7rem .9rem;
  color: #fff;
}
.newsletter input::placeholder{ color: rgba(255,255,255,.7); }

/* footer bottom */
.footer-bottom{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 26px; padding-top: 16px;
  color: rgba(230,232,238,.85);
}
.footer-bottom .mini-links{ display:flex; gap: 14px; }

/* responsive */
@media (max-width: 900px){
  .fcol{ grid-column: span 6; }
}
@media (max-width: 640px){
  .fcol{ grid-column: 1 / -1; }
  .newsletter{ flex-direction: column; align-items: stretch; }
}


/* Hover bridge pentru mini-cart */
#miniCart.cart { position: relative; }
#miniCart.cart::after{
  content:"";
  position:absolute;
  left:-8px; right:-8px;
  top:100%;
  height:14px; /* ajustează 12–18px după cum îți place */
}
#miniCart.cart .cart-dropdown{ display:none; }
#miniCart.cart.open .cart-dropdown,
#miniCart.cart.is-hover .cart-dropdown,
#miniCart.cart:hover .cart-dropdown{ display:block; }

/* ===== Header / Nav (curat) ===== */
header{
  z-index: 1000;
  background: rgba(12,14,18,.6);
  /* fără sticky aici; ai deja script de pin pe scroll */
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.6rem 1rem;          /* compact pe toate, ajustăm pe desktop mai jos */
}

/* Brand / logo */
.brand{
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.brand img{
  height: 72px;                  /* dimensiune implicită */
}

/* Linkuri */
.nav-list{
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-list a{
  opacity:.9;
  padding:.35rem .6rem;
  border-radius:10px;
  transition:transform .15s, background-color .15s, opacity .15s;
}
.nav-list a:hover{ opacity:1; transform:scale(1.06); background:rgba(255,255,255,.06); }
.nav-list a:active{ transform:scale(.98); }

/* CTA din dreapta */
.nav-cta{ display:flex; align-items:center; gap:10px; }

/* Buton meniu mobil */
.mobile-toggle{
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  color: var(--text);
  font-size: 1.15rem;            /* mai mic */
  line-height: 1;
  padding: .3rem .5rem;
}

/* ===== Mobile (≤ 900px) ===== */
@media (max-width: 900px){
  .nav{ padding: 0.5rem 0.9rem; }     /* și mai compact */
  .brand img{ height: 56px; }         /* logo mai mic pe mobil */
  .nav-cta .btn{ padding: .5rem .7rem; font-size: .9rem; }
  .nav-cta .hide-mobile{ display: none !important; }  /* ascunde butoanele mari dacă ai clasa */

  .mobile-toggle{ display: inline-flex; margin-left: auto; } /* împins în dreapta */
  .nav-list{ 
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--panel, #121317);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
    z-index: 60;

    display: flex; flex-direction: column; gap: 6px;
    padding: 0 12px;
    max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-6px);
    pointer-events: none;
    transition: max-height .35s ease, opacity .30s ease, transform .30s ease, padding .20s ease;
  }
  .nav.open .nav-list{
    padding: 10px 12px; max-height: 500px; opacity: 1; transform: translateY(0); pointer-events: auto;
  }
  .nav .nav-list a{ display:block; padding: 10px 8px; }
}

/* ===== Desktop (≥ 901px) ===== */
@media (min-width: 901px){
  .nav{ padding: 1rem 2rem; }    /* mai generos pe desktop */
}

/* Card transparent cu efect magnetic */
.card.ghost-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 2rem;
  text-align: center;
  border-radius: 1rem;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Icon mai mare și spațiu frumos */
.card.ghost-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: inherit;
}

.card.ghost-card .title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card.ghost-card .muted {
  opacity: 0.8;
}

/* Folosim deja efectul magnetic definit la .magnetic-card */