/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 09 2026 | 11:44:01 */
.sub-menu {
    background: #ffffff;
    border-radius: 18px;
    padding: 0;
    min-width: 320px;
/*     box-shadow: 0 15px 40px rgba(0,0,0,0.08); */
/*     border: 1px solid rgba(0,0,0,0.05); */
}

.sub-menu li {
    list-style: none;
    margin-bottom: 0;
}

.sub-menu li a.menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* .sub-menu li a.menu-link:hover { */
/*     background: linear-gradient(135deg, #111827, #374151); */
/*     color: #ffffff; */
/*     transform: translateX(6px); */
/*     box-shadow: 0 10px 25px rgba(0,0,0,0.15); */
/* } */

/* .sub-menu .ast-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    transition: all 0.3s ease;
} */

/* .sub-menu li a.menu-link:hover .ast-icon {
    background: rgba(255,255,255,0.15);
} */

/* SVG Arrow */
.sub-menu .ast-arrow-svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transform: rotate(-90deg);
}

/* Smooth Animation */
.sub-menu li {
    transition: all 0.3s ease;
}

.ast-live-search-results {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 8px;
    min-width: 320px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.ast-live-search-results .ast-search--posttype-heading {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    padding: 8px 14px 14px 0px;
}

/* Search Items */
.ast-live-search-results .ast-search-item {
    display: block;
    align-items: center;
    padding: 7px 0px;
    margin-bottom: 0;
    border-bottom: 1px solid #f2f2f2 !important;
    border-radius: 0px;
    text-decoration: none;
    background: #fff !important;
    color: #111827;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ast-live-search-results .ast-search-item:last-child {
    margin-bottom: 0;
}

/* .ast-live-search-results .ast-search-item:hover {
    background: linear-gradient(135deg, #111827, #374151);
    color: #000;
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
 */
.ast-live-search-results .ast-search-item::after {
    content: "↗";
    margin-left: auto;
    font-size: 16px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
}

/* .ast-live-search-results .ast-search-item:hover::after {
    opacity: 1;
    transform: translateX(0);
	color: #000 !important;
} */

.ast-live-search-results .ast-search-item span {
    line-height: 1.5;
}