.vehicle-search-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 99999;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-search-overlay.st-show {
    transform: translateY(0);
}

body.st-prevent-scroll {
    overflow: hidden;
}

.search-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 100000;
}

.search-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.search-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 20px 30px;
}

.search-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.search-footer {
    text-align: center;
    color: white;
    font-size: 1.3em;
    opacity: 0.95;
}

.search-footer a {
    color: white;
}

.search-footer a:hover {
    color: #ffe002;
}


.search-header h1 {
    font-size: 3.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    animation: slideDown 0.5s ease;
    color: #fff;
}

@keyframes slideDown {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.search-header p {
    font-size: 1.3em;
    opacity: 0.95;
}

.search-path-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.path-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.path-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.path-card .icon {
    font-size: 4em;
    margin-bottom: 0px;
}

.path-card h2 {
    color: #667eea;
    font-size: 3em;
    margin-bottom: 15px;
}

.path-card p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.6;
}

.cascade-steps {
    display: none;
}

.cascade-steps.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.cascade-step {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cascade-step.show {
    transform: translateY(0);
    opacity: 1;
}

.cascade-step.completed {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.3em;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cascade-step.completed .step-number {
    background: white;
    color: #667eea;
}

.step-title {
    font-size: 1.4em;
    font-weight: 600;
}

.search-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1em;
    margin-bottom: 15px;
    transition: all 0.3s;
    outline: none;
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.cascade-step.completed .search-input {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.cascade-step.completed .search-input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.options-list {
    max-height: 320px;
    overflow-y: auto;
    padding-right: 5px;
}

.options-list::-webkit-scrollbar {
    width: 6px;
}

.options-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.options-list::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.option-item {
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 8px;
    background: #f8f9fa;
    border: 2px solid transparent;
    font-weight: 500;
    font-size: 20px;
    margin-right: 5px;
}

#options-width , #options-ratio , #options-rim, #options-year .option-item {
    font-size: 30px;
    font-family: 'Sora';
}

.option-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
    border-color: #667eea;
}

.cascade-step.completed .option-item {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cascade-step.completed .option-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.selected-value {
    background: #667eea;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Sora';
}

.selected-value:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.selected-value .change-btn {
    background: rgba(255, 255, 255, 0.25);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85em;
}

.loading-spinner {
    text-align: center;
    padding: 30px;
    color: #667eea;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

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

.cascade-step.completed .loading-spinner .spinner {
    border-color: rgba(255, 255, 255, 0.3);
    border-top-color: white;
}

.no-results {
    text-align: center;
    padding: 30px;
    color: #999;
    font-style: italic;
    font-size: 1.1em;
}

.cascade-step.completed .no-results {
    color: rgba(255, 255, 255, 0.8);
}

.result-container {
    background: white;
    border-radius: 25px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.5s;
    display: none;
}

.result-container.show {
    transform: scale(1);
    opacity: 1;
    display: block;
}

.result-container h2 {
    color: #667eea;
    margin-bottom: 25px;
    font-size: 2.5em;
}

.result-details {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 15px;
    margin: 25px 0;
}

.result-details p {
    font-size: 1.4em;
    margin: 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-details strong {
    opacity: 0.9;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    margin: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

.back-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 30px;
    display: inline-block;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.message-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

.message-box.error {
    border-top: 5px solid #dc3545;
}

.message-box h3 {
    color: #dc3545;
    font-size: 2em;
    margin-bottom: 20px;
}

.message-box p {
    color: #666;
    font-size: 1.2em;
    margin-bottom: 25px;
}

.pbmit-icon-close.backBtn{
    right: 120px!important;
    display: none;
}

.search-history , .search-guide {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .search-header h1 {
        font-size: 2.5em;
    }

    .cascade-steps.active {
        grid-template-columns: 1fr;
    }

    .path-card h2 {
        font-size: 1.5em;
    }
}