/**
 * Hakuna Mataza Personalization — estilos front (CSS consolidado).
 *
 * Este archivo absorbe TODOS los estilos de personalización que vivían
 * en el theme editor (Warehouse → Custom CSS, secciones #6 Personalización
 * y #25 Popup personalización). Al desplegar este módulo, las secciones
 * equivalentes en el theme editor deben quedar VACÍAS para evitar duplicación.
 *
 * Selectores con prefijo .wk- y .hm- se mantienen para no romper el
 * HTML de la theme override de Warehouse. En Fase 3 (rediseño Claude Design)
 * los renombraremos a .hmp-* y haremos limpieza.
 */

/* =====================================================================
   1. FORM DE PERSONALIZACIÓN EN FICHA DE PRODUCTO
   (sección #6 del theme editor)
   ===================================================================== */

.product-customization {
    border-radius: 15px !important;
}

.product-customization-item label.texto-perso {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 6px;
    margin-top: 2rem;
}

.product-customization-item .product-message {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    resize: vertical;
    transition: all 0.2s ease;
    box-shadow: none;
}

.product-customization-item .product-message:focus {
    border: 1px solid #f7b801;
    box-shadow: 0 0 2px rgba(247, 184, 1, 0.15);
    outline: none;
}

.product-customization-item .product-message::placeholder {
    color: #aaa;
    font-style: italic;
}

.product-customization-item small.float-xs-right {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
    margin-right: 4px;
}

.product-message {
    overflow: hidden;
    resize: none;
}

@media only screen and (max-width: 767px) {
    .product-customization-item img {
        max-width: 300px;
    }
}

/* =====================================================================
   2. AVISO IMPORTANTE "💛 Cada detalle cuenta"
   (de los estilos antes mezclados con switch-model)
   ===================================================================== */

.hm-aviso-importante {
    font-size: 14px;
    color: #5A7A63;
    background: #FFF8E8;
    padding: 14px 18px;
    border-left: 4px solid #F7CD7E;
    border-radius: 12px;
    margin-bottom: 16px;
    display: block;
}

.hm-aviso-titulo {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.hm-aviso-titulo span {
    font-weight: 600;
    margin-left: 6px;
}

.hm-aviso-texto {
    line-height: 1.5;
    font-weight: 500;
}

/* =====================================================================
   3. POPUP / SLIDE-OUT DE PERSONALIZACIÓN EN CARRITO
   (sección #25 del theme editor)
   ===================================================================== */

/* Contenedor principal del popup slide */
.hm-slide-personalization {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Fondo oscuro semi-transparente */
.hm-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.55);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Panel deslizante */
.hm-slide-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: #f9f9f9;
    padding: 2rem;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Estado activo */
.hm-slide-personalization.hm-active {
    opacity: 1;
    visibility: visible;
}

.hm-slide-personalization.hm-active .hm-slide-overlay {
    opacity: 1;
}

.hm-slide-personalization.hm-active .hm-slide-panel {
    transform: translateX(0);
}

/* Lock body scroll cuando el slide está abierto */
body.hm-slide-open {
    overflow: hidden;
}

/* Botón de cierre */
.hm-slide-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: #f7cd7e;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hm-slide-close:hover {
    transform: scale(1.2);
    color: #e0b85c;
}

/* Contenido del panel */
.hm-slide-content {
    margin-top: 2rem;
}

/* Título del slide */
.hm-slide-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 6px;
}

/* Nombre del producto dentro del slide */
.hm-slide-product-name {
    font-size: 16px;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Footer con botones */
.hm-slide-footer {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hm-slide-footer > div {
    display: none;
    gap: 1rem;
}

.customization_form.editing .hm-slide-footer > div,
.customization_form.editing .hmp-edit-actions {
    display: flex;
}

.customization_form.editing .edit_customization {
    display: none;
}

.hm-slide-panel .custom-input {
    display: flex;
    flex-direction: column;
}

.hm-slide-panel input[type="text"],
.hm-slide-panel input[type="file"],
.hm-slide-panel textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
}

.hm-slide-panel .img-customized {
    max-width: 100%;
    height: auto;
    margin-top: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    padding: 4px;
    background: white;
}

/* Botones del slide */
.hm-slide-panel .btn,
.hm-slide-panel button {
    background-color: #f7cd7e;
    color: #222;
    border: none;
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
}

.hm-slide-panel .btn:hover,
.hm-slide-panel button:hover {
    background-color: #f4be59;
    transform: scale(1.03);
}

/* =====================================================================
   4. ENLACE "VER/EDITAR PERSONALIZACIÓN" EN LÍNEA DE CARRITO
   ===================================================================== */

.carrito.hm-open-slide {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f7f7f7;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: 5px;
}

.carrito.hm-open-slide:hover {
    background-color: #f0f0f0;
    border-color: #d0d0d0;
    color: #333;
    text-decoration: none;
}

.carrito.hm-open-slide::before {
    content: "✏️";
    margin-right: 5px;
}

/* Botón de carrito destacado (Realizar pedido) */
.btn-cart-highlight {
    background-color: #f7cd7e;
    color: #222 !important;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 4px;
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.btn-cart-highlight:hover {
    background-color: #f4be59;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* =====================================================================
   5. LÍNEAS DE PERSONALIZACIÓN DENTRO DEL SLIDE
   ===================================================================== */

.hm-slide-panel .product-customization-line,
.product-customization-line {
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    position: relative;
}

.hm-slide-panel .product-customization-line:not(:last-child)::after,
.product-customization-line:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #eee;
    background-image: linear-gradient(to right, transparent, #e0e0e0, transparent);
}

/* Labels */
.hm-slide-panel .custom-label,
.custom-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 0.8rem;
    font-size: 15px;
    position: relative;
    padding-left: 12px;
    display: block;
}

.hm-slide-panel .custom-label::before,
.custom-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #f7cd7e;
    border-radius: 50%;
}

/* Contenedor de inputs */
.custom-input {
    display: flex;
    flex-direction: column;
}

/* Texto mostrado (modo visualización) */
.hm-slide-panel .hmp-default-text,
.hmp-default-text {
    display: block;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    margin-top: 0.5rem;
    min-height: 20px;
    width: 100%;
}

.hm-slide-panel .hmp-default-text {
    display: inline-block;
    min-height: 40px;
}

/* Textarea (modo edición) */
.customization-text {
    display: none;
    width: 100%;
    min-height: 80px;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-top: 0.5rem;
    resize: vertical;
}

/* Contador de caracteres */
.hmp-allowed-char {
    display: none;
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* Modo edición — togglea visibilidad */
.customization_form.editing .hmp-default-text {
    display: none !important;
}

.customization_form.editing .customization-text,
.customization_form.editing .hmp-allowed-char {
    display: block !important;
}

/* Campo de elección (pills) dentro del drawer del carrito: la regla de arriba
   fuerza el textarea visible en modo edición, pero aquí las pills son la
   interfaz — más específica para ganarle (misma clase .hmp-has-choices que
   pone cart-edit.js initChoiceFields, igual que en la ficha). */
.customization_form.editing .hmp-has-choices .customization-text {
    display: none !important;
}

/* Imágenes personalizadas */
.img-customized {
    max-width: 100%;
    height: auto;
    margin-top: 0.8rem;
    border: 1px solid #e0e0e0;
    padding: 4px;
    background: white;
    border-radius: 4px;
}

/* =====================================================================
   6. MENSAJE DE ÉXITO TRAS GUARDAR
   ===================================================================== */

.module_success.alert {
    background-color: #e6f7d9;
    color: #2f6627;
    border: 1px solid #b8e0a0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.module_success.alert .close {
    background: none;
    border: none;
    font-size: 16px;
    color: #2f6627;
    opacity: 0.6;
    padding: 0;
    margin: 0;
    line-height: 1;
    float: right;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.module_success.alert .close:hover {
    opacity: 1;
}

.module_success.alert ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* =====================================================================
   7. LOADER "REGALO QUE SE ABRE" · overlay al guardar la personalización
      (labor illusion · sustituye el spinner seco · diseño final-cart-loader.jsx,
      opción B "Regalo que se abre" + frase "Tu detalle, casi listo…")
   ===================================================================== */

/* Loader del drawer de edición · oculto por defecto (el visible es el de recálculo #hmp-loader). */
.hmp-loader { display: none !important; }

/* Overlay a pantalla completa · cream translúcido + blur. Oculto por defecto;
   la clase .is-on lo muestra (la pone showLoader desde product.js). */
#hmp-loader {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    background: rgba(251, 246, 239, 0.82);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}
#hmp-loader.is-on { display: flex; animation: hmpGiftFade 0.2s ease; }
@keyframes hmpGiftFade { from { opacity: 0; } to { opacity: 1; } }

/* Tarjeta blanca centrada */
#hmp-loader .hmp-gift-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(58, 44, 40, 0.18);
    padding: 32px 30px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Frase italic serif (color de marca) */
#hmp-loader .hmp-gift-phrase {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.3;
    color: var(--hk-ink, #3A2C28);
    text-align: center;
    margin: 0;
}

/* Barra de progreso indeterminada, fina */
#hmp-loader .hmp-gift-bar {
    position: relative;
    width: 150px;
    height: 3px;
    border-radius: 2px;
    background: var(--hk-line, #EBDDD0);
    overflow: hidden;
    margin-top: 2px;
}
#hmp-loader .hmp-gift-bar > span {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    border-radius: 2px;
    background: var(--hk-mustard, #E2B85A);
    animation: hmpGiftBar 1.1s ease-in-out infinite;
}

/* === Animaciones del regalo (SVG inline · clases en injectLoader) === */
#hmp-loader .hmp-gift-lid {
    transform-box: view-box;
    transform-origin: 32px 32px;
    animation: hmpGiftLid 2s ease-in-out infinite;
}
#hmp-loader .hmp-gift-spark { transform-box: view-box; animation: hmpGiftSparkle 2s ease-in-out infinite; }
#hmp-loader .hmp-gift-spark--1 { transform-origin: 32px 13px; }
#hmp-loader .hmp-gift-spark--2 { transform-origin: 20px 16px; animation-delay: 0.3s; }
#hmp-loader .hmp-gift-spark--3 { transform-origin: 45px 15px; animation-delay: 0.55s; }

@keyframes hmpGiftLid {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    45%, 55% { transform: translateY(-13px) rotate(-7deg); }
}
@keyframes hmpGiftSparkle {
    0%, 100% { opacity: 0; transform: scale(0.4); }
    50%      { opacity: 1; transform: scale(1); }
}
@keyframes hmpGiftBar {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(280%); }
}

/* Accesibilidad · sin movimiento si el usuario lo pide (solo frase + barra fija) */
@media (prefers-reduced-motion: reduce) {
    #hmp-loader .hmp-gift-svg *,
    #hmp-loader .hmp-gift-bar > span { animation: none !important; }
    #hmp-loader .hmp-gift-bar > span { left: 30%; }
}

/* =====================================================================
   8. BORDES DE ERROR Y VALIDACIÓN
   ===================================================================== */

.hmp-error-border,
.hmp-error-border {
    border: 2px solid #ff001bbf !important;
    outline-color: #ff001bbf !important;
}

/* =====================================================================
   9. HELPS INLINE (hmp-allowed-char) en producto y date-help
   ===================================================================== */

.date-help,
.hmp-allowed-char {
    display: block !important;
    width: 100% !important;
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 4px !important;
    margin-right: 4px !important;
    text-align: right !important;
    float: right !important;
    line-height: 1.4rem !important;
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 400 !important;
    box-sizing: border-box !important;
}

@media (max-width: 576px) {
    .date-help,
    .hmp-allowed-char {
        float: none !important;
        text-align: left !important;
        margin-right: 0 !important;
    }
}

/* =====================================================================
   10. IMAGEN EN MODAL DE CONFIRMACIÓN (centrado)
   ===================================================================== */

.customization-modal .product-customization-line .value img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* =====================================================================
   11. AUTOCHECK "Ocultar botón principal de carrito" en producto
   (compatibilidad con la clase legacy)
   ===================================================================== */

.product-quantity.hide_main_cart_button .add,
.product-quantity.hide_main_cart_button .add_buy_now,
.product-quantity.hide_main_cart_button .qty_wrap {
    display: block !important;
}

/* =====================================================================
   12. LOADER SUTIL al recalcular el carrito (sustituye al overlay gris
   full-screen). Lo gestiona cart-edit.js (initCartUpdatedReload):
   añade .hkc-recalc a .cart-grid y un .hkc-recalc-loader dentro del
   resumen. Atenúa SOLO el resumen + indicador 26px "Recalculando…",
   bloquea SOLO los steppers. Respeta prefers-reduced-motion.
   ===================================================================== */
.cart-grid-right { position: relative; }
/* el contenido del resumen no es interactivo mientras recalcula */
.cart-grid.hkc-recalc .cart-grid-right > *:not(.hkc-recalc-loader) {
    pointer-events: none;
}
/* bloquear solo los steppers mientras dura (evita doble click) */
.cart-grid.hkc-recalc .cart-grid-body .bootstrap-touchspin,
.cart-grid.hkc-recalc .cart-grid-body .js-increase-product-quantity,
.cart-grid.hkc-recalc .cart-grid-body .js-decrease-product-quantity {
    pointer-events: none !important;
}
/* el loader lleva un velo crema semitransparente → atenúa visualmente el resumen
   detrás (equivalente a "opacity:.4 del bloque") sin pelear con la opacidad de cada
   hijo, y el indicador queda nítido encima. */
.hkc-recalc-loader {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(251, 246, 239, 0.72);
    border-radius: 12px;
}
/* Reuso del MISMO gift box que "guardar personalización" (product.js + sección 12 del
   loader). Las @keyframes (hmpGiftLid/hmpGiftSparkle) son globales; aquí re-aplicamos las
   animaciones a las clases dentro de .hkc-recalc-loader (el CSS original las scopea a #hmp-loader). */
.hkc-recalc-loader .hmp-gift-svg { width: 54px; height: 54px; }
.hkc-recalc-loader .hmp-gift-lid {
    transform-box: view-box;
    transform-origin: 32px 32px;
    animation: hmpGiftLid 2s ease-in-out infinite;
}
.hkc-recalc-loader .hmp-gift-spark { transform-box: view-box; animation: hmpGiftSparkle 2s ease-in-out infinite; }
.hkc-recalc-loader .hmp-gift-spark--1 { transform-origin: 32px 13px; }
.hkc-recalc-loader .hmp-gift-spark--2 { transform-origin: 20px 16px; animation-delay: 0.3s; }
.hkc-recalc-loader .hmp-gift-spark--3 { transform-origin: 45px 15px; animation-delay: 0.55s; }
.hkc-recalc-loader .hmp-gift-phrase {
    font-family: 'Fraunces', Georgia, serif;
    font-style: italic;
    font-size: 15px;
    line-height: 1.3;
    color: var(--hk-ink, #3A2C28);
    text-align: center;
    margin: 0;
}
@media (prefers-reduced-motion: reduce) {
    .hkc-recalc-loader .hmp-gift-svg * { animation: none !important; }
    .cart-grid.hkc-recalc .cart-grid-right > *:not(.hkc-recalc-loader) { transition: none; }
}

/* =====================================================================
   13. STEPPER DE CANTIDAD − [n] + en el carrito (igual que checkout/ficha).
   El touchspin del tema es vertical (chevrons); cart-edit.js (initCartSteppers)
   oculta sus botones y añade .hkc-qty-btn. Misma pastilla que el checkout.
   ===================================================================== */
.cart-grid-body .bootstrap-touchspin {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;        /* botones a toda la altura → hover llena los extremos */
    width: auto !important;
    min-width: 92px;
    border: 1px solid var(--hk-line, #EBDDD0) !important;
    border-radius: 999px !important;
    background: var(--hk-cream, #FBF6EF) !important;
    overflow: hidden;
    box-shadow: none !important;
    padding: 0 !important;
}
.cart-grid-body .bootstrap-touchspin .bootstrap-touchspin-prefix,
.cart-grid-body .bootstrap-touchspin .bootstrap-touchspin-postfix,
.cart-grid-body .bootstrap-touchspin .input-group-btn-vertical { display: none !important; }
.cart-grid-body .bootstrap-touchspin input.js-cart-line-product-quantity {
    order: 2;
    align-self: center !important;
    width: 34px !important;
    min-height: 0 !important;
    height: 30px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    text-align: center;
    padding: 0 !important;
    line-height: 30px !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--hk-ink, #3A2C28);
}
.cart-grid-body .hkc-qty-btn {
    background: transparent;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    align-self: stretch;          /* llena la altura de la pastilla */
    min-width: 30px;
    padding: 0 12px;              /* ancho por padding (como la ficha) → llega al extremo redondeado */
    line-height: 1;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: var(--hk-ink, #3A2C28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s ease, color 0.18s ease;
}
.cart-grid-body .hkc-qty-minus { order: 1; }
.cart-grid-body .hkc-qty-plus { order: 3; }
.cart-grid-body .hkc-qty-btn:hover { background: var(--hk-paper, #F5EAE2); color: var(--hk-accent, #8A4A4A); }

/* =====================================================================
   14. CONTADOR DE CARACTERES (ficha) → aviso cuando quedan pocos
   (product.js · applyMaxLengthRules pone .hmp-count-low en el <small>)
   ===================================================================== */
.hmp-count-low { color: var(--hk-accent, #8A4A4A) !important; font-weight: 600; }

/* =====================================================================
   15. CAMPOS DE ELECCIÓN (opciones " // " en el nombre del campo)
   (product.js · initChoiceFields)
   ===================================================================== */

.hmp-choice-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 4px 0 8px;
}

.hmp-choice-pill {
    padding: 8px 20px;
    border: 2px solid var(--hk-accent-light, #C99D93);
    border-radius: 999px;
    background: transparent;
    color: var(--hk-ink, #3A2C28);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
    font-family: inherit;
    line-height: 1.2;
}

.hmp-choice-pill:hover {
    border-color: var(--hk-accent, #8A4A4A);
    background: var(--hk-paper, #F5EAE2);
}

.hmp-choice-pill.is-active {
    background: var(--hk-accent, #8A4A4A);
    border-color: var(--hk-accent, #8A4A4A);
    color: var(--hk-cream, #FBF6EF);
}

.hmp-choice-hidden {
    display: none !important;
}

/* El contador de caracteres no tiene sentido en campos de elección.
   Selector más específico que la regla de chrome.css que fuerza display:block !important */
body #product .hkp-personalize-box .hmp-has-choices .hkp-field-counter,
body[id^="product"] .hkp-personalize-box .hmp-has-choices .hkp-field-counter {
    display: none !important;
}

/* Mismo criterio en el slide-out de edición del carrito (cart-edit.js
   initChoiceFields · markup .hmp-edit-field en vez de .hkp-field). */
.hmp-edit-field.hmp-has-choices .hmp-edit-counter {
    display: none !important;
}
