/**
 * Grupo Beyond — Live Search dropdown styles.
 *
 * Combina con el sistema visual del catálogo:
 *  - Tipografía: Inter (heredada)
 *  - Fondo input: #F1EFE8 (crema)
 *  - Texto: #003E5C (azul marino)
 *  - Acento: #1AA5B5 (Beyond Teal)
 *  - Border: #E5E5E0
 */

.gb-ls-form {
    position: relative;
}

.gb-ls-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 50;
    background: #ffffff;
    border: 1px solid #E5E5E0;
    border-radius: 10px;
    box-shadow:
        0 10px 30px rgba(0, 62, 92, 0.10),
        0 4px 12px rgba(0, 62, 92, 0.06);
    max-height: 480px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gb-ls-dropdown[hidden] {
    display: none;
}

.gb-ls-list {
    overflow-y: auto;
    max-height: 420px;
    padding: 4px 0;
}

/* Cada resultado */
.gb-ls-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #F4F2EC;
    transition: background-color 0.12s ease;
}
.gb-ls-item:last-child {
    border-bottom: none;
}
.gb-ls-item:hover,
.gb-ls-item.is-active {
    background-color: #F8F7F2;
}

/* Imagen miniatura */
.gb-ls-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    background-color: #F1EFE8;
}
.gb-ls-img--placeholder {
    background:
        linear-gradient(135deg, #F1EFE8 25%, #E5E5E0 25%, #E5E5E0 50%, #F1EFE8 50%, #F1EFE8 75%, #E5E5E0 75%)
        0 0 / 12px 12px;
}

/* Info textual */
.gb-ls-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gb-ls-title {
    font-size: 14px;
    font-weight: 600;
    color: #003E5C;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.gb-ls-excerpt {
    font-size: 12px;
    color: #6B7280;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gb-ls-sku {
    display: inline-block;
    margin-top: 2px;
    font-size: 11px;
    color: #1AA5B5;
    font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
    background-color: rgba(26, 165, 181, 0.08);
    padding: 1px 6px;
    border-radius: 3px;
    align-self: flex-start;
}

/* Resaltado del término buscado */
.gb-ls-item mark {
    background-color: rgba(26, 165, 181, 0.18);
    color: inherit;
    padding: 0 1px;
    border-radius: 2px;
}

/* Link "Ver todos los resultados" */
.gb-ls-viewall {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background-color: #F8F7F2;
    border-top: 1px solid #E5E5E0;
    color: #1AA5B5;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.12s ease;
}
.gb-ls-viewall:hover {
    background-color: #F1EFE8;
    color: #14848F;
}
.gb-ls-arrow {
    font-size: 16px;
    margin-left: 8px;
}

/* Estados auxiliares */
.gb-ls-status {
    padding: 16px 14px;
    text-align: center;
    color: #6B7280;
    font-size: 13px;
}
.gb-ls-empty {
    color: #94A3B8;
    line-height: 1.5;
}

/* Móvil */
@media (max-width: 640px) {
    .gb-ls-dropdown {
        max-height: 60vh;
    }
    .gb-ls-list {
        max-height: calc(60vh - 56px);
    }
    .gb-ls-img {
        width: 44px;
        height: 44px;
    }
    .gb-ls-title {
        font-size: 13px;
    }
    .gb-ls-excerpt {
        -webkit-line-clamp: 1;
    }
}
