.vs-pro-wrapper {
    width: 100%;
    margin: 20px 0;
}

.vs-dropzone {
    border: 2px dashed #ccc;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    background: #fdfdfd;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vs-dropzone:hover, .vs-dropzone.vs-dragover {
    border-color: var(--vs-main-color);
    background: #f0f8ff;
}

.vs-dz-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 10px;
}

.vs-dz-text {
    font-size: 16px;
    color: #666;
    margin: 0;
}

#vs-dz-preview-container {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

#vs-dz-preview-img {
    max-width: 180px;
    max-height: 180px;
    border-radius: 10px;
    border: 2px solid var(--vs-main-color);
    display: block;
}

#vs-dz-remove {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4d4d;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.vs-search-btn {
    background: var(--vs-main-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.vs-search-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.vs-search-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Grelha de Resultados */
.vs-results-grid {
    display: grid;
    grid-template-columns: repeat(var(--vs-cols), 1fr);
    gap: 25px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .vs-results-grid { grid-template-columns: repeat(2, 1fr); }
}

.vs-product-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.vs-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vs-product-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.vs-product-item h3 {
    font-size: 15px;
    margin: 0;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

.vs-product-item a { text-decoration: none; }
