@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.evk-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.evk-selector {
    background: transparent;
    padding: 0;
    position: relative;
}



.evk-content {
    position: relative;
    z-index: 1;
}



.evk-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: normal;
    margin-bottom: 20px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.evk-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.evk-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evk-select {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    color: #2d3748;
    background: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
    height: 50px;
    box-sizing: border-box;
    width: 100%;
}

.evk-select:focus {
    outline: none;
    border-color: #495e5e;
    box-shadow: 0 0 0 3px rgba(73, 94, 94, 0.1);
}

.evk-select:disabled {
    background: #f7fafc;
    cursor: not-allowed;
    opacity: 0.6;
}

.evk-btn {
    padding: 16px 32px;
    background: linear-gradient(150deg, #495e5e 0%, #6b7d7d 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(73, 94, 94, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    height: 50px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.evk-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(73, 94, 94, 0.5);
}

.evk-btn:active:not(:disabled) {
    transform: translateY(0);
}

.evk-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.evk-results {
    margin-top: 50px;
    animation: fadeIn 0.5s ease;
}

.evk-results-title {
    color: inherit;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 30px;
    text-align: center;
}

.evk-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.evk-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.evk-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.evk-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.evk-card-content {
    padding: 25px;
}

.evk-card-title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.4;
}

.evk-card-price {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(150deg, #495e5e 0%, #6b7d7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.evk-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(150deg, #495e5e 0%, #6b7d7d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.evk-card-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(73, 94, 94, 0.4);
}

.evk-loading {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
}

.evk-loader {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.evk-loading-text {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.evk-no-results {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .evk-selector {
        padding: 30px 20px;
    }


    .evk-form {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 15px;
        align-items: stretch;
    }

    .evk-hide-mobile {
        display: none;
    }

    .evk-products {
        grid-template-columns: 1fr;
    }
}