/**
 * ModKor Search — self-contained autocomplete styles.
 * Deliberately NOT Tailwind: a distributed module can't rely on the host theme compiling its
 * utility classes, so the widget ships its own CSS and looks identical on any Hyvä/Magento theme.
 *
 * @copyright Copyright (c) 2026 Crestora Labs LLC
 * @license   Proprietary — commercial license
 */
.mk-ac [x-cloak] { display: none !important; }

.mk-ac__panel {
    position: absolute;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, .14), 0 4px 10px rgba(16, 24, 40, .06);
    overflow: hidden;
    overflow-y: auto;
    max-height: 70vh;
}

.mk-ac__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #0b9d6f; /* readable ModKor mint */
}

.mk-ac__count {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: #9ca3af;
}

.mk-ac__msg {
    padding: 12px 16px;
    font-size: 14px;
    color: #6b7280;
}

.mk-ac__link {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
}

.mk-ac__link:hover {
    background: #f9fafb;
    color: #374151;
    text-decoration: none;
}

.mk-ac__product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
}

.mk-ac__product:last-child { border-bottom: 0; }

.mk-ac__product:hover {
    background: #f9fafb;
    text-decoration: none;
}

.mk-ac__thumb {
    width: 56px;
    height: 56px;
    flex: none;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    background: #fff;
    padding: 6px;
}

.mk-ac__meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mk-ac__name {
    font-size: 14px;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mk-ac__sku { font-size: 12px; color: #9ca3af; }
.mk-ac__price { font-size: 14px; font-weight: 600; color: #111827; }

.mk-ac__seeall {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #374151;
    text-decoration: none;
    border-top: 1px solid #f3f4f6;
}

.mk-ac__seeall:hover {
    background: #f9fafb;
    color: #0b9d6f;
    text-decoration: none;
}
