/* MP_MKT_BAKERY_ONBOARDING_ZIP_01B_PublicApplicationProgressiveUX */
.mp-application-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 44px 0 72px;
}

.mp-application-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.mp-application-story,
.mp-application-panel,
.mp-application-alert {
  border: 1px solid rgba(143, 15, 22, .14);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #fbf7f5);
  box-shadow: 0 22px 48px rgba(17, 24, 39, .08);
}

.mp-application-story {
  position: sticky;
  top: 96px;
  overflow: hidden;
  padding: 34px;
}

.mp-application-story::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(143, 15, 22, .16), transparent 68%);
  pointer-events: none;
}

.mp-application-story__eyebrow,
.mp-application-step__kicker {
  margin: 0 0 12px;
  color: var(--mp-burgundy);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mp-application-story h1 {
  margin: 0;
  max-width: 760px;
  color: var(--mp-text);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.mp-application-story p {
  margin: 18px 0 0;
  color: var(--mp-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.mp-application-story__benefits {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.mp-application-story__benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(143, 15, 22, .10);
  border-radius: 999px;
  background: #fff;
  color: var(--mp-burgundy);
  font-weight: 900;
}

.mp-application-panel {
  padding: 28px;
  background: rgba(255, 255, 255, .92);
}

.mp-application-progress {
  margin-bottom: 24px;
}

.mp-application-progress__bar {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(143, 15, 22, .10);
}

.mp-application-progress__bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mp-burgundy), #d23a4a);
  transition: width .28s ease;
}

.mp-application-progress ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.mp-application-progress li {
  display: grid;
  gap: 6px;
  justify-items: center;
  color: var(--mp-muted);
  font-size: .78rem;
  text-align: center;
}

.mp-application-progress li span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(143, 15, 22, .14);
  border-radius: 999px;
  background: #fff;
  color: var(--mp-burgundy);
  font-weight: 900;
}

.mp-application-progress li.is-active,
.mp-application-progress li.is-done {
  color: var(--mp-text);
}

.mp-application-progress li.is-active span,
.mp-application-progress li.is-done span {
  background: var(--mp-burgundy);
  color: #fff;
}

.mp-application-alert {
  margin-bottom: 20px;
  padding: 20px 24px;
  background: #fff8f8;
}

.mp-application-alert strong {
  color: var(--mp-burgundy);
}

.mp-application-alert ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--mp-muted);
}

.mp-application-form {
  position: relative;
}

.mp-application-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.mp-application-step {
  display: none;
  min-height: 460px;
  animation: mpApplicationSlide .28s ease both;
}

.mp-application-step.is-active {
  display: block;
}

@keyframes mpApplicationSlide {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: translateX(0); }
}

.mp-application-step h2 {
  margin: 0;
  color: var(--mp-text);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
}

.mp-application-step > p:not(.mp-application-step__kicker) {
  margin: 14px 0 24px;
  max-width: 720px;
  color: var(--mp-muted);
  font-size: 1.03rem;
  line-height: 1.6;
}

.mp-application-flow {
  display: grid;
  gap: 16px;
}

.mp-application-reveal {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}

.mp-application-reveal.is-visible {
  display: block;
  animation: mpApplicationReveal .24s ease both;
}

@keyframes mpApplicationReveal {
  to { opacity: 1; transform: translateY(0); }
}

.mp-application-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mp-application-field {
  display: grid;
  gap: 8px;
  color: var(--mp-text);
  font-weight: 900;
}

.mp-application-field--full {
  grid-column: 1 / -1;
}

.mp-application-field span,
.mp-application-upload span strong {
  font-size: .92rem;
}

.mp-application-field--hero span {
  font-size: 1rem;
}

.mp-application-field input,
.mp-application-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, .13);
  border-radius: 17px;
  padding: 14px 15px;
  font: inherit;
  color: var(--mp-text);
  background: #fff;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.mp-application-field input:focus,
.mp-application-field textarea:focus {
  outline: 0;
  border-color: var(--mp-burgundy);
  box-shadow: 0 0 0 4px rgba(143, 15, 22, .11), 0 14px 30px rgba(17, 24, 39, .07);
  transform: translateY(-1px);
}

.mp-application-choice-group {
  margin-top: 26px;
}

.mp-application-choice-group:first-of-type {
  margin-top: 0;
}

.mp-application-choice-group h3 {
  margin: 0 0 12px;
  color: var(--mp-text);
  font-size: 1.15rem;
}

.mp-application-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mp-application-choice {
  display: grid;
  min-height: 102px;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(143, 15, 22, .12);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fff8f8);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.mp-application-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mp-application-choice > span {
  font-size: 1.35rem;
}

.mp-application-choice strong {
  color: var(--mp-text);
  font-size: .95rem;
}

.mp-application-choice:hover,
.mp-application-choice:focus-within,
.mp-application-choice.is-selected {
  transform: translateY(-2px);
  border-color: rgba(143, 15, 22, .28);
  box-shadow: 0 16px 32px rgba(17, 24, 39, .08);
}

.mp-application-choice.is-selected {
  background: linear-gradient(180deg, #fff7f7, #fff);
}

.mp-application-photo-meter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(143, 15, 22, .12);
  border-radius: 18px;
  background: #fff8f8;
  color: var(--mp-muted);
}

.mp-application-photo-meter strong {
  color: var(--mp-burgundy);
}

.mp-application-photo-meter strong.is-complete {
  color: #087f5b;
}

.mp-application-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mp-application-product {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(143, 15, 22, .12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, .045);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.mp-application-product.has-file {
  border-color: rgba(8, 127, 91, .24);
  box-shadow: 0 16px 34px rgba(8, 127, 91, .07);
}

.mp-application-product__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mp-application-product__head strong {
  color: var(--mp-burgundy);
}

.mp-application-product__head span {
  padding: 4px 9px;
  border-radius: 999px;
  background: #fff3f3;
  color: var(--mp-burgundy);
  font-size: .78rem;
  font-weight: 900;
}

.mp-application-upload input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mp-application-upload__box {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px dashed rgba(143, 15, 22, .32);
  border-radius: 16px;
  background: #fff8f8;
  color: var(--mp-burgundy);
  cursor: pointer;
}

.mp-application-upload__box small {
  color: var(--mp-muted);
  font-weight: 700;
}

.mp-application-review-box {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(143, 15, 22, .12);
  border-radius: 20px;
  background: #fff8f8;
}

.mp-application-review-box strong {
  color: var(--mp-burgundy);
}

.mp-application-review-box ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--mp-muted);
  line-height: 1.55;
}

.mp-application-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(143, 15, 22, .10);
}

.mp-application-btn,
.mp-application-link-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.mp-application-btn {
  border: 0;
  background: var(--mp-burgundy);
  color: #fff;
  box-shadow: 0 14px 26px rgba(143, 15, 22, .18);
}

.mp-application-link-button {
  border: 1px solid rgba(143, 15, 22, .16);
  background: #fff;
  color: var(--mp-burgundy);
}

.mp-application-link {
  color: var(--mp-burgundy);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .mp-application-shell {
    grid-template-columns: 1fr;
  }

  .mp-application-story {
    position: relative;
    top: auto;
  }

  .mp-application-story__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .mp-application-page {
    padding: 28px 0 56px;
  }

  .mp-application-story,
  .mp-application-panel {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .mp-application-progress ol {
    grid-template-columns: repeat(5, 1fr);
  }

  .mp-application-progress li strong {
    display: none;
  }

  .mp-application-mini-grid,
  .mp-application-choice-grid,
  .mp-application-products,
  .mp-application-story__benefits {
    grid-template-columns: 1fr;
  }

  .mp-application-step {
    min-height: auto;
  }

  .mp-application-photo-meter {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01C_PublicApplicationFlowAndPhotosUX */
.mp-application-progress ol {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mp-application-mini-grid--identity {
  align-items: stretch;
}

.mp-application-upload--logo .mp-application-upload__box {
  min-height: 150px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mp-application-logo-preview {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  border: 1px dashed rgba(151, 0, 20, .26);
  border-radius: 22px;
  background-color: #fff;
  background-position: center;
  background-size: cover;
  color: var(--mp-burgundy, #970014);
  font-size: 28px;
  font-weight: 900;
}

.mp-application-dropzone {
  display: grid;
  place-items: center;
  min-height: 250px;
  margin: 20px 0;
  padding: 34px;
  border: 1.5px dashed rgba(151, 0, 20, .34);
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(151, 0, 20, .08), transparent 36%),
    linear-gradient(180deg, #fff, #fff8f8);
  box-shadow: 0 18px 42px rgba(17, 24, 39, .055);
  color: var(--mp-text, #252a35);
  cursor: pointer;
  text-align: center;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.mp-application-dropzone:hover,
.mp-application-dropzone:focus-within,
.mp-application-dropzone.is-dragover {
  transform: translateY(-2px);
  border-color: rgba(151, 0, 20, .62);
  background:
    radial-gradient(circle at top left, rgba(151, 0, 20, .12), transparent 38%),
    linear-gradient(180deg, #fff, #fff3f4);
  box-shadow: 0 24px 54px rgba(151, 0, 20, .10);
}

.mp-application-dropzone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mp-application-dropzone__icon {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 26px;
  background: var(--mp-burgundy, #970014);
  color: #fff;
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(151, 0, 20, .22);
}

.mp-application-dropzone strong {
  display: block;
  color: var(--mp-text, #252a35);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.mp-application-dropzone small {
  display: block;
  margin-top: 8px;
  color: var(--mp-muted, #6b7280);
  font-size: .98rem;
}

.mp-application-selected-files {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(151, 0, 20, .12);
  border-radius: 18px;
  background: #fff;
}

.mp-application-selected-files strong,
.mp-application-selected-files span {
  display: block;
}

.mp-application-selected-files strong {
  color: var(--mp-text, #252a35);
}

.mp-application-selected-files span {
  margin-top: 3px;
  color: var(--mp-muted, #6b7280);
}

.mp-application-selected-files button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(151, 0, 20, .18);
  border-radius: 999px;
  background: #fff;
  color: var(--mp-burgundy, #970014);
  font-weight: 800;
  cursor: pointer;
}

.mp-application-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.mp-application-photo-card {
  overflow: hidden;
  border: 1px solid rgba(151, 0, 20, .13);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(17, 24, 39, .06);
}

.mp-application-photo-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff3f4;
}

.mp-application-photo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-application-photo-card__body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.mp-application-product__head span.is-optional {
  background: #f3f4f6;
  color: #6b7280;
}

.mp-application-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 14px;
  background: #fff;
  color: var(--mp-text, #252a35);
  font: inherit;
}

.mp-application-field select:focus {
  outline: 2px solid rgba(151, 0, 20, .18);
  border-color: rgba(151, 0, 20, .40);
}

.mp-application-field textarea {
  resize: vertical;
}

.mp-application-photo-meter strong.is-complete {
  color: #087f5b;
}

@media (max-width: 860px) {
  .mp-application-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mp-application-dropzone {
    min-height: 210px;
    padding: 26px 18px;
  }

  .mp-application-selected-files {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01D_PublicApplicationStep1IdentityUX */
.mp-application-page--single {
  max-width: 980px;
}

.mp-application-shell--single {
  display: block;
}

.mp-application-panel--single {
  padding: 34px;
}

.mp-application-page--single .mp-application-step h2 {
  max-width: 760px;
}

.mp-application-flow--vertical {
  max-width: 820px;
  margin: 0 auto;
  gap: 26px;
}

.mp-application-field--center {
  text-align: center;
}

.mp-application-field--center input {
  min-height: 62px;
  text-align: center;
  font-size: 1.14rem;
  font-weight: 800;
}

.mp-application-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-height: 40px;
  margin: 0 0 22px;
}

.mp-application-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(151, 0, 20, .12);
  border-radius: 999px;
  background: #fff8f8;
  color: var(--mp-burgundy, #970014);
  font-size: .86rem;
  font-weight: 900;
}

.mp-application-question-block {
  margin-bottom: 14px;
}

.mp-application-question-block__eyebrow {
  margin: 0 0 6px;
  color: var(--mp-burgundy, #970014);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mp-application-question-block h3 {
  margin: 0;
  color: var(--mp-text, #252a35);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.mp-application-question-block p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--mp-muted, #6b7280);
  line-height: 1.55;
}

.mp-application-mini-grid--location {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mp-application-identity-block {
  padding: 22px 26px 24px;
  border: 1px solid rgba(151, 0, 20, .12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(151, 0, 20, .08), transparent 36%),
    linear-gradient(180deg, #fff, #fff8f8);
  box-shadow: 0 20px 44px rgba(17, 24, 39, .06);
}

.mp-application-upload--logo-large .mp-application-upload__box {
  min-height: 96px;
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 20px;
  gap: 6px;
}

.mp-application-upload--logo-large .mp-application-logo-preview {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 28px;
  box-shadow: 0 10px 22px rgba(17, 24, 39, .06);
}

.mp-application-field--marketing {
  margin-top: 18px;
}

.mp-application-field--marketing input {
  min-height: 68px;
  font-size: 1.08rem;
  font-weight: 800;
}

.mp-application-field small {
  color: var(--mp-muted, #6b7280);
  font-weight: 700;
  line-height: 1.4;
}

.mp-application-field select {
  width: 100%;
  min-height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, .12);
  border-radius: 17px;
  background: #fff;
  color: var(--mp-text, #252a35);
  font: inherit;
  font-weight: 800;
}

.mp-application-field select:focus {
  outline: 0;
  border-color: var(--mp-burgundy, #970014);
  box-shadow: 0 0 0 4px rgba(143, 15, 22, .11);
}

@media (max-width: 760px) {
  .mp-application-panel--single {
    padding: 24px 18px;
  }

  .mp-application-mini-grid--location {
    grid-template-columns: 1fr;
  }

  .mp-application-identity-block {
    padding: 20px;
  }

  .mp-application-upload--logo-large .mp-application-upload__box {
    min-height: 190px;
  }
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01E_SelectedCardsFeedback
 * Feedback visual para cards seleccionables en propuesta de valor.
 * Mantiene compatibilidad con variantes de markup:
 * - card con input interno usando :has(input:checked)
 * - card con clases is-selected / is-active generadas por JS
 * - labels dentro de grillas de opciones.
 */
.mp-application-option-card,
.mp-application-choice-card,
.mp-application-select-card,
.mp-application-card-option,
.mp-application-pill-card,
.mp-application-options-grid label,
.mp-application-choice-grid label,
[data-option-card] {
  position: relative;
}

.mp-application-option-card:has(input:checked),
.mp-application-choice-card:has(input:checked),
.mp-application-select-card:has(input:checked),
.mp-application-card-option:has(input:checked),
.mp-application-pill-card:has(input:checked),
.mp-application-options-grid label:has(input:checked),
.mp-application-choice-grid label:has(input:checked),
[data-option-card]:has(input:checked),
.mp-application-option-card.is-selected,
.mp-application-choice-card.is-selected,
.mp-application-select-card.is-selected,
.mp-application-card-option.is-selected,
.mp-application-pill-card.is-selected,
[data-option-card].is-selected,
.mp-application-option-card.is-active,
.mp-application-choice-card.is-active,
.mp-application-select-card.is-active,
.mp-application-card-option.is-active,
.mp-application-pill-card.is-active,
[data-option-card].is-active {
  border-color: rgba(151, 0, 20, 0.42) !important;
  background:
    radial-gradient(circle at top right, rgba(151, 0, 20, 0.10), transparent 36%),
    #fff7f8 !important;
  box-shadow: 0 16px 34px rgba(151, 0, 20, 0.10) !important;
  transform: translateY(-1px);
}

.mp-application-option-card:has(input:checked)::after,
.mp-application-choice-card:has(input:checked)::after,
.mp-application-select-card:has(input:checked)::after,
.mp-application-card-option:has(input:checked)::after,
.mp-application-pill-card:has(input:checked)::after,
.mp-application-options-grid label:has(input:checked)::after,
.mp-application-choice-grid label:has(input:checked)::after,
[data-option-card]:has(input:checked)::after,
.mp-application-option-card.is-selected::after,
.mp-application-choice-card.is-selected::after,
.mp-application-select-card.is-selected::after,
.mp-application-card-option.is-selected::after,
.mp-application-pill-card.is-selected::after,
[data-option-card].is-selected::after,
.mp-application-option-card.is-active::after,
.mp-application-choice-card.is-active::after,
.mp-application-select-card.is-active::after,
.mp-application-card-option.is-active::after,
.mp-application-pill-card.is-active::after,
[data-option-card].is-active::after {
  content: "✓";
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #970014;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(151, 0, 20, 0.22);
  z-index: 2;
}

.mp-application-option-card:has(input:focus-visible),
.mp-application-choice-card:has(input:focus-visible),
.mp-application-select-card:has(input:focus-visible),
.mp-application-card-option:has(input:focus-visible),
.mp-application-pill-card:has(input:focus-visible),
.mp-application-options-grid label:has(input:focus-visible),
.mp-application-choice-grid label:has(input:focus-visible),
[data-option-card]:has(input:focus-visible) {
  outline: 3px solid rgba(151, 0, 20, 0.18);
  outline-offset: 3px;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01F_ProductPhotoCarouselUX */
.mp-application-product-carousel {
  margin-top: 22px;
}

.mp-application-product-carousel[hidden] {
  display: none !important;
}

.mp-application-product-carousel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(151, 0, 20, 0.10);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fff8f8);
}

.mp-application-product-carousel__head strong {
  display: block;
  color: var(--mp-text, #252b36);
  font-size: 1rem;
}

.mp-application-product-carousel__head span {
  display: block;
  margin-top: 3px;
  color: var(--mp-muted, #6b7280);
  font-size: .9rem;
  line-height: 1.4;
}

.mp-application-product-carousel__counter {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--mp-burgundy, #970014);
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(17,24,39,.06);
}

.mp-application-product-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 6px 2px 16px;
  scroll-snap-type: x proximity;
}

.mp-application-product-tab {
  position: relative;
  display: inline-grid;
  grid-template-columns: 52px minmax(82px, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 168px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(151, 0, 20, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--mp-text, #252b36);
  cursor: pointer;
  scroll-snap-align: start;
  text-align: left;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease, background .16s ease;
}

.mp-application-product-tab:hover,
.mp-application-product-tab:focus-visible {
  border-color: rgba(151, 0, 20, 0.36);
  box-shadow: 0 14px 28px rgba(17,24,39,.08);
  transform: translateY(-1px);
  outline: none;
}

.mp-application-product-tab.is-active {
  border-color: var(--mp-burgundy, #970014);
  background: #fff7f8;
  box-shadow: 0 16px 34px rgba(151,0,20,.12);
}

.mp-application-product-tab__thumb {
  display: block;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border-radius: 13px;
  background: #fff3f3;
  color: var(--mp-burgundy, #970014);
  font-weight: 900;
  line-height: 52px;
  text-align: center;
}

.mp-application-product-tab__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-application-product-tab__label {
  display: block;
  padding-right: 24px;
  font-size: .88rem;
  font-weight: 900;
}

.mp-application-product-tab__status {
  position: absolute;
  top: 8px;
  right: 8px;
  display: none;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--mp-burgundy, #970014);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
}

.mp-application-product-tab.is-complete .mp-application-product-tab__status {
  display: inline-flex;
}

.mp-application-product-stage {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
}

.mp-application-product-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(151,0,20,.16);
  border-radius: 999px;
  background: #fff;
  color: var(--mp-burgundy, #970014);
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(17,24,39,.06);
}

.mp-application-product-arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
  box-shadow: none;
}

.mp-application-preview-grid--carousel {
  display: block;
}

.mp-application-preview-grid--carousel .mp-application-photo-card {
  display: none;
}

.mp-application-preview-grid--carousel .mp-application-photo-card.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 44px rgba(17,24,39,.08);
}

.mp-application-preview-grid--carousel .mp-application-photo-card__image {
  min-height: 460px;
  height: 100%;
  border-radius: 0;
  background: #f6f1ef;
}

.mp-application-preview-grid--carousel .mp-application-photo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mp-application-preview-grid--carousel .mp-application-photo-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  background: #fff;
}

.mp-application-preview-grid--carousel .mp-application-product__head {
  margin-bottom: 4px;
}

.mp-application-preview-grid--carousel .mp-application-field textarea {
  min-height: 130px;
}

@media (max-width: 900px) {
  .mp-application-product-stage {
    grid-template-columns: 1fr;
  }

  .mp-application-product-arrow {
    display: none;
  }

  .mp-application-preview-grid--carousel .mp-application-photo-card.is-active {
    grid-template-columns: 1fr;
  }

  .mp-application-preview-grid--carousel .mp-application-photo-card__image {
    min-height: 280px;
  }
}



/* MP_MKT_BAKERY_ONBOARDING_ZIP_01G_ProductCarouselLayoutFix
 * Corrige layout del carrusel de productos:
 * - evita que la imagen grande se pise con los campos
 * - mantiene foto a la izquierda y formulario a la derecha
 * - en mobile pasa a una sola columna
 */
.mp-application-product-carousel,
.mp-application-product-detail,
.mp-application-product-stage {
  width: 100%;
}

.mp-application-product-stage {
  position: relative;
  overflow: visible;
}

.mp-application-product-stage .mp-application-photo-card,
.mp-application-preview-grid .mp-application-photo-card.is-active,
.mp-application-photo-card.is-active {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-height: 460px;
  padding: 0;
  overflow: hidden;
}

.mp-application-photo-card__image {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 420px;
  height: 100%;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
  background: #fff7f7;
}

.mp-application-photo-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 560px;
  object-fit: contain;
  object-position: center;
  background: #fff7f7;
}

.mp-application-photo-card__body {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 28px 28px 28px 0;
  background: #fff;
}

.mp-application-photo-card__body .mp-application-field textarea {
  min-height: 118px;
  resize: vertical;
}

.mp-application-product-nav,
.mp-application-carousel-arrow {
  z-index: 5;
}

.mp-application-product-strip {
  position: relative;
  z-index: 4;
}

@media (max-width: 980px) {
  .mp-application-product-stage .mp-application-photo-card,
  .mp-application-preview-grid .mp-application-photo-card.is-active,
  .mp-application-photo-card.is-active {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .mp-application-photo-card__image {
    min-height: 300px;
    height: 320px;
    border-radius: 22px 22px 0 0;
  }

  .mp-application-photo-card__image img {
    min-height: 300px;
    max-height: 340px;
  }

  .mp-application-photo-card__body {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .mp-application-photo-card__image {
    min-height: 240px;
    height: 260px;
  }

  .mp-application-photo-card__image img {
    min-height: 240px;
    max-height: 280px;
  }
}
/* MP_MKT_BAKERY_ONBOARDING_ZIP_01H_ProductPhotoSlideUX
 * Ajusta el paso de productos para edición tipo slide:
 * - solo un producto visible a la vez
 * - foto grande a la izquierda, formulario a la derecha
 * - aprovecha mejor el ancho disponible
 * - reduce un poco el peso visual de la imagen
 */
.mp-application-step[data-step="3"] {
  --mp-product-slide-max-image-h: 360px;
}

.mp-application-step[data-step="3"] .mp-application-preview-grid {
  display: block;
  width: 100%;
  margin-top: 22px;
}

.mp-application-step[data-step="3"] .mp-application-preview-grid > .mp-application-photo-card {
  display: none;
}

.mp-application-step[data-step="3"] .mp-application-preview-grid > .mp-application-photo-card.is-active {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 22px;
  align-items: stretch;
}

.mp-application-step[data-step="3"] .mp-application-photo-card__image {
  min-height: var(--mp-product-slide-max-image-h);
  max-height: var(--mp-product-slide-max-image-h);
  border-radius: 22px;
  overflow: hidden;
  background: #fff8f9;
  border: 1px solid rgba(151, 0, 20, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-application-step[data-step="3"] .mp-application-photo-card__image img {
  width: 100%;
  height: 100%;
  max-height: var(--mp-product-slide-max-image-h);
  object-fit: contain;
  object-position: center;
  display: block;
}

.mp-application-step[data-step="3"] .mp-application-photo-card__body {
  min-width: 0;
  align-self: center;
}

.mp-application-step[data-step="3"] .mp-application-product__head {
  margin-bottom: 16px;
}

.mp-application-step[data-step="3"] .mp-application-product-strip,
.mp-application-step[data-step="3"] [data-product-carousel] {
  width: 100%;
  max-width: none;
}

.mp-application-product-slide-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 4px;
}

.mp-application-product-slide-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(151, 0, 20, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #970014;
  font-weight: 900;
  cursor: pointer;
}

.mp-application-product-slide-nav__button:hover,
.mp-application-product-slide-nav__button:focus-visible {
  background: #fff3f5;
  border-color: rgba(151, 0, 20, 0.34);
}

.mp-application-product-slide-nav__button:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.mp-application-product-slide-nav__status {
  color: var(--mp-muted, #667085);
  font-size: .92rem;
  font-weight: 800;
  text-align: center;
}

.mp-application-step[data-step="3"] .mp-application-product-strip button.is-active,
.mp-application-step[data-step="3"] [data-product-carousel] button.is-active,
.mp-application-step[data-step="3"] .mp-application-product-strip [aria-current="true"],
.mp-application-step[data-step="3"] [data-product-carousel] [aria-current="true"] {
  border-color: #970014;
  box-shadow: 0 12px 26px rgba(151, 0, 20, 0.12);
}

@media (max-width: 900px) {
  .mp-application-step[data-step="3"] .mp-application-preview-grid > .mp-application-photo-card.is-active {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .mp-application-step[data-step="3"] .mp-application-photo-card__image {
    min-height: 260px;
    max-height: 300px;
  }

  .mp-application-product-slide-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .mp-application-product-slide-nav__button {
    width: 100%;
  }
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01I_ProductSlideNavigationAndTestAccess
 * Corrige el paso de productos:
 * - mantiene carrusel superior de miniaturas
 * - muestra solo un producto activo abajo
 * - agrega navegación horizontal anterior/siguiente
 * - usa mejor el ancho disponible
 */
.mp-application-step[data-step="3"] .mp-application-preview-grid.mp-application-product-slide-stage {
  display: block !important;
  width: 100%;
  max-width: none;
  margin-top: 22px;
}

.mp-application-step[data-step="3"] .mp-application-product-slide-stage .mp-application-photo-card {
  display: none !important;
}

.mp-application-step[data-step="3"] .mp-application-product-slide-stage .mp-application-photo-card.is-active {
  display: grid !important;
  grid-template-columns: minmax(260px, .78fr) minmax(420px, 1.22fr);
  gap: 26px;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px;
  border-radius: 24px;
}

.mp-application-step[data-step="3"] .mp-application-product-slide-stage .mp-application-photo-card__image {
  min-height: 300px;
  max-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff8f9;
  border: 1px solid rgba(151, 0, 20, .10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-application-step[data-step="3"] .mp-application-product-slide-stage .mp-application-photo-card__image img {
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.mp-application-step[data-step="3"] .mp-application-product-slide-stage .mp-application-photo-card__body {
  align-self: center;
  min-width: 0;
}

.mp-application-product-slide-nav,
.mp-application-product-slide-nav[hidden] {
  display: none !important;
}

.mp-application-product-inline-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 16px 0 2px;
}

.mp-application-product-inline-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(151, 0, 20, .18);
  border-radius: 999px;
  background: #fff;
  color: #970014;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(151, 0, 20, .06);
}

.mp-application-product-inline-nav__button:last-child {
  justify-self: end;
}

.mp-application-product-inline-nav__button:hover,
.mp-application-product-inline-nav__button:focus-visible {
  background: #fff3f5;
  border-color: rgba(151, 0, 20, .34);
}

.mp-application-product-inline-nav__button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.mp-application-product-inline-nav__status {
  color: var(--mp-muted, #667085);
  font-size: .92rem;
  font-weight: 900;
  text-align: center;
}

.mp-application-step[data-step="3"] .mp-application-product-strip button.is-active,
.mp-application-step[data-step="3"] [data-product-carousel] button.is-active,
.mp-application-step[data-step="3"] .mp-application-product-strip [aria-current="true"],
.mp-application-step[data-step="3"] [data-product-carousel] [aria-current="true"] {
  border-color: #970014 !important;
  background: #fff8f9;
  box-shadow: 0 12px 26px rgba(151, 0, 20, .12);
}

.mp-application-test-shortcut {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff8f9;
  color: #970014;
  font-size: .82rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .mp-application-step[data-step="3"] .mp-application-product-slide-stage .mp-application-photo-card.is-active {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .mp-application-step[data-step="3"] .mp-application-product-slide-stage .mp-application-photo-card__image {
    min-height: 240px;
    max-height: 300px;
  }

  .mp-application-product-inline-nav {
    grid-template-columns: 1fr;
  }

  .mp-application-product-inline-nav__button,
  .mp-application-product-inline-nav__button:last-child {
    width: 100%;
    justify-self: stretch;
  }
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01J_ProductStepRebuild
 * Reconstrucción limpia del Paso 3: una sola ficha activa, sin flechas flotantes.
 */
.mp-application-product-carousel {
  margin-top: 20px;
}

.mp-application-product-carousel__head {
  align-items: center;
}

.mp-application-product-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 22px;
}

.mp-application-product-tab {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-areas:
    "thumb label"
    "thumb state";
  align-items: center;
  gap: 4px 10px;
  min-height: 72px;
  padding: 8px 10px;
  border: 1px solid rgba(151, 0, 20, .13);
  border-radius: 16px;
  background: #fff;
  color: var(--mp-text, #252a35);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(17, 24, 39, .035);
}

.mp-application-product-tab.is-active {
  border-color: var(--mp-burgundy, #970014);
  background: #fff8f8;
  box-shadow: 0 14px 28px rgba(151, 0, 20, .08);
}

.mp-application-product-tab.is-complete {
  border-color: rgba(8, 127, 91, .38);
}

.mp-application-product-tab__thumb {
  grid-area: thumb;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff1f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mp-burgundy, #970014);
  font-weight: 900;
}

.mp-application-product-tab__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-application-product-tab__label {
  grid-area: label;
  font-weight: 900;
  font-size: .9rem;
}

.mp-application-product-tab__state {
  grid-area: state;
  color: var(--mp-muted, #6b7280);
  font-size: .74rem;
  font-weight: 800;
}

.mp-application-product-tab.is-complete .mp-application-product-tab__state {
  color: #087f5b;
}

.mp-application-product-stage,
.mp-application-product-stage--rebuilt {
  position: relative;
  display: block !important;
  width: 100%;
  overflow: visible;
}

.mp-application-preview-grid--rebuilt,
.mp-application-preview-grid--carousel,
.mp-application-preview-grid--slide-fixed,
.mp-application-product-slide-stage,
.mp-application-preview-grid--rebuilt-active {
  display: block !important;
  width: 100%;
  margin-top: 0;
}

.mp-application-preview-grid--rebuilt .mp-application-photo-card,
.mp-application-preview-grid--rebuilt-active .mp-application-photo-card,
.mp-application-preview-grid--carousel .mp-application-photo-card,
.mp-application-preview-grid--slide-fixed .mp-application-photo-card {
  display: none !important;
}

.mp-application-preview-grid--rebuilt .mp-application-photo-card.is-active,
.mp-application-preview-grid--rebuilt-active .mp-application-photo-card.is-active,
.mp-application-preview-grid--carousel .mp-application-photo-card.is-active,
.mp-application-preview-grid--slide-fixed .mp-application-photo-card.is-active {
  display: grid !important;
  grid-template-columns: minmax(240px, .82fr) minmax(360px, 1.18fr);
  gap: 28px;
  align-items: stretch;
  width: 100%;
  padding: 22px;
  border-radius: 26px;
}

.mp-application-preview-grid--rebuilt .mp-application-photo-card__image,
.mp-application-preview-grid--rebuilt-active .mp-application-photo-card__image,
.mp-application-preview-grid--carousel .mp-application-photo-card__image,
.mp-application-preview-grid--slide-fixed .mp-application-photo-card__image {
  aspect-ratio: auto !important;
  min-height: 300px;
  max-height: 360px;
  height: 100%;
  border: 1px solid rgba(151, 0, 20, .10);
  border-radius: 22px;
  background: #fff8f8;
}

.mp-application-preview-grid--rebuilt .mp-application-photo-card__image img,
.mp-application-preview-grid--rebuilt-active .mp-application-photo-card__image img,
.mp-application-preview-grid--carousel .mp-application-photo-card__image img,
.mp-application-preview-grid--slide-fixed .mp-application-photo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 10px;
}

.mp-application-preview-grid--rebuilt .mp-application-photo-card__body,
.mp-application-preview-grid--rebuilt-active .mp-application-photo-card__body,
.mp-application-preview-grid--carousel .mp-application-photo-card__body,
.mp-application-preview-grid--slide-fixed .mp-application-photo-card__body {
  padding: 0;
  align-content: start;
}

.mp-application-product-slide-actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border-top: 1px solid rgba(17, 24, 39, .08);
}

.mp-application-product-slide-actions__button {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(151, 0, 20, .16);
  border-radius: 999px;
  background: #fff;
  color: var(--mp-burgundy, #970014);
  font-weight: 900;
  cursor: pointer;
}

.mp-application-product-slide-actions__button:last-child {
  justify-self: end;
  background: var(--mp-burgundy, #970014);
  color: #fff;
  box-shadow: 0 14px 26px rgba(151, 0, 20, .12);
}

.mp-application-product-slide-actions__button:disabled {
  opacity: .42;
  cursor: not-allowed;
  box-shadow: none;
}

.mp-application-product-slide-actions__status {
  color: var(--mp-muted, #6b7280);
  font-weight: 900;
  white-space: nowrap;
}

.mp-application-product-arrow,
.mp-application-product-slide-nav,
.mp-application-product-inline-nav {
  display: none !important;
}

.mp-application-test-shortcut {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3f4;
  color: var(--mp-burgundy, #970014);
  font-size: .84rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  .mp-application-product-strip {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .mp-application-product-tab {
    min-width: 180px;
  }

  .mp-application-preview-grid--rebuilt .mp-application-photo-card.is-active,
  .mp-application-preview-grid--rebuilt-active .mp-application-photo-card.is-active,
  .mp-application-preview-grid--carousel .mp-application-photo-card.is-active,
  .mp-application-preview-grid--slide-fixed .mp-application-photo-card.is-active {
    grid-template-columns: 1fr;
  }

  .mp-application-preview-grid--rebuilt .mp-application-photo-card__image,
  .mp-application-preview-grid--rebuilt-active .mp-application-photo-card__image,
  .mp-application-preview-grid--carousel .mp-application-photo-card__image,
  .mp-application-preview-grid--slide-fixed .mp-application-photo-card__image {
    min-height: 260px;
    max-height: 320px;
  }

  .mp-application-product-slide-actions {
    grid-template-columns: 1fr;
  }

  .mp-application-product-slide-actions__button,
  .mp-application-product-slide-actions__button:last-child {
    justify-self: stretch;
    width: 100%;
  }

  .mp-application-product-slide-actions__status {
    text-align: center;
  }
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01K_FinalStepNetworksAndThanks */
.mp-application-final-stack {
  display: grid;
  gap: 22px;
}

.mp-application-final-block {
  padding: 24px;
  border: 1px solid rgba(151, 0, 20, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(151, 0, 20, 0.045), transparent 34%),
    #fff;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.045);
}

.mp-application-final-block__head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.mp-application-final-block__head h3 {
  margin: 0;
  color: var(--mp-text, #1f2937);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.12;
}

.mp-application-final-block__head p {
  margin: 8px 0 0;
  color: var(--mp-muted, #6b7280);
  line-height: 1.55;
}

.mp-application-final-block__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  background: #fff3f4;
  color: var(--mp-burgundy, #970014);
  font-size: 1.35rem;
}

.mp-application-url-field,
.mp-application-social-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 54px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.mp-application-url-field__prefix,
.mp-application-social-row__prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid rgba(17, 24, 39, 0.10);
  background: #fbf7f5;
  color: var(--mp-muted, #6b7280);
  font-weight: 800;
  white-space: nowrap;
}

.mp-application-url-field input,
.mp-application-social-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  font-weight: 800;
  outline: none;
  background: transparent;
}

.mp-application-url-field:focus-within,
.mp-application-social-row:focus-within {
  border-color: var(--mp-burgundy, #970014);
  box-shadow: 0 0 0 4px rgba(151, 0, 20, 0.08);
}

.mp-application-url-field.is-disabled {
  opacity: 0.55;
}

.mp-application-big-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(151, 0, 20, 0.15);
  border-radius: 18px;
  background: #fff8f9;
  color: var(--mp-text, #1f2937);
  cursor: pointer;
}

.mp-application-big-check input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--mp-burgundy, #970014);
}

.mp-application-big-check strong,
.mp-application-big-check small {
  display: block;
}

.mp-application-big-check small {
  margin-top: 4px;
  color: var(--mp-muted, #6b7280);
  line-height: 1.45;
}

.mp-application-website-interest {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed rgba(151, 0, 20, 0.22);
}

.mp-application-website-interest h4 {
  margin: 0 0 12px;
  color: var(--mp-text, #1f2937);
}

.mp-application-pill-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mp-application-pill-radios label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(151, 0, 20, 0.16);
  border-radius: 999px;
  font-weight: 900;
  background: #fff;
}

.mp-application-pill-radios input {
  accent-color: var(--mp-burgundy, #970014);
}

.mp-application-social-list {
  display: grid;
  gap: 14px;
}

.mp-application-social-row {
  grid-template-columns: minmax(150px, 210px) auto 1fr;
}

.mp-application-social-row--free {
  grid-template-columns: minmax(150px, 210px) 1fr;
}

.mp-application-social-row__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-right: 1px solid rgba(17, 24, 39, 0.10);
  color: var(--mp-text, #1f2937);
  font-weight: 900;
  background: #fff;
}

.mp-application-social-row__brand > span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff3f4;
  color: var(--mp-burgundy, #970014);
  font-weight: 900;
}

.mp-application-field--story textarea {
  min-height: 150px;
  font-size: 1rem;
  line-height: 1.55;
}

.mp-application-review-box--final {
  border-radius: 22px;
  background: linear-gradient(180deg, #fff8f9, #fff);
}

.mp-application-page--thanks .mp-application-hero {
  max-width: 820px;
}

.mp-application-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff3f4;
  color: var(--mp-burgundy, #970014);
  font-weight: 900;
}

@media (max-width: 760px) {
  .mp-application-final-block {
    padding: 20px;
  }

  .mp-application-final-block__head {
    flex-direction: column;
  }

  .mp-application-url-field,
  .mp-application-social-row,
  .mp-application-social-row--free {
    grid-template-columns: 1fr;
  }

  .mp-application-url-field__prefix,
  .mp-application-social-row__prefix,
  .mp-application-social-row__brand {
    min-height: 44px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.10);
  }

  .mp-application-url-field input,
  .mp-application-social-row input {
    min-height: 52px;
  }
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01M_StepActionFlowUX
 * Botonera progresiva por bloque: solo acción primaria visible.
 */
.mp-application-step > .mp-application-actions,
.mp-application-actions--single {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(151, 0, 20, 0.10);
}

.mp-application-actions--single[hidden] {
  display: none !important;
}

.mp-application-actions--single .mp-application-link-button,
.mp-application-actions--single .mp-application-link {
  display: none !important;
}

.mp-application-actions--single .mp-application-btn {
  min-width: min(100%, 340px);
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 18px 32px rgba(151, 0, 20, 0.18);
}

.mp-application-actions--single .mp-application-btn[hidden] {
  display: none !important;
}

.mp-application-actions--single:not(.is-actions-ready) {
  display: none !important;
}

@media (max-width: 760px) {
  .mp-application-actions--single .mp-application-btn {
    width: 100%;
    min-width: 0;
  }
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01N_ProposalStepProgressiveUX */
.mp-application-step[data-step="2"] .mp-application-choice-group--targets[data-progressive-hidden="true"] {
  display: none;
}

.mp-application-step[data-step="2"] .mp-application-choice-group--targets {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(151, 0, 20, 0.10);
  animation: mpApplicationSoftReveal 0.24s ease both;
}

.mp-application-progressive-intro {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(151, 0, 20, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(151, 0, 20, 0.045), rgba(255, 255, 255, 0.92));
}

.mp-application-progressive-intro strong {
  color: var(--mp-text, #202733);
  font-size: 1rem;
}

.mp-application-progressive-intro span {
  color: var(--mp-muted, #6b7280);
  font-size: 0.92rem;
}

.mp-application-step[data-step="2"] .mp-application-choice {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
}

.mp-application-step[data-step="2"] .mp-application-choice > span[aria-hidden="true"] {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
}

.mp-application-step[data-step="2"] .mp-application-choice > strong {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.2;
}

.mp-application-other-field {
  display: block;
  margin: -4px 0 12px;
  padding: 16px;
  border: 1px solid rgba(151, 0, 20, 0.12);
  border-radius: 16px;
  background: rgba(255, 248, 249, 0.78);
  animation: mpApplicationSoftReveal 0.2s ease both;
}

.mp-application-other-field[hidden] {
  display: none !important;
}

.mp-application-other-field span {
  display: block;
  margin-bottom: 8px;
  color: var(--mp-text, #202733);
  font-weight: 800;
}

.mp-application-other-field input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--mp-text, #202733);
  font: inherit;
}

@keyframes mpApplicationSoftReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .mp-application-step[data-step="2"] .mp-application-choice {
    min-height: 92px;
    padding: 18px;
    gap: 16px;
  }

  .mp-application-step[data-step="2"] .mp-application-choice > span[aria-hidden="true"] {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}



/* MP_MKT_BAKERY_ONBOARDING_ZIP_01O_CopyAndStep3CompletionUX */
.mp-application-step[data-step="2"] > h2 {
  font-size: clamp(2.35rem, 4.2vw, 3.55rem);
  line-height: 1.06;
}

.mp-application-step[data-step="2"] .mp-application-choice-group:first-of-type {
  margin-top: 22px;
}

.mp-application-form[data-step3-required-complete="0"][data-current-step="3"] [data-next-step],
.mp-application-form[data-step3-required-complete="0"][data-current-step="3"] [data-action="next-step"],
.mp-application-form[data-step3-required-complete="0"][data-current-step="3"] .mp-application-next {
  display: none !important;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01Q_ProductStepReviewUX */
.mp-application-selected-files { display: none !important; }

.mp-application-product-tab.is-complete,
.mp-application-product-tab[data-complete="1"] {
  border-width: 2px !important;
  border-color: rgba(0, 128, 79, 0.62) !important;
  box-shadow: 0 14px 28px rgba(0, 128, 79, 0.10) !important;
  position: relative;
}

.mp-application-product-tab.is-complete::after,
.mp-application-product-tab[data-complete="1"]::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #00804f;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 128, 79, 0.18);
}

.mp-application-product-tab.is-complete .mp-application-product-tab__state,
.mp-application-product-tab[data-complete="1"] .mp-application-product-tab__state {
  color: #007a4a !important;
  font-weight: 900 !important;
}

.mp-application-product-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #970014;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.mp-application-product-link:hover,
.mp-application-product-link:focus-visible { text-decoration: underline; }
.mp-application-product-link--photo { width: 100%; margin-top: 12px; padding: 0; text-align: center; }
.mp-application-product-link--clear { align-self: flex-start; margin-top: 8px; padding: 0; }

.mp-application-product-slide-actions__button.is-validation-ready {
  background: #970014 !important;
  border-color: #970014 !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(151, 0, 20, 0.18);
}

.mp-application-review-modal[hidden] { display: none !important; }
.mp-application-review-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.46);
  backdrop-filter: blur(8px);
}
.mp-application-review-modal__panel {
  position: relative;
  width: min(680px, 100%);
  padding: 34px;
  border: 1px solid rgba(151, 0, 20, 0.14);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #fff8f9);
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.26);
}
.mp-application-review-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(151, 0, 20, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #970014;
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}
.mp-application-review-modal__eyebrow {
  margin: 0 0 8px;
  color: #970014;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.mp-application-review-modal h3 {
  margin: 0 0 12px;
  color: #202632;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}
.mp-application-replace-dropzone {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin-top: 20px;
  padding: 28px;
  border: 1.5px dashed rgba(151, 0, 20, 0.28);
  border-radius: 22px;
  background: rgba(151, 0, 20, 0.035);
  text-align: center;
  cursor: pointer;
}
.mp-application-replace-dropzone input { position: absolute; opacity: 0; pointer-events: none; }
.mp-application-replace-dropzone span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 18px;
  background: #970014;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}
.mp-application-replace-dropzone.is-dragging { border-color: #970014; background: rgba(151, 0, 20, 0.08); }
.mp-application-review-progress {
  height: 10px;
  margin: 22px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(151, 0, 20, 0.10);
}
.mp-application-review-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #970014;
  transition: width 0.35s ease;
}
.mp-application-review-steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.mp-application-review-steps li { display: flex; gap: 10px; align-items: center; color: #6b7280; font-weight: 700; }
.mp-application-review-steps li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 2px solid rgba(151, 0, 20, 0.20);
}
.mp-application-review-steps li.is-done { color: #202632; }
.mp-application-review-steps li.is-done::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: #00804f;
  background: #00804f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.mp-application-review-continue {
  width: 100%;
  min-height: 54px;
  margin-top: 26px;
  border: 0;
  border-radius: 999px;
  background: #970014;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(151, 0, 20, 0.22);
}
.mp-application-review-continue[hidden] { display: none !important; }
@media (max-width: 760px) {
  .mp-application-review-modal__panel { padding: 26px 20px; border-radius: 22px; }
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01R_ProductStepFinalPolish_CSS
 * Ajustes finales paso productos:
 * - mini cards completas más visibles
 * - campos con borde más claro
 * - botón final integrado al mismo lugar del siguiente producto
 */
.mp-application-product-strip button.is-complete,
.mp-application-product-strip .is-complete,
[data-product-strip-item].is-complete,
[data-product-tab].is-complete,
[data-complete="1"] {
  border-color: #079669 !important;
  border-width: 2px !important;
  box-shadow: 0 12px 28px rgba(7, 150, 105, 0.12) !important;
  background: linear-gradient(180deg, #ffffff, #f4fffb) !important;
}

.mp-application-product-strip button.is-complete::after,
.mp-application-product-strip .is-complete::after,
[data-product-strip-item].is-complete::after,
[data-product-tab].is-complete::after,
[data-complete="1"]::after {
  content: "✓";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #079669;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 150, 105, 0.24);
}

.mp-application-product-strip button,
.mp-application-product-strip .mp-application-product-tab,
[data-product-strip-item],
[data-product-tab] {
  position: relative;
}

.mp-application-field input,
.mp-application-field textarea,
.mp-application-field select,
.mp-application-photo-card input,
.mp-application-photo-card textarea,
.mp-application-photo-card select {
  border-color: rgba(151, 0, 20, 0.24) !important;
  border-width: 1.5px !important;
  background: #fff !important;
  box-shadow: inset 0 1px 0 rgba(151, 0, 20, 0.03) !important;
}

.mp-application-field input:focus,
.mp-application-field textarea:focus,
.mp-application-field select:focus,
.mp-application-photo-card input:focus,
.mp-application-photo-card textarea:focus,
.mp-application-photo-card select:focus {
  border-color: #970014 !important;
  box-shadow: 0 0 0 4px rgba(151, 0, 20, 0.08) !important;
  outline: none !important;
}

[data-step="3"] .mp-application-actions > [data-next-step],
[data-step="3"] .mp-application-actions > [data-action="next-step"],
[data-step="3"] .mp-application-actions > .mp-application-next,
[data-current-step="3"] .mp-application-actions > [data-next-step],
[data-current-step="3"] .mp-application-actions > [data-action="next-step"],
[data-current-step="3"] .mp-application-actions > .mp-application-next {
  display: none !important;
}

[data-step3-final-next="1"] {
  min-width: 220px;
}

[data-step3-final-next="1"].is-ready {
  background: #970014 !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(151, 0, 20, 0.20) !important;
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01S_FinalStepProgressiveWebSocialUX */
.mp-application-final-stack--progressive {
  gap: 24px;
}

.mp-application-step4-block {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .22s ease, transform .22s ease;
}

.mp-application-step4-block.is-visible,
.mp-application-step4-block:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.mp-application-hidden-control {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.mp-application-choice-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mp-application-choice-grid--website-use {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mp-application-choice--answer,
.mp-application-choice--use {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.mp-application-choice--answer > span,
.mp-application-choice--use > span {
  font-size: 30px;
  width: 42px;
  min-width: 42px;
  text-align: center;
}

.mp-application-choice--answer strong,
.mp-application-choice--use strong {
  font-size: 16px;
  line-height: 1.25;
}

.mp-application-step4-branch {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(151, 0, 20, .12);
}

.mp-application-url-field--standalone {
  display: flex;
  width: 100%;
}

.mp-application-choice-group--website-use {
  margin-top: 18px;
}

.mp-application-choice-group--website-use h4,
.mp-application-question-block--soft h4 {
  margin: 0 0 6px;
  color: #202635;
  font-size: 18px;
}

.mp-application-choice-group--website-use p,
.mp-application-question-block--soft p {
  margin: 0 0 14px;
  color: #6b7280;
}

.mp-application-pill-radios--large {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.mp-application-pill-radios--large label {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(151, 0, 20, .18);
  border-radius: 999px;
  background: #fff;
  color: #970014;
  font-weight: 800;
}

.mp-application-field--website-use-text textarea {
  min-height: 104px;
}

.mp-application-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mp-application-social-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(151, 0, 20, .14);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffafa);
}

.mp-application-social-card--wide {
  grid-column: 1 / -1;
}

.mp-application-social-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #202635;
  font-size: 15px;
  font-weight: 900;
}

.mp-application-social-card__title span[aria-hidden="true"] {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4f6;
  color: #970014;
}

.mp-application-social-card__field {
  display: flex;
  min-height: 50px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(32, 38, 53, .18);
  border-radius: 14px;
  background: #fff;
}

.mp-application-social-card__field > span {
  min-width: 46px;
  padding: 0 14px;
  color: #970014;
  font-weight: 900;
  text-align: center;
  border-right: 1px solid rgba(32, 38, 53, .12);
}

.mp-application-social-card__field input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 14px;
  font-weight: 800;
  color: #202635;
}

@media (max-width: 760px) {
  .mp-application-choice-grid--two,
  .mp-application-choice-grid--website-use,
  .mp-application-social-grid {
    grid-template-columns: 1fr;
  }
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01T_Step4FinalProgressiveUX */
.mp-application-step[data-step="4"] ~ .mp-application-actions,
.mp-application-step[data-step="4"] + .mp-application-actions {
  display: none;
}

.mp-application-step4-flow {
  display: grid;
  gap: 22px;
}

.mp-step4-stage {
  animation: mpStep4Reveal 0.24s ease both;
}

@keyframes mpStep4Reveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mp-step4-answer-grid {
  margin-top: 22px;
}

.mp-step4-answer-card,
.mp-step4-use-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.mp-step4-answer-card > span,
.mp-step4-use-card > span {
  flex: 0 0 auto;
  font-size: 30px;
  line-height: 1;
}

.mp-step4-answer-card strong,
.mp-step4-use-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.mp-application-choice.is-muted-choice {
  opacity: 0.42;
  filter: grayscale(0.35);
  box-shadow: none;
}

.mp-application-choice:has(input:checked).is-muted-choice {
  opacity: 1;
  filter: none;
}

.mp-application-step4-branch {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(151, 0, 20, 0.12);
}

.mp-application-step4-subbranch {
  margin-top: 22px;
}

.mp-application-choice-group--website-use {
  margin-top: 20px;
}

.mp-application-choice-group--website-use h4 {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 22px;
  line-height: 1.2;
}

.mp-application-choice-group--website-use p {
  margin: 0 0 18px;
  color: #6b7280;
  font-size: 15px;
}

.mp-application-choice-grid--website-use {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mp-application-social-stack {
  display: grid;
  gap: 14px;
}

.mp-application-social-card--stacked {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(151, 0, 20, 0.14);
  border-radius: 18px;
  background: #fff;
}

.mp-application-social-card--stacked .mp-application-social-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1f2937;
  font-size: 15px;
  font-weight: 900;
}

.mp-application-social-card--stacked .mp-application-social-card__field {
  display: flex;
  align-items: center;
  min-height: 48px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 14px;
  background: #fff;
}

.mp-application-social-card--stacked .mp-application-social-card__field > span {
  display: inline-flex;
  min-width: 44px;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(17, 24, 39, 0.10);
  background: #fbf7f5;
  color: #970014;
  font-weight: 900;
}

.mp-application-social-card--stacked input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  outline: none;
  font-weight: 800;
}

.mp-application-submit-final {
  display: flex;
  width: min(520px, 100%);
  min-height: 58px;
  margin: 24px auto 0;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #970014;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(151, 0, 20, 0.18);
  cursor: pointer;
}

@media (max-width: 760px) {
  .mp-application-choice-grid--website-use,
  .mp-step4-answer-grid {
    grid-template-columns: 1fr;
  }
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step1MinimalNoSeoUX */
.mp-application-step[data-step="1"] .mp-application-step__kicker {
  margin-bottom: 26px;
}

.mp-application-field--question-large > span {
  display: block;
  margin-bottom: 14px;
  color: var(--mp-text, #252b36);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.mp-application-field--hero input {
  min-height: 72px;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  text-align: center;
}

.mp-application-field--marketing > span {
  text-align: left;
}

.mp-application-field--marketing.mp-application-field--question-large > span {
  text-align: left;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step1QuestionSizeAlign */
.mp-application-step[data-step="1"] .mp-application-field--hero > span,
.mp-application-step[data-step="1"] .mp-application-question-block h3,
.mp-application-step[data-step="1"] .mp-application-field--marketing > span {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  color: var(--mp-text, #252b36);
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_StepQuestionCorporatePolish */
.mp-application-progress {
  margin-bottom: clamp(34px, 4vw, 54px);
}

.mp-application-step[data-step="1"] .mp-application-field--hero > span,
.mp-application-step[data-step="1"] .mp-application-question-block h3,
.mp-application-step[data-step="1"] .mp-application-field--marketing > span {
  color: var(--mp-burgundy, #970014);
}

.mp-application-step[data-step="1"] .mp-application-question-block {
  margin-top: clamp(36px, 4vw, 56px);
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step1LogoCanonicalCompact */
.mp-application-step[data-step="1"] .mp-application-identity-block {
  padding-top: 22px;
  padding-bottom: 24px;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large .mp-application-upload__box {
  min-height: 96px;
  padding: 14px 18px;
  margin-top: 14px;
  border-radius: 20px;
  gap: 6px;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large .mp-application-logo-preview {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  font-size: 28px;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large strong {
  margin-top: 2px;
  font-size: 0.95rem;
  line-height: 1.15;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large small {
  margin-top: 2px;
  font-size: 0.82rem;
  line-height: 1.15;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step1IdentityRealSelectorCompact */
.mp-application-step[data-step="1"] .mp-application-identity-block {
  padding: 24px 26px 26px !important;
}

.mp-application-step[data-step="1"] .mp-application-identity-block .mp-application-question-block {
  margin-bottom: 18px !important;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large {
  margin: 0 0 18px !important;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large .mp-application-upload__box {
  min-height: 74px !important;
  padding: 10px 16px !important;
  gap: 4px !important;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large .mp-application-logo-preview {
  width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  border-radius: 14px !important;
  font-size: 1.45rem !important;
  margin: 0 !important;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large strong {
  margin: 2px 0 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.1 !important;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-large small {
  margin: 2px 0 0 !important;
  font-size: 0.78rem !important;
  line-height: 1.1 !important;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_GlobalStepTitlePolish */
.mp-application-step > h2,
.mp-application-step .mp-application-step__title,
.mp-application-step[data-step] > h2[id^="mp-step-"] {
  color: var(--mp-burgundy, #970014);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mp-application-step > h2 + p,
.mp-application-step .mp-application-step__intro {
  margin-top: 10px;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4WebsiteUseSpacing */
.mp-application-step[data-step="4"] .mp-application-website-use,
.mp-application-step[data-step="4"] [data-website-use],
.mp-application-step[data-step="4"] .mp-application-step4-use {
  margin-top: 28px;
}

.mp-application-step[data-step="4"] .mp-application-website-use h3,
.mp-application-step[data-step="4"] [data-website-use] h3,
.mp-application-step[data-step="4"] .mp-application-step4-use h3 {
  margin-bottom: 8px;
}

.mp-application-step[data-step="4"] .mp-application-website-use p,
.mp-application-step[data-step="4"] [data-website-use] p,
.mp-application-step[data-step="4"] .mp-application-step4-use p {
  margin-bottom: 22px;
  line-height: 1.45;
}

.mp-application-step[data-step="4"] .mp-application-website-use .mp-application-choice-grid,
.mp-application-step[data-step="4"] [data-website-use] .mp-application-choice-grid,
.mp-application-step[data-step="4"] .mp-application-step4-use .mp-application-choice-grid {
  margin-top: 18px;
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4QuestionH4Spacing */
.mp-application-step[data-step="4"] .mp-application-step4-question {
  margin-top: 34px;
  margin-bottom: 22px;
}

.mp-application-step[data-step="4"] .mp-application-step4-question h4 {
  margin: 0 0 10px;
  color: var(--mp-burgundy, #970014);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.18;
  font-weight: 900;
}

.mp-application-step[data-step="4"] .mp-application-step4-question p {
  margin: 0;
  line-height: 1.5;
}

.mp-application-step[data-step="4"] .mp-application-step4-question + .mp-application-choice-grid {
  margin-top: 18px;
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4SocialsFinalPolish */
.mp-application-step[data-step="4"] .mp-step4-social-title,
.mp-application-step[data-step="4"] .mp-step4-final-title {
  color: var(--mp-burgundy, #970014);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mp-step4-no-socials {
  margin-top: 18px;
  margin-bottom: 22px;
  min-height: 72px;
}

.mp-step4-no-socials span[aria-hidden="true"] {
  font-size: 1.65rem;
}

.mp-step4-no-socials strong {
  font-size: 1.02rem;
}

.is-disabled-by-no-socials {
  opacity: .42;
  pointer-events: none;
  filter: grayscale(.2);
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4SocialsDecisionUX */
.mp-step4-no-socials--inline {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(151, 0, 20, .16);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.mp-step4-no-socials--inline span[aria-hidden="true"] {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(151, 0, 20, .06);
  color: var(--mp-burgundy, #970014);
  font-size: 1.35rem;
}

.mp-step4-no-socials--inline strong {
  color: var(--mp-text, #252b36);
  font-size: 1.05rem;
  font-weight: 900;
}

.mp-step4-no-socials--inline.is-selected {
  border-color: var(--mp-burgundy, #970014);
  background: linear-gradient(180deg, rgba(151, 0, 20, .075), rgba(151, 0, 20, .035));
  box-shadow: 0 14px 30px rgba(151, 0, 20, .10);
}

.mp-step4-no-socials--inline.is-selected strong {
  color: var(--mp-burgundy, #970014);
}

.is-disabled-by-no-socials {
  opacity: .38;
  pointer-events: none;
  filter: grayscale(.15);
}

[data-step4-final-block][hidden] {
  display: none !important;
}

[data-step4-final-block].is-visible {
  display: block;
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4SocialsDecisionUX_CLEAN */
.mp-step4-no-socials--inline {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(151, 0, 20, .16);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.mp-step4-no-socials--inline input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mp-step4-no-socials--inline .mp-application-social-card__title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mp-step4-no-socials--inline .mp-application-social-card__title > span[aria-hidden="true"] {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(151, 0, 20, .06);
  color: var(--mp-burgundy, #970014);
  font-size: 1.35rem;
}

.mp-step4-no-socials--inline strong {
  color: var(--mp-text, #252b36);
  font-size: 1.05rem;
  font-weight: 900;
}

.mp-step4-no-socials--inline.is-selected {
  border-color: var(--mp-burgundy, #970014);
  background: linear-gradient(180deg, rgba(151, 0, 20, .075), rgba(151, 0, 20, .035));
  box-shadow: 0 14px 30px rgba(151, 0, 20, .10);
}

.mp-step4-no-socials--inline.is-selected strong {
  color: var(--mp-burgundy, #970014);
}

.mp-application-social-card.is-disabled-by-no-socials {
  opacity: .38;
  pointer-events: none;
  filter: grayscale(.15);
}

[data-step4-final-block][hidden] {
  display: none !important;
}

[data-step4-final-block].is-visible {
  display: block;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4FinalBlockVisibilityFix */
[data-step4-final-block][hidden] {
  display: none !important;
}

[data-step4-final-block].is-visible {
  display: block;
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4SocialDecisionIntegrated */
.mp-step4-no-socials--inline {
  display: flex;
  width: 100%;
  min-height: 76px;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(151, 0, 20, .16);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.mp-step4-no-socials--inline input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mp-step4-no-socials--inline .mp-application-social-card__title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mp-step4-no-socials--inline .mp-application-social-card__title > span[aria-hidden="true"] {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(151, 0, 20, .06);
  color: var(--mp-burgundy, #970014);
  font-size: 1.35rem;
}

.mp-step4-no-socials--inline strong {
  color: var(--mp-text, #252b36);
  font-size: 1.05rem;
  font-weight: 900;
}

.mp-step4-no-socials--inline.is-selected {
  border-color: var(--mp-burgundy, #970014);
  background: linear-gradient(180deg, rgba(151, 0, 20, .075), rgba(151, 0, 20, .035));
  box-shadow: 0 14px 30px rgba(151, 0, 20, .10);
}

.mp-step4-no-socials--inline.is-selected strong {
  color: var(--mp-burgundy, #970014);
}

.mp-application-social-card.is-disabled-by-no-socials {
  opacity: .38;
  pointer-events: none;
  filter: grayscale(.15);
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4WebsiteUrlFirstUX */
.mp-application-step[data-step="4"] .mp-step4-url-title {
  display: block;
  margin-bottom: 12px;
  color: var(--mp-burgundy, #970014);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.18;
  font-weight: 900;
}

.mp-application-step[data-step="4"] [data-website-yes] .mp-application-url-field {
  min-height: 64px;
  border-color: rgba(151, 0, 20, .24);
  box-shadow: 0 12px 26px rgba(151, 0, 20, .045);
}

.mp-application-step[data-step="4"] [data-website-yes] .mp-application-url-field input {
  font-size: 1.05rem;
  font-weight: 800;
}

.mp-application-step[data-step="4"] [data-website-use-question] {
  margin-top: 34px;
}

.mp-application-step[data-step="4"] [data-website-use-grid] {
  margin-top: 18px;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_01V_Step4WebsiteUseGridHiddenFix */
.mp-application-step[data-step="4"] [data-website-use-question][hidden],
.mp-application-step[data-step="4"] [data-website-use-grid][hidden] {
  display: none !important;
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_03B3_LogoStorageAndPreviewPolish */
.mp-application-step[data-step="1"] .mp-application-upload--logo-split .mp-application-upload__box {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(118px, 150px) !important;
  align-items: center !important;
  gap: clamp(16px, 2.5vw, 26px) !important;
  min-height: 150px !important;
  padding: clamp(18px, 2.5vw, 24px) !important;
  text-align: left !important;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-split .mp-application-upload__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-split .mp-application-logo-preview {
  width: clamp(112px, 13vw, 150px) !important;
  height: clamp(112px, 13vw, 150px) !important;
  min-height: clamp(112px, 13vw, 150px) !important;
  border-radius: 24px !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  font-size: 2.4rem !important;
  justify-self: end !important;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-split strong {
  font-size: clamp(1rem, 1.6vw, 1.2rem) !important;
}

.mp-application-step[data-step="1"] .mp-application-upload--logo-split small {
  max-width: 28ch;
  font-size: 0.9rem !important;
}

@media (max-width: 720px) {
  .mp-application-step[data-step="1"] .mp-application-upload--logo-split .mp-application-upload__box {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .mp-application-step[data-step="1"] .mp-application-upload--logo-split .mp-application-logo-preview {
    justify-self: center !important;
  }
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_03D1_BackendDrivenCategoryOptions */
.mp-application-choice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #970014;
}

.mp-application-choice__icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.mp-application-choice:has(input:checked) .mp-application-choice__icon {
  color: #fff;
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_03D2_CategoryVisualPolish */
.mp-application-step[data-step="2"] .mp-application-choice {
  gap: 18px;
}

.mp-application-step[data-step="2"] .mp-application-choice__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: #970014;
}

.mp-application-step[data-step="2"] .mp-application-choice__icon svg {
  width: 46px;
  height: 46px;
  display: block;
  filter: drop-shadow(0 6px 12px rgba(151, 0, 20, 0.08));
}

.mp-application-step[data-step="2"] .mp-application-choice__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.mp-application-step[data-step="2"] .mp-application-choice__parent {
  color: #970014;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.10em;
  line-height: 1.1;
  text-transform: uppercase;
}

.mp-application-step[data-step="2"] .mp-application-choice__copy strong {
  color: #242832;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
  line-height: 1.16;
}

.mp-application-step[data-step="2"] .mp-application-choice:has(input:checked) .mp-application-choice__parent,
.mp-application-step[data-step="2"] .mp-application-choice:has(input:checked) .mp-application-choice__copy strong {
  color: #fff;
}

.mp-application-step[data-step="2"] .mp-application-choice:has(input:checked) .mp-application-choice__icon svg {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.16));
}

/* MP_MKT_BAKERY_ONBOARDING_ZIP_03D4_CategorySelectedTextVisibilityFix
   Corrige visibilidad de textos en cards seleccionadas de categorías Step 2.
   Mantiene texto oscuro/corporativo aunque la card esté checked. */
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="productCategories[]"]:checked),
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked) {
  color: #24262d !important;
}

.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="productCategories[]"]:checked) strong,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked) strong,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="productCategories[]"]:checked) .mp-application-choice__title,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked) .mp-application-choice__title {
  color: #24262d !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
  filter: none !important;
}

.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="productCategories[]"]:checked) .mp-application-choice__parent,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked) .mp-application-choice__parent,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="productCategories[]"]:checked) small,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked) small {
  color: #970014 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-shadow: none !important;
  filter: none !important;
}

.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="productCategories[]"]:checked) .mp-application-choice__icon,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked) .mp-application-choice__icon {
  color: inherit !important;
  opacity: 1 !important;
  filter: none !important;
}

.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="productCategories[]"]:checked)::before,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked)::before {
  opacity: 0.08 !important;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_03D5B_TargetCustomersConfigBinding */
.mp-application-step[data-step="2"] .mp-application-choice__icon--target {
  color: #970014;
  font-size: 2rem;
}

.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked) strong,
.mp-application-step[data-step="2"] .mp-application-choice:has(input[name="targetCustomers[]"]:checked) .mp-application-choice__icon--target {
  color: #24242c !important;
  opacity: 1 !important;
  text-shadow: none !important;
}


/* MP_MKT_BAKERY_ONBOARDING_ZIP_03E1_Step3BackendCategoriesSubcategories */
.mp-application-product-taxonomy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 12px;
}

.mp-application-product-taxonomy .mp-application-field {
  width: 100%;
}

.mp-application-product-taxonomy select {
  min-height: 48px;
}

.mp-application-product-taxonomy + .mp-application-mini-grid {
  margin-top: 14px;
}
