@charset "UTF-8";
.rox-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 17px 25px;
  border-radius: 10px;
  text-decoration: none;
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  -webkit-transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  border: 2px solid transparent;
}
.rox-button:hover {
  text-decoration: none;
}
.rox-button--primary {
  background-color: #7BC24D;
  color: #FFFFFF;
}
.rox-button--primary:hover {
  background-color: #6aa542;
  color: #FFFFFF;
}
.rox-button--secondary {
  background-color: transparent;
  color: #1D1D1B;
  border-color: #1D1D1B;
}
.rox-button--secondary:hover {
  background-color: #6aa542;
  color: #FFFFFF;
  border-color: #6aa542;
}

/* HEADER */
.custom-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  padding: 15px 0;
  font-family: "Red Hat Display", sans-serif;
}

.header-left {
  width: 200px;
}

.header-center ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-center a {
  text-decoration: none;
  color: #0A0A0A;
  font-size: 15px;
  padding: 15px 20px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header-center a svg {
  min-width: 25px;
}
.header-center a path {
  -webkit-transition: stroke 0.3s;
  transition: stroke 0.3s;
}
.header-center a:hover {
  color: #6aa542;
}
.header-center a:hover path {
  stroke: #6aa542;
}
.header-center li:last-child a {
  background-color: #ECECEC;
  border-radius: 20px;
}

/* MEGA MENU PANELS */
.mega-panels {
  position: relative;
  font-family: "Red Hat Display", sans-serif;
}

.mega-panel {
  display: none;
  position: fixed;
  left: 0;
  top: 80px;
  width: 100vw;
  background: #F5F5F5;
  z-index: 9999;
}

.mega-panel-inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding: 35px 0;
}

.mega-col.left {
  -webkit-box-flex: 1.3;
      -ms-flex: 1.3;
          flex: 1.3;
}

.mega-col.right {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.mega-col.left ul,
.mega-col.right ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-col.left a,
.mega-col.right a {
  text-decoration: none;
  color: #1D1D1B;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 16px;
  gap: 5px;
}
.mega-col.left a svg,
.mega-col.right a svg {
  min-width: 25px;
}
.mega-col.left a:hover,
.mega-col.right a:hover {
  background-color: #fff;
}

.mega-col.product-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.product-title {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 500;
  color: #222;
}

.product-box a {
  background: #fff;
  padding: 15px;
  display: block;
  overflow: hidden;
}
.product-box a img {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.product-box a:hover {
  color: transparent;
}
.product-box a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.product-box a:hover .product-title {
  text-decoration: none;
  color: #6aa542;
}

.product-label {
  font-size: 16px;
  color: #1D1D1B;
  font-weight: 500;
  margin-bottom: 10px;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.mega-menu-level-1 {
  height: 100%;
}
.mega-menu-level-1 li {
  height: 100%;
}
.mega-menu-level-1 a {
  height: 100%;
}

@media (max-width: 1399.99px) {
  .header-center a {
    font-size: 14px;
    padding: 11px;
  }
}
@media (max-width: 1199.99px) {
  .mega-panel {
    top: 90px;
  }
  .header-left {
    width: 180px;
  }
}
/* =========================================
   BURGER & LOGO
========================================= */
.header-left {
  width: 200px;
}

.header-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-left-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

/* === BURGER === */
.burger-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.burger-icon {
  width: 28px;
  height: 28px;
  stroke: #1D1D1B;
}

/* Schowaj burgera na desktopie */
@media (min-width: 960px) {
  .burger-toggle {
    display: none !important;
  }
}
/* Pokaż burgera i schowaj duże menu na mobile */
@media (max-width: 959.98px) {
  .header-left {
    width: 100%;
  }
  .header-logo img {
    width: 160px;
  }
  .header-center {
    display: none;
  }
  .burger-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .custom-header {
    padding: 0;
  }
}
/* =========================================
   MENU MOBILNE (Panel boczny)
========================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  -webkit-box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
          box-shadow: -4px 0 10px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100vh;
  overflow: auto;
}
.mobile-menu .form-searchform {
  padding: 0 15px;
  position: relative;
}
.mobile-menu .form-searchform a {
  color: #000;
}
.mobile-menu .form-searchform input {
  width: 100%;
  font-size: 13px;
}
.mobile-menu .mfn-live-search-box ul li:not([data-category=info]) {
  padding: 8px 0;
}
.mobile-menu .mfn-live-search-box a {
  color: #000;
}
.mobile-menu .mfn-close-icon {
  position: absolute;
  right: 10px;
  top: 0;
}

.mobile-menu.open {
  right: 0;
}

/* Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Zamknięcie menu */
.mobile-close {
  -ms-flex-item-align: end;
      align-self: flex-end;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  line-height: 0;
  color: #1D1D1B;
  margin: 10px;
}

.icon-close {
  width: 28px;
  height: 28px;
}

.icon-close path {
  stroke: currentColor; /* dziedziczy z .mobile-close */
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.mobile-close:hover {
  color: #000;
  opacity: 0.85;
}

.mobile-close:focus-visible {
  outline: 2px solid #1D1D1B;
  outline-offset: 2px;
}

/* =========================================
   MENU MOBILNE - STRUKTURA LISTY
========================================= */
.mobile-menu-list,
.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list > li {
  margin-bottom: 10px;
  padding: 0 15px;
}

/* Linki w menu */
.mobile-menu-list a {
  display: block;
  text-decoration: none;
  color: #1D1D1B;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 0;
  width: 100%;
}

/* Submenu */
.mobile-submenu {
  display: none;
  padding-left: 15px;
  margin-top: 8px;
  border-left: 2px solid #eee;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  font-size: 12px;
  color: #223D74;
}

.mobile-submenu .has-sub > .mobile-submenu a {
  color: #5e6167;
  font-size: 11px;
}

/* =========================================
   STRZAŁKI & ROZWIJANIE SUBMENU
========================================= */
.mobile-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.submenu-toggle {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.submenu-toggle svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.submenu-toggle.active svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.ktomalek-wrapper {
  margin-bottom: 20px;
}/*# sourceMappingURL=roxart-common.css.map */