#frugal-store-highlights {
  margin: 22px 0;
  font-family: inherit;
  --fsh-ink: #152033;
  --fsh-muted: #667085;
  --fsh-line: #e9e0d6;
  --fsh-soft: #fffaf4;
  --fsh-card: #ffffff;
  --fsh-accent: #ff8a1f;
  --fsh-deep: #20283a;
}

.fsh-admin-note {
  background: #fff7df;
  border: 1px solid #ffc46b;
  border-radius: 12px;
  padding: 13px 14px;
  font-weight: 700;
  color: #6a3f00;
  margin: 18px 0;
}

.fsh-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  border: 1px solid var(--fsh-line);
  border-radius: 18px;
  padding: 17px;
  margin: 18px 0;
  box-shadow: 0 14px 34px rgba(21,32,51,.055), 0 2px 9px rgba(21,32,51,.035);
  overflow: hidden;
}

.fsh-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #20283a 0%, #ff8a1f 100%);
}

.fsh-card h3 {
  margin: 0 0 14px;
  padding: 0 0 12px;
  font-family: Inter, Poppins, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: var(--fsh-ink);
  font-weight: 850;
  letter-spacing: .4px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(233,224,214,.9);
}

.fsh-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--fsh-accent), rgba(255,138,31,.12));
}

.fsh-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fsh-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 39px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  border: 1px solid #eee6dc;
  border-radius: 12px;
  padding: 9px 11px 9px 33px;
  color: #1d2433;
  font-size: 13.1px;
  line-height: 1.32;
  font-weight: 720;
  box-shadow: 0 2px 9px rgba(21,32,51,.025);
}

.fsh-row::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #20283a;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(32,40,58,.18);
  transform: translateY(-50%);
}

.fsh-highlights .fsh-row::before { background: #ff8a1f; }
.fsh-delivery .fsh-row::before { background: #344054; }
.fsh-programs .fsh-row::before { background: #7a4b16; }

.fsh-row span {
  min-width: 0;
}

.fsh-row strong {
  white-space: nowrap;
  color: #111827;
  font-weight: 850;
  font-size: 12.5px;
  background: #fff7df;
  border: 1px solid #ffe0a5;
  border-radius: 999px;
  padding: 4px 8px;
}

.fsh-tip-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fsh-tip {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  border: 1px solid #eee6dc;
  border-radius: 12px;
  padding: 10px 12px 10px 33px;
  font-size: 13.1px;
  line-height: 1.45;
  color: #263143;
  font-weight: 650;
}

.fsh-tip::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #20283a;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(32,40,58,.18);
}

.fsh-gem {
  background: linear-gradient(180deg, #111827 0%, #20283a 100%);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

.fsh-gem::before {
  background: linear-gradient(180deg, #ff8a1f 0%, #ffbd59 100%);
}

.fsh-gem h3 {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.16);
}

.fsh-gem p {
  margin: 0;
  color: #f8fafc;
  font-size: 13.4px;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 768px) {
  .fsh-card {
    padding: 15px;
    border-radius: 16px;
  }

  .fsh-card h3 {
    font-size: 15px;
  }

  .fsh-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .fsh-row strong {
    white-space: normal;
  }
}
