/* ── VMTA Specialties Widget ─────────────────────────────────── */
.vmta-sp-wrap {
    font-family: inherit;
    padding: 20px 0;
}

/* Search */
.vmta-sp-search-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}
.vmta-sp-search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0b7f7c;
    border-radius: 50px;
    padding: 10px 22px;
    width: 100%;
    max-width: 65%;
    transition: border-color .2s, box-shadow .2s;
}
.vmta-sp-search-box:focus-within {
    border-color: #0b7f7c;
    box-shadow: 0 0 0 3px rgba(14,158,148,.15);
}
.vmta-sp-search-box input {
    border: none !important;
    outline: none !important;
    font-size: 15px;
    width: 100%;
    box-shadow: none !important;
    color: white;
    background: transparent !important;
    margin:0;
}
.vmta-sp-search-box input::placeholder,
.vmta-sp-search-box input:focus,
.vmta-sp-search-box svg { color: white !important; fill:white;}

/* Grid */
.vmta-sp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 12px;
    justify-content: center;
}

/* Item */
.vmta-sp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    width: 110px;
    transition: transform .2s;
}
.vmta-sp-item:hover {
    transform: translateY(-4px);
    color: #0b7f7c;
}
.vmta-sp-item.vmta-hidden {
    display: none;
}

/* Icon bubble */
.vmta-sp-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #0b7f7c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    overflow: hidden;
    transition: background .2s;
}
.vmta-sp-item:hover .vmta-sp-icon {
    background: #0b867e;
}
.vmta-sp-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Label */
.vmta-sp-label {
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-size:18px;
    color: #0b7f7c;
}

/* Empty state */
.vmta-sp-empty {
    text-align: center;
    color: #888;
    font-size: 15px;
    padding: 20px;
}

/* Responsive */
@media (max-width: 600px) {
    .vmta-sp-item { width: 85px; }
    .vmta-sp-icon { width: 68px; height: 68px; border-radius: 16px; }
    .vmta-sp-icon img { width: 42px; height: 42px; }
    .vmta-sp-label { font-size: 11px; }
}
