body {
    background: #fbfbfc !important;
}

.home {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    border: 2px solid #edeff1;
    position: static;
}

/* Domyślny układ – korzystamy z klas Bootstrap (HTML sam je ustawia) */
.home .row {
    display: flex;
}

.home .homeimg {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
}

.home .mco {
    display: flex;
    flex-direction: column;
}

.home .homename {
    font-weight: bold;
    font-size: 1.3rem;
}

.home .addr1,
.home .addr2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    margin-top: 10px;
}

.nic {
    /* Domyślnie – wewnętrzny układ ikon: elementy jeden pod drugim */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top:10px;
}

.icon-text {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.icon-text i {
    font-size: 1.3rem;
    width: auto;
    margin-right: 5px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D57C2C;
}

.icon-text .ittxt {
    font-size: .8rem;
    line-height: 1.1;
    color: #333;
    display: inline;  /* zawsze obok ikony */
}

.home .nicons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: static;
    margin: 20px 0 5px 0;
    font-size: 1.1rem;
}

.tooltip {
    position: absolute !important;
}

.home .links {
    margin-top: 15px;
    border-top: 1px solid #eef0f3;
    padding-top: 10px;
    margin-right: 10px;
}

.home .links a {
    color: #3d6dd4;
    font-weight: 600;
    cursor: pointer;
    font-size: .9rem;
}

/* RWD: max 1200px */
@media (max-width: 1200px) {
    .home {
        padding: 5px 15px;
        border-radius: 10px;
        position: relative;
        padding-bottom: 80px;
    }

    .homeimg {
        width: 25%;
        height: 0;
        padding-top: 25%;
    }

    .home .homename {
        font-size: 1.1rem;
        margin-bottom:10px;
    }

    .home .addr1,
    .home .addr2 {
        font-size: 1rem;
        margin-top: 5px;;
    }

    .home .nicons {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        width: 95%;
        font-size: 1rem;
    }

    .home .links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 100%;
        text-align: center;
        margin-top: 5px;
        padding-top: 0;
        margin-left: 2px;
        padding-right: 10px;
    }

    .home .links .ltxt {
        font-size: .7rem;
    }
}


@media (max-width: 991px) {
    /* Ustawienie kolejności: .mco mają order 1, a .nic order 2 */
    .home .mco {
         order: 1;
         width:45%;
    }
    .nic {
         order: 2;
         width: 100%;    /* pełna szerokość kolumny (Bootstrap: col-12) */
         /* Ustawiamy dzieci, aby elementy ikon były obok siebie */
         display: flex;
         flex-direction: row;
         flex-wrap: wrap;
         gap: 10px;
         align-items: center;
    }
    /* Elementy .icon-text pozostają w rzędzie: domyślne display: flex i direction: row */
    .icon-text {
         margin: 5px 10px 5px 0;
    }
    .icon-text .ittxt {
         display: inline;
    }
    /* Opcjonalnie: zmniejszenie rozmiaru czcionek adresowych */
    .home .addr1,
    .home .addr2 {
         font-size: .9rem;
         margin-top: 0;
    }
    .home .links .ltxt {
         font-size: .5rem;
    }
}

/* RWD: max 768px */
@media (max-width: 768px) {
    .home {
        padding: 5px 15px;
        border-radius: 10px;
        position: relative;
        padding-bottom: 50px;
    }

    .homeimg {
        width: 25%;
        height: 0;
        padding-top: 25%;
    }

    .home .homename {
        font-size: 1.1rem;
    }

    .home .addr1,
    .home .addr2 {
        font-size: 0.9rem;
        margin-top: 0;
    }

    .home .nicons {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 25px;
        width: 95%;
        font-size: 0.9rem;
    }

    .home .links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 95%;
        text-align: center;
    }

    .home .links .ltxt {
        display: none;
    }
    .nic{
    	padding-bottom:20px;
    }
}

/* RWD: max 576px */
@media (max-width: 576px) {
    .home {
        padding: 5px 15px;
        border-radius: 10px;
        position: relative;
        padding-bottom: 80px;
    }

    .homeimg {
        width: 25%;
        height: 0;
        padding-top: 25%;
    }

    .home .homename {
        font-size: 4vw;
    }

    .home .addr1,
    .home .addr2 {
        font-size: 3vw;
        margin-top: 5px;
    }

    .home .nicons {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        width: 95%;
        font-size: 1rem;
    }

    .home .links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .home .links a {
        font-size: 1.1rem;
    }

    .home .links .ltxt {
        display: inline;
        font-size: .6rem;
    }
     .nic{
    	padding-bottom:5px;
    }
}




/* STYLE DLA innych w okolicy */



.home-page {
    background: #fff;
    border-radius: 20px;
    padding: 10px 0px 10px 20px;
    border: 2px solid #edeff1;
    position: static;
    margin-bottom:15px;
}

.home-page .home-content {
    display: flex;
    flex-wrap: nowrap;
}

.home-page .home-image {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: hidden;
}

.home-page .home-details {
    display: flex;
    flex-direction: column;
}

.home-page .home-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
    font-size: 1.1rem;
}

.home-page .home-address {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    margin-top: 10px;
}

.home-page .home-icons {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: static;
    margin-top: 10px;
    font-size: 1.1rem;
    margin-top: auto;
    margin-bottom: 5px;
}

.home-page .icon-text {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 5px;
}

.home-page .icon-text i {
    font-size: 1.3rem;
    width: auto;
    margin-right: 5px;
    line-height: 1;
    display: inline-block;
    color: #D57C2C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .icon-text .ittxt {
    font-size: 0.6rem;
    line-height: 1.1;
    color: #333;
}

.home-page .home-links {
    margin-top: 15px;
    border-top: 1px solid #eef0f3;
    padding-top: 10px;
    margin-right: 10px;
}

.home-page .home-links a {
    color: #3d6dd4;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
}


@media (max-width: 1200px) {
    .home-page {
        padding: 5px 15px;
        border-radius: 10px;
        position: relative;
        padding-bottom: 80px;
    }

    .home-page .home-image {
        width: 25%;
        height: 0;
        padding-top: 25%;
    }

    .home-page .home-name {
        font-size: 1rem;
    }

    .home-page .home-address {
        font-size: 0.9rem;
        margin-top: 0;
    }

    .home-page .home-icons {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        width: 95%;
        background: inherit;
        margin-top: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-size: 1rem;
    }

    .home-page .home-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 100%;
        text-align: center;
        margin-top: 5px;
        padding-top: 0;
        margin-left: 2px;
        padding-right: 10px;
    }

    .home-page .home-links .ltxt {
        font-size: 0.7rem;
    }

    .home-page .nic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
        padding: 0;
        margin: 0;
        height: auto;
        align-self: start;
    }

    .home-page .icon-text {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        font-size: 1rem;
        line-height: 1.2;
        height: 1.2rem;
        margin-bottom: 20px;
    }

    .home-page .icon-text i {
        font-size: 1.2rem;
        margin-right: 5px;
        display: inline-block;
        vertical-align: middle;
    }

    .home-page .icon-text .ittxt {
        display: none;
    }
}

/* For smaller screens */
@media (max-width: 991px) {
    .home-page .home-links .ltxt {
        font-size: 0.5rem;
    }

    .home-page .home-address {
        font-size: 0.7rem;
        margin-top: 0px;
    }
}

@media (max-width: 768px) {
    .home-page {
        padding: 5px 15px;
        border-radius: 10px;
        position: relative;
        padding-bottom: 50px;
    }

    .home-page .home-image {
        width: 25%;
        height: 0;
        padding-top: 25%;
    }

    .home-page .home-name {
        font-size: 0.8rem;
    }

    .home-page .home-address {
        font-size: 0.6rem;
        margin-top: 0;
    }

    .home-page .home-icons {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 25px;
        width: 95%;
        background: inherit;
        margin-top: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-size: 0.9rem;
    }

    .home-page .home-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 95%;
        text-align: center;
    }

    .home-page .home-links .ltxt {
        display: none;
    }

    .home-page .nic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }

    .home-page .icon-text {
        margin-bottom: 10px;
    }

    .home-page .icon-text i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .home-page {
        padding: 5px 15px;
        border-radius: 10px;
        position: relative;
        padding-bottom: 80px;
    }

    .home-page .home-image {
        width: 25%;
        height: 0;
        padding-top: 25%;
    }

    .home-page .home-name {
        font-size: 3vw;
    }

    .home-page .home-address {
        font-size: 3vw;
        margin-top: 5px;
    }

    .home-page .home-icons {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
        width: 95%;
        background: inherit;
        margin-top: 0;
        display: flex;
        justify-content: space-around;
        align-items: center;
        font-size: 1rem;
    }

    .home-page .home-links {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 100%;
        text-align: center;
        font-size: 1rem;
    }

    .home-page .home-links a {
        font-size: 1.1rem;
    }

    .home-page .home-links .ltxt {
        display: inline;
        font-size: 0.6rem;
    }

    .home-page .nic {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
    }
}


/* Podsumowanie na karcie placowki: styl tylko dla H3 w tresci podsumowania */
.prez-podsumowanie h3 {
  color: #333;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}

/* PREZENTACJA2_ETAP1 */
.prez2-page .prez2-section-title {
  margin-top: 1.75rem;
  padding-top: 0;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
  color: #1d2f3a;
}

.prez2-page .prez2-section-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid #dce7ee;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 20px rgba(34, 52, 63, 0.06);
}

.prez2-page .prez2-section-card p,
.prez2-page .prez2-section-card li {
  color: #2b3e49;
  line-height: 1.65;
  font-size: 1rem;
}

.prez2-page .prez2-section-card h3 {
  color: #1d2f3a;
  margin-bottom: 0.6rem;
}

.prez2-page .prez2-opinion-cta {
  margin-top: 0.9rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid #c7d7e2;
  border-radius: 999px;
  background: #f4f8fb;
}

.prez2-page .prez2-opinion {
  background: #fbfcfd;
  border-left: 4px solid #0f8f64;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.9rem;
}

.prez2-page .prez2-map {
  width: 100%;
  height: 340px;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid #dce7ee;
  overflow: hidden;
}

@media (max-width: 767px) {
  .prez2-page .prez2-section-title {
    font-size: 1.35rem;
  }

  .prez2-page .prez2-section-card {
    padding: 0.85rem 0.9rem;
  }

  .prez2-page .prez2-map {
    height: 280px;
  }
}

/* PREZENTACJA2_ETAP2 */
.prez2-page .prez2-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  color: #5a6d78;
}

.prez2-page .prez2-breadcrumbs a {
  color: #1f5f86;
  text-decoration: none;
}

.prez2-page .prez2-breadcrumbs a:hover {
  text-decoration: underline;
}

.prez2-page .prez2-main {
  display: block;
}

.prez2-page { padding-top: 2rem; }
.prez2-page .prez2-hero {
  margin-bottom: 1rem;
}


/* PREZENTACJA2_DETAIL_LAYOUT_FIX */
.prez2-detail-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.prez2-detail-layout > .col-md-9,
.prez2-detail-layout > .col-md-9.pdesc {
  flex: 0 0 75%;
  max-width: 75%;
}

.prez2-detail-layout > .col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 1rem;
}

@media (max-width: 991px) {
  .prez2-detail-layout {
    display: block;
  }

  .prez2-detail-layout > .col-md-9,
  .prez2-detail-layout > .col-md-9.pdesc,
  .prez2-detail-layout > .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
  }
}

/* PREZENTACJA2_ETAP3 */
.prez2-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1rem;
}

.prez2-section-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border: 1px solid #c9d7e2;
  border-radius: 999px;
  background: #f7fbff;
  color: #1f5f86;
  text-decoration: none;
  font-size: 0.9rem;
}

.prez2-section-nav a:hover {
  text-decoration: none;
  background: #edf6ff;
}

/* PREZENTACJA2_ETAP3_DISABLED_NAV */
.prez2-section-nav a.is-disabled {
  opacity: 0.45;
  filter: grayscale(1);
  cursor: not-allowed;
  pointer-events: none;
  background: #f3f5f7;
  border-color: #d7dde3;
  color: #7e8b96;
}

.prez2-section-nav a.is-disabled:hover {
  background: #f3f5f7;
}

/* PREZENTACJA2_ALL_SECTION_CARDS */
.prez2-page .prez2-section-card--list,
.prez2-page .prez2-section-card--media,
.prez2-page .prez2-section-card--info,
.prez2-page .prez2-section-card--reviews,
.prez2-page .prez2-section-card--map {
  margin-bottom: 1.4rem;
}

.prez2-page .prez2-section-card--list .row,
.prez2-page .prez2-section-card--media .row {
  margin-left: -8px;
  margin-right: -8px;
}

.prez2-page .prez2-section-card--list [class*="col-"],
.prez2-page .prez2-section-card--media [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
}

.prez2-page .prez2-section-card--media .filmmm {
  margin-top: 0 !important;
  margin-bottom: 0.9rem;
}

.prez2-page .prez2-section-card--info {
  background: linear-gradient(180deg, #ffffff 0%, #f6fafc 100%);
}

.prez2-page .prez2-section-card--map {
  padding: 0.8rem;
}
.prez2-page .prez2-section-card--map .prez2-map {
  margin-bottom: 0;
}

/* PREZENTACJA2_CONSOLIDATED_INLINE_2026_03_16 */
.prez2-page .prez2-detail-layout {
  display: flex !important;
  align-items: flex-start;
}
.prez2-page .prez2-detail-layout > .prez2-left-col {
  flex: 0 0 75% !important;
  max-width: 75% !important;
}
.prez2-page .prez2-detail-layout > .prez2-right-col {
  flex: 0 0 25% !important;
  max-width: 25% !important;
  padding-top: 38px;
}
@media (max-width: 991.98px) {
  .prez2-page .prez2-detail-layout {
    display: block !important;
  }
  .prez2-page .prez2-detail-layout > .prez2-left-col,
  .prez2-page .prez2-detail-layout > .prez2-right-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .prez2-page .prez2-detail-layout > .prez2-right-col {
    margin-top: 16px;
  }
  .prez2-page .prez2-hero .mco.prez2-contact-main {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.prez2-page .prez2-section-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4px;
  margin: 10px 0 16px;
}
.prez2-page .prez2-section-nav .btn {
  display: inline-block;
  border: 1px solid #cfd6de !important;
  border-radius: 0 !important;
  background: #f6f8fa !important;
  color: #34414e !important;
  white-space: nowrap;
  padding: 7px 10px;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 600;
  text-align: left;
  text-shadow: none;
  box-shadow: none;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.prez2-page .prez2-section-nav .btn:hover,
.prez2-page .prez2-section-nav .btn:focus {
  background: #e9edf2 !important;
  color: #22303c !important;
  border-color: #bcc6d2 !important;
}
.prez2-page .prez2-section-nav .btn:active {
  background: #e1e7ee !important;
  color: #1c2833 !important;
}
.prez2-page .prez2-section-nav .btn.is-disabled,
.prez2-page .prez2-section-nav .btn[aria-disabled="true"] {
  background: #f1f3f5 !important;
  color: #9aa3ad !important;
  border-color: #e0e5ea !important;
  pointer-events: none;
}

.prez2-page .prez2-top-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid #e3e7eb;
  clear: both;
  width: 100%;
}
.prez2-page .home .nicons {
  float: none !important;
  width: 100% !important;
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  margin: 20px 0 5px 0 !important;
  order: 98 !important;
}
.prez2-page .prez2-actions-row {
  clear: both;
  width: 100%;
  position: static !important;
  left: auto !important;
  transform: none !important;
  bottom: auto !important;
  order: 99 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.prez2-page .prez2-hero {
  padding-bottom: 8px !important;
}
@media (max-width: 768px) {
  .prez2-page .prez2-top-actions {
    margin-top: 10px;
    padding-top: 6px;
  }
  .prez2-page .prez2-hero {
    padding-bottom: 8px !important;
  }
}

.prez2-page .prez2-contact-main .addr1 {
  margin-bottom: 8px;
}
.prez2-page .prez2-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.prez2-page .prez2-contact-row .prez2-contact-label {
  min-width: 24px;
  font-weight: 700;
  color: #6E970B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.prez2-page .prez2-contact-row .prez2-contact-label i {
  font-size: 16px;
}
.prez2-page .prez2-contact-row .prez2-contact-value {
  color: #253341;
  padding-left: 6px;
}
.prez2-page .prez2-contact-row .prez2-contact-value a {
  color: #253341;
  text-decoration: none;
  word-break: break-word;
}
.prez2-page .prez2-contact-row .prez2-contact-value a:hover {
  text-decoration: underline;
}
.prez2-page .prez2-title-icon {
  color: #6E970B;
  margin-right: 8px;
  font-size: .9em;
  vertical-align: baseline;
}
.prez2-page .prez2-hero .homename {
  font-size: 1.4rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .prez2-page .prez2-hero .homename {
    font-size: 1.1rem;
  }
}

.prez2-page .prez2-top-actions .prez2-opinion-cta {
  margin-bottom: 0;
}
.prez2-page .prez2-schowek-cta,
.prez2-page .prez2-opinion-cta {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding: 6px 10px;
  border: 1px solid #4f7107 !important;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  background: linear-gradient(180deg, #86b51a 0%, #6E970B 52%, #5a7f08 100%) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.15;
  text-decoration: none !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 1px 0 #4f7107, 0 2px 4px rgba(0,0,0,.13);
  cursor: pointer;
}
.prez2-page .prez2-schowek-cta .scinft,
.prez2-page .prez2-opinion-cta i {
  color: #fff !important;
}
.prez2-page .prez2-schowek-cta:hover,
.prez2-page .prez2-opinion-cta:hover {
  color: #fff !important;
  filter: brightness(1.07);
  transform: translateY(-1px);
}
.prez2-page .prez2-opinion-cta {
  gap: 6px;
  margin-bottom: 10px;
}
.prez2-page .prez2-opinion-cta--inline {
  margin-bottom: 0;
  margin-left: 8px;
  vertical-align: middle;
}
