:root{
  --rentit-orange:#EA5A0B;
  --rentit-green:#51AE32;
  --rentit-black:#000000;
  --rentit-border: rgba(0,0,0,.15);
}

/* ============ Gruppi bar ============ */
.rentit-groupsbar{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
  padding:12px 14px;
  background:var(--rentit-orange);
  border-radius:4px;
  margin: 0 0 18px 0;
}

.rentit-groupsbar a:not(.btn-theme), .rentit-groupsbar  a:not(.btn-theme):active, .rentit-groupsbar  a:not(.btn-theme):hover{
	color:#ffffff;
}

.rentit-groupchip{
  color:#fff;
  text-decoration:none;
  font-weight:700;

  display:inline-flex;
  align-items:center;
  gap:8px;

  opacity:.95;
  line-height:1.2;
}
.rentit-groupchip .dot{
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid #fff;
  display:inline-block;
}
.rentit-groupchip.is-active .dot{
  background: #ffffff;
  border-color: #ffffff;
}
.rentit-groupchip:hover{ opacity:1; }

/* ============ Sidebar filtri ============ */
.rentit-filters{
  color:var(--rentit-black);
}
.rentit-filters__title{
  font-size:22px;
  letter-spacing:.02em;
  margin:0 0 14px 0;
}

.rentit-filter{
  padding:14px 0;
  border-bottom:1px solid var(--rentit-border);
}
.rentit-filter__head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.rentit-filter__icon{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--rentit-orange);
}
.rentit-filter__icon svg{ display:block; }
.rentit-filter__label{
  font-weight:900;
}

.rentit-filter__options{
  display:grid;
  flex-wrap:wrap;
  gap:10px 16px;
}

.rentit-opt{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;

  cursor:pointer;
  user-select:none;
  font-size:15px;
}

.rentit-opt input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.rentit-opt__dot{
  width:14px;
  height:14px;
  border-radius:999px;
  border:2px solid #999;
  display:inline-block;
  flex:0 0 auto;
}

.rentit-opt input:checked + .rentit-opt__dot{
  background: var(--rentit-orange);
  border-color: var(--rentit-orange);
}

.rentit-opt__txt{
  line-height:1.25;
}

/* Azioni */
.rentit-filters__actions{
  display:flex;
  gap:10px;
  align-items:center;
  padding-top:14px;
}
.rentit-btn{
  background: var(--rentit-green);
  color:#fff;
  border:0;
  border-radius:4px;
  padding:10px 14px;
  font-weight:800;
  cursor:pointer;
}
.rentit-btn:hover{ filter: brightness(.95); }

.rentit-reset{
  color: var(--rentit-orange);
  font-weight:800;
  text-decoration:none;
}
.rentit-reset:hover{ text-decoration:underline; }

.rentit-ac{
  display:inline-block;
  margin-left:8px;
  font-size:12px;
  opacity:.9;
  white-space:nowrap;
}
/* griglia icone stile AmicoBlu */
.rentit-featgrid{
  display:flex;
  gap:24px;
  align-items:flex-start;
  flex-wrap:wrap;
  margin: 18px 0 10px 30px;
}

.rentit-featgrid__item{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-width: 86px;
}

.rentit-featgrid__ico{
  width:32px;
  height:32px;
  line-height:0;
  color:#1c2a44; /* se vuoi identico AmicoBlu */
}

.rentit-featgrid__ico svg{
  width:32px;
  height:32px;
  display:block;
}

.rentit-featgrid__txt{
  margin-top:8px;
  font-size:14px;
  line-height:1.2;
  color:#1c2a44;
}

/* bottone sotto, a tutta larghezza (opzionale) */
.rentit-card-cta .btn{
  display:block;
  width:100%;
  text-align:center;
  margin-top: 13px;
}

