/* Almacen TypeSense Autocomplete */

.almacen-ac-container {
    position: relative;
    width: 100%;
}

.almacen-ac-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 16px;
    border-radius: 8px;
    outline: none;
    background: #fff;
    color: #1f2937;
    box-sizing: border-box;
}

.almacen-ac-container input[type="search"].almacen-ac-input {
    border-color: var(--theme-form-field-border-focus-color, #3b82f6);
}

.almacen-ac-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 999999;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 4px;
    box-sizing: border-box;
}

.almacen-ac-results.is-open {
    display: block;
}

.almacen-ac-section {
    padding: 4px 0;
}

.almacen-ac-section + .almacen-ac-section {
    border-top: 1px solid #e5e7eb;
}

.almacen-ac-heading {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    padding: 8px 14px 4px;
}

.almacen-ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    text-decoration: none;
    color: #1f2937;
    cursor: pointer;
    transition: background 0.1s;
}

.almacen-ac-item:hover,
.almacen-ac-item.is-active {
    background: #f3f4f6;
}

/* Categories */
.almacen-ac-cat-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.almacen-ac-cat-name {
    flex: 1;
    font-size: 14px;
}

.almacen-ac-cat-count {
    font-size: 12px;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Brands */
.almacen-ac-brand-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.almacen-ac-brand-name {
    flex: 1;
    font-size: 14px;
}

.almacen-ac-brand-count {
    font-size: 12px;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Products */
.almacen-ac-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.almacen-ac-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.almacen-ac-product-title {
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.almacen-ac-product-price {
    font-size: 13px;
    color: #6b7280;
}

.almacen-ac-product-price del {
    color: #9ca3af;
}

.almacen-ac-product-price ins {
    text-decoration: none;
    color: #dc2626;
    font-weight: 600;
}

/* Highlights */
.almacen-ac-results mark {
    background: #fef3c7;
    padding: 0;
    font-weight: 700;
    color: inherit;
}

/* Ver más resultados button */
.almacen-ac-footer {
    border-top: 1px solid #e5e7eb;
}

.almacen-ac-more {
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--theme-palette-color-1, #3b82f6);
    padding: 12px 14px;
}

.almacen-ac-more:hover,
.almacen-ac-more.is-active {
    color: var(--theme-palette-color-1, #3b82f6);
}

/* Empty state */
.almacen-ac-empty {
    padding: 16px 14px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

/* Loading state */
.almacen-ac-container.is-loading .almacen-ac-input {
    opacity: 0.7;
}
