/* GSTS Compact Menu Cards (override-only, reversible) */
/* === Larger Right Thumbnail v3 (Premium Layout) === */

.gsts-menu-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border-radius: 18px;
}

.gsts-menu-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gsts-menu-card__titleRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.gsts-menu-card__title {
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.gsts-menu-card__price {
  font-weight: 700;
  white-space: nowrap;
}

.gsts-menu-card__desc {
  margin: 0;
  opacity: 0.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gsts-menu-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.gsts-menu-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
}

/* === Thumb: only rounded IMG (no background/frame) === */
.gsts-menu-card__thumb {
  flex: 0 0 135px;
  width: 135px;
  height: 105px;
  border-radius: 18px;
  overflow: hidden;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gsts-menu-card__thumb img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: contain !important; /* FULL image, no crop */
  border-radius: 18px !important; /* rounded photo itself */
  background: transparent !important;
}

/* Tighter spacing for cards if theme uses .card */
.gsts-menu-card.card {
  padding: 0;
}
.gsts-menu-card.card > * {
  box-sizing: border-box;
}

