.food-store-cta {
  margin: 1.1rem 0 0.2rem;
  padding: 1rem;
  border: 1px solid #e3e8ef;
  border-radius: 18px;
  background: linear-gradient(155deg, #fbfdff 0%, #f3f8ff 100%);
}

.food-store-cta--inline {
  margin: 0.9rem 0 1.1rem;
  padding: 0.9rem;
  background: #f8fbff;
}

.food-store-cta__shots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 0.9rem;
}

.food-store-cta__shot {
  margin: 0;
}

.food-store-cta__shot img {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid #d8e1ef;
  box-shadow: 0 6px 18px rgba(16, 32, 67, 0.12);
}

.food-store-cta__meta {
  margin-bottom: 0.7rem;
}

.food-store-cta__title {
  margin: 0 0 0.25rem;
  color: #1f2f4a;
  font-size: 1rem;
  font-weight: 700;
}

.food-store-cta__desc {
  margin: 0;
  color: #4e5f77;
  font-size: 0.88rem;
  line-height: 1.4;
}

.food-store-cta__badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.food-store-cta__badge-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid #d7e0ee;
  background: #fff;
  width: 100%;
  padding: 0.45rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.food-store-cta__badge-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 42, 74, 0.15);
}

.food-store-cta__badge-link img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

@media (max-width: 640px) {
  .food-store-cta {
    padding: 0.9rem;
  }

  .food-store-cta__shot img {
    max-width: 128px;
  }

  .food-store-cta__badges {
    grid-template-columns: 1fr;
  }
}
