/* CARD CONTAINER */
.verni-card {
    max-width: 600px;
    margin: 40px auto;
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    animation: fadeIn .4s ease;
}

/* TITLE */
.verni-title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333e48;
}

/* SEARCH BAR */
.verni-search-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    position: relative;
}

/* INPUT FIELD */
.verni-input-container {
    flex: 1;
    position: relative;
}

#verni-part-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: 0.2s;
    background: #fafafa;
}

#verni-part-input:focus {
    border-color: #0073aa;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0,115,170,0.15);
}

/* BUTTON */
.verni-btn {
    background: #0073aa;
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: 0.2s;
}

.verni-btn:hover {
    background: #005f8d;
}

/* AUTOCOMPLETE BOX */
.verni-autocomplete {
    position: absolute;
    top: 105%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
    display: none;
}

.verni-autocomplete div {
    padding: 10px 14px;
    cursor: pointer;
    transition: 0.15s;
}

.verni-autocomplete div:hover {
    background: #f0f6fb;
}

/* RESULTS */
.verni-results {
    margin-top: 25px;
}

/* PRODUCT CARD RESULTS */
.verni-result-card {
    padding: 18px;
    border-radius: 12px;
    background: #f7f9fa;
    margin-bottom: 14px;
    border: 1px solid #e1e5e8;
}

.verni-result-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.verni-result-brand {
    font-size: 0.95rem;
    color: #555;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
