.mre-card {
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.mre-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.mre-name {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

.mre-duration {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.8;
}

.mre-rates {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.mre-rate-standard, .mre-rate-special {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.mre-label {
  font-size: 13px;
  opacity: 0.75;
}

.mre-value {
  font-size: 18px;
  font-weight: 700;
}

.mre-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.mre-pill {
  border: 0;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  background: rgba(0,0,0,0.06);
}

.mre-pill.is-active {
  background: rgba(0,0,0,0.85);
  color: #fff;
}

.mre-selector {
  position: relative;
}

.mre-more-toggle {
  margin-left: auto; /* pushes More to the end if space allows */
}

.mre-more-panel {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mre-more-panel {
  padding-top: 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.mre-special-wrap.is-hidden {
  visibility: hidden;  /* keeps space */
}

.mre-more-panel {
  width: 100%;
  justify-content: center;
}

.mre-more-panel[hidden] {
  display: none !important;
}