/* CARD STYLE */
.block-card{
  border:1px solid #e7ebf0;
  border-radius:1.5rem;
  background:#fff;
  padding:1.25rem;
  height:100%;
  transition:0.2s;
}

/* spacing between cards */
.product-row{
  row-gap:28px;
}

/* badge */
.badge-coco{
  background:#d9eee6;
  color:#146b5e;
  font-weight:500;
  font-size:14px;
  letter-spacing:.02em;
  padding:5px 14px;
  border:1px solid #b0ddcf;
}

/* specification rows */
.spec-row{
  display:flex;
  justify-content:space-between;
  border-bottom:1px dashed #d0e0d8;
  padding:8px 0;
}

.spec-row:last-child{
  border-bottom:none;
}

/* labels */
.spec-label{
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  color:#2d5b50;
}

/* values */
.spec-value,
.weight-tolerance,
.expanding-badge{
  font-size:13px;
  font-weight:500;
  color:#1b5c48;
}

/* divider */
.card-hr{
  opacity:.25;
  margin:10px 0;
  border-top:1.5px solid #bdd3c8;
}

/* index circle */
.index-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid #cceae0;
  color:#1b5c48;
  font-weight:700;
  font-size:14px;
  margin-right:10px;
}

/* product title */
.product-title{
  font-size:16px;
  font-weight:600;
  color:#1c5444;
  text-transform:uppercase;
}