/* ==========================================================================
   Buscador IA — Frontend Styles v2.0  (streaming + multi-store + tracking)
   ========================================================================== */

/* Wrapper */
.bia-wrap { overflow: hidden; }

/* Banner trigger --------------------------------------------------------- */
.bia-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.bia-banner-content {
    flex: 1;
    padding: 36px 40px;
}
.bia-banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    margin: 0 0 10px;
    line-height: 1.2;
}
.bia-banner-subtitle {
    font-size: 15px;
    color: #bbb;
    margin: 0 0 24px;
    line-height: 1.5;
}
.bia-banner-image {
    flex-shrink: 0;
    width: 280px;
    overflow: hidden;
    align-self: stretch;
}
.bia-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bia-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}
.bia-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.5);
    filter: brightness(1.1);
}

/* Modal ------------------------------------------------------------------ */
.bia-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999999;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
}
.bia-modal.bia-modal-open { display: flex; }

.bia-modal-box {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    position: relative;
    animation: biaSlideUp 0.3s ease;
}
.bia-modal-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: rgba(0,0,0,0.06);
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    z-index: 3;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.bia-modal-close:hover { background: rgba(0,0,0,0.12); color: #333; }

/* Content area (slides go here) ------------------------------------------ */
.bia-modal-content {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

/* Slide (question card) -------------------------------------------------- */
.bia-slide {
    padding: 32px 28px 28px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.bia-slide-enter {
    opacity: 0;
    transform: translateX(40px);
}
.bia-slide-active {
    opacity: 1;
    transform: translateX(0);
}

/* Progress bar */
.bia-progress {
    height: 4px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 24px;
    overflow: hidden;
}
.bia-progress-bar {
    height: 100%;
    background: #c9a96e;
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* Step label */
.bia-slide-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c9a96e;
    margin-bottom: 12px;
}

/* Question image — full width, bleeds into slide padding */
.bia-slide-image {
    margin: -32px -28px 20px;
    overflow: hidden;
}
.bia-slide-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Question */
.bia-slide-question {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 24px;
    line-height: 1.35;
}

/* Options */
.bia-slide-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bia-slide-opt {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 14px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}
.bia-slide-opt:hover {
    border-color: #c9a96e;
    background: #fdf8f0;
    transform: translateX(6px);
}
.bia-slide-opt-selected {
    border-color: #c9a96e;
    background: #c9a96e;
    color: #fff;
}
.bia-slide-opt:disabled {
    cursor: default;
    opacity: 0.6;
}
.bia-slide-opt-selected:disabled {
    opacity: 1;
}

/* Multi-select: opciones con checkbox */
.bia-slide-opt-multi {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}
.bia-check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    background: #fff;
    position: relative;
    transition: all 0.15s;
}
.bia-slide-opt-selected .bia-check {
    background: #c9a96e;
    border-color: #c9a96e;
}
.bia-slide-opt-selected .bia-check::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}
.bia-slide-opt-multi:hover .bia-check {
    border-color: #c9a96e;
}
/* Multi-select no cambia de fondo entero como single-select */
.bia-slide-opt-multi.bia-slide-opt-selected {
    border-color: #c9a96e;
    background: #fdf8f0;
    color: #333;
}

/* Multi-select: botón siguiente */
.bia-slide-next {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 14px;
    background: #c9a96e;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bia-slide-next:hover:not(:disabled) {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4);
}
.bia-slide-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Loading state ---------------------------------------------------------- */
.bia-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 28px;
    gap: 18px;
}
.bia-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #eee;
    border-top-color: #c9a96e;
    border-radius: 50%;
    animation: biaSpin 0.8s linear infinite;
}
.bia-loading-text {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    transition: opacity 0.3s ease;
    min-height: 1.5em;
    text-align: center;
}
.bia-loading-text-fade {
    opacity: 0;
}

/* Follow-up message from Claude ------------------------------------------ */
.bia-followup-msg {
    font-size: 15px;
    color: #333;
    line-height: 1.65;
    background: #f7f5f0;
    border-radius: 14px;
    padding: 20px 24px;
    border-left: 4px solid #c9a96e;
    overflow-wrap: break-word;
    word-break: break-word;
}
.bia-followup-msg p { margin: 0 0 10px; }
.bia-followup-msg p:last-child { margin-bottom: 0; }

/* Follow-up question (separated from body text) */
.bia-followup-question {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
    background: #fff;
    border: 2px solid #c9a96e;
    border-radius: 14px;
    padding: 18px 22px;
    margin-top: 16px;
    text-align: center;
}
.bia-followup-question p { margin: 0; }

/* Error message ---------------------------------------------------------- */
.bia-error-msg {
    text-align: center;
    padding: 40px 28px;
    color: #c62828;
    font-size: 14px;
}

/* Input area ------------------------------------------------------------- */
.bia-input-area {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}
.bia-text-input {
    flex: 1;
    padding: 11px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}
.bia-text-input:focus { border-color: #c9a96e; }
.bia-send-btn {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: filter 0.2s;
}
.bia-send-btn:hover { filter: brightness(1.1); }
.bia-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ==========================================================================
   Results view
   ========================================================================== */

.bia-results { padding: 24px 20px 20px; }

.bia-results-summary {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    background: #f7f5f0;
    border-radius: 14px;
    padding: 20px 24px;
    border-left: 4px solid #c9a96e;
    margin-bottom: 22px;
    overflow-wrap: break-word;
    word-break: break-word;
}
.bia-results-summary p {
    margin: 0 0 12px;
}
.bia-results-summary p:last-child { margin-bottom: 0; }
.bia-results-summary strong {
    color: #111;
    font-weight: 700;
}

.bia-results-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #c9a96e;
    text-align: center;
    margin-bottom: 16px;
}

/* Product card ----------------------------------------------------------- */
.bia-product-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: biaFadeIn 0.4s ease;
}

/* Card header */
.bia-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    background: #f8f8f8;
    border-bottom: 1px solid #f0f0f0;
}
.bia-card-number {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}
.bia-card-badge {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #c9a96e;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Card body */
.bia-card-body {
    display: flex;
    gap: 16px;
    padding: 16px;
}
.bia-card-img-col {
    flex-shrink: 0;
    text-align: center;
    width: 110px;
}
.bia-product-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 8px;
}
.bia-card-info {
    flex: 1;
    min-width: 0;
}
.bia-product-name {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
}
.bia-product-reason {
    font-size: 13px;
    color: #444;
    line-height: 1.55;
    margin-bottom: 10px;
    padding: 10px 12px;
    background: #f9f8f5;
    border-radius: 10px;
    border-left: 3px solid #c9a96e;
}
.bia-product-reason p { margin: 0 0 6px; }
.bia-product-reason p:last-child { margin-bottom: 0; }
.bia-product-reason strong { color: #222; font-weight: 700; }

/* Rating */
.bia-card-rating {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.bia-rating-score {
    font-size: 14px;
    font-weight: 700;
    color: #f5a623;
}
.bia-rating-stars { display: inline-flex; gap: 1px; }
.bia-star {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.bia-star-full {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f5a623'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}
.bia-star-half {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%23e8dcc8'/%3E%3Cpath d='M12 2v15.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%23f5a623'/%3E%3C/svg%3E");
}
.bia-star-empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e8dcc8'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

/* Attribute tags */
.bia-product-attrs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.bia-attr-tag {
    font-size: 11px;
    color: #555;
    background: #f0f0f0;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1.3;
}
.bia-attr-tag strong { color: #333; }

/* Card footer */
.bia-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f8f8f8;
    border-top: 1px solid #f0f0f0;
    gap: 12px;
}
.bia-price-block { min-width: 0; }
.bia-product-price {
    font-size: 24px;
    font-weight: 800;
    color: #c62828;
    line-height: 1.1;
    white-space: nowrap;
}
.bia-product-store {
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}
.bia-product-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #c9a96e;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(201, 169, 110, 0.3);
}
.bia-product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 169, 110, 0.4);
    color: #fff;
    text-decoration: none;
    filter: brightness(1.08);
}

/* Review link */
.bia-review-link {
    display: inline-block;
    font-size: 12px;
    color: #c9a96e;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.bia-review-link:hover { color: #b08e4a; text-decoration: underline; }

/* Store prices comparison ------------------------------------------------ */
.bia-store-prices {
    border-top: 1px solid #f0f0f0;
    padding: 0;
}
.bia-store-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.15s;
    min-height: 44px;
}
.bia-store-row:last-child { border-bottom: none; }
.bia-store-row:hover { background: #fdf8f0; }
.bia-store-best { background: #fdf8f0; }
.bia-store-best:hover { background: #f9f0de; }

.bia-store-name-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-wrap: wrap;
}
.bia-store-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.bia-store-logo {
    max-height: 22px;
    max-width: 100px;
    object-fit: contain;
    display: block;
}
.bia-store-price {
    font-size: 16px;
    font-weight: 800;
    color: #c62828;
    white-space: nowrap;
}
.bia-store-best .bia-store-price {
    font-size: 18px;
}
.bia-store-tag {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #4caf50;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.bia-store-cta {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #e8732a;
    padding: 6px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}
.bia-store-row:hover .bia-store-cta { background: #d4641e; }

/* Lead capture screen --------------------------------------------------- */
.bia-lead-icon {
    text-align: center;
    margin-bottom: 16px;
}
.bia-lead-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.35;
}
.bia-lead-text {
    font-size: 14px;
    color: #555;
    text-align: center;
    line-height: 1.6;
    margin: 0 0 20px;
}
.bia-lead-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.bia-lead-email {
    flex: 1;
    padding: 13px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}
.bia-lead-email:focus {
    border-color: #c9a96e;
}
.bia-lead-submit {
    padding: 13px 24px;
    border: none;
    border-radius: 12px;
    background: #c9a96e;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
}
.bia-lead-submit:hover:not(:disabled) {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.bia-lead-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.bia-lead-error {
    font-size: 13px;
    color: #c62828;
    text-align: center;
    min-height: 1.3em;
}
.bia-lead-notice {
    font-size: 12px;
    color: #c62828;
    text-align: center;
    margin: 8px 0 4px;
    line-height: 1.4;
}
.bia-lead-disclaimer {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin: 4px 0 16px;
    line-height: 1.4;
}
.bia-lead-skip {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    background: none;
    color: #999;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.2s;
}
.bia-lead-skip:hover {
    color: #666;
}

/* Streaming text */
.bia-stream-wrap {
    animation: biaFadeIn 0.3s ease;
}

/* Action buttons row (share + restart) ----------------------------------- */
.bia-results-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 16px;
}

/* Share button */
.bia-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border: 2px solid #25D366;
    border-radius: 10px;
    background: #fff;
    color: #25D366;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
}
.bia-share-btn:hover { background: #25D366; color: #fff; }
.bia-share-btn svg { flex-shrink: 0; }

/* Restart */
.bia-results-restart {
    text-align: center;
    padding-top: 16px;
}
.bia-restart-btn {
    padding: 14px 28px;
    border: 2px solid #c9a96e;
    border-radius: 10px;
    background: #fff;
    color: #c9a96e;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
}
.bia-restart-btn:hover { background: #c9a96e; color: #fff; }

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes biaFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes biaSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes biaSpin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
    .bia-banner {
        flex-direction: column;
        border-radius: 14px;
    }
    .bia-banner-content {
        padding: 28px 24px;
        text-align: center;
    }
    .bia-banner-title { font-size: 22px; }
    .bia-banner-image { width: 100%; height: 180px; }

    .bia-modal-box {
        max-width: 100%;
        max-height: 95vh;
        max-height: 95dvh;
        border-radius: 14px;
    }
    .bia-text-input { font-size: 16px; }
    .bia-slide { padding: 24px 20px 20px; }
    .bia-slide-image { margin: -24px -20px 16px; }
    .bia-slide-image img { height: 140px; }
    .bia-slide-question { font-size: 18px; }
    .bia-slide-opt { font-size: 14px; padding: 14px 16px; }

    .bia-card-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .bia-card-img-col { width: auto; }
    .bia-product-img { width: 90px; height: 90px; }
    .bia-product-reason { text-align: left; }
    .bia-product-attrs { justify-content: center; }
    .bia-card-footer {
        flex-direction: column;
        text-align: center;
    }
    .bia-card-footer .bia-product-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .bia-store-row { padding: 10px 14px; gap: 8px; }
    .bia-store-tag { font-size: 9px; padding: 2px 6px; }
    .bia-results-actions { flex-direction: column; gap: 10px; }
    .bia-share-btn,
    .bia-restart-btn { width: 100%; justify-content: center; text-align: center; }
    .bia-trigger-btn {
        font-size: 13px;
        padding: 12px 22px;
        min-height: 44px;
    }
    .bia-lead-form { flex-direction: column; }
    .bia-lead-email { font-size: 16px; }
    .bia-lead-submit { width: 100%; padding: 14px; }
}

@media (max-width: 480px) {
    .bia-banner-content { padding: 20px 16px; }
    .bia-banner-title { font-size: 19px; }
    .bia-banner-subtitle { font-size: 13px; }
    .bia-banner-image { height: 140px; }

    .bia-modal { padding: 8px; }
    .bia-modal-box {
        border-radius: 12px;
        max-height: 100vh;
        max-height: 100dvh;
    }
    .bia-slide { padding: 20px 16px 16px; }
    .bia-slide-image { margin: -20px -16px 12px; }
    .bia-slide-image img { height: 120px; }
    .bia-slide-question { font-size: 16px; }

    .bia-results { padding: 16px 12px 12px; }
    .bia-results-summary { padding: 16px; font-size: 13px; }
    .bia-followup-msg { padding: 16px; font-size: 14px; }
    .bia-product-price { font-size: 20px; }
    .bia-product-cta {
        padding: 12px 18px;
        font-size: 12px;
        white-space: normal;
    }
    .bia-input-area { padding: 10px 12px; }
    .bia-store-row { padding: 10px 12px; flex-wrap: wrap; }
    .bia-store-name { font-size: 12px; }
    .bia-store-price { font-size: 14px; }
    .bia-store-best .bia-store-price { font-size: 16px; }
    .bia-store-cta { font-size: 10px; }
}

/* Honeypot */
.bia-hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}
