:root{
  --bg:#0b0b0c;
  --panel:#0a0a0b;
  --text:#ffffff;
  --muted:rgba(255,255,255,.75);
  --border:rgba(255,255,255,.12);
  --shadow:0 16px 30px rgba(0,0,0,.45);
  --container:1100px;

  --green:#1f8a3a;
  --green2:#156c2b;
  --gold:#d2a85a;
  --gold2:#8a6729;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:0 16px}

/* header */
.topbar{
  position:sticky;top:0;z-index:100;
  background:rgba(10,10,11,.9);
  border-bottom:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(10px);
}
.topbar__inner{
  height:60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:10px;font-weight:900}
.brand__logo{
  width:22px;height:22px;border-radius:6px;
  background:linear-gradient(145deg,var(--gold),var(--gold2));
}
.nav{display:flex;gap:18px;color:var(--muted);font-size:14px}
.nav a:hover{color:#fff}


/* mobile burger menu */
.nav-toggle{
  display:none;
  width:42px;height:36px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:12px;
  background:transparent;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:8px;
}
.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
}
/* hero */
.hero--banner{
  position:relative;
  padding:32px 0 22px;
  background:url("assets/hero-tobacco.jpg") center/cover no-repeat;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.hero__overlay{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.35));
}
.hero__content{position:relative;z-index:2}
.hero__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:center;
}
.hero__left{display:flex;gap:18px;align-items:center}
.hero__copy h1{font-size:42px;line-height:1.05;margin-bottom:10px}
.bullets{padding-left:18px;line-height:1.8;color:rgba(255,255,255,.82)}

/* badge */
.badge{width:210px}
.badge__shield{
  background:rgba(0,0,0,.52);
  border:1px solid rgba(210,168,90,.7);
  border-radius:16px;
  padding:14px;
  text-align:center;
  box-shadow:var(--shadow);
}
.badge__stars{color:#f3d28b;font-size:12px;letter-spacing:3px}
.badge__title{font-weight:900;margin:10px 0}
.badge__title span{opacity:.95}

/* right image card */
.hero__right{display:flex;justify-content:flex-end}
.hero-image-card{
  position:relative;
  width:100%;
  max-width:420px;
  height:260px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
  background:#000;
}
.hero-image-card img{width:100%;height:100%;object-fit:cover;display:block}
.hero-image-card::after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.45));
}
.hero-image-label{
  position:absolute;bottom:14px;right:14px;z-index:2;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.18);
  padding:8px 12px;
  border-radius:12px;
  font-weight:900;
  font-size:13px;
}

/* hero cards */
.hero-cards{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.info-card{
  background:rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:14px;
  box-shadow:0 10px 20px rgba(0,0,0,.35);
}
.info-card h3{font-size:15px;margin-bottom:6px}
.info-card p{font-size:13px;color:rgba(255,255,255,.75)}

/* sections */
.section{padding:30px 0}
.section--dark{
  background:linear-gradient(180deg,rgba(0,0,0,.35),rgba(0,0,0,.65));
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.section__title{font-size:28px;margin-bottom:16px}

/* notice */
.notice{
  display:none;
  margin:0 0 16px;
  padding:12px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.85);
}

/* PRODUCTS: 4 pe rand + carduri 100% ALBE */
.products{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.product{
  background:#ffffff;
  border:1px solid #e2e2e2;
  border-radius:16px;
  box-shadow:0 8px 18px rgba(0,0,0,.15);
  overflow:hidden;
}

.product__imgWrap{
  background:#ffffff;
  height:180px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding:12px;
}

.product__img{
  max-height:170px;
  max-width:100%;
  filter:none;
}

.product__body{background:#ffffff;padding:12px}
.product__name{color:#000;font-weight:900;margin-bottom:6px;font-size:14px}
.product__meta{color:#000;font-size:13px;line-height:1.6}
.product__priceRow{
  background:#ffffff;
  margin-top:10px;
  display:flex;
  justify-content:center;
}

/* button */
.btn{
  border:none;
  border-radius:12px;
  height:36px;
  padding:0 16px;
  font-weight:900;
  cursor:pointer;
}
.btn--green{
  background:linear-gradient(180deg,var(--green),var(--green2));
  color:#fff;
}

/* about/contact layout */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.panel{
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.35);
  padding:16px;
}
.panel h2{margin-bottom:8px}
.panel p{color:rgba(255,255,255,.78);line-height:1.6}

.faq details{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:12px 14px;
  margin-bottom:10px;
}
.faq summary{cursor:pointer;font-weight:800}
.faq p{margin-top:10px;color:rgba(255,255,255,.78)}

.contact{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.contact__cta{display:flex;justify-content:flex-end}

/* footer */
.footer{
  padding:18px 0;
  background:rgba(10,10,11,.92);
  border-top:1px solid rgba(255,255,255,.10);
}
.footer__bottom{text-align:center;color:rgba(255,255,255,.65)}

/* responsive */
@media(max-width:1100px){
  .products{grid-template-columns:repeat(3,1fr)}
}
@media(max-width:900px){
  .hero__grid{grid-template-columns:1fr}
  .hero__left{flex-direction:column;align-items:flex-start}
  .hero__right{justify-content:center}
  .hero-cards{grid-template-columns:1fr}
  .two-col{grid-template-columns:1fr}
}
@media(max-width:700px){
  .products{grid-template-columns:repeat(2,1fr)}
  .contact{flex-direction:column;align-items:flex-start}

  .topbar__inner{position:relative}
  .nav-toggle{display:inline-flex}
  .nav{
    position:absolute;
    top:60px;
    left:0; right:0;
    display:none;
    flex-direction:column;
    gap:0;
    background:rgba(10,10,11,.98);
    border:1px solid rgba(255,255,255,.10);
    border-radius:16px;
    padding:8px 12px;
    z-index:200;
  }
  .nav a{
    padding:12px 6px;
    border-radius:12px;
  }
  .nav a:hover{background:rgba(255,255,255,.06)}
  .nav.is-open{display:flex}
}
@media(max-width:420px){
  .products{grid-template-columns:1fr}
}

/* ===== HARD FIX: pozele produselor NU pot fi acoperite ===== */

.product__imgWrap{
  position: relative !important;
  background:#fff !important;
  height:180px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  overflow:hidden !important;
}

/* omoară orice overlay/pseudo peste imagine */
.product__imgWrap::before,
.product__imgWrap::after{
  content: none !important;
  display: none !important;
}

/* imaginea mereu deasupra */
.product__img{
  position: relative !important;
  z-index: 5 !important;
  display:block !important;
  max-width:100% !important;
  max-height:100% !important;
  width:auto !important;
  height:auto !important;
  object-fit: contain !important;
  opacity:1 !important;
  visibility: visible !important;
  filter:none !important;
  mix-blend-mode: normal !important;
}



/* active page in navigation */
.nav a.is-active{color:#fff;position:relative}
.nav a.is-active::after{content:'';position:absolute;left:0;right:0;bottom:-10px;height:2px;background:rgba(255,255,255,.65);border-radius:2px}

/* pro footer */
.footer{padding:28px 0 18px;background:rgba(10,10,11,.92);border-top:1px solid rgba(255,255,255,.10)}
.footer__grid{display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:18px;margin-bottom:14px}
.footer__brand{font-weight:900;font-size:18px;margin-bottom:8px}
.footer__title{font-weight:900;margin-bottom:10px;color:#fff}
.footer__text{color:rgba(255,255,255,.72);line-height:1.6;margin:0}
.footer__links{display:flex;flex-direction:column;gap:10px}
.footer__links a{color:rgba(255,255,255,.75);text-decoration:none}
.footer__links a:hover{color:#fff}
.footer__muted{color:rgba(255,255,255,.60)}
.footer__bottom{display:flex;flex-wrap:wrap;gap:10px;align-items:center;justify-content:center;color:rgba(255,255,255,.65);padding-top:12px;border-top:1px solid rgba(255,255,255,.08)}
.footer__dot{opacity:.6}
@media(max-width:900px){.footer__grid{grid-template-columns:1fr}}


/* ===== FIX layout pagini statice ===== */
.page-wide .container {
  max-width: 1200px;
}

.page-wide .two-col {
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
}

.page-wide .hero-cards {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .page-wide .two-col {
    grid-template-columns: 1fr;
  }

  .page-wide .hero-cards {
    grid-template-columns: 1fr;
  }
}


/* ===== Sticky footer & page layout fix ===== */
html, body { height: 100%; }
body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ===== Contact page layout ===== */
.page-wide .contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 1000px) {
  .page-wide .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== Improved static pages (Contact / Despre) ===== */
.page-head{margin-bottom:18px}
.page-title{font-size:34px;line-height:1.15;letter-spacing:-0.02em;margin:0 0 8px}
.page-subtitle{color:rgba(255,255,255,.72);line-height:1.6;margin:0;max-width:70ch}

.contact-page .contact-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
  align-items:start;
}
.contact-page .panel--span2{grid-column:span 2}
@media (max-width: 1000px){
  .contact-page .contact-grid{grid-template-columns:1fr}
  .contact-page .panel--span2{grid-column:auto}
}

.about-page .about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:start;
}
.about-page .hero-image-card{margin-top:12px}
.about-page .hero-cards{margin-top:16px}
@media (max-width: 900px){
  .about-page .about-grid{grid-template-columns:1fr}
}
