/* Custom UI Styles & Custom Cursor */



/* Base widget UI fixes for a sleek look */
.elementor-widget-vape-station-spotlight,
.elementor-widget-vape-station-reviews,
.elementor-widget-vape-station-delivery,
.elementor-widget-vape-station-search {
    font-family: 'Space Grotesk', sans-serif;
}

/* Search Dropdown */
.vs-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 8px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    max-height: 80vh;
    overflow-y: auto;
}
.vs-search-dropdown--open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vs-search-dropdown__inner {
    padding: 24px;
}
.vs-search-dropdown__layout {
    display: flex;
    gap: 32px;
}
.vs-search-dropdown__sidebar {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.vs-search-dropdown__section h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}
.vs-search-dropdown__section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.vs-search-dropdown__section ul li a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.vs-search-dropdown__section ul li a:hover {
    color: #3525cd;
}
.vs-search-dropdown__main {
    flex: 1;
    border-left: 1px solid #e2e8f0;
    padding-left: 32px;
}
.vs-search-dropdown__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.vs-search-dropdown__header h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.vs-search-view-all {
    font-size: 13px;
    color: #3525cd;
    text-decoration: none;
    font-weight: 600;
}
.vs-search-view-all:hover {
    text-decoration: underline;
}

/* AJAX Search Results */
.vs-search-results {
    width: 100%;
}
.vs-search-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}
.vs-search-result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
}
.vs-search-result-item:hover {
    border-color: #3525cd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 37, 205, 0.08);
}
.vs-search-result-item__badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #0f172a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}
.vs-search-result-item__img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    background: transparent;
    flex-shrink: 0;
}
.vs-search-result-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.vs-search-result-item__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vs-search-result-item__title {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
}
.vs-search-result-item__price {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.vs-search-result-item__price del {
    color: #94a3b8;
    font-weight: 400;
    margin-right: 6px;
    font-size: 12px;
}
.vs-search-loading,
.vs-search-no-results {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 0;
}

@media (max-width: 900px) {
    .vs-search-dropdown__layout {
        flex-direction: column;
        gap: 24px;
    }
    .vs-search-dropdown__sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    .vs-search-dropdown__main {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-left: 0;
        padding-top: 24px;
    }
}
@media (max-width: 600px) {
    .vs-search-dropdown__sidebar {
        flex-direction: column;
    }
    .vs-search-results__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
