.eysearchcity-container {
    position: relative;
/*     max-width: 600px; */
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}
.eysearchcity-product-subcategory {
    font-size: 12px;
    color: #64748b;
    margin-top: -3px;
}

.eysearchcity-search-box {
    position: relative;
}

.eysearchcity-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
	border-radius: 11px !important;
    border: 1px solid #f1f1f1 !important;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #f8f9fc;
    color: #2d3748;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.eysearchcity-input:focus {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: #fff;
}

.eysearchcity-loader {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid rgba(79, 70, 229, 0.1);
    border-top: 3px solid #4f46e5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: translateY(-50%) rotate(0deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
}

.eysearchcity-results {
    position: absolute;
    width: calc(100% - 40px);
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
    left: 20px;
}

.eysearchcity-products {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eysearchcity-product {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s;
    align-items: center;
}

.eysearchcity-product:last-child {
    border-bottom: none;
}

.eysearchcity-product:hover {
    background-color: #f8fafc;
}

.eysearchcity-product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 5px;
    border: 1px solid #f1f5f9;
}

.eysearchcity-product-info {
    flex: 1;
}

.eysearchcity-product-title {
    font-weight: 600;
    color: #1e293b;
    text-decoration: none;
    display: block;
    font-size: 15px;
    transition: color 0.2s;
}

.eysearchcity-product-title:hover {
    color: #4f46e5;
}

.eysearchcity-no-results, .eysearchcity-error {
    padding: 20px;
    text-align: center;
    color: #64748b;
    font-size: 15px;
}

/* Estilos para móviles */
@media (max-width: 768px) {
    .eysearchcity-container {
        padding: 15px;
        margin: 10px;
    }
    
    .eysearchcity-input {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .eysearchcity-results {
        width: calc(100% - 30px);
        left: 15px;
    }
}