.search-section {
    max-width: 800px;
    margin: 0 auto;
}

.search-box {
    display: flex;
    gap: 15px;
}

.input-group {
    display: flex;
    flex: 1;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
}

.input-wrapper {
    position: relative;
    flex: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 35px 12px 15px;
    font-size: 16px;
    border: none;
    outline: none;
    background: transparent;
}

.clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #86868b;
    cursor: pointer;
    font-size: 20px;
    display: none;
    transition: color 0.2s;
}

.clear-btn:hover {
    color: #1d1d1f;
}

.region-wrapper {
    position: relative;
}

.region-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #e5e5e5;
}

.region-select {
    height: 100%;
    padding: 0 15px;
    font-size: 16px;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    appearance: none;
    min-width: 120px;
}

.search-btn {
    padding: 0 30px;
    font-size: 16px;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.search-btn:hover {
    background-color: #333;
}

.search-btn:active {
    transform: translateY(1px);
}

@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
    }

    .input-group {
        flex-direction: column;
        padding: 0;
        background: none;
        gap: 15px;
    }

    .input-wrapper {
        background: #fff;
        border-radius: 12px;
        padding: 6px;
    }

    .region-wrapper {
        background: #fff;
        border-radius: 12px;
        padding: 6px;
    }

    .region-wrapper::before {
        display: none;
    }

    .region-select {
        width: 100%;
        text-align: center;
    }

    .search-btn {
        height: 50px;
    }
} 