/* ============================================================
   ZNAJDŹ GABINET - styles spójne z systemem (style.css)
   Wykorzystuje: --Gradient-Pomaraczowy, --Pole-Jasne,
   --Pole-Obrys-Jasny, --Tekst-Gwny, --Tekst-Dodatkowy,
   --Background-Dodatkowy, --transition, --boxshadow
   ============================================================ */

footer {
    padding-top: 0;
}

/* ---------- KONTENER GŁÓWNY ---------- */
.znajdz-gabinet {
    position: relative;
    width: 100%;
    margin-bottom: -62px;
}

/* ---------- MAPA ---------- */
.znajdz-gabinet__map {
    width: 100%;
}

.znajdz-gabinet__map .iframe-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    margin: 0;

    /* margin-top: -60px; */
    /* przesuwa iframe w górę o wysokość paska */
    /* height: calc(80vh + 60px); */
    /* default — kompensuje przesunięcie */
}

.znajdz-gabinet__map {
    overflow: hidden;
    /* obcina górny pasek "STUDIO FIGURA / Ta mapa..." */
}

@media (max-width: 767.98px) {
    .znajdz-gabinet__map .iframe-map {
        /* height: calc(500px + 65px); */
        /* mobile */
    }
}

/* ---------- PANEL (wspólne dla desktop i mobile) ---------- */
.znajdz-gabinet__panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px;
    border: 1px solid var(--Pole-Obrys-Jasny, #E3E3E3);
    border-radius: 24px;
    backdrop-filter: blur(12px);
    background: var(--Background-Dodatkowy, #fff);
    box-shadow: var(--boxshadow, 0 10px 40px rgba(0, 0, 0, 0.08));
}

.znajdz-gabinet__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.znajdz-gabinet__title {
    margin: 0;
}

/* ---------- SEARCH BAR ---------- */
.search-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
}

.input-to-city {
    width: 100%;
    height: 48px;
    padding: 12px 24px 12px calc(24px + 16px);
    border-radius: 64px;
    border: 1px solid var(--Pole-Obrys-Jasny);
    background: var(--Background-Dodatkowy) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'><path d='M15.8199 14.95L11.9725 11.1034C13.0876 9.76465 13.6437 8.0475 13.525 6.30919C13.4063 4.57088 12.622 2.94524 11.3353 1.77045C10.0486 0.595655 8.35844 -0.0378381 6.61653 0.00174965C4.87462 0.0413374 3.21503 0.750958 1.98299 1.98299C0.750958 3.21503 0.0413374 4.87462 0.00174965 6.61653C-0.0378381 8.35844 0.595655 10.0486 1.77045 11.3353C2.94524 12.622 4.57088 13.4063 6.30919 13.525C8.0475 13.6437 9.76465 13.0876 11.1034 11.9725L14.95 15.8199C15.0071 15.877 15.0749 15.9223 15.1496 15.9532C15.2242 15.9841 15.3042 16 15.3849 16C15.4657 16 15.5457 15.9841 15.6203 15.9532C15.6949 15.9223 15.7627 15.877 15.8199 15.8199C15.877 15.7627 15.9223 15.6949 15.9532 15.6203C15.9841 15.5457 16 15.4657 16 15.3849C16 15.3042 15.9841 15.2242 15.9532 15.1496C15.9223 15.0749 15.877 15.0071 15.8199 14.95ZM1.24642 6.77888C1.24642 5.68467 1.57089 4.61502 2.17881 3.70521C2.78672 2.7954 3.65078 2.08629 4.6617 1.66755C5.67263 1.24882 6.78502 1.13925 7.85821 1.35273C8.93141 1.5662 9.9172 2.09311 10.6909 2.86684C11.4647 3.64057 11.9916 4.62636 12.205 5.69955C12.4185 6.77275 12.309 7.88514 11.8902 8.89607C11.4715 9.90699 10.7624 10.771 9.85256 11.379C8.94275 11.9869 7.8731 12.3113 6.77888 12.3113C5.31208 12.3097 3.90582 11.7263 2.86864 10.6891C1.83145 9.65195 1.24805 8.24569 1.24642 6.77888Z' fill='%23ACA8A8'/></svg>") no-repeat 16px center;
    font-size: 0.9375rem;
    font-family: var(--font-body, 'Poppins', sans-serif);
    color: var(--Tekst-Gwny, #1a1a1a);
    outline: none;
    transition: var(--transition);
}

.input-to-city::placeholder {
    color: var(--Tekst-Akcent, #999);
}

.input-to-city:focus {
    border-color: var(--Kolor-Gwny, #FF9100);
    box-shadow: 0 0 0 3px rgba(255, 145, 0, 0.12);
}

/* Search button - orange circle */
.search-icon-btn,
.btnToSearch.btnSearch,
.reset-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 48px;
    height: 48px;
    border: 1px solid #E3E3E3;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    background: var(--Gradient-Pomaraczowy);
    transition: var(--transition);
}

.search-icon-btn:hover,
.btnToSearch.btnSearch:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.05);
    box-shadow: var(--Boxshadow-Pomaranczowy);
}

/* Reset button - purple-blue gradient */
.reset-btn {
    background: var(--Gradient-Kontrast);
}

.reset-btn:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.05);
    box-shadow: var(--Boxshadow-Kontrast);
}

/* ---------- SUGGESTIONS DROPDOWN ---------- */
.suggestions,
.suggestions1 {
    position: absolute;
    top: 56px;
    left: 0;
    right: 110px;
    z-index: 50;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    font-size: 0.9375rem;
    font-weight: 500;
    overflow: hidden;
}

.suggestions:empty,
.suggestions1:empty {
    display: none;
}

.suggestions .suggestion-item,
.suggestions1 .suggestion-item1 {
    margin: 0;
    padding: 12px 18px;
    cursor: pointer;
    transition: background 0.2s;
}

.suggestions .suggestion-item:hover,
.suggestions1 .suggestion-item1:hover,
#suggestions div.highlighted {
    background: var(--Pole-Jasne, #F7F7F7);
    cursor: pointer;
}


/* ---------- RESULTS LIST ---------- */
#result {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 560px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: thin;
    scrollbar-color: var(--Pole-Obrys-Jasny, #E3E3E3) transparent;
    padding: 0;
    margin: 0;
}

#result::-webkit-scrollbar {
    width: 4px;
}

#result::-webkit-scrollbar-thumb {
    background: var(--Pole-Obrys-Jasny, #E3E3E3);
    border-radius: 2px;
}

/* ---------- ITEM (pojedyncze studio) ---------- */
#result .item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 0 24px 0;
    border-bottom: 1px solid var(--Pole-Obrys-Jasny, #E3E3E3);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    margin: 0;
    cursor: pointer;
    transition: opacity 0.2s;
}

#result .item:last-child {
    border-bottom: none;
}

#result .item:hover {
    opacity: 0.85;
}

#result .item .item-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* hide leftover .border-item style */
.border-item {
    border: none;
}

/* Item content layout */
#result .item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 0 !important;
}

/* Studio title with logo mark */
#result .p-title-country {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    line-height: 140% !important;
    min-height: 28px;
}

/* Logo Studio Figura (default - orange) */
#result .p-title-country::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M16.558 0.896004C20.9249 2.69049 24 6.98607 24 11.9999C24 17.4377 20.383 22.0306 15.4237 23.5043C15.4337 23.3432 15.4391 23.1787 15.4378 23.0127L15.4366 22.8776C15.3599 21.4424 13.4301 18.7976 12.9982 18.0488C12.8279 17.7225 12.8386 16.8984 12.8656 16.5443C12.8783 16.2263 12.9984 15.8734 13.094 15.623C13.673 14.1781 15.6533 10.4092 15.8656 9.96242C16.4166 9.03872 17.0833 7.03009 17.1329 6.74153C17.2174 5.24733 16.5892 2.02962 16.5168 1.60845C16.5168 1.58073 16.5155 1.44999 16.5157 1.29545C16.5318 1.15487 16.5454 1.0212 16.558 0.896004Z' fill='url(%23g)'/><path d='M11.9999 0C12.3766 0 12.7493 0.0174523 13.1171 0.0514077C12.8946 0.41733 12.6389 1.07973 12.6662 1.3712C11.8421 1.69105 8.35027 3.44558 7.93957 3.88776C7.39804 4.28055 7.05868 6.43629 7.02207 6.7149C6.86889 7.61489 6.39342 8.89154 6.37071 9.76547C6.31391 9.9862 6.33283 10.416 6.33283 10.6035C6.28616 11.1659 6.61782 14.4268 6.70266 14.7483C6.73687 15.0664 6.76956 15.3999 6.76959 15.7403C6.76959 16.0549 6.89917 16.6882 6.97778 16.9785C7.10947 17.811 7.60225 18.6621 7.79062 19.6251C7.85289 20.7917 7.22158 21.6663 7.23382 23.0159C2.97765 21.1719 0.0000071627 16.9337 0 11.9999C0 5.37254 5.37255 0.0000240536 11.9999 0Z' fill='url(%23g)'/><path d='M15.1752 0.538143C15.186 0.560489 15.1949 0.593522 15.2005 0.640389C15.2331 1.04563 15.4001 1.39145 15.4542 1.78774C15.684 2.4866 15.6145 5.09119 15.8707 6.56353C14.9844 7.74463 14.561 8.80328 14.3561 9.51684C13.8829 9.89154 12.6343 10.9278 12.2471 11.4315C11.9761 11.3145 11.6566 11.2149 11.4797 11.0351C11.2461 10.6937 11.3081 10.4633 11.5731 10.148L11.8584 10.269C12.2405 10.4212 12.8374 10.6219 12.9653 10.4773C13.0226 10.3471 12.9932 10.2171 13.0309 10.0823C13.0633 9.9743 13.1313 9.96735 13.2279 9.90432C13.2724 9.81449 13.2455 9.7182 13.2455 9.63546C13.3008 9.58186 13.4216 9.54235 13.4223 9.46643C13.4457 9.38081 13.446 9.22261 13.4423 9.14331C13.4423 9.10974 13.52 9.11481 13.604 9.12053C13.6523 9.12376 13.7036 9.12742 13.7428 9.12309C13.7964 9.11592 13.8104 8.98949 13.8122 8.96531C13.8068 8.91225 13.6205 8.51683 13.5521 8.33432C13.6262 7.98631 13.8017 7.92221 13.8703 7.76128C13.9766 7.52704 13.9372 7.06553 13.9182 6.9624C13.7559 6.0266 12.9646 5.37106 12.5955 5.23191C12.1328 5.00048 11.0549 4.93708 10.6001 5.1197C10.2849 5.22252 9.99832 5.42695 9.77473 5.67621C9.58273 5.95797 9.6422 6.08891 9.45916 6.2669C9.38002 6.31892 9.14326 6.41785 9.0086 6.41842H9.00105C8.87029 6.4183 8.69965 6.34123 8.69175 6.25551C8.75572 5.99098 8.77944 5.18396 8.74985 4.94668C9.31802 4.66176 10.3831 3.99104 11.7966 2.98037C12.168 2.73988 12.5105 2.54122 12.9199 2.3582C13.0613 2.29846 13.5291 2.09526 13.7264 1.97827C14.0781 1.62949 14.5814 1.10007 14.9961 0.625294C15.0318 0.571179 15.0721 0.522687 15.1072 0.506672C15.13 0.516508 15.1526 0.527958 15.1752 0.538143Z' fill='url(%23g)'/><path d='M8.38003 8.32036C8.41832 8.31367 8.44315 8.34519 8.47344 8.39868C8.63026 8.73178 8.93798 9.09242 9.45162 9.14573C9.46268 9.14742 9.48484 9.14929 9.50957 9.15712C9.51829 9.17676 9.44762 9.26327 9.43894 9.28087C9.38161 9.33213 8.98448 10.0163 8.9354 10.1176C8.91391 10.1419 8.89765 10.1979 8.76879 10.2035C8.49911 10.1351 8.46494 9.49815 8.4659 9.30608C8.45057 8.89486 8.38051 8.54922 8.36493 8.46419C8.3569 8.42822 8.34124 8.33298 8.38003 8.32036Z' fill='url(%23g)'/><defs><linearGradient id='g' x1='0' y1='11.7521' x2='24' y2='11.7521' gradientUnits='userSpaceOnUse'><stop stop-color='%23FFAF45'/><stop offset='1' stop-color='%23FF9100'/></linearGradient></defs></svg>") no-repeat center / contain;
}

/* Beauty variant - pink-to-orange gradient (#D74190 → #FF9100) */
#result .item--beauty .p-title-country::before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M16.558 0.896004C20.9249 2.69049 24 6.98607 24 11.9999C24 17.4377 20.383 22.0306 15.4237 23.5043C15.4337 23.3432 15.4391 23.1787 15.4378 23.0127L15.4366 22.8776C15.3599 21.4424 13.4301 18.7976 12.9982 18.0488C12.8279 17.7225 12.8386 16.8984 12.8656 16.5443C12.8783 16.2263 12.9984 15.8734 13.094 15.623C13.673 14.1781 15.6533 10.4092 15.8656 9.96242C16.4166 9.03872 17.0833 7.03009 17.1329 6.74153C17.2174 5.24733 16.5892 2.02962 16.5168 1.60845C16.5168 1.58073 16.5155 1.44999 16.5157 1.29545C16.5318 1.15487 16.5454 1.0212 16.558 0.896004Z' fill='url(%23gb)'/><path d='M11.9999 0C12.3766 0 12.7493 0.0174523 13.1171 0.0514077C12.8946 0.41733 12.6389 1.07973 12.6662 1.3712C11.8421 1.69105 8.35027 3.44558 7.93957 3.88776C7.39804 4.28055 7.05868 6.43629 7.02207 6.7149C6.86889 7.61489 6.39342 8.89154 6.37071 9.76547C6.31391 9.9862 6.33283 10.416 6.33283 10.6035C6.28616 11.1659 6.61782 14.4268 6.70266 14.7483C6.73687 15.0664 6.76956 15.3999 6.76959 15.7403C6.76959 16.0549 6.89917 16.6882 6.97778 16.9785C7.10947 17.811 7.60225 18.6621 7.79062 19.6251C7.85289 20.7917 7.22158 21.6663 7.23382 23.0159C2.97765 21.1719 0.0000071627 16.9337 0 11.9999C0 5.37254 5.37255 0.0000240536 11.9999 0Z' fill='url(%23gb)'/><path d='M15.1752 0.538143C15.186 0.560489 15.1949 0.593522 15.2005 0.640389C15.2331 1.04563 15.4001 1.39145 15.4542 1.78774C15.684 2.4866 15.6145 5.09119 15.8707 6.56353C14.9844 7.74463 14.561 8.80328 14.3561 9.51684C13.8829 9.89154 12.6343 10.9278 12.2471 11.4315C11.9761 11.3145 11.6566 11.2149 11.4797 11.0351C11.2461 10.6937 11.3081 10.4633 11.5731 10.148L11.8584 10.269C12.2405 10.4212 12.8374 10.6219 12.9653 10.4773C13.0226 10.3471 12.9932 10.2171 13.0309 10.0823C13.0633 9.9743 13.1313 9.96735 13.2279 9.90432C13.2724 9.81449 13.2455 9.7182 13.2455 9.63546C13.3008 9.58186 13.4216 9.54235 13.4223 9.46643C13.4457 9.38081 13.446 9.22261 13.4423 9.14331C13.4423 9.10974 13.52 9.11481 13.604 9.12053C13.6523 9.12376 13.7036 9.12742 13.7428 9.12309C13.7964 9.11592 13.8104 8.98949 13.8122 8.96531C13.8068 8.91225 13.6205 8.51683 13.5521 8.33432C13.6262 7.98631 13.8017 7.92221 13.8703 7.76128C13.9766 7.52704 13.9372 7.06553 13.9182 6.9624C13.7559 6.0266 12.9646 5.37106 12.5955 5.23191C12.1328 5.00048 11.0549 4.93708 10.6001 5.1197C10.2849 5.22252 9.99832 5.42695 9.77473 5.67621C9.58273 5.95797 9.6422 6.08891 9.45916 6.2669C9.38002 6.31892 9.14326 6.41785 9.0086 6.41842H9.00105C8.87029 6.4183 8.69965 6.34123 8.69175 6.25551C8.75572 5.99098 8.77944 5.18396 8.74985 4.94668C9.31802 4.66176 10.3831 3.99104 11.7966 2.98037C12.168 2.73988 12.5105 2.54122 12.9199 2.3582C13.0613 2.29846 13.5291 2.09526 13.7264 1.97827C14.0781 1.62949 14.5814 1.10007 14.9961 0.625294C15.0318 0.571179 15.0721 0.522687 15.1072 0.506672C15.13 0.516508 15.1526 0.527958 15.1752 0.538143Z' fill='url(%23gb)'/><path d='M8.38003 8.32036C8.41832 8.31367 8.44315 8.34519 8.47344 8.39868C8.63026 8.73178 8.93798 9.09242 9.45162 9.14573C9.46268 9.14742 9.48484 9.14929 9.50957 9.15712C9.51829 9.17676 9.44762 9.26327 9.43894 9.28087C9.38161 9.33213 8.98448 10.0163 8.9354 10.1176C8.91391 10.1419 8.89765 10.1979 8.76879 10.2035C8.49911 10.1351 8.46494 9.49815 8.4659 9.30608C8.45057 8.89486 8.38051 8.54922 8.36493 8.46419C8.3569 8.42822 8.34124 8.33298 8.38003 8.32036Z' fill='url(%23gb)'/><defs><linearGradient id='gb' x1='0' y1='11.7521' x2='24' y2='11.7521' gradientUnits='userSpaceOnUse'><stop stop-color='%23D74190'/><stop offset='1' stop-color='%23FF9100'/></linearGradient></defs></svg>") no-repeat center / contain;
}

/* Kontakt row */
#result .item-content>div {
    display: flex;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 24px;
    width: 100%;
}

#result .item-content>div>span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    font-size: 0.875rem;
    color: var(--Tekst-Dodatkowy, #4C4545);
}

#result .kontakt-map {
    font-weight: 500 !important;
    color: var(--Tekst-Dodatkowy, #4C4545);
}

#result .tel-map-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--Kolor-Gwny, #FF9100) !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

#result .tel-map-info::before {
    content: "";
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M8.41905 0.974968C8.43806 0.903897 8.47089 0.837269 8.51566 0.77889C8.56042 0.72051 8.61626 0.671524 8.67997 0.63473C8.74367 0.597936 8.81401 0.574055 8.88695 0.564453C8.95989 0.55485 9.034 0.559713 9.10506 0.578764C10.1432 0.849631 11.0904 1.39234 11.8491 2.151C12.6078 2.90967 13.1505 3.85685 13.4213 4.89501C13.4404 4.96607 13.4453 5.04018 13.4356 5.11312C13.426 5.18606 13.4022 5.25639 13.3654 5.3201C13.3286 5.38381 13.2796 5.43964 13.2212 5.48441C13.1628 5.52918 13.0962 5.562 13.0251 5.58101C12.9778 5.59344 12.9291 5.59979 12.8802 5.59991C12.7568 5.59991 12.6369 5.55914 12.539 5.48395C12.4412 5.40876 12.3709 5.30335 12.3391 5.18411C12.1182 4.33663 11.6753 3.56339 11.056 2.9441C10.4367 2.32482 9.66345 1.88189 8.81596 1.66097C8.74482 1.64204 8.67812 1.60927 8.61966 1.56453C8.56121 1.5198 8.51214 1.46397 8.47528 1.40026C8.43841 1.33654 8.41447 1.26619 8.40483 1.19321C8.39518 1.12024 8.40001 1.04607 8.41905 0.974968ZM8.25595 3.901C9.22126 4.1586 9.84148 4.7788 10.0991 5.74411C10.1309 5.86336 10.2011 5.96876 10.299 6.04396C10.3968 6.11915 10.5168 6.15991 10.6402 6.15992C10.6891 6.15979 10.7378 6.15344 10.7851 6.14102C10.8562 6.12201 10.9228 6.08918 10.9812 6.04441C11.0396 5.99965 11.0885 5.94381 11.1253 5.88011C11.1621 5.8164 11.186 5.74607 11.1956 5.67313C11.2052 5.60019 11.2003 5.52607 11.1813 5.45501C10.8229 4.1138 9.88628 3.17719 8.54505 2.81879C8.40154 2.78045 8.24868 2.80069 8.12009 2.87506C7.99151 2.94943 7.89773 3.07183 7.85939 3.21534C7.82105 3.35885 7.8413 3.51171 7.91566 3.6403C7.99003 3.76888 8.11244 3.86266 8.25595 3.901ZM13.9918 10.5756C13.867 11.5241 13.4012 12.3948 12.6814 13.0249C11.9615 13.6551 11.0369 14.0017 10.0802 14C4.52208 14 0 9.47795 0 3.9199C-0.00170868 2.96319 0.344893 2.03857 0.975076 1.31874C1.60526 0.598902 2.47593 0.133074 3.42446 0.00825842C3.66433 -0.0210292 3.90723 0.0280421 4.11691 0.148147C4.32659 0.268252 4.4918 0.452948 4.58788 0.674665L6.06631 3.9752V3.9836C6.13987 4.15332 6.17025 4.33861 6.15474 4.52294C6.13923 4.70726 6.0783 4.88487 5.97741 5.03991C5.96481 5.05881 5.95151 5.07631 5.93751 5.09381L4.48008 6.82142C5.00439 7.88683 6.11881 8.99145 7.19823 9.51715L8.90206 8.06744C8.91879 8.05337 8.93632 8.04028 8.95456 8.02824C9.10947 7.92492 9.28769 7.86185 9.47311 7.84474C9.65852 7.82763 9.84528 7.85701 10.0165 7.93023L10.0256 7.93444L13.3233 9.41215C13.5454 9.50789 13.7306 9.67296 13.8511 9.88267C13.9716 10.0924 14.021 10.3355 13.9918 10.5756ZM12.8802 10.4356C12.8802 10.4356 12.8753 10.4356 12.8725 10.4356L9.58247 8.96204L7.87794 10.4118C7.86141 10.4258 7.84411 10.4389 7.82614 10.451C7.66497 10.5585 7.47866 10.6224 7.28541 10.6363C7.09217 10.6503 6.8986 10.614 6.72362 10.5308C5.4125 9.89725 4.10558 8.60014 3.47137 7.30303C3.38738 7.12933 3.3497 6.93687 3.36196 6.74433C3.37423 6.55178 3.43603 6.36566 3.54137 6.20402C3.55324 6.18504 3.56658 6.16702 3.58127 6.15012L5.04009 4.4204L3.57007 1.13037C3.56979 1.12758 3.56979 1.12476 3.57007 1.12197C2.89123 1.21052 2.26796 1.54349 1.81697 2.05852C1.36597 2.57355 1.11819 3.23532 1.12003 3.9199C1.12262 6.29546 2.06747 8.57299 3.74726 10.2528C5.42705 11.9325 7.7046 12.8774 10.0802 12.88C10.7643 12.8823 11.4259 12.6354 11.9413 12.1854C12.4566 11.7354 12.7904 11.1131 12.8802 10.4349V10.4356Z' fill='url(%23g)'/><defs><linearGradient id='g' x1='0' y1='7' x2='14' y2='7' gradientUnits='userSpaceOnUse'><stop stop-color='%23FFAF45'/><stop offset='1' stop-color='%23FF9100'/></linearGradient></defs></svg>") no-repeat center / contain;
    flex-shrink: 0;
}

#result .tel-map-info:hover {
    text-decoration: underline;
}

/* Buttons row */
#result .item-content .d-flex.flex-column.flex-md-row {
    flex-direction: row !important;
    gap: 8px !important;
    width: 100%;
}

/* Jak dojechać button */
#result .how-to-come {
    flex: 1;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 64px;
    background: var(--Gradient-Pomaraczowy, linear-gradient(90deg, #FFAF45, #FF9100)) !important;
    border: none;
    color: #fff !important;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body, 'Poppins', sans-serif);
}

#result .how-to-come svg path {
    fill: #fff;
}

#result .how-to-come:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: var(----Boxshadow-Pomaranczowy);
    background: var(--Gradient-Pomaraczowy, linear-gradient(90deg, #FFAF45, #FF9100)) !important;
}

/* Facebook button */
#result .fb-btn-map {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 64px;
    background: #1877F2;
    color: #fff !important;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.25);
    text-align: center;
}

#result .fb-btn-map::before {
    content: "";
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17' fill='none'><path d='M8.5 0C6.81886 0 5.17547 0.498516 3.77766 1.43251C2.37984 2.3665 1.29037 3.69402 0.647028 5.24719C0.00368292 6.80036 -0.164645 8.50943 0.163329 10.1583C0.491303 11.8071 1.30085 13.3217 2.4896 14.5104C3.67834 15.6992 5.1929 16.5087 6.84173 16.8367C8.49057 17.1646 10.1996 16.9963 11.7528 16.353C13.306 15.7096 14.6335 14.6202 15.5675 13.2223C16.5015 11.8245 17 10.1811 17 8.5C16.9976 6.24639 16.1013 4.08576 14.5078 2.49222C12.9142 0.898677 10.7536 0.00237985 8.5 0ZM9.15385 15.6621V10.4615H11.1154C11.2888 10.4615 11.4551 10.3926 11.5777 10.27C11.7003 10.1474 11.7692 9.9811 11.7692 9.80769C11.7692 9.63428 11.7003 9.46797 11.5777 9.34535C11.4551 9.22273 11.2888 9.15384 11.1154 9.15384H9.15385V7.19231C9.15385 6.84548 9.29162 6.51287 9.53686 6.26763C9.7821 6.02239 10.1147 5.88461 10.4615 5.88461H11.7692C11.9426 5.88461 12.109 5.81573 12.2316 5.69311C12.3542 5.57049 12.4231 5.40418 12.4231 5.23077C12.4231 5.05736 12.3542 4.89105 12.2316 4.76843C12.109 4.64581 11.9426 4.57692 11.7692 4.57692H10.4615C9.7679 4.57692 9.10266 4.85247 8.61218 5.34295C8.12171 5.83343 7.84616 6.49866 7.84616 7.19231V9.15384H5.88462C5.71121 9.15384 5.5449 9.22273 5.42228 9.34535C5.29966 9.46797 5.23077 9.63428 5.23077 9.80769C5.23077 9.9811 5.29966 10.1474 5.42228 10.27C5.5449 10.3926 5.71121 10.4615 5.88462 10.4615H7.84616V15.6621C6.00296 15.4938 4.29558 14.6214 3.07916 13.2265C1.86274 11.8315 1.23093 10.0212 1.31515 8.17228C1.39936 6.32333 2.19313 4.57803 3.53133 3.29939C4.86952 2.02076 6.64914 1.30723 8.5 1.30723C10.3509 1.30723 12.1305 2.02076 13.4687 3.29939C14.8069 4.57803 15.6006 6.32333 15.6849 8.17228C15.7691 10.0212 15.1373 11.8315 13.9208 13.2265C12.7044 14.6214 10.997 15.4938 9.15385 15.6621Z' fill='white'/></svg>") no-repeat center / contain;
    flex-shrink: 0;
}

#result .fb-btn-map:hover {
    background: #348bfd;
    transform: translateY(-2px);
}


/* ---------- DESKTOP LAYOUT (>= 768px) ---------- */
@media screen and (min-width: 768px) {
    .znajdz-gabinet {
        min-height: 80vh;
    }

    .znajdz-gabinet__map {
        height: 80vh;
    }

    /* .znajdz-gabinet__map .iframe-map {
    height: 700px;
  } */

    .znajdz-gabinet__panel--mobile {
        display: none !important;
    }

    .znajdz-gabinet__panel--desktop {
        position: absolute;
        top: 50%;
        right: 32px;
        transform: translateY(-50%);
        width: 460px;
        max-height: calc(100% - 64px);
        z-index: 10;
    }
}

@media screen and (min-width: 1200px) {
    .znajdz-gabinet__panel--desktop {
        width: 500px;
        right: 64px;
    }
}

/* ---------- MOBILE LAYOUT (< 768px) ---------- */
@media screen and (max-width: 767.98px) {
    .znajdz-gabinet {
        display: flex;
        flex-direction: column-reverse;
    }

    .znajdz-gabinet__panel {
        gap: 12px;
        padding: 56px 16px 24px 16px;
        border: none;
        border-radius: unset;
        backdrop-filter: blur(12px);
        background: var(--Background-Gwny);
        box-shadow: var(--boxshadow);
    }

    .znajdz-gabinet__panel--mobile {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        box-shadow: none;
        padding: 24px 20px;
    }

    .znajdz-gabinet__map .iframe-map {
        height: 500px;
    }

    /* Reset old broken rules */
    .map-results,
    .map-results .container,
    .map-results .container .row,
    .map-results .container .row .col-xs-12 {
        margin: 0 !important;
        padding: 0 !important;
    }

    #result {
        width: 100%;
        max-height: 350px;
    }
    
    #result .item-content {
        align-items: stretch;
    }
}

/* ---------- LEGACY OVERRIDES (zostawione żeby stare klasy nie psuły wyglądu) ---------- */
.disable {
    display: none;
}

.displaynone {
    display: none !important;
}

.item-img {
    display: none;
}

/* w nowym designie nie ma zdjęcia studia */
.div-btn {
    padding: 0 !important;
}

/* old "no results" message */
#result>p:only-child {
    text-align: center;
    color: var(--Tekst-Dodatkowy, #4C4545);
    font-size: 0.9375rem;
    padding: 32px 16px;
    margin: 0;
}

/* ---------- INFO MESSAGES (live search) ---------- */
.search-info {
    font-size: 0.875rem;
    color: var(--Tekst-Dodatkowy, #4C4545);
    background: var(--Pole-Jasne, rgba(255, 145, 0, 0.06));
    border: 1px solid var(--Pole-Obrys-Jasny, #E3E3E3);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    line-height: 150%;
    margin-bottom: 32px!important;
}


/* ---------- DISTANCE BADGE ---------- */
.distance-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 8px;
    border-radius: 64px;
    background: var(--Gradient-Pomaraczowy, linear-gradient(90deg, #FFAF45, #FF9100));
    color: #fff !important;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    vertical-align: middle;
    white-space: nowrap;
}

/* ============================================================
   MAP LOADER
   ============================================================ */

.znajdz-gabinet__map {
    position: relative;
}

.map-loader {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out;
}

.map-loader.is-active {
    opacity: 1;
    pointer-events: auto;
}

.map-loader__spinner {
    width: 56px;
    height: 56px;
    border: 4px solid var(--Pole-Obrys-Jasny, #E3E3E3);
    border-top-color: var(--Kolor-Gwny, #FF9100);
    border-radius: 50%;
    animation: map-loader-spin 0.8s linear infinite;
}

.map-loader__text {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--Tekst-Gwny, #1a1a1a);
    font-family: var(--font-body, 'Poppins', sans-serif);
}

@keyframes map-loader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ---------- TELEFON - wariant "brak" ---------- */
#result .tel-map-info--empty {
    color: var(--Tekst-Akcent, #999) !important;
    font-weight: 400;
    font-style: italic;
    cursor: default;
}

#result .tel-map-info--empty::before {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M8.41905 0.974968C8.43806 0.903897 8.47089 0.837269 8.51566 0.77889C8.56042 0.72051 8.61626 0.671524 8.67997 0.63473C8.74367 0.597936 8.81401 0.574055 8.88695 0.564453C8.95989 0.55485 9.034 0.559713 9.10506 0.578764C10.1432 0.849631 11.0904 1.39234 11.8491 2.151C12.6078 2.90967 13.1505 3.85685 13.4213 4.89501C13.4404 4.96607 13.4453 5.04018 13.4356 5.11312C13.426 5.18606 13.4022 5.25639 13.3654 5.3201C13.3286 5.38381 13.2796 5.43964 13.2212 5.48441C13.1628 5.52918 13.0962 5.562 13.0251 5.58101C12.9778 5.59344 12.9291 5.59979 12.8802 5.59991C12.7568 5.59991 12.6369 5.55914 12.539 5.48395C12.4412 5.40876 12.3709 5.30335 12.3391 5.18411C12.1182 4.33663 11.6753 3.56339 11.056 2.9441C10.4367 2.32482 9.66345 1.88189 8.81596 1.66097C8.74482 1.64204 8.67812 1.60927 8.61966 1.56453C8.56121 1.5198 8.51214 1.46397 8.47528 1.40026C8.43841 1.33654 8.41447 1.26619 8.40483 1.19321C8.39518 1.12024 8.40001 1.04607 8.41905 0.974968ZM8.25595 3.901C9.22126 4.1586 9.84148 4.7788 10.0991 5.74411C10.1309 5.86336 10.2011 5.96876 10.299 6.04396C10.3968 6.11915 10.5168 6.15991 10.6402 6.15992C10.6891 6.15979 10.7378 6.15344 10.7851 6.14102C10.8562 6.12201 10.9228 6.08918 10.9812 6.04441C11.0396 5.99965 11.0885 5.94381 11.1253 5.88011C11.1621 5.8164 11.186 5.74607 11.1956 5.67313C11.2052 5.60019 11.2003 5.52607 11.1813 5.45501C10.8229 4.1138 9.88628 3.17719 8.54505 2.81879C8.40154 2.78045 8.24868 2.80069 8.12009 2.87506C7.99151 2.94943 7.89773 3.07183 7.85939 3.21534C7.82105 3.35885 7.8413 3.51171 7.91566 3.6403C7.99003 3.76888 8.11244 3.86266 8.25595 3.901ZM13.9918 10.5756C13.867 11.5241 13.4012 12.3948 12.6814 13.0249C11.9615 13.6551 11.0369 14.0017 10.0802 14C4.52208 14 0 9.47795 0 3.9199C-0.00170868 2.96319 0.344893 2.03857 0.975076 1.31874C1.60526 0.598902 2.47593 0.133074 3.42446 0.00825842C3.66433 -0.0210292 3.90723 0.0280421 4.11691 0.148147C4.32659 0.268252 4.4918 0.452948 4.58788 0.674665L6.06631 3.9752V3.9836C6.13987 4.15332 6.17025 4.33861 6.15474 4.52294C6.13923 4.70726 6.0783 4.88487 5.97741 5.03991C5.96481 5.05881 5.95151 5.07631 5.93751 5.09381L4.48008 6.82142C5.00439 7.88683 6.11881 8.99145 7.19823 9.51715L8.90206 8.06744C8.91879 8.05337 8.93632 8.04028 8.95456 8.02824C9.10947 7.92492 9.28769 7.86185 9.47311 7.84474C9.65852 7.82763 9.84528 7.85701 10.0165 7.93023L10.0256 7.93444L13.3233 9.41215C13.5454 9.50789 13.7306 9.67296 13.8511 9.88267C13.9716 10.0924 14.021 10.3355 13.9918 10.5756ZM12.8802 10.4356C12.8802 10.4356 12.8753 10.4356 12.8725 10.4356L9.58247 8.96204L7.87794 10.4118C7.86141 10.4258 7.84411 10.4389 7.82614 10.451C7.66497 10.5585 7.47866 10.6224 7.28541 10.6363C7.09217 10.6503 6.8986 10.614 6.72362 10.5308C5.4125 9.89725 4.10558 8.60014 3.47137 7.30303C3.38738 7.12933 3.3497 6.93687 3.36196 6.74433C3.37423 6.55178 3.43603 6.36566 3.54137 6.20402C3.55324 6.18504 3.56658 6.16702 3.58127 6.15012L5.04009 4.4204L3.57007 1.13037C3.56979 1.12758 3.56979 1.12476 3.57007 1.12197C2.89123 1.21052 2.26796 1.54349 1.81697 2.05852C1.36597 2.57355 1.11819 3.23532 1.12003 3.9199C1.12262 6.29546 2.06747 8.57299 3.74726 10.2528C5.42705 11.9325 7.7046 12.8774 10.0802 12.88C10.7643 12.8823 11.4259 12.6354 11.9413 12.1854C12.4566 11.7354 12.7904 11.1131 12.8802 10.4349V10.4356Z' fill='%23999'/></svg>") no-repeat center / contain;
}

#result .tel-map-info--empty:hover {
    text-decoration: none;
}