.place-search {
    display: grid;
    gap: 0.75rem;
}

.place-search-input-wrap {
    position: relative;
}

.place-search-results {
    position: absolute;
    z-index: 40;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    max-height: 260px;
    overflow: auto;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

.place-search-result {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.place-search-result:last-child {
    border-bottom: 0;
}

.place-search-result:hover,
.place-search-result:focus {
    background: rgba(15, 23, 42, 0.04);
}

.place-search-result strong {
    font-size: 0.95rem;
    color: #0f172a;
}

.place-search-result span {
    font-size: 0.8rem;
    color: #64748b;
}

.place-search-selected {
    margin: 0.15rem 0 0;
}

.place-search-status.is-error {
    color: #b42318;
}

.place-search-delivery-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
