/**
 * Recipe Verify shortcode styles
 *
 * Scoped under .coem-vu-verify-recipe so it doesn't bleed into Elementor /
 * theme styles.
 */

.coem-vu-verify-recipe {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
}

.coem-vu-verify-recipe__title {
  margin: 0 0 18px;
  font-size: 1.6em;
  font-weight: 600;
}

.coem-vu-verify-recipe__title--ok {
  color: #0F81C4;
}

.coem-vu-verify-recipe__title--ko {
  color: #c62828;
}

.coem-vu-verify-recipe__form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

/* Only layout — input/button appearance is left to the active theme. */
.coem-vu-verify-recipe__row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}

.coem-vu-verify-recipe__row input[type="text"] {
  flex: 1 1 320px;
}

.coem-vu-verify-recipe__result {
  margin-top: 24px;
  padding: 20px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #d8e3ea;
}

.coem-vu-verify-recipe__intro {
  margin: 0 0 18px;
  line-height: 1.5;
}

.coem-vu-verify-recipe__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}

.coem-vu-verify-recipe__row-full {
  grid-column: 1 / -1;
}

.coem-vu-verify-recipe__not-found {
  margin-top: 24px;
  padding: 16px;
  background: #fff3f3;
  border-left: 4px solid #c62828;
  border-radius: 2px;
}

@media (max-width: 560px) {
  .coem-vu-verify-recipe__grid {
    grid-template-columns: 1fr;
  }
}
