/* ==========================================================================
   ATS SITE – style.css (COMPLET)
   ========================================================================== */

/* Reset / Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0; overflow-x:hidden;}
html{scroll-behavior:smooth;} /* scroll lin pentru CTA */
body{
  font-family:"Open Sans",system-ui,Arial,sans-serif;
  background:#0b0f14;
  color:#e9eef3;
}

html, body{
  margin:0;
  padding:0;
  overflow-x: hidden; /* FIX: oprește scroll-ul orizontal */
}

/* Tokens */
:root{
  --navy:#0b1828;
  --dark:#0b0f14;
  --light:#f3f6fb;
  --accent:#ff8c00;

  /* header sizing */
  --header-h:86px;
  --header-h-small:64px;
  --header-pad-y:18px;
  --header-pad-y-small:10px;
}

.container{width:min(1320px,92%);margin:0 auto}

/* scroll offset fix */
#firmenphilosophie{ scroll-margin-top: calc(var(--header-h-small) + 10px); }
#angebot{ scroll-margin-top: calc(var(--header-h-small) + 10px); }
#leistungen-intro{ scroll-margin-top: calc(var(--header-h-small) + 10px); }
#hero-below{ scroll-margin-top: calc(var(--header-h-small) + 10px); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:rgba(11,15,20,.14);
  border-bottom:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(10px);
  transition:background .22s ease,border-color .22s ease;
}
.site-header.is-solid{
  background:rgba(11,15,20,.70);
  border-bottom:1px solid rgba(255,255,255,.14);
}

.header-row{
  display:flex;align-items:center;gap:18px;
  padding:14px 0;
  transition:padding .22s ease;
}
.site-header.is-small .header-row{ padding:8px 0; }

.brand{display:flex;align-items:center;text-decoration:none;color:#fff}
.brand-logo{
  height:40px;width:auto;display:block;
  transition:height .22s ease;
}
.site-header.is-small .brand-logo{ height:32px; }

.main-nav{display:flex;gap:22px;margin-left:auto;margin-right:10px}
.nav-link{
  color:#fff;text-decoration:none;font-weight:800;font-size:14px;
  letter-spacing:.04em;opacity:.92;
}
.nav-link:hover{opacity:1;text-decoration:underline;text-underline-offset:4px}
.nav-link.is-active{color:var(--accent);opacity:1}

.header-actions{display:flex;align-items:center;gap:12px}
.btn-cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:9px 18px;border-radius:999px;
  border:2px solid var(--accent);
  color:var(--accent);
  background:transparent;
  font-weight:900;font-size:12px;letter-spacing:.10em;text-transform:uppercase;
  text-decoration:none;white-space:nowrap;
  transition:padding .22s ease;
}
.site-header.is-small .btn-cta{ padding:7px 14px; }
.btn-cta:hover{background:var(--accent);color:var(--navy)}

/* Lang dropdown */
.lang-switch{position:relative}
.lang-btn{
  display:inline-flex;align-items:center;gap:8px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:7px 10px;border-radius:999px;
  cursor:pointer;font-weight:900;
  transition:padding .22s ease;
}
.site-header.is-small .lang-btn{ padding:6px 9px; }

.flag{width:18px;height:18px;border-radius:999px;display:block}

.lang-menu{
  position:absolute;right:0;top:calc(100% + 10px);
  min-width:170px;background:#fff;color:#0b0f0f;
  border:1px solid rgba(0,0,0,.08);
  border-radius:14px;padding:8px;
  box-shadow:0 16px 50px rgba(0,0,0,.25);
  display:none;z-index:200;
}
.lang-switch.open .lang-menu{display:block}
.lang-item{
  display:flex;align-items:center;gap:10px;
  padding:10px;border-radius:10px;
  color:#0b1828;text-decoration:none;font-weight:800;
}
.lang-item:hover{background:#f3f6fb}

/* ==========================================================================
   HERO VIDEO (exact 100vh) – FIXED CSS (nu mai rupe fișierul)
   ========================================================================== */
.hero.hero-video{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.hero-video-wrap{
  position:absolute;
  inset:0;
  overflow:hidden;
  background:#000;
  transform: translateZ(0); /* GPU layer */
}

.hero-vid{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 1400ms ease;

  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;

  z-index:1;
}

.hero-vid.is-active{
  opacity:1;
  z-index:2;
}

.hero-scrim{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 45%,
    rgba(11,15,20,.03) 0%,
    rgba(11,15,20,.18) 75%,
    rgba(11,15,20,.22) 100%);
}

.hero-content{
  position:relative;
  z-index:10;
  height:100%;
  display:flex;align-items:center;justify-content:center;
  padding-top:80px;
  text-align:center;
}

.hero-title{
  font-size:clamp(24px,3vw,52px);
  font-weight:900;
  line-height:1.12;
  margin:0 0 14px 0;
}
.accent{color:var(--accent)}
.hero-sub{margin:0 0 18px 0;opacity:.95;line-height:1.6;font-weight:600}
.hero-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.hero-cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:14px 28px;border-radius:999px;
  border:2px solid rgba(255,255,255,.70);
  background:rgba(255,255,255,.10);
  color:#fff;text-decoration:none;font-weight:900;
}
.hero-cta:hover{background:rgba(255,255,255,.20);border-color:#fff}

/* ==========================================================================
   SUB VIDEO (hero-below) – ALBASTRU + text alb
   ========================================================================== */
.hero-below{
  background:#243a58;
  color:#e9eef3;
  padding:42px 0;
}
.below-center{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}
.hero-below .below-text{
  margin:0 auto 18px auto;
  max-width:90ch;
  line-height:1.7;
  font-weight:700;
  color:#ffffff;
  opacity:1;
}
.below-list{
  list-style:none;
  margin:0 auto;
  padding:0;
  display:grid;
  gap:12px;
  max-width:720px;
}
.below-list li{
  display:grid;
  grid-template-columns:26px 1fr;
  align-items:center;
  column-gap:12px;
  justify-content:start;
  text-align:left;
  font-weight:800;
  line-height:1.35;
  color:#fff;
}
.below-list-center{justify-items:center;}
.below-list-center li{width:fit-content;}

/* bullet icon (CSS în /assets/css/style.css => img în /assets/img/) */
.bullet-ico{
  width:26px;height:26px;
  background:url("../img/mini-logo.png") center/contain no-repeat;
  transform:translateY(1px);
}

/* ==========================================================================
   PAGE / BANDS
   ========================================================================== */
.page{background:#fff;color:var(--navy)}
.band{padding:64px 0}
.band-dark{background:#243a58;color:#e9eef3}
.band-light{background:var(--light);color:var(--navy)}

.band-title{
  font-size:clamp(30px,2.8vw,56px);
  margin:0 0 16px 0;
  font-weight:900;
  line-height:1.06;
  text-align:center;
  max-width:24ch;
  margin-left:auto;
  margin-right:auto;
  text-wrap:balance;
  letter-spacing:-0.01em;
}
.band-lead{
  max-width:78ch;
  line-height:1.7;
  font-weight:700;
  opacity:.95;
  margin:0 auto;
  text-align:center;
}
.band-intro{
  display:grid;
  gap:18px;
  align-items:center;
  justify-items:center;
}

/* Firmenphilosophie */
#firmenphilosophie .container{display:flex;justify-content:center;}
#firmenphilosophie .band-intro{width:100%;max-width:1100px;}

.bullets{
  list-style:none;
  padding:0;
  margin:14px auto 0;
  display:grid;
  gap:12px;
  max-width:560px;
  justify-items:start;
}
.bullets li{
  width:100%;
  display:grid;
  grid-template-columns:26px 1fr;
  align-items:center;
  column-gap:12px;
  font-weight:800;
  line-height:1.35;
  text-align:left;
}

.center-title{
  text-align:center;
  margin:0 0 14px 0;
  font-size:30px;
  font-weight:900;
  color:var(--accent);
}
.philo-text{
  max-width:980px;
  margin:0 auto;
  line-height:1.55;
  font-weight:700;
  color:rgba(11,24,40,.86);
}

/* ==========================================================================
   CARDS (Mehrwert)
   ========================================================================== */
.cards{display:grid;grid-template-columns:repeat(3, minmax(0,1fr));gap:18px}
.card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  text-align:center;
}
.card-img{border-radius:14px;overflow:hidden}
.card-img img{width:100%;height:180px;object-fit:cover;display:block}
.card h3{margin:14px 0 10px 0;color:var(--accent);font-size:20px;font-weight:900}
.pill{
  display:inline-block;
  padding:10px 16px;
  border-radius:999px;
  border:2px solid rgba(11,24,40,.55);
  font-weight:900;
  background:#fff;
}

/* ==========================================================================
   MAP (Unternehmen)
   ========================================================================== */
.band-map{padding:0;background:#223755}
.map-bleed{
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding-top:76px;
  overflow-x: clip;
}
.map-bleed img{width:100%;height:min(640px,70vh);object-fit:cover;display:block}

.map-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  padding:18px;
  backdrop-filter:blur(6px);
}
.map-card h3{margin:0 0 10px 0;font-size:18px;font-weight:900}
.map-card p{margin:0 0 10px 0;line-height:1.75;font-weight:700}
.cols{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:14px}
.cols h4{margin:0 0 6px 0;font-weight:900}

/* ==========================================================================
   OFFER FORM (Angebot)
   ========================================================================== */
.offer-grid{display:grid;grid-template-columns:1fr 1.1fr;gap:28px;align-items:start}
.offer-card{
  background:#fff;border-radius:18px;border:1px solid rgba(0,0,0,.08);
  padding:22px;box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.form{display:grid;gap:14px}
.form label{display:grid;gap:6px}
.form span{
  font-size:12px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(11,24,40,.80)
}
.form input,.form select,.form textarea{
  width:100%;
  font:600 14px/1.4 "Open Sans",system-ui;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.18);
  background:#f5f7fb;
  outline:none;
}
.form textarea{min-height:130px;resize:vertical}
.form input:focus,.form select:focus,.form textarea:focus{
  border-color:var(--accent);
  box-shadow:0 0 0 1px rgba(255,140,0,.35);
  background:#fff
}
.btn-form{
  justify-self:start;
  border-radius:999px;border:2px solid var(--accent);
  background:transparent;color:var(--accent);
  font-weight:900;font-size:12px;letter-spacing:.10em;text-transform:uppercase;
  padding:10px 20px;cursor:pointer;
}
.btn-form:hover{background:var(--accent);color:var(--navy)}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background:#243a58;
  border-top:1px solid rgba(255,255,255,.12);
  color:#e9eef3;
}
.footer-row{
  display:flex;
  gap:28px;
  justify-content:space-between;
  padding:34px 0;
}
.footer-logo{
  height:56px;width:auto;display:block;margin-bottom:12px;
  opacity:1 !important;
  filter:none !important;
}
.footer-contact{line-height:1.45}
.footer-contact strong{font-weight:900}
.footer-contact a{color:#fff;text-decoration:none;}
.footer-contact a:hover{text-decoration:underline;text-underline-offset:4px;}
.footer-email{font-weight:800}
.footer-phone{font-weight:400;opacity:.95}
.footer-cols{display:flex;gap:40px;flex-wrap:wrap}
.footer-col{display:flex;flex-direction:column;gap:10px;min-width:180px}
.footer-col h4{margin:0 0 6px 0;color:var(--accent);font-weight:900}
.footer-col a{color:#e9eef3;text-decoration:none;font-weight:800;opacity:.92}
.footer-col a:hover{opacity:1;text-decoration:underline;text-underline-offset:4px}
.footer-bottom{padding:14px 0;border-top:1px solid rgba(255,255,255,.10);text-align:center}

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity 700ms ease, transform 700ms ease;
}
.reveal.is-in{
  opacity:1;
  transform:translateY(0);
}

/* ==========================================================================
   LEISTUNGEN
   ========================================================================== */
.leist-title{
  text-align:center;
  margin:0 0 10px 0;
  font-size:clamp(28px,2.4vw,40px);
  font-weight:900;
  color:var(--navy);
}
.leist-lead{
  text-align:center;
  max-width:92ch;
  margin:0 auto 34px;
  line-height:1.7;
  font-weight:650;
  color:rgba(11,24,40,.86);
}
.leist-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:46px;
  align-items:start;
  margin-top:18px;
}
.leist-item{text-align:center}
.leist-ico{
  width:68px;height:68px;
  margin:0 auto 14px;
  display:grid;
  place-items:center;
}
.leist-ico img{
  width:68px;height:68px;
  object-fit:contain;
  display:block;
  opacity:.95;
}
.leist-item h3{
  margin:0 0 10px 0;
  font-size:18px;
  font-weight:900;
  color:var(--navy);
  line-height:1.2;
}
.leist-item p{
  margin:0;
  color:rgba(11,24,40,.82);
  line-height:1.65;
  font-weight:650;
  text-align:left;
  max-width:34ch;
  margin-left:auto;
  margin-right:auto;
}

/* ==========================================================================
   GALERIE
   ========================================================================== */
.gallery-section-title{
  margin:0 0 18px 0;
  text-align:center;
  font-size:clamp(22px,2.2vw,34px);
  font-weight:900;
  color:var(--navy);
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:start;
}

.gallery-item{
  margin:0;
  border-radius:14px;
  overflow:hidden;
  background:#e9eef6;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}

.gallery-item img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
}

.gallery-item.is-hidden{display:none;}

@media (max-width:1100px){
  .gallery-grid{grid-template-columns:repeat(2, minmax(0,1fr));}
  .gallery-item img{height:210px;}
}

@media (max-width:680px){
  .gallery-grid{grid-template-columns:1fr;}
  .gallery-item img{height:210px;}
}

/* ==========================================================================
   RESPONSIVE (global)
   ========================================================================== */
@media (max-width:1100px){
  .leist-grid{grid-template-columns:repeat(2, minmax(0,1fr));gap:34px}
}

@media (max-width:980px){
  .main-nav{display:none}
  .btn-cta{display:none}
  .brand-logo{height:34px}

  .cards{grid-template-columns:1fr}
  .cols{grid-template-columns:1fr}
  .offer-grid{grid-template-columns:1fr}
  .band{padding:54px 0}

  .band-title{max-width:18ch}

  #firmenphilosophie .container{justify-content:flex-start}
  #firmenphilosophie .band-intro{max-width:100%}

  .map-split{grid-template-columns:1fr}
  .map-media img{max-height:340px}

  .leist-grid{grid-template-columns:1fr;gap:26px}
  .leist-item p{max-width:70ch}
}
/* ==========================================================================
   KONTAKT (pagina /kontakt)
   ========================================================================== */
.contact-hero-section{
  background:#223755;
  color:#ffffff;
  padding:80px 0 40px;
}
.contact-hero-inner{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}
.contact-hero-title{
  margin:0 0 18px 0;
  font-weight:900;
  font-size:clamp(28px,3.2vw,44px);
  line-height:1.15;
}
.contact-hero-sub{
  margin:0;
  font-size:16px;
  line-height:1.7;
  opacity:.92;
}

.contact-content-section{
  background:#e9eef3;
  color:#0b1828;
  padding:60px 0;
}

.contact-main{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(0,1.1fr);
  gap:32px;
  align-items:start;
}

.contact-boxes{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  margin-bottom:24px;
}

.contact-box{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  padding:28px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  background:transparent;
  color:#0b1828;
  text-decoration:none;
  cursor:pointer;
  transition:background .25s ease, border-color .25s ease,
             color .25s ease, box-shadow .25s ease;
}
.contact-box-icon{
  width:44px;
  height:44px;
  border-radius:999px;
  border:2px solid rgba(11,24,40,.7);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  opacity:.9;
}
.contact-box-label{
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  opacity:.7;
}
.contact-box-value{
  font-size:16px;
  font-weight:800;
  word-break:break-word;
}
.contact-box:hover{
  background:#ffffff;
  border-color:#ffffff;
  box-shadow:0 10px 26px rgba(0,0,0,.15);
  color:#0b1828;
}
.contact-box:hover .contact-box-value{
  color:#0b1828;
  text-decoration:underline;
  text-underline-offset:4px;
}

.contact-map{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.12);
  overflow:hidden;
  background:#ffffff;
}
.contact-map iframe{
  width:100%;
  height:480px;
  max-height:480px;
  display:block;
  border:0;
}

.contact-form-card{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
  background:#ffffff;
  padding:26px 26px 30px;
  color:#0b1828;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.contact-form-card h2{
  margin:0 0 10px 0;
  font-size:20px;
  font-weight:900;
}
.contact-form-card p{
  margin:0 0 20px 0;
  font-size:14px;
  opacity:.9;
}

.kontakt-form{ display:flex; flex-direction:column; gap:14px; }
.kontakt-field{ display:flex; flex-direction:column; gap:6px; }
.kontakt-field label{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  opacity:.8;
}
.kontakt-field input,
.kontakt-field select,
.kontakt-field textarea{
  font:600 14px/1.4 "Open Sans",system-ui;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.18);
  background:#f5f7fb;
  color:#0b1828;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.kontakt-field textarea{ min-height:120px; resize:vertical; }
.kontakt-field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:
    linear-gradient(45deg,transparent 50%, #ff8c00 50%),
    linear-gradient(135deg,#ff8c00 50%, transparent 50%);
  background-position:calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}
.kontakt-field input:focus,
.kontakt-field select:focus,
.kontakt-field textarea:focus{
  border-color:#ff8c00;
  box-shadow:0 0 0 1px rgba(255,140,0,.45);
  background:#ffffff;
}

.rgpd-consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:2px;
  font-size:12px;
  line-height:1.5;
  opacity:.9;
}
.rgpd-consent input{ margin-top:2px; }

.kontakt-actions{
  margin-top:8px;
  display:flex;
  justify-content:flex-end;
}
.btn-cta-form{
  padding:10px 28px;
  border-radius:999px;
  border:2px solid #ff8c00;
  background:transparent;
  color:#ff8c00;
  font-weight:900;
  font-size:14px;
  letter-spacing:.16em;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .25s ease,color .25s ease,
             box-shadow .25s ease,transform .15s ease;
}
.btn-cta-form:hover{
  background:#ff8c00;
  color:#0b1828;
  box-shadow:0 8px 24px rgba(0,0,0,.35);
  transform:translateY(-1px);
}

@media (max-width:1024px){
  .contact-main{ grid-template-columns:1fr; }
}
@media (max-width:720px){
  .contact-boxes{ grid-template-columns:1fr; }
}
@media (max-width:768px){
  .contact-hero-section{ padding:60px 0 34px; }
  .contact-map iframe{ height:360px; max-height:360px; }
  .contact-form-card{ padding:22px 18px 26px; }
}

/* ==============================
   CookieScript position fix
   ============================== */

/* mută iconul în dreapta jos */
#cookiescript_badge,
#cookiescript_badge_wrapper,
.csconsentlink-widget,
#csconsentlink,
.cookiescript_badge {
    left: auto !important;
    right: 20px !important;
    bottom: 20px !important;
}

/* dacă folosește buton flotant circular */
#cookiescript_badge {
    left: auto !important;
    right: 20px !important;
}

/* siguranță extra pentru versiuni noi */
div[id*="cookiescript"] {
    left: auto !important;
    right: 20px !important;
}

/* =========================
   MAP CONSENT (2-click)
   ========================= */
.map-consent{
  position:relative;
}

.map-consent .map-iframe{
  width:100%;
  height:480px;
  max-height:480px;
  display:block;
  border:0;
}

/* overlay/placeholder */
.map-placeholder{
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  text-align:center;
}

.map-ph-inner{
  max-width:520px;
  color:#0b1828;
}
.map-ph-title{
  font-weight:900;
  font-size:16px;
  margin:0 0 8px 0;
}
.map-ph-text{
  margin:0 0 14px 0;
  font-size:14px;
  line-height:1.6;
  color:rgba(11,24,40,.86);
}

.map-ph-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
}

.btn-map{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border:2px solid #ff8c00;
  color:#ff8c00;
  background:transparent;
  text-decoration:none;
  font-weight:800;
}
.btn-map:hover{
  background:#ff8c00;
  color:#0b1828;
}

.map-ph-link{
  color:rgba(11,24,40,.86);
  text-decoration:none;
  font-weight:400;
}
.map-ph-link:hover{
  color:#ff8c00;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width:768px){
  .map-consent .map-iframe{ height:360px; max-height:360px; }
}

/* ===============================
   COOKIE – MINI DISCRET & PROFI
================================ */

/* scoatem overlay-ul mare negru */
.cookie-overlay{
  display:none;
}

/* banner mic, jos dreapta */
.cookie-drawer{
  position: fixed;
  bottom: 24px;
  right: 24px;
  left: auto;
  width: 380px;
  max-width: calc(100% - 32px);
  background:#ffffff;
  border-radius:16px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
  padding:20px 22px;
  z-index:9999;
  font-family:inherit;
  max-height:none;
  overflow:visible;
  animation: cookieFade .35s ease;
}

/* mică animație elegantă */
@keyframes cookieFade{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:translateY(0);}
}

.cookie-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
}

.cookie-title{
  font-size:15px;
  font-weight:700;
  margin-bottom:6px;
  color:#0b1828;
}

.cookie-text{
  font-size:13px;
  color:#555;
  margin-bottom:12px;
  line-height:1.5;
}

.cookie-cat{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
  font-size:12px;
  color:#0b1828;
}

.cookie-switch{
  width:16px;
  height:16px;
}

.cookie-actions{
  display:flex;
  gap:8px;
  margin-top:12px;
  flex-wrap:wrap;
}

.cookie-accept{
  background:#ff8c00;
  color:#fff;
  border:none;
  padding:8px 14px;
  font-size:12px;
  font-weight:700;
  border-radius:999px;
  cursor:pointer;
  transition:.2s ease;
}

.cookie-accept:hover{
  background:#e67d00;
}

.cookie-reject{
  background:#f2f2f2;
  border:none;
  padding:8px 14px;
  font-size:12px;
  border-radius:999px;
  cursor:pointer;
  transition:.2s ease;
}

.cookie-reject:hover{
  background:#e6e6e6;
}

.cookie-close{
  background:none;
  border:none;
  font-size:16px;
  cursor:pointer;
  color:#888;
}

.cookie-close:hover{
  color:#000;
}

.cookie-details{
  margin-top:10px;
}

.cookie-hidden{
  display:none;
}

.cookie-powered{
  margin-top:10px;
  font-size:10px;
  color:#aaa;
}

/* responsive */
@media (max-width:600px){
  .cookie-drawer{
    left:16px;
    right:16px;
    width:auto;
    bottom:16px;
  }
}