/* ==========================================================
   TIVEZ TRUST MICRO FINAL
   Compact trust UX only — no business logic.
   ========================================================== */

.tivez-trust-micro-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin:18px 0 14px;
}

.tivez-trust-micro-item{
  min-height:54px;
  display:flex;
  align-items:center;
  gap:9px;
  padding:11px 12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:15px;
  background:rgba(255,255,255,.025);
  color:rgba(255,255,255,.78);
  font-size:12px;
  line-height:1.8;
}

.tivez-trust-micro-item i{
  width:22px;
  height:22px;
  min-width:22px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(112,226,232,.10);
  color:#8fe8ed;
  font-style:normal;
  font-weight:900;
  font-size:12px;
}

.tivez-trust-details{
  margin:10px 0 16px;
  border:1px solid rgba(255,255,255,.075);
  border-radius:15px;
  overflow:hidden;
  background:rgba(255,255,255,.018);
}

.tivez-trust-details summary{
  list-style:none;
  cursor:pointer;
  padding:13px 15px;
  color:rgba(255,255,255,.86);
  font-size:12px;
  font-weight:800;
}

.tivez-trust-details summary::-webkit-details-marker{
  display:none;
}

.tivez-trust-details summary:after{
  content:"⌄";
  float:left;
  margin-inline-start:10px;
  color:#86e7ec;
  transition:transform .2s ease;
}

.tivez-trust-details[open] summary:after{
  transform:rotate(180deg);
}

.tivez-trust-details-body{
  padding:0 15px 14px;
  color:rgba(255,255,255,.58);
  font-size:11px;
  line-height:2;
}

.tivez-checkout-trust-note{
  margin:10px 18px;
  padding:10px 12px;
  border:1px solid rgba(119,227,234,.12);
  border-radius:13px;
  background:rgba(72,193,203,.045);
  color:rgba(255,255,255,.68);
  font-size:11px;
  line-height:1.9;
}

.tivez-checkout-trust-note b{
  color:#9be9ed;
}

@media(max-width:640px){
  .tivez-trust-micro-grid{
    gap:7px;
  }

  .tivez-trust-micro-item{
    padding:9px 10px;
    min-height:50px;
    font-size:11px;
  }
}
