/* ==========================================================================
   NPA - structura: container, header, footer, grile
   ========================================================================== */

.npa-container {
  width: 100%; max-width: var(--npa-container);
  margin: 0 auto; padding: 0 var(--npa-gutter);
}
.npa-container--narrow { max-width: 820px; }
/*
 * Doar spatiere pe verticala: prescurtarea "padding: 72px 0" anula si
 * padding-ul lateral al containerului, asa ca pe telefon textul ajungea lipit
 * de marginea ecranului pe toate paginile cu "npa-container npa-section".
 */
.npa-section { padding-top: 72px; padding-bottom: 72px; }

.npa-grid { display: grid; gap: 24px; }
.npa-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.npa-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.npa-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Header ------------------------------------------------------------------ */
.npa-header { position: sticky; top: 0; z-index: 60; background: #fff; box-shadow: var(--npa-shadow-sm); }

.npa-promobar {
  background: var(--npa-navy); color: var(--npa-cyan);
  border-bottom: 2px solid var(--npa-teal);
  padding: 7px 32px; text-align: center;
  font-size: 13px; font-weight: 700; letter-spacing: .03em;
}

/* Bara de sus in navy, ca in macheta. */
.npa-topbar { background: var(--npa-navy); color: #fff; font-size: 13px; }
.npa-topbar__cred { color: #fff; }
.npa-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: 34px;
}
.npa-topbar__right { display: flex; align-items: center; gap: 22px; }
.npa-topbar__tel { display: inline-flex; align-items: center; gap: 6px; }
.npa-topbar__tel .npa-icon { color: var(--npa-cyan); }
.npa-topbar__tel a { color: #fff; font-weight: 700; }
.npa-topbar__tel a:hover { color: var(--npa-cyan); }
.npa-topbar__hours { color: #fff; opacity: .92; }
.npa-nav__inner {
  display: flex; align-items: center; gap: 12px 14px;
  min-height: 92px; padding-top: 8px; padding-bottom: 8px;
}
.npa-logo { flex: 0 0 auto; display: flex; align-items: center; max-width: 250px; }
/* Logo-ul incarcat de client poate fi de orice dimensiune - cel preluat de pe
   site-ul vechi e 2560x785. Il incadram strict, altfel imparte antetul in doua. */
.npa-logo img,
.npa-logo .custom-logo {
  height: auto; width: auto;
  max-height: 74px; max-width: 240px;
  object-fit: contain; object-position: left center;
  display: block;
}
.npa-logo .custom-logo-link { display: block; line-height: 0; max-width: 240px; }

/* Emblema hexagonala din manualul de brand e aproape patrata: singura ar avea
   60 de pixeli latime si antetul ar ramane fara nume. In modul "lockup" o
   asezam mai mare, cu numele si descrierea in dreapta. */
.npa-logo--lockup { gap: 11px; max-width: 340px; }
.npa-logo--lockup img,
.npa-logo--lockup .custom-logo { max-height: 54px; max-width: 62px; }
.npa-logo--lockup .custom-logo-link { max-width: 62px; }
.npa-logo__mark {
  display: flex; flex-direction: column; justify-content: center;
  gap: 2px; line-height: 1.05; text-decoration: none;
}
.npa-logo__name {
  font-family: var(--npa-font-head);
  font-size: 25px; font-weight: 800; letter-spacing: .01em;
  color: var(--npa-navy);
}
.npa-logo__tag {
  font-family: var(--npa-font);
  font-size: 10.5px; font-weight: 700; letter-spacing: .085em;
  text-transform: uppercase; color: var(--npa-teal);
  white-space: nowrap;
}
.npa-logo__mark:hover .npa-logo__name { color: var(--npa-blue); }
.npa-logo__text {
  font-family: var(--npa-font-head);
  font-size: 21px; font-weight: 800;
  color: var(--npa-blue); letter-spacing: -.01em;
}

/* Meniul ocupa toata inaltimea barii, iar linkurile sunt centrate in ea.
   Altfel intre marginea de jos a linkului si panoul mega ramane un spatiu
   gol de vreo 30 de pixeli: mouse-ul il traverseaza, iese de pe element si
   panoul se inchide inainte sa ajungi la el. */
.npa-menu { flex: 1 1 auto; min-width: 0; align-self: stretch; display: flex; align-items: stretch; }
.npa-menu__list {
  display: flex; flex-wrap: nowrap; justify-content: flex-end; align-items: stretch;
  gap: 0; list-style: none; margin: 0; padding: 0; width: 100%;
}
.npa-menu__list > li { display: flex; align-items: stretch; }
.npa-menu__list > li > a {
  display: flex; align-items: center; padding: 8px 6px;
  font-family: var(--npa-font-head);
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase; color: var(--npa-navy); white-space: nowrap;
}
.npa-menu__list > li > a:hover,
.npa-menu__list > .current-menu-item > a { color: var(--npa-teal); }

/* Submeniu (departamente) */
.npa-menu__list li { position: relative; }
.npa-menu__list .sub-menu {
  position: absolute; left: 0; top: 100%; z-index: 70;
  display: none; min-width: 240px; margin: 0; padding: 12px;
  list-style: none; background: #fff;
  border: 1px solid var(--npa-line); border-radius: var(--npa-radius-md);
  box-shadow: var(--npa-shadow-lg);
}
.npa-menu__list li:hover > .sub-menu,
.npa-menu__list li:focus-within > .sub-menu { display: block; }
.npa-menu__list .sub-menu a {
  display: block; padding: 7px 10px; border-radius: var(--npa-radius-sm);
  font-size: 14.5px; color: var(--npa-blue);
}
.npa-menu__list .sub-menu a:hover { background: var(--npa-bg-tint); }

.npa-nav__actions { flex: 0 0 auto; margin-left: auto; display: flex; align-items: center; gap: 8px; }

/* Butoanele de actiune din antet, ca la Synevo: fundal deschis, pictograma si
   eticheta. Cauta duce la banda de cautare, Rezultate la portal. */
.npa-nav__btn {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 42px; padding: 0 12px; border-radius: 8px;
  background: var(--npa-bg-alt); border: 1px solid var(--npa-line-soft);
  color: var(--npa-navy); font-size: 13px; font-weight: 600; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.npa-nav__btn .npa-icon { color: var(--npa-blue); flex: 0 0 auto; }
.npa-nav__btn:hover { background: #fff; border-color: var(--npa-teal); color: var(--npa-blue); }

.npa-cart-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; color: var(--npa-navy); border: 0;
  transition: background .15s ease, color .15s ease;
}
.npa-cart-btn:hover { background: var(--npa-bg-alt); color: var(--npa-blue); }
.npa-cart-btn > span:not(.npa-cart-btn__count) { display: none; }
.npa-cart-btn__count {
  position: absolute; top: 2px; right: 0;
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 10px;
  border: 2px solid #fff;
  background: var(--npa-teal); color: #fff; font-size: 12.5px; font-weight: 700;
  transition: transform .2s ease;
}
.npa-cart-btn__count.is-bumped { transform: scale(1.35); }

.npa-burger {
  display: none; width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: var(--npa-bg-tint); border: 1px solid var(--npa-line);
  border-radius: 12px; color: var(--npa-navy); cursor: pointer;
}

/* Meniul de mobil: panou care gliseaza din dreapta, peste un fundal intunecat. */
.npa-drawer { position: fixed; inset: 0; z-index: 130; }
/* Cat e meniul deschis, antetul (care il contine) trece peste butoanele lipicioase. */
body.npa-no-scroll .npa-header { z-index: 1000; }
body.npa-no-scroll .npa-sticky, body.npa-no-scroll .npa-mobilebar { display: none !important; }
.npa-drawer__backdrop { position: absolute; inset: 0; background: rgba(11, 42, 74, .55); backdrop-filter: blur(2px); }
.npa-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(400px, 92vw);
  background: #fff; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 14px 20px 32px; box-shadow: -18px 0 48px rgba(11, 42, 74, .25);
  animation: npa-drawer-in .28s cubic-bezier(.22,.61,.36,1);
  display: flex; flex-direction: column; gap: 18px;
}
@keyframes npa-drawer-in { from { transform: translateX(40px); opacity: 0; } to { transform: none; opacity: 1; } }
.npa-drawer__head { display: flex; align-items: center; justify-content: space-between; }
.npa-drawer__title { font-family: var(--npa-font-head); font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--npa-teal); }
.npa-drawer__close {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border: 1px solid var(--npa-line); border-radius: 50%; background: #fff; color: var(--npa-navy); cursor: pointer;
}
.npa-drawer__search .npa-search { max-width: none; padding: 4px 4px 4px 14px; }
.npa-drawer__search .npa-search__input { padding: 10px 0; font-size: 15px; }
.npa-drawer__search .npa-search__submit { padding: 10px 16px; }
.npa-drawer__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--npa-line-soft); }
.npa-drawer__list > li { border-bottom: 1px solid var(--npa-line-soft); }
.npa-drawer__list > li > a {
  display: block; padding: 14px 0; font-family: var(--npa-font-head);
  font-size: 15.5px; font-weight: 700; color: var(--npa-navy); text-transform: uppercase; letter-spacing: .02em;
}
.npa-drawer__list > li.menu-item-has-children { position: relative; }
.npa-drawer__list > li.menu-item-has-children > a { padding-right: 52px; }
.npa-drawer__toggle {
  position: absolute; top: 6px; right: 0; width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--npa-bg-alt); border: 0; border-radius: 10px; color: var(--npa-blue); cursor: pointer;
  transition: transform .2s ease, background .15s ease;
}
.npa-drawer__list > li.is-open > .npa-drawer__toggle { transform: rotate(180deg); background: var(--npa-cyan-bg); }
.npa-drawer .sub-menu { list-style: none; margin: 0 0 10px; padding: 0 0 0 14px; display: none; border-left: 2px solid var(--npa-cyan-bg); }
.npa-drawer__list > li.is-open > .sub-menu { display: block; }
.npa-drawer .sub-menu a { display: block; padding: 9px 0; font-weight: 500; font-size: 15px; color: var(--npa-blue); }
.npa-drawer .sub-menu a:hover { color: var(--npa-teal); }
.npa-drawer__actions { display: flex; flex-direction: column; gap: 10px; }
.npa-drawer__actions .npa-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.npa-drawer__contact { display: flex; flex-direction: column; gap: 12px; padding-top: 16px; border-top: 1px solid var(--npa-line-soft); }
.npa-drawer__tel, .npa-drawer__wa { display: flex; align-items: center; gap: 12px; color: var(--npa-navy); font-weight: 700; font-size: 16px; }
.npa-drawer__tel small { display: block; font-size: 12.5px; font-weight: 500; color: var(--npa-muted); }
.npa-drawer__tel .npa-icon, .npa-drawer__wa .npa-icon { color: var(--npa-teal); flex: 0 0 auto; }
.npa-drawer__wa { color: #128C7E; font-weight: 600; font-size: 15px; }
.npa-drawer__social { display: flex; gap: 10px; margin-top: 4px; }
.npa-drawer__social a {
  display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--npa-line); color: var(--npa-navy);
}
.npa-drawer__social a:hover { border-color: var(--npa-teal); color: var(--npa-teal); }

/* Footer ------------------------------------------------------------------ */
.npa-footer { margin-top: 72px; background: var(--npa-navy); color: var(--npa-on-navy); }
.npa-footer__top {
  display: grid; grid-template-columns: 1.35fr .85fr 1fr .85fr 1.25fr;
  gap: 36px; padding-top: 56px; padding-bottom: 44px;
}
.npa-footer__brand { max-width: 300px; }
.npa-footer__logo { width: 170px; max-width: 100%; height: auto; margin-bottom: 18px; }
.npa-footer__acred { display: flex; align-items: center; gap: 8px; margin: 12px 0 0; font-size: 13.5px; color: var(--npa-on-navy-dim); }
.npa-footer__acred .npa-icon { color: var(--npa-cyan); flex: 0 0 auto; }
.npa-footer__social { display: flex; gap: 10px; margin-top: 20px; }
.npa-footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22); color: #fff;
  transition: background .15s ease, border-color .15s ease;
}
.npa-footer__social a:hover { background: var(--npa-teal); border-color: var(--npa-teal); }
.npa-footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.npa-footer__contact li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; font-size: 14.5px; line-height: 1.5; color: var(--npa-on-navy-dim); }
.npa-footer__contact .npa-icon { color: var(--npa-cyan); margin-top: 3px; }
.npa-footer__contact a { color: var(--npa-on-navy-dim); }
.npa-footer__contact a:hover { color: #fff; }
.npa-footer__contact small { display: block; font-size: 13px; opacity: .8; }
.npa-footer__strong { color: #fff !important; font-weight: 700; font-size: 16px; }
.npa-footer__more { display: block; margin-top: 2px; color: var(--npa-cyan) !important; font-size: 13.5px; font-weight: 600; }
.npa-footer__logotext { display: block; margin-bottom: 14px; font-size: 20px; font-weight: 800; color: #fff; }
.npa-footer__desc { font-size: 14.5px; line-height: 1.6; color: var(--npa-on-navy-dim); }
.npa-footer__desc strong { color: #fff; }
.npa-footer__tel a { color: var(--npa-cyan); font-size: 18px; font-weight: 700; }

.npa-footer__title {
  font-family: var(--npa-font-head);
  margin-bottom: 14px; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--npa-cyan);
}
.npa-footer__list { list-style: none; margin: 0; padding: 0; }
.npa-footer__list a { display: block; padding: 5px 0; font-size: 14.5px; color: var(--npa-on-navy-dim); }
.npa-footer__list a:hover { color: #fff; }

.npa-footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.npa-footer__bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 16px 28px;
  padding-top: 20px; padding-bottom: 20px;
  font-size: 13px; color: var(--npa-on-navy-dim);
}
.npa-footer__copy { margin: 0; }
.npa-footer__legal { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 0; padding: 0; }
.npa-footer__legal a { color: var(--npa-on-navy-dim); }
.npa-footer__legal a:hover { color: #fff; }
.npa-footer__badges { display: flex; align-items: center; gap: 14px; }
.npa-footer__badges img { height: 32px; width: auto; opacity: .9; }

/* Carduri de articol ------------------------------------------------------ */
.npa-card {
  background: #fff; border: 1px solid var(--npa-line);
  border-radius: var(--npa-radius-lg); overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.npa-card:hover { border-color: var(--npa-line-strong); box-shadow: var(--npa-shadow); }
.npa-card__link { display: block; color: inherit; }
.npa-card__media { aspect-ratio: 3 / 2; background: var(--npa-bg-alt); }
.npa-card__media img { width: 100% !important; height: 100% !important; object-fit: cover; }
.npa-card__body { padding: 20px 22px 24px; }
.npa-card__title { margin: 0 0 8px; font-size: 18px; line-height: 1.28; }
.npa-card__excerpt { margin: 0 0 12px; font-size: 14.5px; color: var(--npa-muted); }
.npa-card__date { font-size: 13px; color: var(--npa-muted-2); }

/* Articol ----------------------------------------------------------------- */
.npa-article__head { padding: 40px 0 24px; }
.npa-article__title { font-size: 40px; line-height: 1.14; }
.npa-article__lead { font-family: var(--npa-font-head); font-weight: 600; font-size: 20px; line-height: 1.5; color: var(--npa-text-2); }
.npa-article__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13.5px; color: var(--npa-muted); }
.npa-article__reviewer { color: var(--npa-teal); font-weight: 600; }
.npa-article__cover { margin: 0 auto 32px; }
.npa-article__cover img { width: 100%; border-radius: var(--npa-radius-lg); }

.npa-related { margin-top: 40px; padding: 24px 28px; background: var(--npa-bg-alt); border-radius: var(--npa-radius-lg); }
.npa-related__title { margin-bottom: 14px; font-size: 17px; }
.npa-related__list { list-style: none; margin: 0; padding: 0; }
.npa-related__item {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--npa-line);
}
.npa-related__item:last-child { border-bottom: 0; }
.npa-related__price { flex: 0 0 auto; font-weight: 700; color: var(--npa-navy); font-size: 14.5px; }

/* 404 --------------------------------------------------------------------- */
.npa-404 { max-width: 680px; text-align: center; }
.npa-404 .npa-search { margin: 24px auto; }
.npa-404__links { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1340px) {
  /* Pe ecrane mai inguste butoanele raman doar cu pictograma, ca meniul sa
     nu se rupa pe doua randuri. */
  .npa-nav__btn { padding: 0 11px; }
  .npa-nav__btn > span { display: none; }
  .npa-logo { max-width: 220px; }
  .npa-logo img, .npa-logo .custom-logo, .npa-logo .custom-logo-link { max-width: 210px; max-height: 66px; }
}
@media (max-width: 1100px) {
  .npa-menu__list > li > a { padding: 8px 4px; font-size: 11.5px; letter-spacing: 0; }
}

@media (max-width: 1024px) {
  .npa-footer__top { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .npa-footer__brand { grid-column: 1 / -1; max-width: 420px; }
  .npa-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .npa-hide-mobile { display: none !important; }
  .npa-burger { display: inline-flex; }
  /* Bara de sus pe mobil: telefonul in stanga, programul in dreapta, pe un rand. */
  .npa-topbar { font-size: 12px; }
  .npa-topbar__inner { min-height: 32px; gap: 10px; }
  .npa-topbar__right { width: 100%; justify-content: space-between; gap: 10px; }
  .npa-topbar__hours { opacity: .75; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .npa-nav__actions { gap: 6px; }
  .npa-cart-btn { width: 42px; height: 42px; }
  .npa-menu { display: none; }
  .npa-nav__inner { min-height: 82px; }
  .npa-logo { max-width: 210px; }
  .npa-logo img, .npa-logo .custom-logo { max-height: 62px; max-width: 210px; }
  .npa-logo .custom-logo-link { max-width: 200px; }
  .npa-logo--lockup { max-width: 240px; gap: 8px; }
  .npa-logo--lockup img, .npa-logo--lockup .custom-logo { max-height: 40px; max-width: 46px; }
  .npa-logo--lockup .custom-logo-link { max-width: 46px; }
  .npa-logo__name { font-size: 20px; }
  .npa-logo__tag { font-size: 9px; letter-spacing: .07em; }
  .npa-grid--3, .npa-grid--2 { grid-template-columns: minmax(0, 1fr); }
  .npa-section { padding-top: 36px; padding-bottom: 36px; }
  .npa-article__title { font-size: 29px; }
  .npa-article__lead { font-size: 17.5px; }
  .npa-footer__top { grid-template-columns: minmax(0, 1fr); gap: 28px; padding-top: 38px; }
  .npa-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .npa-search { flex-wrap: wrap; }
  .npa-search__submit { width: 100%; }
}

@media (max-width: 520px) {
  .npa-grid--4 { grid-template-columns: minmax(0, 1fr); }
  .npa-topbar__hours { display: none; }
  .npa-topbar__right { justify-content: center; }
  .npa-drawer__panel { width: 100vw; }
}

/* Butoane lipite pe marginea din dreapta ----------------------------------- */
.npa-sticky {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 90; display: flex; flex-direction: column; gap: 8px;
}
.npa-sticky__btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: var(--npa-radius-btn) 0 0 var(--npa-radius-btn);
  background: #fff; color: var(--npa-navy);
  border: 1px solid var(--npa-line); border-right: 0;
  box-shadow: -3px 4px 14px rgba(11,42,74,.13);
  font-family: var(--npa-font-head); font-size: 13.5px; font-weight: 700;
  /* Eticheta e ascunsa pana la hover: bara nu trebuie sa acopere continutul. */
  max-width: 48px; overflow: hidden; white-space: nowrap;
  transition: max-width .25s ease, background .15s ease, color .15s ease;
}
.npa-sticky__btn:hover, .npa-sticky__btn:focus-visible { max-width: 200px; color: #fff; }
.npa-sticky__btn .npa-icon, .npa-sticky__btn svg { flex: 0 0 auto; }
.npa-sticky__label { opacity: 0; transition: opacity .2s ease .05s; }
.npa-sticky__btn:hover .npa-sticky__label,
.npa-sticky__btn:focus-visible .npa-sticky__label { opacity: 1; }

.npa-sticky__btn--wa { color: #25D366; }
.npa-sticky__btn--wa:hover { background: #25D366; color: #fff; }
.npa-sticky__btn--tel { color: var(--npa-blue); }
.npa-sticky__btn--tel:hover { background: var(--npa-blue); color: #fff; }
.npa-sticky__btn--prog { color: var(--npa-teal); }
.npa-sticky__btn--prog:hover { background: var(--npa-teal); color: #fff; }

@media (max-width: 900px) {
  /* Pe mobil, butoanele raman vizibile, mai mici, deasupra barei de jos. */
  /* Bara de jos are ~78px plus 12px de margine: lasam loc curat deasupra ei. */
  .npa-sticky { right: 10px; bottom: 128px; top: auto; transform: none; gap: 10px; }
  .npa-sticky__btn {
    width: 48px; height: 48px; max-width: 48px; padding: 0; justify-content: center;
    border-radius: 50%; border-right: 1px solid var(--npa-line); box-shadow: 0 6px 18px rgba(11,42,74,.18);
  }
  .npa-sticky__btn--wa { background: #25D366; color: #fff; border-color: #25D366; }
  .npa-sticky__btn--tel { background: var(--npa-blue); color: #fff; border-color: var(--npa-blue); }
  .npa-sticky__btn--prog { background: var(--npa-teal); color: #fff; border-color: var(--npa-teal); }
  .npa-sticky__label { display: none; }
}

/* Bara de navigare de pe mobil ------------------------------------------------
   Fundal in albastrul principal NPA, pictograme si etichete albe, umbra
   discreta. Butonul "Analize" ramane evidentiat, in turcoaz. */
.npa-mobilebar { display: none; }
@media (max-width: 900px) {
  .npa-mobilebar {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 95;
    display: grid; grid-template-columns: repeat(5, 1fr);
    padding: 11px 5px 11px;
    background: var(--npa-blue); color: #fff;
    border: 1px solid var(--npa-blue-dark); border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 42, 74, .28);
  }
  .npa-mobilebar__item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 8px 2px; background: none; border: 0; border-radius: 14px;
    color: #fff;
    font-family: var(--npa-font-head); font-size: 12.5px; font-weight: 700;
    text-decoration: none; cursor: pointer;
  }
  .npa-mobilebar__item .npa-icon { width: 27px; height: 27px; color: #fff; }
  .npa-mobilebar__item:active { background: var(--npa-blue-dark); }
  /* Actiunea principala: analizele, in turcoaz plin. */
  .npa-mobilebar__item:nth-child(2) {
    background: var(--npa-teal); color: #fff;
  }
  body { padding-bottom: 108px; }
}

/* Pop-up promo ------------------------------------------------------------ */
.npa-promo { position: fixed; inset: 0; z-index: 140; display: flex; align-items: center; justify-content: center; padding: 20px; }
.npa-promo[hidden] { display: none; }
.npa-promo__backdrop { position: absolute; inset: 0; background: rgba(11, 42, 74, .55); backdrop-filter: blur(2px); }
.npa-promo__box {
  position: relative; width: min(460px, 100%); padding: 34px 30px 28px; text-align: center;
  background: #fff; border-radius: 20px; box-shadow: 0 30px 80px rgba(11, 42, 74, .35);
  animation: npa-promo-in .3s cubic-bezier(.22,.61,.36,1);
}
@keyframes npa-promo-in { from { transform: translateY(16px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.npa-promo__close {
  position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--npa-line); background: #fff; color: var(--npa-navy); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.npa-promo__badge {
  display: inline-block; margin-bottom: 14px; padding: 8px 18px; border-radius: 999px;
  background: var(--npa-teal); color: #fff; font-family: var(--npa-font-head); font-size: 22px; font-weight: 800;
}
.npa-promo__title { margin: 0 0 10px; font-size: 24px; line-height: 1.2; color: var(--npa-navy); }
.npa-promo__text { margin: 0 0 18px; font-size: 15px; line-height: 1.55; color: var(--npa-text-2); }
.npa-promo__code {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 8px 8px 18px; border: 2px dashed var(--npa-teal); border-radius: 12px; background: var(--npa-cyan-bg);
}
.npa-promo__cod { font-family: var(--npa-font-head); font-size: 24px; font-weight: 800; letter-spacing: .1em; color: var(--npa-navy); }
.npa-promo__code .npa-btn.is-copiat { background: var(--npa-teal); border-color: var(--npa-teal); }
.npa-promo__fine { margin: 12px 0 16px; font-size: 12.5px; color: var(--npa-muted); }
.npa-promo__cta { font-weight: 700; color: var(--npa-blue); }
.npa-promo__cta:hover { color: var(--npa-teal); }
@media (max-width: 640px) {
  /* Pe mobil: un card compact jos, nu pe tot ecranul. */
  .npa-promo { align-items: flex-end; justify-content: stretch; padding: 0 10px 84px; }
  .npa-promo__backdrop { background: rgba(11, 42, 74, .35); }
  .npa-promo__box { width: 100%; padding: 18px 16px 16px; border-radius: 16px; text-align: left; }
  .npa-promo__close { top: 8px; right: 8px; width: 32px; height: 32px; }
  .npa-promo__badge { margin-bottom: 8px; padding: 4px 10px; font-size: 14px; }
  .npa-promo__title { font-size: 17px; margin-bottom: 6px; padding-right: 36px; }
  .npa-promo__text { font-size: 13px; margin-bottom: 10px; }
  .npa-promo__code { padding: 6px 6px 6px 12px; gap: 8px; }
  .npa-promo__cod { font-size: 17px; letter-spacing: .06em; }
  .npa-promo__code .npa-btn { padding: 8px 12px; font-size: 13px; white-space: nowrap; }
  .npa-promo__fine { margin: 8px 0 6px; font-size: 11.5px; }
  .npa-promo__cta { font-size: 13.5px; }
}

/* Cardurile de articole: imaginea umple caseta (peste regula Elementor img{height:auto}) */
.npa-card__media { overflow: hidden; }
.npa-card__media img, .elementor .npa-card__media img, .elementor-widget-container .npa-card__media img { width: 100% !important; height: 100% !important; max-width: none; object-fit: cover; display: block; transition: transform .35s ease; }
.npa-card:hover .npa-card__media img { transform: scale(1.04); }

/* Bara de acces rapid de deasupra subsolului */
.npa-prefooter { margin-top: 72px; padding: 0 0 0; background: var(--npa-bg-alt); border-top: 1px solid var(--npa-line); }
.npa-prefooter__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 28px 0; }
.npa-prefooter__item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--npa-line); border-radius: var(--npa-radius-md); color: inherit; text-decoration: none; transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease; }
.npa-prefooter__item:hover { transform: translateY(-2px); border-color: var(--npa-teal-bright); box-shadow: var(--npa-shadow); color: inherit; }
.npa-prefooter__icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--npa-cyan-bg); color: var(--npa-teal-mid); display: inline-flex; align-items: center; justify-content: center; }
.npa-prefooter__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.npa-prefooter__text strong { font-size: 15px; color: var(--npa-navy); line-height: 1.25; }
.npa-prefooter__text small { font-size: 12.5px; color: var(--npa-muted); }
.npa-prefooter__arrow { margin-left: auto; color: var(--npa-blue); font-weight: 700; }
.npa-prefooter + .npa-footer { margin-top: 0; }
@media (max-width: 1024px) { .npa-prefooter__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .npa-prefooter { margin-top: 40px; } .npa-prefooter__grid { grid-template-columns: 1fr; gap: 10px; padding: 20px 0; } }

/* Panoul de cautare din antet (se deschide sub meniu) */
.npa-hsearch { position: absolute; left: 0; right: 0; top: 100%; z-index: 60; background: #fff; border-top: 1px solid var(--npa-line); border-bottom: 1px solid var(--npa-line); box-shadow: 0 24px 48px rgba(11, 42, 74, .14); padding: 22px 0 20px; animation: npa-hsearch-in .18s ease; }
.npa-hsearch[hidden] { display: none; }
@keyframes npa-hsearch-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.npa-hsearch__inner { display: flex; align-items: flex-start; gap: 16px; }
.npa-hsearch__form { flex: 1 1 auto; max-width: 860px; margin: 0 auto; }
.npa-hsearch .npa-search { max-width: none; border-color: var(--npa-blue); box-shadow: 0 0 0 4px rgba(0, 91, 150, .10); }
.npa-hsearch .npa-search__input { font-size: 17px; padding: 13px 0; }
.npa-hsearch__hint { margin: 10px 4px 0; font-size: 13px; color: var(--npa-muted); }
.npa-hsearch__close { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--npa-line); background: #fff; color: var(--npa-navy); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; margin-top: 4px; }
.npa-hsearch__close:hover { border-color: var(--npa-teal); color: var(--npa-teal); }
.npa-nav__btn.is-active { background: #fff; border-color: var(--npa-blue); color: var(--npa-blue); }
.npa-hsearch .npa-suggest { max-height: min(60vh, 560px); }
