/* Styles for the specials embed. Matches the La Chirimoya palette. */
.chiri-specials {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.chiri-special {
  background: #fff;
  border: 1px solid #E3E9EB;
  border-radius: 16px;
  padding: 16px;
  font-family: 'Nunito Sans', system-ui, sans-serif;
  color: #223034;
}
.chiri-special--today {
  border-color: rgba(214, 66, 127, .45);
  box-shadow: 0 0 0 3px rgba(214, 66, 127, .12);
}
.chiri-special__flag {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #D6427F;
}
.chiri-special__day {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
  color: #66797F;
}
.chiri-special__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  display: block;
}
.chiri-special__title {
  margin: 0 0 4px;
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}
.chiri-special__body {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #66797F;
}
.chiri-special__price {
  margin: 0;
  font-family: 'Baloo 2', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #D6427F;
}
.chiri-special__was {
  font-size: 15px;
  font-weight: 600;
  color: #66797F;
}
