.gpcm-recipe-wrap { max-width: 1040px; margin: 0 auto; }
.gpcm-recipe-wrap > h2 {
  margin: 0 0 6px;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.05;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -.02em;
}
.gpcm-recipe-wrap > .gpcm-muted {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.45;
  color: #475569;
}
.gpcm-recipe-success { border: 1px solid #cde7d4; background: #eefaf1; color: #234a2d; padding: 10px 12px; border-radius: 10px; margin: 0 0 14px 0; }
.gpcm-recipe-errors { border: 1px solid #f2c9c9; background: #fff2f2; color: #7f1d1d; padding: 10px 12px; border-radius: 10px; margin: 0 0 14px 0; }
.gpcm-recipe-errors ul { margin: 0; padding-left: 18px; }

.gpcm-recipe-form {
  border: 1px solid #dbe4ef;
  border-radius: 20px;
  padding: clamp(14px, 2.2vw, 22px);
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.1), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
}
.gpcm-recipe-form .gpcm-field { margin: 0 0 16px 0; }
.gpcm-recipe-form label {
  display: block;
  font-weight: 700;
  margin: 0 0 7px 0;
  color: #0f172a;
  font-size: 14px;
}
.gpcm-recipe-form input[type="text"],
.gpcm-recipe-form input[type="search"],
.gpcm-recipe-form input[type="url"],
.gpcm-recipe-form input[type="number"],
.gpcm-recipe-form textarea,
.gpcm-recipe-form select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 11px 12px;
  box-sizing: border-box;
  background: #fff;
  color: #0f172a;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.gpcm-recipe-form input::placeholder,
.gpcm-recipe-form textarea::placeholder {
  color: #94a3b8;
}
.gpcm-recipe-form input[type="text"]:focus,
.gpcm-recipe-form input[type="search"]:focus,
.gpcm-recipe-form input[type="url"]:focus,
.gpcm-recipe-form input[type="number"]:focus,
.gpcm-recipe-form textarea:focus,
.gpcm-recipe-form select:focus {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.14);
  outline: none;
}
.gpcm-recipe-form input:disabled,
.gpcm-recipe-form textarea:disabled,
.gpcm-recipe-form select:disabled {
  opacity: .72;
  background: #f8fafc;
  cursor: not-allowed;
}
.gpcm-recipe-form .button,
.gpcm-recipe-form button.button,
.gpcm-recipe-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}
.gpcm-recipe-form .button:hover,
.gpcm-recipe-form button.button:hover,
.gpcm-recipe-form input[type="submit"]:hover {
  border-color: #38bdf8;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.16);
  transform: translateY(-1px);
}
.gpcm-recipe-form .button:focus-visible,
.gpcm-recipe-form button.button:focus-visible,
.gpcm-recipe-form input[type="submit"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.18);
}
.gpcm-recipe-form .button.button-primary,
.gpcm-recipe-form .gpcm-form-submit .button-primary {
  border-color: #ea580c;
  color: #ffffff;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.25);
}
.gpcm-recipe-form .button.button-primary:hover,
.gpcm-recipe-form .gpcm-form-submit .button-primary:hover {
  border-color: #c2410c;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}
.gpcm-recipe-form .button.button-secondary,
.gpcm-recipe-form .gpcm-add-step,
.gpcm-recipe-form .gpcm-add-ingredient {
  border-style: dashed;
  border-color: #7dd3fc;
  background: #f0f9ff;
  color: #0369a1;
}
.gpcm-recipe-form .gpcm-remove-ingredient,
.gpcm-recipe-form .gpcm-remove-step,
.gpcm-recipe-form .gpcm-step-clear-image {
  border-color: #fecaca;
  background: #fff5f5;
  color: #b91c1c;
}
.gpcm-recipe-form .gpcm-form-submit {
  margin: 18px 0 0;
}
.gpcm-recipe-form .gpcm-muted {
  color: #475569;
  font-size: 12px;
  line-height: 1.45;
}
.gpcm-recipe-progress {
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 12px;
  margin: 0 0 14px 0;
}
.gpcm-recipe-progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 6px 0;
  font-size: 13px;
  color: #334155;
}
.gpcm-recipe-progress__row strong {
  font-size: 14px;
  color: #0f172a;
}
.gpcm-recipe-progress__bar {
  height: 10px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin: 0 0 10px 0;
}
.gpcm-recipe-progress__bar > span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  transition: width .24s ease;
  background: linear-gradient(90deg, #f97316 0%, #f59e0b 100%);
}
.gpcm-recipe-progress__bar--secondary > span {
  background: linear-gradient(90deg, #0ea5e9 0%, #0284c7 100%);
}
.gpcm-recipe-progress.is-required-complete .gpcm-recipe-progress__bar > span {
  background: linear-gradient(90deg, #16a34a 0%, #22c55e 100%);
}
.gpcm-recipe-progress__hint {
  margin: 2px 0 0;
  font-size: 12px;
  color: #475569;
}
.gpcm-recipe-tools {
  border: 1px solid #fecaca;
  background: linear-gradient(120deg, #fff7ed 0%, #fff1f2 100%);
  border-radius: 12px;
  padding: 12px;
  margin: 0 0 14px 0;
  display: grid;
  gap: 10px;
}
.gpcm-recipe-tools__text {
  color: #7c2d12;
  font-size: 13px;
  line-height: 1.45;
}
.gpcm-recipe-tools__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.gpcm-ai-fill-recipe.is-loading {
  position: relative;
  pointer-events: none;
  opacity: .88;
  padding-right: 40px;
}
.gpcm-ai-fill-recipe.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 999px;
  border: 2px solid rgba(3, 105, 161, 0.16);
  border-top-color: #0369a1;
  animation: gpcmRecipeSpin .72s linear infinite;
}
.gpcm-recipe-tools__status {
  font-size: 12px;
  font-weight: 700;
}
.gpcm-recipe-tools__status.is-success { color: #065f46; }
.gpcm-recipe-tools__status.is-error { color: #b91c1c; }
.gpcm-recipe-tools__response {
  border: 1px solid #dbe4ef;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  padding: 12px;
  display: grid;
  gap: 10px;
}
.gpcm-recipe-tools__response[hidden] { display: none !important; }
.gpcm-recipe-tools__response-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.gpcm-recipe-tools__response-head strong {
  color: #0f172a;
  font-size: 14px;
}
.gpcm-recipe-tools__response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gpcm-recipe-tools__response-actions .button {
  min-height: 34px;
}
.gpcm-recipe-tools__response-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}
.gpcm-ai-structured-card {
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(248,250,252,.95) 0%, rgba(255,255,255,.96) 100%);
  padding: 12px;
  display: grid;
  gap: 6px;
}
.gpcm-ai-structured-card--wide {
  grid-column: 1 / -1;
}
.gpcm-ai-structured-card__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #64748b;
}
.gpcm-ai-structured-card__value {
  font-size: 22px;
  line-height: 1;
  color: #0f172a;
}
.gpcm-ai-structured-card__meta {
  font-size: 12px;
  line-height: 1.45;
  color: #475569;
}
.gpcm-recipe-tools__response textarea {
  min-height: 220px;
  resize: vertical;
  font-size: 13px;
  line-height: 1.55;
  background: #fff;
}
@media (min-width: 760px) {
  .gpcm-recipe-tools__response-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.gpcm-recipe-import-actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gpcm-recipe-import-status {
  font-size: 12px;
  font-weight: 700;
}
.gpcm-recipe-import-status.is-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 6px 10px;
}
.gpcm-recipe-import-status.is-loading::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(29, 78, 216, 0.18);
  border-top-color: #1d4ed8;
  animation: gpcmRecipeSpin .72s linear infinite;
}
.gpcm-recipe-import-status.is-success { color: #065f46; }
.gpcm-recipe-import-status.is-error { color: #b91c1c; }
[data-gpcm-import-source].is-loading {
  position: relative;
  pointer-events: none;
  opacity: .88;
  padding-right: 38px;
}
[data-gpcm-import-source].is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.32);
  border-top-color: #ffffff;
  animation: gpcmRecipeSpin .72s linear infinite;
}
.gpcm-field-visibility .gpcm-visibility-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 8px;
}
@media (min-width: 760px) {
  .gpcm-field-visibility .gpcm-visibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gpcm-visibility-option {
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: #f8fbff;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.gpcm-visibility-option.is-active {
  border-color: #0f766e;
  background: #ecfdf5;
}
.gpcm-visibility-option input[type="radio"] {
  margin-top: 2px;
}
.gpcm-visibility-option span {
  display: grid;
  gap: 3px;
  color: #0f172a;
}
.gpcm-visibility-option small {
  color: #475569;
  font-weight: 500;
  line-height: 1.35;
}
.gpcm-term-checklist {
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: #f8fbff;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 8px;
  max-height: 232px;
  overflow: auto;
}
.gpcm-term-check {
  margin: 0;
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
}
.gpcm-term-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #0ea5e9;
}
.gpcm-term-check span {
  flex: 1;
  display: block;
  border: 1px solid #d8e1ef;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.35;
  padding: 8px 10px;
}
.gpcm-term-check input[type="checkbox"]:checked + span {
  border-color: #0f766e;
  background: #ecfdf5;
  color: #065f46;
  font-weight: 700;
}
@media (min-width: 900px) {
  .gpcm-term-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.gpcm-field-premium {
  border: 1px solid #fde68a;
  border-radius: 14px;
  background:
    radial-gradient(circle at top right, rgba(251, 191, 36, 0.2), transparent 34%),
    linear-gradient(180deg, #fffdf3 0%, #fff 100%);
  padding: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.gpcm-field-premium.is-locked {
  border-color: #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}
.gpcm-premium-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
}
.gpcm-premium-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #d97706;
}
.gpcm-recipe-upgrade-note {
  margin: 8px 0 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 600;
}
.gpcm-premium-video-grid {
  margin-top: 10px;
}
.gpcm-premium-video-grid.is-disabled {
  opacity: .58;
  filter: grayscale(.1);
}
.gpcm-grid-2 { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 900px) {
  .gpcm-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.gpcm-recipe-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.gpcm-recipe-servings-tool {
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 12px;
  display: grid;
  gap: 10px;
}
.gpcm-recipe-servings-tool--form {
  margin-top: 10px;
}
.gpcm-recipe-servings-tool--single {
  min-width: min(100%, 420px);
  flex: 1 1 360px;
}
.gpcm-recipe-servings-tool.is-disabled {
  opacity: .84;
}
.gpcm-recipe-servings-tool__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.gpcm-recipe-servings-tool__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.gpcm-recipe-servings-tool__copy strong {
  color: #0f172a;
  font-size: 14px;
}
.gpcm-recipe-servings-tool__copy span {
  color: #475569;
  font-size: 12px;
  line-height: 1.45;
}
.gpcm-recipe-servings-tool__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gpcm-recipe-form .gpcm-servings-adjust,
.gpcm-recipe-single-meta .gpcm-servings-adjust {
  min-width: 42px;
  padding: 0;
  font-size: 22px;
  font-weight: 500;
}
.gpcm-servings-target-input {
  width: 78px !important;
  min-width: 78px;
  text-align: center;
  font-weight: 800;
}
.gpcm-recipe-servings-tool__summary {
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}
.gpcm-recipe-servings-tool__preview {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.gpcm-recipe-servings-tool__preview li {
  display: grid;
  grid-template-columns: minmax(92px, auto) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}
.gpcm-recipe-servings-tool__preview strong {
  color: #0f766e;
  font-size: 13px;
}
.gpcm-recipe-servings-tool__preview span {
  color: #0f172a;
  font-size: 13px;
}

.gpcm-nutrition-grid { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 700px) {
  .gpcm-nutrition-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.gpcm-ingredient-rows { display: grid; gap: 8px; }
.gpcm-ingredient-row {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 0.8fr) minmax(0, 0.8fr) auto;
  gap: 8px;
  align-items: center;
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: #f8fbff;
  padding: 8px;
}
.gpcm-ingredient-row .button { white-space: nowrap; }
.gpcm-ingredient-row:focus-within {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}
@media (max-width: 860px) {
  .gpcm-ingredient-row { grid-template-columns: 1fr; }
}

.gpcm-step-rows { display: grid; gap: 12px; margin-top: 8px; }
.gpcm-step-row {
  border: 1px solid #dbe4ef;
  border-radius: 12px;
  background: #f8fbff;
  padding: 10px;
}
.gpcm-step-row__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.gpcm-step-row__actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.gpcm-step-row__badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c7d8ef;
  background: #eef5ff;
  color: #1e3a8a;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
}
.gpcm-step-drag-handle {
  cursor: grab;
  border-color: #94a3b8;
}
.gpcm-step-row.is-drag-ready .gpcm-step-drag-handle,
.gpcm-step-row.is-dragging .gpcm-step-drag-handle {
  cursor: grabbing;
}
.gpcm-step-row.is-dragging {
  opacity: .65;
  border-style: dashed;
}
.gpcm-step-row.is-drop-target {
  border-color: #0ea5e9;
  background: #eff8ff;
}
.gpcm-step-row__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
}
.gpcm-step-row__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}
.gpcm-step-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
}
.gpcm-step-preview {
  width: 100%;
  max-width: 240px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 8px;
  border: 1px solid #dbe4ef;
}
@media (max-width: 820px) {
  .gpcm-step-media { grid-template-columns: 1fr; }
  .gpcm-step-preview { max-width: 100%; }
  .gpcm-step-row__actions { width: 100%; justify-content: flex-start; }
}

.gpcm-recipe-dashboard { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 16px; align-items: start; }
.gpcm-recipe-dashboard-sidebar { border: 1px solid #e5e7eb; border-radius: 14px; background: #fff; padding: 12px; position: sticky; top: 12px; }
.gpcm-recipe-dashboard-title { font-weight: 700; margin: 0 0 10px 0; }
.gpcm-recipe-dashboard-nav { display: grid; gap: 6px; }
.gpcm-recipe-dashboard-nav a { display: block; border: 1px solid #d1d5db; border-radius: 10px; padding: 8px 10px; text-decoration: none; color: inherit; background: #fff; }
.gpcm-recipe-dashboard-nav a.is-active { background: #111827; color: #fff; border-color: #111827; }
.gpcm-recipe-dashboard-content { min-width: 0; }
@media (max-width: 960px) {
  .gpcm-recipe-dashboard { grid-template-columns: 1fr; }
  .gpcm-recipe-dashboard-sidebar { position: static; }
}

.gpcm-recipe-list-wrap { margin: 10px 0; }
.gpcm-recipe-list-header { border: 1px solid #dbe4ef; border-radius: 16px; background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); padding: 14px; margin-bottom: 14px; }
.gpcm-recipe-list-header__title { margin: 0; font-size: 30px; line-height: 1.15; color: #0f172a; }
.gpcm-recipe-list-header__breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 14px; color: #475569; margin-top: 8px; }
.gpcm-recipe-list-header__breadcrumbs a { color: #0f766e; text-decoration: none; font-weight: 700; }
.gpcm-recipe-list-header__breadcrumbs a:hover { color: #115e59; text-decoration: underline; }
.gpcm-recipe-list-header__breadcrumbs span { color: #475569; font-weight: 600; }
.gpcm-recipe-list-header__breadcrumbs .gpcm-sep { color: #94a3b8; font-weight: 400; }
.gpcm-recipe-single-header { margin-bottom: 12px; }
.gpcm-recipe-season-hero {
  position: relative;
  border-radius: 16px;
  border: 1px solid #dbe4ef;
  overflow: hidden;
  margin: 0 0 14px 0;
  background: linear-gradient(135deg, #0f766e 0%, #ea580c 100%);
}
.gpcm-recipe-season-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.62), rgba(15, 23, 42, 0.35)),
    var(--gpcm-season-bg-image);
  background-size: cover;
  background-position: center;
}
.gpcm-recipe-season-hero__inner {
  position: relative;
  z-index: 1;
  padding: 18px 18px 20px;
  color: #ffffff;
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
}
.gpcm-recipe-season-hero__kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.gpcm-recipe-season-hero h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  color: #ffffff;
}
.gpcm-recipe-season-hero h2 a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gpcm-recipe-season-hero h2 a:hover { color: #fef3c7; }
.gpcm-recipe-season-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.45;
}
.gpcm-recipe-season-hero--proljece { background: linear-gradient(135deg, #15803d 0%, #22c55e 100%); }
.gpcm-recipe-season-hero--ljeto { background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%); }
.gpcm-recipe-season-hero--jesen { background: linear-gradient(135deg, #b45309 0%, #dc2626 100%); }
.gpcm-recipe-season-hero--zima { background: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%); }
.gpcm-recipe-list-layout {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}
.gpcm-recipe-list-main { min-width: 0; display: block !important; }
.gpcm-recipe-list-main > * + * { margin-top: 12px; }
.gpcm-recipe-list-side {
  min-width: 0;
  position: sticky;
  top: 14px;
  display: grid;
  gap: 12px;
}
.gpcm-recipe-side-card {
  border: 1px solid #dbe4ef;
  border-radius: 14px;
  background: #ffffff;
  padding: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}
.gpcm-recipe-side-card h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #0f172a;
}
.gpcm-recipe-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.gpcm-recipe-side-list li {
  margin: 0;
  padding: 0;
}
.gpcm-recipe-side-list a {
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  display: block;
}
.gpcm-recipe-side-list a:hover {
  color: #0f766e;
  text-decoration: underline;
}
.gpcm-eco-nav {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}
.gpcm-eco-nav__label {
  display: block;
  margin: 0 0 10px;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gpcm-eco-nav__links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.gpcm-eco-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}
.gpcm-eco-nav__link:hover {
  border-color: #0ea5e9;
  color: #0369a1;
}
.gpcm-eco-nav__link.is-active {
  border-color: #0ea5e9;
  background: #eff6ff;
  color: #0369a1;
}
.gpcm-eco-discovery {
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
}
.gpcm-eco-card {
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 7px;
}
.gpcm-eco-card h3 {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
}
.gpcm-eco-card p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}
.gpcm-eco-card a {
  display: inline-flex;
  align-items: center;
  color: #0f766e;
  font-weight: 700;
  text-decoration: none;
}
.gpcm-eco-card a:hover {
  text-decoration: underline;
}
@media (min-width: 900px) {
  .gpcm-eco-discovery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.gpcm-recipe-cards { display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 900px) {
  .gpcm-recipe-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.gpcm-recipe-card { border: 1px solid #e5e7eb; border-radius: 14px; padding: 14px; background: #fff; box-shadow: 0 1px 6px rgba(0,0,0,.04); }
.gpcm-recipe-card h3 { margin: 0 0 8px 0; font-size: 20px; line-height: 1.25; }
.gpcm-recipe-card p { margin: 8px 0; }
.gpcm-recipe-card__meta-inline { margin-top: 0; margin-bottom: 4px; }

.gpcm-recipe-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.gpcm-recipe-chips span { border: 1px solid #d1d5db; border-radius: 999px; padding: 3px 8px; font-size: 12px; background: #f8fafc; }
.gpcm-ingredient-chip { border: 1px solid #d1d5db; border-radius: 999px; padding: 3px 8px; font-size: 12px; background: #f8fafc; cursor: pointer; color: #0f172a; }
.gpcm-ingredient-chip:hover { background: #e2e8f0; }
.gpcm-ingredient-chip--single { font-size: 13px; padding: 4px 10px; }

.gpcm-recipe-filters {
  margin-bottom: 12px;
  border: 1px solid #dbe4ef;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}
.gpcm-recipe-filters input,
.gpcm-recipe-filters select {
  width: 100%;
  min-width: 0;
  height: 40px;
}
.gpcm-recipe-filters .gpcm-btn,
.gpcm-recipe-filters a.gpcm-btn {
  width: 100%;
  min-width: 0;
  height: 40px;
}
.gpcm-recipe-filters label {
  margin: 0;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  min-height: 40px;
}
@media (min-width: 1200px) {
  .gpcm-recipe-filters { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1279px) {
  .gpcm-recipe-list-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }
  .gpcm-recipe-list-side {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gpcm-rate-widget { margin-top: 10px; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.gpcm-rate-widget.is-loading {
  position: relative;
  padding-left: 24px;
  opacity: .8;
  pointer-events: none;
}
.gpcm-rate-widget.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 999px;
  border: 2px solid rgba(15, 118, 110, 0.18);
  border-top-color: #0f766e;
  animation: gpcmRecipeSpin .72s linear infinite;
}
.gpcm-rate-star { border: 0; background: transparent; color: #d1d5db; cursor: pointer; font-size: 20px; line-height: 1; padding: 0 2px; }
.gpcm-rate-star.is-on { color: #f59e0b; }
.gpcm-rate-current { margin-left: 6px; font-size: 12px; color: #4b5563; }

.gpcm-favorite-toggle { margin-top: 10px; border: 1px solid #d1d5db; background: #fff; border-radius: 8px; padding: 7px 10px; cursor: pointer; }
.gpcm-favorite-toggle.is-active { background: #fef3c7; border-color: #f59e0b; color: #92400e; }
.gpcm-favorite-toggle.is-loading {
  position: relative;
  pointer-events: none;
  opacity: .84;
  padding-right: 36px;
}
.gpcm-favorite-toggle.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.16);
  border-top-color: #f59e0b;
  animation: gpcmRecipeSpin .72s linear infinite;
}
.gpcm-favorite-login { margin-top: 10px; display: inline-block; font-size: 12px; text-decoration: none; }

.gpcm-recipe-single-meta { margin-top: 16px; border-top: 1px solid #e5e7eb; padding-top: 14px; }
.gpcm-recipe-single-meta h3 { margin: 0 0 8px 0; font-size: 20px; }
.gpcm-recipe-single-ingredients,
.gpcm-recipe-single-nutrition { margin: 0 0 14px 0; padding-left: 18px; }
.gpcm-recipe-single-ingredients li { margin: 0 0 6px 0; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.gpcm-ingredient-qty { font-weight: 600; color: #334155; min-width: 72px; }
.gpcm-ingredient-link--single { color: #0f172a; font-weight: 700; text-decoration: none; border-bottom: 1px solid transparent; transition: color .18s ease, border-color .18s ease; }
.gpcm-ingredient-link--single:hover { color: #0f766e; border-bottom-color: rgba(15, 118, 110, 0.38); text-decoration: none; }
.gpcm-ingredient-link--muted { color: #334155; font-weight: 600; }
.gpcm-ingredient-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #dbe4ef;
  background: #fff;
  color: #1e293b;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.gpcm-ingredient-price-btn:hover { border-color: #93c5fd; background: #eff6ff; color: #1d4ed8; }
.gpcm-ingredient-price-btn.is-disabled,
.gpcm-ingredient-price-btn[disabled] {
  opacity: .56;
  cursor: not-allowed;
  border-color: #dbe4ef;
  background: #f8fafc;
  color: #64748b;
  box-shadow: none;
}
.gpcm-ingredient-price-btn.is-disabled:hover,
.gpcm-ingredient-price-btn[disabled]:hover {
  border-color: #dbe4ef;
  background: #f8fafc;
  color: #64748b;
}
.gpcm-ingredient-price-btn.is-disabled .gpcm-ingredient-price-btn__icon,
.gpcm-ingredient-price-btn[disabled] .gpcm-ingredient-price-btn__icon {
  background: #cbd5e1;
}
.gpcm-ingredient-price-btn__icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.gpcm-recipe-extra-meta {
  margin: 14px 0;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 900px) {
  .gpcm-recipe-extra-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.gpcm-recipe-meta-card {
  border: 1px solid #dbe4ef;
  border-radius: 14px;
  background: #f8fbff;
  padding: 12px;
}
.gpcm-recipe-meta-card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
}
.gpcm-recipe-video-row + .gpcm-recipe-video-row {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dbe4ef;
}
.gpcm-recipe-video-row strong {
  display: inline-block;
  margin: 0 0 6px 0;
}
.gpcm-recipe-video-embed iframe {
  width: 100%;
  max-width: 100%;
}
.gpcm-recipe-steps-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 16px; align-items: start; margin-bottom: 6px; }
.gpcm-recipe-categories-side { border: 1px solid #dbe4ef; border-radius: 14px; background: #f8fbff; padding: 12px; position: sticky; top: 14px; }
.gpcm-recipe-categories-side h4 { margin: 0 0 8px 0; font-size: 16px; color: #0f172a; }
.gpcm-recipe-categories-side__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.gpcm-recipe-categories-side__list li { list-style: none !important; margin: 0; padding: 0; }
.gpcm-recipe-categories-side__list li::before,
.gpcm-recipe-categories-side__list li::after { content: none !important; display: none !important; }
.gpcm-recipe-categories-side__link { display: flex; align-items: center; justify-content: space-between; gap: 8px; border: 1px solid #d8e1ef; border-radius: 10px; background: #fff; color: #1f2937; text-decoration: none; padding: 8px 10px; font-size: 14px; line-height: 1.25; }
.gpcm-recipe-categories-side__link em { font-style: normal; font-size: 12px; border-radius: 999px; padding: 2px 8px; background: #e8f0ff; color: #1e3a8a; }
.gpcm-recipe-categories-side__link:hover,
.gpcm-recipe-categories-side__link.is-active { border-color: #0f766e; background: #ecfdf5; color: #065f46; }
.gpcm-recipe-categories-side__link:hover em,
.gpcm-recipe-categories-side__link.is-active em { background: #d1fae5; color: #065f46; }
.gpcm-recipe-steps-main { min-width: 0; }
.gpcm-recipe-steps-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0 16px;
}
.gpcm-recipe-step-card {
  border: 1px solid #dbe4ef;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.gpcm-recipe-step-card__top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.gpcm-recipe-step-card__number {
  border-radius: 999px;
  border: 1px solid #8eb1ff;
  color: #1e3a8a;
  background: #e8f0ff;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
}
.gpcm-recipe-step-card h4 {
  margin: 4px 0 0;
  font-size: 18px;
  line-height: 1.25;
  color: #0f172a;
}
.gpcm-recipe-step-card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin: 10px 0;
  border: 1px solid #dbe4ef;
}
.gpcm-recipe-step-card p {
  margin: 0;
  color: #334155;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .gpcm-recipe-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .gpcm-recipe-list-header__title { font-size: 24px; }
  .gpcm-recipe-season-hero__inner { min-height: 126px; padding: 14px; }
  .gpcm-recipe-season-hero h2 { font-size: 22px; }
  .gpcm-recipe-list-layout { grid-template-columns: 1fr; }
  .gpcm-recipe-steps-layout { grid-template-columns: 1fr; }
  .gpcm-recipe-categories-side { position: static; }
  .gpcm-recipe-list-side { grid-template-columns: 1fr; }
  .gpcm-recipe-filters { grid-template-columns: 1fr; }
  .gpcm-recipe-section-head { flex-direction: column; }
  .gpcm-recipe-servings-tool--single { width: 100%; min-width: 0; }
}

.gpcm-recipe-discovery { margin-top: 18px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.gpcm-recipe-discovery__col { border: 1px solid #dbe4ef; border-radius: 16px; background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); padding: 14px; min-width: 0; }
.gpcm-recipe-discovery__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.gpcm-recipe-discovery__head h3 { margin: 0; font-size: 19px; line-height: 1.2; color: #0f172a; }

.gpcm-recipe-carousel-nav { display: inline-flex; gap: 6px; }
.gpcm-recipe-carousel-nav__btn { width: 34px; height: 34px; border: 1px solid #d1d5db; border-radius: 999px; background: #fff; color: #0f172a; font-size: 20px; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.gpcm-recipe-carousel-nav__btn:hover { background: #f1f5f9; border-color: #94a3b8; }
.gpcm-recipe-carousel-nav__btn:disabled { opacity: .45; cursor: default; }

.gpcm-recipe-seasonal-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; scrollbar-width: thin; }
.gpcm-recipe-seasonal-card { display: flex; flex-direction: column; min-height: 100%; border: 1px solid #dbe4ef; border-radius: 14px; background: #fff; text-decoration: none; color: #111827; overflow: hidden; scroll-snap-align: start; box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06); }
.gpcm-recipe-seasonal-card__media { height: 146px; background: linear-gradient(135deg, #0f766e 0%, #f97316 100%); color: #fff; font-size: 32px; display: flex; align-items: center; justify-content: center; }
.gpcm-recipe-seasonal-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gpcm-recipe-seasonal-card__body { padding: 10px 12px 12px; display: grid; gap: 6px; }
.gpcm-recipe-seasonal-card__date { font-size: 12px; color: #64748b; }
.gpcm-recipe-seasonal-card h4 { margin: 0; font-size: 17px; line-height: 1.25; color: #0f172a; }
.gpcm-recipe-seasonal-card p { margin: 0; font-size: 14px; color: #475569; line-height: 1.4; }
.gpcm-recipe-seasonal-card__meta { margin-top: 2px; }

.gpcm-recipe-ads-list { display: grid; gap: 12px; }
.gpcm-recipe-ad-card { border: 1px solid #dbe4ef; border-radius: 14px; background: #fff; padding: 12px; display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 12px; align-items: start; box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04); }
.gpcm-recipe-ad-card__thumb { border-radius: 10px; overflow: hidden; display: block; border: 1px solid #e2e8f0; background: #f8fafc; width: 112px; height: 92px; }
.gpcm-recipe-ad-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gpcm-recipe-ad-card__thumb--fallback { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0f766e 0%, #f97316 100%); color: #fff; font-size: 30px; }
.gpcm-recipe-ad-card__body { min-width: 0; }
.gpcm-recipe-ad-card__body h4 { margin: 0 0 6px 0; font-size: 18px; line-height: 1.25; max-width: 100%; }
.gpcm-recipe-ad-card__body h4 a { color: #0f172a; text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; word-break: break-word; }
.gpcm-recipe-ad-card__body h4 a:hover { color: #0f766e; }
.gpcm-recipe-ad-card__meta { margin: 0 0 6px 0; color: #64748b; font-size: 14px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gpcm-recipe-ad-card__chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.gpcm-recipe-ad-card__chips span { border: 1px solid #d1d5db; border-radius: 999px; padding: 2px 8px; font-size: 11px; color: #334155; background: #f8fafc; }

@media (max-width: 991px) {
  .gpcm-recipe-discovery { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gpcm-recipe-ad-card { grid-template-columns: 1fr; }
  .gpcm-recipe-ad-card__thumb { width: 100%; height: 168px; }
  .gpcm-recipe-seasonal-track { grid-auto-columns: minmax(220px, 86vw); }
  .gpcm-recipe-tools__response-head,
  .gpcm-recipe-servings-tool__head { flex-direction: column; align-items: stretch; }
  .gpcm-recipe-tools__response-actions,
  .gpcm-recipe-servings-tool__controls { width: 100%; }
  .gpcm-recipe-tools__response-actions .button,
  .gpcm-recipe-servings-tool__controls .button { flex: 1 1 auto; }
  .gpcm-servings-target-input { width: 100% !important; min-width: 0; }
  .gpcm-recipe-servings-tool__preview li { grid-template-columns: 1fr; }
}

.gpcm-ingredient-modal { position: fixed; inset: 0; z-index: 99999; background: rgba(2, 6, 23, 0.72); display: none; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(3px); }
.gpcm-ingredient-modal.is-open { display: flex; }
.gpcm-ingredient-modal__dialog { width: min(860px, 100%); max-height: 90vh; overflow: auto; background: linear-gradient(180deg,#ffffff 0,#f8fafc 100%); border-radius: 18px; padding: 18px; position: relative; border: 1px solid #e2e8f0; box-shadow: 0 24px 48px rgba(2, 6, 23, 0.35); }
.gpcm-ingredient-modal__close { position: absolute; top: 10px; right: 10px; border: 1px solid #cbd5e1; background: #ffffff; font-size: 24px; line-height: 1; cursor: pointer; color: #334155; border-radius: 10px; width: 36px; height: 36px; }
.gpcm-ingredient-modal__title { margin: 0 40px 8px 0; font-size: 24px; line-height: 1.2; }
.gpcm-ingredient-modal__image { display: block; width: 100%; max-width: 760px; max-height: 300px; object-fit: cover; object-position: center center; border-radius: 12px; margin: 10px auto 12px; border: 1px solid #e2e8f0; box-shadow: 0 8px 24px rgba(15,23,42,.08); }
.gpcm-ingredient-modal__desc { margin: 10px 0; color: #334155; font-size: 15px; line-height: 1.5; }
.gpcm-ingredient-modal__meta { margin: 8px 0 12px; }
.gpcm-ingredient-modal__market { border: 1px solid #dbeafe; border-radius: 12px; background: #eff6ff; padding: 12px; margin: 10px 0; }
.gpcm-ingredient-modal__market h4 { margin: 0 0 6px 0; font-size: 16px; color: #1e3a8a; }
.gpcm-ingredient-market-list { margin: 8px 0 0; padding-left: 18px; color: #0f172a; }
.gpcm-ingredient-market-list li { margin: 0 0 5px; }
.gpcm-ingredient-market-list span { color: #64748b; font-size: 12px; }
.gpcm-ingredient-market-product { display: inline-block; margin-left: 8px; color: #64748b; font-size: 12px; font-weight: 500; }
.gpcm-ingredient-market-store { color: #0f172a; font-weight: 700; text-decoration: none; border-bottom: 1px solid transparent; }
.gpcm-ingredient-market-store:hover { color: #0f766e; border-bottom-color: rgba(15, 118, 110, 0.35); }
.gpcm-ingredient-market-links { display: inline-flex; align-items: center; gap: 8px; margin-left: 8px; }
.gpcm-ingredient-market-location { color: #1d4ed8; font-size: 12px; text-decoration: none; border-bottom: 1px dashed rgba(29, 78, 216, 0.35); }
.gpcm-ingredient-market-location:hover { color: #1e40af; border-bottom-color: rgba(30, 64, 175, 0.55); }
.gpcm-ingredient-modal__grid { display: grid; gap: 12px; grid-template-columns: 1fr; margin-top: 10px; }
.gpcm-ingredient-modal__grid > div { border: 1px solid #e2e8f0; border-radius: 12px; background: #ffffff; padding: 12px; }
.gpcm-ingredient-modal__grid h4 { margin: 0 0 6px 0; font-size: 16px; }
.gpcm-ingredient-modal__grid ul { margin: 0; padding-left: 18px; }
.gpcm-loading-block {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 108px;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.10), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.gpcm-loading-block__orb {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12) 0%, rgba(249, 115, 22, 0.16) 100%);
  position: relative;
}
.gpcm-loading-block__orb::before,
.gpcm-loading-block__orb::after {
  content: "";
  position: absolute;
  inset: 50%;
  border-radius: 999px;
}
.gpcm-loading-block__orb::before {
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border: 3px solid rgba(15, 118, 110, 0.16);
  border-top-color: #0f766e;
  border-right-color: #f97316;
  animation: gpcmRecipeSpin .78s linear infinite;
}
.gpcm-loading-block__orb::after {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: #0f766e;
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.12);
}
.gpcm-loading-block__copy {
  display: grid;
  gap: 6px;
}
.gpcm-loading-block__copy strong {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
}
.gpcm-loading-block__copy span {
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}
.gpcm-btn { display: inline-flex; align-items: center; justify-content: center; padding: 9px 12px; border-radius: 10px; border: 1px solid #0f766e; background: #0f766e; color: #fff; text-decoration: none; font-weight: 700; font-size: 13px; }
.gpcm-btn:hover { background: #115e59; border-color: #115e59; color: #fff; }
.gpcm-btn--market { margin-top: 6px; }
@keyframes gpcmRecipeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (min-width: 900px) {
  .gpcm-ingredient-modal__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
