/* ==========================================================================
   Buscador IA Tienda — Frontend Styles v1.0 (add-to-cart)
   ========================================================================== */

/* Body lock — prevents background scroll on mobile (especially iOS Safari) */
body.biat-body-locked {
    position: fixed; width: 100%; overflow: hidden;
}

.biat-wrap { overflow: hidden; }

/* Banner ----------------------------------------------------------------- */
.biat-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);
}
.biat-banner-content { flex: 1; padding: 36px 40px; }
.biat-banner-title { font-size: 28px; font-weight: 700; color: #fff; font-style: italic; margin: 0 0 10px; line-height: 1.2; }
.biat-banner-subtitle { font-size: 15px; color: #bbb; margin: 0 0 24px; line-height: 1.5; }
.biat-typewriter {
    color: #c9a96e; font-weight: 700; min-height: 1.5em;
    border-right: 2px solid #c9a96e; animation: biatBlink 0.7s step-end infinite;
}
@keyframes biatBlink { 50% { border-color: transparent; } }
.biat-banner-image { flex-shrink: 0; width: 280px; min-height: 200px; overflow: hidden; align-self: stretch; }
.biat-banner-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.biat-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);
}
.biat-trigger-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 169, 110, 0.5); filter: brightness(1.1); }

/* Modal ------------------------------------------------------------------ */
.biat-modal {
    display: none; position: fixed; inset: 0; z-index: 2147483647 !important;
    background: rgba(0, 0, 0, 0.6); align-items: center; justify-content: center;
    padding: 16px; backdrop-filter: blur(4px);
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
}
.biat-modal.biat-modal-open { display: flex; }
.biat-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: biatSlideUp 0.3s ease;
}
.biat-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;
}
.biat-modal-close:hover { background: rgba(0,0,0,0.12); color: #333; }

/* Content ---------------------------------------------------------------- */
.biat-modal-content { flex: 1; overflow-y: auto; position: relative; }

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

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

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

/* Question image */
.biat-slide-image { margin: -32px -28px 20px; overflow: hidden; }
.biat-slide-image img { width: 100%; height: 180px; object-fit: cover; display: block; }

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

/* Options */
.biat-slide-options { display: flex; flex-direction: column; gap: 10px; }
.biat-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;
}
.biat-slide-opt:hover { border-color: #c9a96e; background: #fdf8f0; transform: translateX(6px); }
.biat-slide-opt-selected { border-color: #c9a96e; background: #c9a96e; color: #fff; }
.biat-slide-opt:disabled { cursor: default; opacity: 0.6; }
.biat-slide-opt-selected:disabled { opacity: 1; }

/* Multi-select */
.biat-slide-opt-multi { display: flex; align-items: center; gap: 12px; text-align: left; }
.biat-check { flex-shrink: 0; width: 22px; height: 22px; border: 2px solid #ccc; border-radius: 6px; background: #fff; position: relative; transition: all 0.15s; }
.biat-slide-opt-selected .biat-check { background: #c9a96e; border-color: #c9a96e; }
.biat-slide-opt-selected .biat-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); }
.biat-slide-opt-multi:hover .biat-check { border-color: #c9a96e; }
.biat-slide-opt-multi.biat-slide-opt-selected { border-color: #c9a96e; background: #f5ead6; color: #333; box-shadow: inset 0 0 0 1px #c9a96e; }
.biat-slide-opt-multi.biat-slide-opt-selected .biat-check { box-shadow: 0 0 0 3px rgba(201,169,110,0.25); }

/* Hint (multi-select) */
.biat-slide-hint { font-size: 12px; color: #999; text-align: center; margin-bottom: 8px; font-style: italic; }

/* Image options grid */
.biat-slide-options-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
    flex-direction: unset;
}
.biat-opt-card {
    display: flex; flex-direction: column; align-items: center; gap: 0;
    padding: 0; border: 2px solid #e8e8e8; border-radius: 14px;
    background: #fff; cursor: pointer; transition: all 0.2s;
    overflow: hidden; text-align: center;
}
.biat-opt-card:hover { border-color: #c9a96e; transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.biat-opt-card-selected { border-color: #c9a96e; background: #fdf8f0; box-shadow: 0 0 0 2px rgba(201,169,110,0.3); }
.biat-opt-card:disabled { cursor: default; opacity: 0.6; }
.biat-opt-card-selected:disabled { opacity: 1; }
.biat-opt-card img {
    width: 100%; height: 110px; object-fit: cover; display: block;
    border-bottom: 1px solid #f0f0f0; transition: transform 0.3s;
}
.biat-opt-card:hover img { transform: scale(1.05); }
.biat-opt-card-label {
    display: block; padding: 10px 8px; font-size: 12px; font-weight: 600;
    color: #333; line-height: 1.3; width: 100%;
}
.biat-opt-card-selected .biat-opt-card-label { color: #8b6914; }

/* Next button (multi) */
.biat-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;
}
.biat-slide-next:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(201, 169, 110, 0.4); }
.biat-slide-next:disabled { opacity: 0.4; cursor: not-allowed; }

/* Free text textarea */
.biat-free-text {
    width: 100%; padding: 12px 16px; border: 2px solid #e0d6c8; border-radius: 12px;
    font-family: inherit; font-size: 15px; resize: vertical; margin-top: 6px;
    transition: border-color 0.2s; box-sizing: border-box;
}
.biat-free-text:focus { border-color: #c9a96e; outline: none; }

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

/* Follow-up -------------------------------------------------------------- */
.biat-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;
}
.biat-followup-msg p { margin: 0 0 10px; }
.biat-followup-msg p:last-child { margin-bottom: 0; }
.biat-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;
}
.biat-followup-question p { margin: 0; }

/* User message bubble */
.biat-user-msg {
    font-size: 14px; color: #fff; line-height: 1.5;
    background: #c9a96e; border-radius: 14px 14px 4px 14px;
    padding: 12px 18px; margin: 12px 0 12px auto; max-width: 80%;
    text-align: right; width: fit-content;
}

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

/* Input area ------------------------------------------------------------- */
.biat-input-area { display: flex; align-items: center; gap: 10px; padding: 14px 20px; border-top: 1px solid #f0f0f0; background: #fafafa; }
.biat-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; }
.biat-text-input:focus { border-color: #c9a96e; }
.biat-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; }
.biat-send-btn:hover { filter: brightness(1.1); }
.biat-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

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

.biat-results { padding: 52px 20px 20px; }

.biat-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;
}
.biat-results-summary p { margin: 0 0 12px; }
.biat-results-summary p:last-child { margin-bottom: 0; }
.biat-results-summary strong { color: #111; font-weight: 700; }
.biat-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 ----------------------------------------------------------- */
.biat-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: biatFadeIn 0.4s ease;
}
.biat-card-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 16px; background: #f8f8f8; border-bottom: 1px solid #f0f0f0;
}
.biat-card-number { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #888; }
.biat-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; }
.biat-card-badge-sale { background: #c62828; }

/* Card body */
.biat-card-body { display: flex; gap: 16px; padding: 16px; }
.biat-card-img-col { flex-shrink: 0; text-align: center; width: 110px; }
.biat-product-img { width: 110px; height: 110px; object-fit: contain; border-radius: 8px; }
.biat-card-info { flex: 1; min-width: 0; }
.biat-product-name { font-size: 15px; font-weight: 700; color: #111; margin-bottom: 6px; line-height: 1.3; overflow-wrap: break-word; word-break: break-word; }

/* Price */
.biat-product-price-wrap { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.biat-price-current { font-size: 22px; font-weight: 800; color: #c62828; }
.biat-price-old { font-size: 14px; color: #999; text-decoration: line-through; }

.biat-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;
}
.biat-product-reason p { margin: 0 0 6px; }
.biat-product-reason p:last-child { margin-bottom: 0; }
.biat-product-reason strong { color: #222; font-weight: 700; }

/* Rating */
.biat-card-rating { margin-top: 8px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.biat-rating-score { font-size: 14px; font-weight: 700; color: #f5a623; }
.biat-rating-stars { display: inline-flex; gap: 1px; }
.biat-star { display: inline-block; width: 14px; height: 14px; background-repeat: no-repeat; background-position: center; background-size: contain; }
.biat-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"); }
.biat-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"); }
.biat-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"); }

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

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

/* ==========================================================================
   CTA: Add to cart + View product (REPLACES store rows)
   ========================================================================== */

.biat-card-cta {
    display: flex; gap: 10px; padding: 14px 16px;
    border-top: 1px solid #f0f0f0; background: #fafafa;
}

.biat-add-to-cart-btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 20px; border: none; border-radius: 12px;
    background: #111; color: #fff !important; font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer;
    transition: all 0.25s; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    min-height: 48px; text-decoration: none;
}
a.biat-add-to-cart-btn:visited,
a.biat-add-to-cart-btn:active { color: #fff !important; }
.biat-add-to-cart-btn:hover {
    background: #c9a96e; transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(201, 169, 110, 0.4);
}
.biat-add-to-cart-btn:disabled { opacity: 0.7; cursor: wait; }
.biat-add-to-cart-btn.biat-added {
    background: #16a34a; pointer-events: none;
}

/* Spinner inside button */
.biat-btn-spinner {
    display: inline-block; width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: biatSpin 0.6s linear infinite;
}

.biat-view-product-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 20px; border: 2px solid #e0e0e0; border-radius: 12px;
    background: #fff; color: #333; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
    min-height: 48px;
}
.biat-view-product-btn:hover { border-color: #c9a96e; color: #c9a96e; text-decoration: none; }

/* Variation selector ----------------------------------------------------- */
.biat-variation-selector {
    padding: 10px 16px 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.biat-variation-label {
    font-size: 12px; font-weight: 600; color: #666; text-transform: uppercase; letter-spacing: 0.5px;
}
.biat-variation-btns { display: flex; gap: 6px; flex-wrap: wrap; }
.biat-variation-btn {
    padding: 8px 14px; border: 2px solid #e0e0e0; border-radius: 8px;
    background: #fff; color: #333; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.biat-variation-btn:hover { border-color: #c9a96e; color: #c9a96e; }
.biat-variation-btn.biat-variation-active {
    border-color: #c9a96e; background: #fdf8f0; color: #8a6914;
    box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.3);
}

/* Pack card -------------------------------------------------------------- */
.biat-pack-title { font-size: 16px; margin-top: 12px; color: #666; }
.biat-pack-card { border: 2px dashed #c9a96e; background: #fefcf7; }
.biat-pack-card .biat-card-header { background: #fdf8f0; }
.biat-pack-card .biat-card-number { color: #8a6914; }

/* Lead capture ----------------------------------------------------------- */
.biat-lead-icon { text-align: center; margin-bottom: 16px; }
.biat-lead-title { font-size: 20px; font-weight: 700; color: #111; text-align: center; margin: 0 0 12px; line-height: 1.35; }
.biat-lead-text { font-size: 14px; color: #555; text-align: center; line-height: 1.6; margin: 0 0 20px; }
.biat-lead-form { display: flex; gap: 10px; margin-bottom: 12px; }
.biat-lead-email { flex: 1; padding: 13px 16px; border: 2px solid #e0e0e0; border-radius: 12px; font-size: 15px; outline: none; transition: border-color 0.2s; }
.biat-lead-email:focus { border-color: #c9a96e; }
.biat-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; }
.biat-lead-submit:hover:not(:disabled) { filter: brightness(1.08); transform: translateY(-1px); }
.biat-lead-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.biat-lead-error { font-size: 13px; color: #c62828; text-align: center; min-height: 1.3em; }
.biat-lead-disclaimer { font-size: 11px; color: #999; text-align: center; margin: 4px 0 16px; line-height: 1.4; }
.biat-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; }
.biat-lead-skip:hover { color: #666; }

/* Streaming */
.biat-stream-wrap { animation: biatFadeIn 0.3s ease; }

/* Actions (share + restart) ---------------------------------------------- */
.biat-results-actions { display: flex; align-items: center; justify-content: center; gap: 12px; padding-top: 16px; }
.biat-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;
}
.biat-share-btn:hover { background: #25D366; color: #fff; }
.biat-share-btn svg { flex-shrink: 0; }
.biat-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;
}
.biat-restart-btn:hover { background: #c9a96e; color: #fff; }

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

@keyframes biatFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes biatSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes biatSpin { to { transform: rotate(360deg); } }

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

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

    .biat-modal-box { max-width: 100%; max-height: 95vh; max-height: 95dvh; border-radius: 14px; }
    .biat-text-input { font-size: 16px; }
    .biat-slide { padding: 24px 20px 20px; }
    .biat-slide-image { margin: -24px -20px 16px; }
    .biat-slide-image img { height: 140px; }
    .biat-slide-question { font-size: 18px; }
    .biat-slide-opt { font-size: 14px; padding: 14px 16px; }
    .biat-slide-options-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .biat-opt-card img { height: 90px; }

    .biat-card-body { flex-direction: column; align-items: center; text-align: center; }
    .biat-card-img-col { width: auto; }
    .biat-product-img { width: 90px; height: 90px; }
    .biat-product-reason { text-align: left; }
    .biat-product-attrs { justify-content: center; }
    .biat-product-price-wrap { justify-content: center; }
    .biat-card-cta { flex-direction: column; }
    .biat-view-product-btn { width: 100%; }
    .biat-variation-selector { flex-direction: column; align-items: flex-start; }
    .biat-variation-btn { font-size: 12px; padding: 7px 12px; }
    .biat-results-actions { flex-direction: column; gap: 10px; }
    .biat-share-btn, .biat-restart-btn { width: 100%; justify-content: center; text-align: center; }
    .biat-trigger-btn { font-size: 13px; padding: 12px 22px; min-height: 44px; }
    .biat-lead-form { flex-direction: column; }
    .biat-lead-email { font-size: 16px; }
    .biat-lead-submit { width: 100%; padding: 14px; }
}

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

    .biat-modal { padding: 8px; }
    .biat-modal-box { border-radius: 12px; max-height: 100vh; max-height: 100dvh; }
    .biat-slide { padding: 20px 16px 16px; }
    .biat-slide-image { margin: -20px -16px 12px; }
    .biat-slide-image img { height: 120px; }
    .biat-slide-question { font-size: 16px; }
    .biat-slide-options-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .biat-opt-card img { height: 80px; }
    .biat-opt-card-label { font-size: 11px; padding: 8px 6px; }

    .biat-results { padding: 48px 12px 12px; }
    .biat-results-summary { padding: 16px; font-size: 13px; }
    .biat-followup-msg { padding: 16px; font-size: 14px; }
    .biat-price-current { font-size: 18px; }
    .biat-input-area { padding: 10px 12px; }
}

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