.writeme {
  --wm-bg: #ffffff;
  --wm-ink: #111111;
  --wm-muted: #666666;
  --wm-line: #e5e5e5;
  --wm-soft: #f0f0f0;
  --wm-white: #ffffff;
  --wm-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --wm-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --wm-ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  font-family: var(--wm-font-body);
  color: var(--wm-ink);
  background: #ffffff !important;
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2rem);
}

/* Grid: fondo blanco a ancho completo (anula gris del tema) */
.writeme.writeme--grid {
  background: #ffffff !important;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 4vw, 2rem);
}

.writeme *,
.writeme *::before,
.writeme *::after {
  box-sizing: border-box;
}

.writeme-eyebrow {
  font-family: var(--wm-font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wm-muted);
  margin: 0 0 0.75rem;
}

.writeme-heading {
  font-family: var(--wm-font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--wm-ink);
}

.writeme-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wm-muted);
  max-width: 36rem;
  margin: 0;
}

.writeme-empty,
.writeme-error {
  color: var(--wm-muted);
  font-style: italic;
}

/* —— Grid / cartelera —— */
.writeme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
}

.writeme-poster {
  margin: 0;
  background: var(--wm-white);
  border: 1px solid var(--wm-line);
  transition: transform var(--wm-ease), box-shadow var(--wm-ease);
}

.writeme-poster:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.writeme-poster__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Cuadrado forzado: padding-bottom 100% + img absolute (resistente a temas) */
.writeme-poster__media {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 100% !important; /* 1:1 */
  aspect-ratio: 1 / 1;
  overflow: hidden !important;
  background: #f0f0f0;
}

.writeme-poster__media img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  filter: grayscale(100%);
  transition: filter var(--wm-ease), transform 0.6s ease;
}

.writeme-poster:hover .writeme-poster__media img {
  filter: grayscale(40%);
  transform: scale(1.03);
}

.writeme-poster__placeholder {
  position: absolute !important;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #ddd 0%, #bbb 100%);
}

.writeme-poster__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.25rem 1.5rem;
  border-top: 1px solid var(--wm-line);
}

.writeme-poster__title {
  font-family: var(--wm-font-display);
  font-size: 1.55rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin: 0 0 0.65rem;
}

.writeme-poster__quote {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--wm-muted);
  margin: 0 0 1.25rem;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.writeme-poster__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 0 1.25rem;
  border: 1px solid var(--wm-ink);
  background: var(--wm-ink);
  color: var(--wm-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--wm-ease), color var(--wm-ease);
}

.writeme-poster:hover .writeme-poster__cta {
  background: transparent;
  color: var(--wm-ink);
}

/* ============================================================
   PDP Shopify-style — clases wm-pdp (rompe contenedor estrecho del tema)
   ============================================================ */

/* Breakout full-bleed only when shortcode inside theme content — not on custom template */
body:not(.writeme-pdp) #writeme-checkout-root {
  display: block !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  padding: 0 !important;
}

body.writeme-pdp #writeme-checkout-root {
  display: block !important;
  width: 100% !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 1rem clamp(1rem, 3vw, 1.5rem) 0 !important;
  box-sizing: border-box !important;
  background: #fff !important;
}

/* Anula padding de párrafos del tema (~0.7+0.3em → ~0.3em entre bloques) */
body.writeme-pdp #page_content_wrapper p,
body.writeme-pdp .page_content_wrapper p,
.wm-pdp p {
  padding-top: 0.15em !important;
  padding-bottom: 0.15em !important;
}

.wm-pdp {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #111;
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}

.wm-pdp *,
.wm-pdp *::before,
.wm-pdp *::after {
  box-sizing: border-box;
}

/* Top: grid stretch — galería = altura de la tarjeta de info */
.wm-pdp__top {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr !important;
  gap: 2.5rem !important;
  align-items: stretch !important;
  width: 100% !important;
  margin: 0 !important;
}

.wm-pdp__info {
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.wm-pdp__gallery {
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

/* Galería: foto grande + 2 miniaturas; altura = 100% de la columna (igual que la tarjeta) */
.wm-pdp__gallery-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 0.6rem !important;
  flex: 1 1 auto !important;
  height: 100% !important;
  min-height: 0 !important;
}

.wm-pdp__gallery-main {
  grid-row: 1 / 3 !important;
  grid-column: 1 !important;
  position: relative !important;
  overflow: hidden !important;
  background: #f3f3f3;
  border: 1px solid #ececec;
}

.wm-pdp__gallery-side {
  grid-row: 1 / 3 !important;
  grid-column: 2 !important;
  display: grid !important;
  grid-template-rows: 1fr 1fr !important;
  gap: 0.6rem !important;
  height: 100% !important;
}

.wm-pdp__gallery-thumb {
  position: relative !important;
  overflow: hidden !important;
  background: #f3f3f3;
  border: 1px solid #ececec;
}

.wm-pdp__gallery-main img,
.wm-pdp__gallery-thumb img,
.wm-pdp__gallery-placeholder {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 !important;
  filter: grayscale(100%);
}

.wm-pdp__gallery-placeholder {
  background: linear-gradient(160deg, #eaeaea, #cfcfcf);
}

/* Tarjeta de info: título, precio, prestaciones y CTA (estructura tipo reserva) */
.wm-pdp__card {
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1), 0 4px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.wm-pdp__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}

.wm-pdp__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  margin: 0 0 0.6rem;
  color: #111;
}

.wm-pdp__desc {
  margin: 0 0 1.1rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #666;
}

/* Lista fija de prestaciones (div, no ul — evita bullets del tema) */
.wm-pdp__perks {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  margin: 0 0 1.5rem !important;
  padding: 0 !important;
  list-style: none !important;
}

.wm-pdp__perk {
  display: flex !important;
  align-items: center !important;
  gap: 0.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  color: #333 !important;
}

.wm-pdp__perk::before,
.wm-pdp__perk::after {
  content: none !important;
  display: none !important;
}

.wm-pdp__perk-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 22px !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: #111 !important;
  line-height: 0 !important;
}

.wm-pdp__perk-icon svg {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.wm-pdp__perk-text {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wm-pdp__price-row {
  margin: 0 0 1.1rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fafafa;
}

.wm-pdp__price {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  letter-spacing: -0.01em;
}

.wm-pdp__price.is-free {
  color: #1a7a3a;
}

.wm-pdp__features {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wm-pdp__features li {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #333;
}

.wm-pdp__feature-icon {
  width: 6px;
  height: 6px;
  margin-right: 0.75rem;
  background: #111;
  flex-shrink: 0;
}

.wm-pdp__buy {
  margin-top: 0.35rem;
}

.wm-pdp__btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 50px;
  padding: 0 1.5rem;
  border: 1px solid #111;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.wm-pdp__btn:hover {
  opacity: 0.88;
}

.wm-pdp__btn.is-disabled,
.wm-pdp__btn:disabled {
  opacity: 0.4;
  cursor: default;
}

.wm-pdp__note {
  margin: 0.6rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
}

/* Detalles debajo */
.wm-pdp__letters {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #ececec;
}

.wm-pdp__section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  margin: 0 0 1.5rem;
  text-align: center;
}

.wm-carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.wm-carousel__viewport {
  overflow: hidden;
  border: 1px solid #ececec;
  background: #f7f7f7;
}

.wm-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.wm-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.wm-carousel__slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  filter: grayscale(100%);
  margin: 0 !important;
}

.wm-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.wm-carousel__nav--prev { left: -8px; }
.wm-carousel__nav--next { right: -8px; }

.wm-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.wm-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.wm-carousel__dots button.is-active {
  background: #111;
}

/* Descripción | FAQ — dos columnas (table layout, a prueba de tema) */
.wm-pdp__columns {
  display: table !important;
  width: 100% !important;
  table-layout: fixed !important;
  border-collapse: separate !important;
  border-spacing: 3.5rem 0 !important;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid #ececec;
}

.wm-pdp__col {
  display: table-cell !important;
  vertical-align: top !important;
  width: 50% !important;
}

.wm-pdp__section-title--left {
  text-align: left;
  margin: 0 0 1.25rem;
}

.wm-pdp__subheading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #111;
  margin: 2.75rem 0 1rem;
}

.wm-pdp__col--desc .wm-pdp__subheading:first-of-type {
  margin-top: 0;
}

.wm-pdp__prose {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}

.wm-pdp__prose p {
  margin: 0 0 0.85rem;
}

/* FAQ — acordeón B/N (chevron derecha, líneas finas) */
.wm-pdp__col--faq .wm-pdp__acc {
  border: 0;
  border-top: 1px solid #e6e6e6;
  padding: 0;
  margin: 0;
  background: transparent;
}

.wm-pdp__col--faq .wm-pdp__acc:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.wm-pdp__col--faq .wm-pdp__acc summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 2.25rem 1.1rem 0;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.45;
  color: #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  background: transparent;
}

.wm-pdp__col--faq .wm-pdp__acc summary::-webkit-details-marker,
.wm-pdp__col--faq .wm-pdp__acc summary::marker {
  display: none;
  content: '';
}

.wm-pdp__col--faq .wm-pdp__acc summary::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 1.5px solid #333;
  border-bottom: 1.5px solid #333;
  transform: rotate(45deg);
  transition: transform 0.2s ease, margin-top 0.2s ease;
  flex-shrink: 0;
}

.wm-pdp__col--faq .wm-pdp__acc[open] summary::after {
  transform: rotate(-135deg);
  margin-top: -2px;
}

.wm-pdp__col--faq .wm-pdp__acc-body {
  padding: 0 2.25rem 1.15rem 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #555;
}

.wm-pdp__col--faq .wm-pdp__acc-body p {
  margin: 0 0 0.85rem;
}

.wm-pdp__letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  padding: 1.25rem;
  border: 1px solid #ececec;
  background: #fafafa;
}

.writeme-seo-extra {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Botones checkout (modal) */
.writeme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
  border: 1px solid #111;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.writeme-btn--primary {
  background: #111;
  color: #fff;
  width: 100%;
}

.writeme-btn--ghost {
  background: #fff;
  color: #111;
  width: 100%;
}

/* Tema: ocultar título WP + fecha */
body.writeme-singular .entry-header,
body.writeme-singular .wp-block-post-title,
body.writeme-singular .entry-title,
body.writeme-singular .entry-meta,
body.writeme-singular .posted-on,
body.writeme-singular .comments-link {
  display: none !important;
}

/* Grand Tour scroll ghosts */
body.writeme-pdp .header_style_wrapper.scroll_down {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
body.writeme-pdp:not(.js_nav) .mobile_menu_wrapper {
  visibility: hidden !important;
  pointer-events: none !important;
}
body.writeme-pdp #side_menu_wrapper:not(.visible):not(.share_open) {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}
body.writeme-pdp #option_btn,
body.writeme-pdp #option_wrapper {
  display: none !important;
}

body.writeme-singular .site-content,
body.writeme-singular .entry-content,
body.writeme-singular .wp-block-post-content,
body.writeme-singular article.post,
body.writeme-singular .hentry {
  max-width: none !important;
  width: 100% !important;
  background: #fff !important;
  box-shadow: none !important;
  border: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Mobile: imagen arriba, texto abajo */
@media (max-width: 768px) {
  .wm-pdp__top {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .wm-pdp__info,
  .wm-pdp__gallery {
    display: block !important;
    width: 100% !important;
  }

  .wm-pdp__gallery {
    margin-bottom: 0 !important;
  }

  .wm-pdp__gallery-grid {
    height: 62vw !important;
    min-height: 220px !important;
    flex: none !important;
  }

  .wm-pdp__columns {
    display: block !important;
  }

  .wm-pdp__col {
    display: block !important;
    width: 100% !important;
  }

  .wm-pdp__col--desc {
    margin-bottom: 2.5rem;
  }
}

/* Suggest form shortcode — theme-proof (Grand Tour floats labels) */
.wm-suggest {
  max-width: 640px !important;
  margin: 2.5rem auto !important;
  padding: 0 1.25rem 3rem !important;
  clear: both !important;
  font-family: 'DM Sans', sans-serif !important;
  color: #111 !important;
  background: #fff !important;
  box-sizing: border-box !important;
}

.wm-suggest *,
.wm-suggest *::before,
.wm-suggest *::after {
  box-sizing: border-box !important;
}

.wm-suggest__header {
  margin: 0 0 1.75rem !important;
  float: none !important;
  width: 100% !important;
}

.wm-suggest__title {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(1.85rem, 3.5vw, 2.4rem) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  line-height: 1.2 !important;
  margin: 0 0 0.85rem !important;
  color: #111 !important;
  float: none !important;
}

.wm-suggest__intro {
  margin: 0 !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
  color: #555 !important;
  float: none !important;
}

.wm-suggest__form {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: both !important;
}

.wm-suggest__row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1rem !important;
  margin: 0 0 1rem !important;
  width: 100% !important;
  float: none !important;
}

.wm-suggest__field {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.4rem !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  width: 100% !important;
  font-weight: 400 !important;
  text-align: left !important;
}

.wm-suggest__row .wm-suggest__field {
  flex: 1 1 calc(50% - 0.5rem) !important;
  min-width: 220px !important;
}

.wm-suggest__field--full {
  flex: 1 1 100% !important;
  width: 100% !important;
  margin: 0 0 1rem !important;
}

.wm-suggest__label {
  display: block !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #888 !important;
  line-height: 1.3 !important;
}

.wm-suggest__field input[type='text'],
.wm-suggest__field input[type='email'],
.wm-suggest__field textarea {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0.7rem 0.9rem !important;
  border: 1px solid #d8d8d8 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  color: #111 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.wm-suggest__field textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

.wm-suggest__field input:focus,
.wm-suggest__field textarea:focus {
  outline: none !important;
  border-color: #111 !important;
  box-shadow: none !important;
}

.wm-suggest__msg {
  display: block !important;
  width: 100% !important;
  margin: 0 0 1rem !important;
  padding: 0.85rem 1rem !important;
  font-size: 0.92rem !important;
  line-height: 1.45 !important;
}

.wm-suggest__msg[hidden] {
  display: none !important;
}

.wm-suggest__msg.is-ok {
  background: #f4f6f4 !important;
  border: 1px solid #c9d4c9 !important;
  color: #1e4d1e !important;
}

.wm-suggest__msg.is-err {
  background: #faf0f0 !important;
  border: 1px solid #e8c8c8 !important;
  color: #8a1f1f !important;
}

.wm-suggest__actions {
  margin: 1.25rem 0 0 !important;
  width: 100% !important;
  float: none !important;
}

.wm-suggest__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 1.5rem !important;
  border: 1px solid #111 !important;
  border-radius: 0 !important;
  background: #111 !important;
  color: #fff !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: background 0.2s ease, color 0.2s ease !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.wm-suggest__btn:hover,
.wm-suggest__btn:focus {
  background: #fff !important;
  color: #111 !important;
}

.wm-suggest__btn:disabled {
  opacity: 0.55 !important;
  cursor: wait !important;
  pointer-events: none !important;
}

@media (max-width: 560px) {
  .wm-suggest__row .wm-suggest__field {
    flex: 1 1 100% !important;
    min-width: 0 !important;
  }
}
