
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #ec008c;
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 768px;
    --breakpoint-md: 992px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: "DM Sans", sans-serif;
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --conbiz-font-sans-serif: "DM Sans", sans-serif;
    --conbiz-heading-font-family: 'Manrope', sans-serif;
	--conbiz-menu-font-family:'Manrope', sans-serif;
    --conbiz-theme-color: #1b4e9b;
    --conbiz-theme-color-second: #132447;
    --font-body-weight: 400;
    --font-body-size: 18px;
    --body-color: #000;
    --body-link-color: #1a1a1a;
    --body-link-color-hover: #e0ad61;
    --topbar-bg-color: #132447;
    --topbar-color: #fff;
    --topbar-link-color: #fff;
    --topbar-link-color-hover: #00a0e3;
    --menu-link-color: #000;
    --menu-link-color-hover: #1b4e9b;
    --submenu-bg-color: #ffffff;
    --submenu-color: #74787c;
    --submenu-link-color: #000;
    --submenu-link-color-hover: #000;
    --footer-bg-color: #132447;
    --footer-color: #fff;
    --footer-link-color: #fdfdfd;
    --footer-link-color-hover: #00a0e3;
}

/* =========================================================
   OUTLET – style TYLKO dla widoku w .outletpage
   Dopasowane do:
   - form#views-exposed-form-outlet-page-1 (Tytuł + Kategoria + Zastosuj)
   - tabela: thead/th + tr.views-row + td.views-field-...
   ========================================================= */

/* -------------------------
   WYSZUKIWARKA
   ------------------------- */

/* wrapper formularza (masz class="views-exposed-form" na <form>) */
.outletpage form#views-exposed-form-outlet-page-1.views-exposed-form{
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  margin: 0 0 18px;
}

/* Desktop: 1 linia: Tytuł | Kategoria | Zastosuj */
.outletpage form#views-exposed-form-outlet-page-1{
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(320px, .9fr) auto;
  gap: 12px;
  align-items: end;
}

/* elementy formularza */
.outletpage form#views-exposed-form-outlet-page-1 .form-item{
  display: grid;
  gap: 6px;
}

/* label */
.outletpage form#views-exposed-form-outlet-page-1 label{
  font-size: 15px;
  font-weight: 800;
  color: #64748b;
  line-height: 1.2;
  margin-bottom:0;
  
}

/* input + select */
.outletpage form#views-exposed-form-outlet-page-1 input[type="text"],
.outletpage form#views-exposed-form-outlet-page-1 input[type="search"],
.outletpage form#views-exposed-form-outlet-page-1 select{
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 12px;
  padding: 12px 12px;
  background: #ffffff;
  color: #0f172a;
  outline: none;
  transition: box-shadow .15s ease, border-color .15s ease;
  max-height:50px;
}

.outletpage form#views-exposed-form-outlet-page-1 input[type="text"]:focus,
.outletpage form#views-exposed-form-outlet-page-1 input[type="search"]:focus,
.outletpage form#views-exposed-form-outlet-page-1 select:focus{
  border-color: rgba(15, 47, 87, .55);
  box-shadow: 0 0 0 4px rgba(15, 47, 87, .18);
}

/* przycisk */
.outletpage form#views-exposed-form-outlet-page-1 .form-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.outletpage form#views-exposed-form-outlet-page-1 .form-actions input[type="submit"],
.outletpage form#views-exposed-form-outlet-page-1 .form-actions button[type="submit"]{
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 900;
  cursor: pointer;
  background: #0f2f57;
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .18);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

.outletpage form#views-exposed-form-outlet-page-1 .form-actions input[type="submit"]:hover,
.outletpage form#views-exposed-form-outlet-page-1 .form-actions button[type="submit"]:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* bardzo duże ekrany – nie rozciągaj pól zbyt mocno */
@media (min-width: 1400px){
  .outletpage form#views-exposed-form-outlet-page-1{
    grid-template-columns: 560px 420px auto;
    justify-content: start;
  }
}

/* Mobile: 1 kolumna, wycentrowane */
@media (max-width: 768px){
  .outletpage form#views-exposed-form-outlet-page-1{
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .outletpage form#views-exposed-form-outlet-page-1 .form-actions{
    justify-content: center;
  }

  .outletpage form#views-exposed-form-outlet-page-1 .form-actions input[type="submit"],
  .outletpage form#views-exposed-form-outlet-page-1 .form-actions button[type="submit"]{
    width: 100%;
  }
}

/* =========================
   TABELA OUTLET (Views Table)
   HTML:
   <table class="cols-4"> ... <tr class="views-row"> ... </tr>
   ========================= */

/* Kontener przewijania na małych ekranach */
.outletpage .views-element-container,
.outletpage .view,
.outletpage .region-content{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Tabela (Twoja ma class="cols-4") */
.outletpage table.cols-4{
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
}

/* Header */
.outletpage table.cols-4 thead th{
  background: #0f2f57;
  color: #ffffff;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  border: 0;
  vertical-align: middle;
}

/* Link sortowania w headerze */
.outletpage table.cols-4 thead th a{
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  opacity: .95;
}

.outletpage table.cols-4 thead th a:hover{
  text-decoration: underline;
  opacity: 1;
}

/* Body: komórki */
.outletpage table.cols-4 tbody td{
  padding: 16px;
  border: 0 !important; /* kasuje siatkę motywu */
  border-top: 1px solid rgba(15, 23, 42, .06) !important;
  vertical-align: middle;
  color: #0f172a;
  background: #ffffff;
}

/* Usuń pionowe linie, jeśli motyw je dorysowuje */
.outletpage table.cols-4 th,
.outletpage table.cols-4 td{
  border-left: 0 !important;
  border-right: 0 !important;
}

/* Zebra */
.outletpage table.cols-4 tbody tr.views-row:nth-child(even) td{
  background: #f8fafc;
}

/* Hover */
.outletpage table.cols-4 tbody tr.views-row:hover td{
  background: #eef4fa;
}

/* Kolumna: zdjęcie */
.outletpage table.cols-4 td.views-field-field-zdjecie{
  width: 110px;
  padding-left: 14px;
}

.outletpage table.cols-4 td.views-field-field-zdjecie .item-image{
  width: 74px;
  height: 74px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.outletpage table.cols-4 td.views-field-field-zdjecie img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Kolumna: tytuł */
.outletpage table.cols-4 td.views-field-title{
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  padding-right: 22px;
}

.outletpage table.cols-4 td.views-field-title a{
  color: #0f172a;
  text-decoration: none;
}

.outletpage table.cols-4 td.views-field-title a:hover{
  color: #0f2f57;
  text-decoration: underline;
}

/* Wyrównanie cen do prawej */
.outletpage table.cols-4 th#view-field-stara-cena-table-column,
.outletpage table.cols-4 th#view-field-nowa-cena-table-column,
.outletpage table.cols-4 td.views-field-field-stara-cena,
.outletpage table.cols-4 td.views-field-field-nowa-cena{
  text-align: right;
  white-space: nowrap;
}

/* Stara cena – przekreślona i czerwona */
.outletpage table.cols-4 td.views-field-field-stara-cena{
  color: #e31e24;
  font-weight: 800;
  font-size: 14px;
  text-decoration: line-through;
  padding-left: 22px;
}

/* Nowa cena – mocna */
.outletpage table.cols-4 td.views-field-field-nowa-cena{
  color: #0f172a;
  font-weight: 950;
  font-size: 18px;
  padding-left: 10px;
}

/* Opcjonalnie: delikatny „oddech” od prawej strony */
.outletpage table.cols-4 td.views-field-field-nowa-cena{
  padding-right: 18px;
}

/* =========================================================
   Koniec
   ========================================================= */


/* =========================================================
   tylko klasy z HTML: .po .po_zdjecie .item-image .po_tresc .po_body
   + do cen: .po_ceny .po_stara .po_nowa
   ========================================================= */

.po{
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 36px;
  align-items: start;

  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 16px;
  padding: 20px;
  margin: 24px 0;

  /* mniej cienia */
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

/* ===== zdjęcie ===== */


.po_zdjecie .item-image img{
  width: 100%;
  height: auto;
  display: block;
}

/* ===== prawa kolumna ===== */
.po_tresc{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== CENY (wymaga rozdzielenia na spany) ===== */
.po_ceny{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;

  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #f8fafc;
}

.po_stara{
  color: #e31e24;
  font-weight: 800;
  text-decoration: line-through;
  font-size: 15px;
}

.po_nowa{
  color: #0f172a;
  font-weight: 950;
  font-size: 28px;
}

/* ===== opis ===== */
.po_body{
  color: #334155;
  font-size: 15px;
  line-height: 1.65;
}

.po_body p{
  margin: 0 0 14px;
}

/* ===== responsywność ===== */
@media (max-width: 992px){
  .po{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px;
  }

  .po_zdjecie{
    max-width: 560px;
    margin: 0 auto;
  }
}










.yawal .gsc-image-content  .image{
	padding-top:40px;
}

header.header-1 .branding img, header.header-2 .branding img {
    max-width: 200px;
}
header .site-branding-logo {
    padding: 0;
    height: auto;
    display: block;
}
header .site-branding-logo {
    padding-top: 0px !important;
}
.topbar-information ul li i{
    color: #00a0e3 !important;
}
.post-block .post-title
 {
    font-size: 20px;
}
.fc_h {
    text-transform: uppercase;
    font-size: 26px;
    margin-bottom: 20px;
    font-family: var(--conbiz-heading-font-family);
    text-transform: uppercase;
    padding-bottom: 0px;
    font-weight: normal;
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 35px;
}
.contact-info ul li {
    margin-bottom: 0px;
}
.partnerzy_logo img {
  filter: grayscale(100%);
  transition: filter 0.6s ease-in-out
}
.partnerzy_logo img:hover {
  filter: grayscale(0%);
}
.gsc-call-to-action .box-background:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(19, 36, 71, 0.8);
    top: 0;
    left: 0;
}
.gva-parallax-background {
    background-attachment: fixed;
    background-size: contain;
}
.gsc-call-to-action.text-light .content .desc *{
	color:#fff;
}
.icona_flaga{
	vertical-align:middle;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active
 {
    border: 1px solid #c5c5c5 /*{borderColorDefault}*/;
    background: #fff;
    font-weight: normal /*{fwDefault}*/;
    color: #000 /*{fcDefault}*/;
}

.ui-accordion .ui-accordion-header {
    margin-bottom: 10px;
}
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited, a.ui-button, a:link.ui-button, a:visited.ui-button, .ui-button {
    color: #000 /*{fcDefault}*/;
    text-decoration: none;
	font-family: var(--conbiz-font-sans-serif);
}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #c5c5c5;
    background: #c5c5c5;
    font-weight: normal;
    color: #ffffff;
}
.service-block .backend img {
	max-height:-webkit-fill-available;
}
.produkty .service-block .title {
    min-height: 65px;
    align-content: center;
}
.gsc-icon-box.left.v1 .button-action a {
    background: #f7f7f7;

}
body.hidden-title .node--view-mode-full .post-title {
    display: none !important;
}
.gsc-icon-box.left.v1 {
    padding: 20px;
	align-items: anchor-center;
}
.gsc-icon-box .title {
    font-size: 18px;
}
.drzwi .gsc-image{
	margin-bottom:20px;
}


@media (max-width: 767.98px){
	        .gsc-heading .title {
        font-size: 30px !important;
        line-height: 36px;
    }
}

@media (max-width: 991.98px) {
    .gsc-images-parallax.style-v3 .image-2 {
        bottom: 50px !important;
    }
	.scroll-to-top {
    bottom: 100px;
}
}



@media (min-width: 1024px){
    header.header-1, header.header-2 {
        position: relative;
	}
	    .navigation .gva_menu > li.menu-item--active-trail > a
 {
        color: var(--menu-link-color-hover) !important;
    }
	.eu-cookie-compliance-message {

    margin: 14px 0 0;

}
.front_okno{
	min-height:450px;
}
    .navigation .gva_menu > li > a {
        padding: 35px 15px;

    }
	.skladania img{
		max-height:110px;
		margin:10px;
	}
	.skladania1 img{
		max-height:155px;
		margin:10px;
	}
	    header.header-1 .branding {
        margin-bottom: 0;
        background: #fff;
    }

}

