:root{
  --bg:#f6f7f9;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#6b7280;
  --line:#e5e7eb;
  --shadow: 0 14px 40px rgba(15,23,42,.08);
  --accent:#ff7a00; /* portocaliu AUTOGO24 */
  --accent2:#111827; /* aproape negru */
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:var(--bg);
}

a{color:inherit;text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding:0 18px}

/* TOPBAR (ALB) */
.topbar{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid var(--line);
}
.topbar__row{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* BRAND */
.brand{display:flex;align-items:center;gap:10px;font-weight:900;letter-spacing:.3px}
.brand__wheel{
  width:34px;height:34px;border-radius:50%;
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0 7px, #cfcfcf 8px 13px, #6b7280 14px 16px, #111827 17px 100%);
  border:1px solid rgba(17,24,39,.12);
}
.brand__text{font-size:18px}
.brand__go{color:var(--accent)}
.brand__24{font-size:12px;vertical-align:super;margin-left:1px;opacity:.9}

/* NAV */
.nav{display:flex;gap:18px}
.nav a{
  padding:10px 10px;
  border-radius:12px;
  color:#111827;
  opacity:.92;
}
.nav a:hover{background:rgba(17,24,39,.06);opacity:1}

/* ACTIONS */
.actions{display:flex;align-items:center;gap:14px}
.link{color:#111827;opacity:.9}
.link:hover{text-decoration:underline;opacity:1}
.subtle{opacity:.75}
.subtle:hover{opacity:1}

/* BUTTONS */
.btn{
  border:1px solid transparent;
  border-radius:14px;
  padding:10px 14px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  white-space:nowrap;
}
.btn--accent{
  background:var(--accent);
  color:#111;
}
.btn--accent:hover{filter:brightness(.97)}
.btn--big{height:48px;width:100%}

/* HERO */
.hero{
  padding:42px 0 16px;
  background: linear-gradient(#ffffff, #ffffff);
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.hero h1{margin:0 0 10px;font-size:40px;line-height:1.08}
.muted{color:var(--muted)}
.small{font-size:13px}
.hero__copy{padding:10px 0}

/* CHIPS */
.chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px}
.chip{
  background:#fff;
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}
.chip:hover{border-color:rgba(255,122,0,.45)}

/* SEARCH CARD */
.searchcard{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow: var(--shadow);
  padding:16px;
}
.searchcard__head{margin-bottom:12px}
.searchcard__title{font-weight:900;font-size:16px}
.searchcard__hint{color:var(--muted);font-size:13px;margin-top:4px}

.searchgrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.field label{display:block;font-size:12px;color:var(--muted);margin:0 0 6px;font-weight:700}
select,input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
}
input:focus,select:focus{
  border-color:rgba(255,122,0,.45);
  box-shadow:0 0 0 3px rgba(255,122,0,.18);
}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:10px}

.searchcard__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:12px;
  padding-top:10px;
  border-top:1px solid var(--line);
}
.check{display:flex;align-items:center;gap:10px;color:var(--muted);font-size:13px;font-weight:700}
.check input{width:16px;height:16px}

/* SECTIONS */
.section{padding:26px 0}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}
.section__head h2{margin:0;font-size:20px}

/* SORT */
.sort{display:flex;align-items:center;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.sortbtn{
  border:1px solid var(--line);
  background:#fff;
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.sortbtn:hover{border-color:rgba(255,122,0,.45)}
.sortbtn.is-active{
  border-color:rgba(255,122,0,.55);
  background:rgba(255,122,0,.12);
}

/* GRID 4 COL */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}

/* CARD */
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  transition: transform .12s ease, box-shadow .12s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(15,23,42,.10);
}
.card__img{
  height:160px;
  background: linear-gradient(135deg, #d9dde3, #f1f3f6);
  position:relative;
}
.badges{position:absolute;top:10px;left:10px;display:flex;gap:8px;flex-wrap:wrap}
.badge{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}
.badge--promoted{background:rgba(255,122,0,.14);border-color:rgba(255,122,0,.35)}
.badge--verified{background:rgba(16,185,129,.12);border-color:rgba(16,185,129,.35)}

.card__body{padding:12px 12px 14px}
.card__top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.price{font-size:18px;font-weight:950;color:var(--accent)}
.title{margin-top:6px;font-weight:950}
.meta{margin-top:4px;color:var(--muted);font-size:13px;font-weight:700}

.save{
  width:34px;height:34px;border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-weight:900;
  cursor:pointer;
}
.save:hover{border-color:rgba(255,122,0,.45)}

/* TRUST */
.trust{padding:18px 0 34px}
.trust__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.trust__item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px;
  display:flex;
  gap:12px;
  align-items:center;
}
.trust__icon{
  width:40px;height:40px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,122,0,.12);
  border:1px solid rgba(255,122,0,.25);
  font-size:18px;
}
.trust__title{font-weight:950}

/* FOOTER */
.footer{
  background:#fff;
  border-top:1px solid var(--line);
  padding:18px 0;
}
.footer__row{display:flex;align-items:center;justify-content:space-between;gap:12px}
.footer__links{display:flex;gap:14px;flex-wrap:wrap}
.footer__links a{color:var(--muted);font-weight:800}
.footer__links a:hover{text-decoration:underline;color:#111827}

/* RESPONSIVE */
@media (max-width: 1100px){
  .hero__grid{grid-template-columns:1fr}
  .grid{grid-template-columns:repeat(2,1fr)}
  .trust__grid{grid-template-columns:1fr}
}
@media (max-width: 640px){
  .nav{display:none}
  .grid{grid-template-columns:1fr}
  .hero h1{font-size:30px}
}

.cardLink{display:block;color:inherit;text-decoration:none}
.cardLink:hover{text-decoration:none}
.cardLink:focus{outline:2px solid rgba(255,122,0,.45); outline-offset:3px; border-radius:14px;}


