@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");

:root {
  /* --------------------------------
       TWOJE ISTNIEJĄCE ZMIENNE
    -------------------------------- */
  --bs-primary: #0073bd;
  --bs-body-color: #151515;
  --bs-dark: #151515;
  --primary-opacity: #eff6fb;

  --dark-gray: #6c6c6c;
  --light-gray: #a4a4a4;
  --bg-light-gray: #f7f7f7;
  --bg--dark-gray: #f0f0f0;
  /* dodatkowe */
  --color-white: #fff;
  --color-light-border: #f1f1f1;
  --color-primary-border-light: #0073bd50;
  --color-green: #5b9c5d;
  --color-red: #b3171e;
  /* ===========================================
       TYPOGRAPHY – FONT SIZES
    ============================================ */
  --fs-xxs: 10px;
  /* np. badge cart */
  --fs-xs: 12px;
  /* badge, kategorie, ceny regular-price */
  --fs-sm: 14px;
  /* paragrafy, większość UI */
  --fs-md: 16px;
  /* slider desc, modal title */
  --fs-lg: 20px;
  /* nagłówki h2 z custom text */
  --fs-xl: 22px;
  /* custom text h1 */
  --fs-xxl: 24px;
  /* nagłówki kategorii */
  --fs-hero: 58px;
  /* duży tytuł slidera */
  /* ===========================================
       TYPOGRAPHY – FONT WEIGHTS
    ============================================ */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;
  /* ===========================================
       RADIUSY
    ============================================ */
  --radius-sm: 4px;
  /* większość kart, buttonów */
  --radius-md: 8px;
  /* slider, search bar, bannery */
  --radius-lg: 12px;
  /* ewentualne większe elementy */
  /* ===========================================
       SPACING – ODSTĘPY
    ============================================ */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 40px;
  --sp-7: 80px;
  /* ===========================================
       PRZYCISKI – DEKLARATYWNE ZMIENNE
    ============================================ */
  --btn-font-size: 14px;
  --btn-line-height: 24px;
  --btn-radius: var(--radius-sm);
  /* ===========================================
       KOLORY – ROZSZERZENIA (opcjonalne)
    ============================================ */
  --color-white: #fff;
  --color-light-border: #f1f1f1;
  --color-primary-border-light: #0073bd50;
}

body {
  font-family: "Rubik", sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-body-color);
  font-weight: var(--fw-medium);
}

a {
  color: var(--bs-body-color);
}

p,
span,
div {
  font-size: var(--fs-sm);
}

.custom-italic-font {
  font-family: "Instrument Serif" !important;
  font-style: italic !important;
  font-weight: var(--fw-normal) !important;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-dark);
  --bs-btn-border-color: var(--bs-dark);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-dark);
  /* lekko jaśniejszy odcień dla hover */
  --bs-btn-hover-border-color: var(--bs-dark);

  --bs-btn-focus-shadow-rgb: 21, 21, 21;
  /* RGB dla focus shadow */

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0f0f0f;
  /* ciemniejszy przy aktywnym */
  --bs-btn-active-border-color: #0a0a0a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-dark);
  --bs-btn-disabled-border-color: var(--bs-dark);

  font-size: var(--btn-font-size);
  font-weight: var(--fw-normal);
  line-height: var(--btn-line-height);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-dark);
  --bs-btn-border-color: var(--bs-dark);

  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-dark);
  /* wypełnienie przy hover */
  --bs-btn-hover-border-color: var(--bs-dark);

  --bs-btn-focus-shadow-rgb: 21, 21, 21;
  /* RGB dla focus shadow */

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0f0f0f;
  /* ciemniejszy odcień przy aktywnym */
  --bs-btn-active-border-color: #0f0f0f;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);

  --bs-btn-disabled-color: var(--bs-dark);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-dark);

  --bs-gradient: none;

  font-size: var(--btn-font-size);
  display: flex;
  align-items: center;
  line-height: var(--btn-line-height);
  justify-content: center;
}

.btn-outline-primary.all-product-link svg {
  margin-left: var(--sp-3);
}

.nav-tabs {
  --bs-nav-tabs-border-width: 2px;
  --bs-nav-tabs-border-color: transparent;
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: transparent;
  --bs-nav-tabs-link-active-color: var(--color-white);
  /* aktywny tekst */
  --bs-nav-tabs-link-active-bg: var(--bs-dark);
  /* aktywne tło */
  --bs-nav-tabs-link-active-border-color: transparent transparent
    var(--bs-primary);
  border-bottom: var(--bs-nav-tabs-border-width) solid
    var(--bs-nav-tabs-border-color);
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-size: 1rem;
  --bs-nav-link-font-weight: 600;
  --bs-nav-link-color: var(--color-white);
  /* tekst przycisków ciemny */
  --bs-nav-link-hover-color: var(--bs-primary);
  /* kolor tekstu po najechaniu */
  --bs-nav-link-disabled-color: var(--dark-gray);
  /* kolor nieaktywnych */
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  gap: var(--sp-2);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: var(--bs-nav-tabs-link-active-bg);
  /* ciemne tło aktywnego */
  border: var(--bs-nav-tabs-border-width) solid transparent;
  /* domyślnie bez widocznego borderu */
  color: var(--bs-nav-tabs-link-active-color);
  /* biały tekst aktywnego */
}

.nav-tabs .nav-link {
  border: var(--bs-nav-tabs-border-width) solid transparent;
  /* domyślnie bez widocznego borderu */
  border-radius: var(--radius-sm);
  margin-bottom: calc(var(--bs-nav-tabs-border-width) * -1);
  color: var(--bs-body-color);
  /* tekst przycisków jasny */
  font-weight: var(--fw-normal);
  font-size: var(--fs-sm);
  line-height: 1;
  background-color: transparent;
  transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
  background-color: var(--bg-light-gray);
  /* lekko podświetlone tło */
  color: var(--bs-body-color);
}

.nav-tabs .nav-link.active:hover {
  background-color: var(--bs-body-color);
  color: white;
}

.thumbnails__container .thumbnail.active img,
.custom-checkbox input[type="checkbox"] + span.color.active,
.custom-checkbox input[type="checkbox"] + span.color:hover,
.variant-links .color.active,
.variant-links .color:hover,
label .color.active,
label .color:hover {
  border-color: var(--bs-body-color) !important;
  border-width: 1px;
}

label .color.active {
  border: 1px solid var(--bs-body-color);
}

label .color:hover {
  border: 1px solid var(--bs-body-color);
}

.form-select:focus {
  border-color: var(--bg-dark-gray);
  box-shadow: 0 0 0 0.25rem #15151515;
  outline: 0;
}

.alert {
  font-size: var(--fs-sm);
  padding: var(--sp-3);
  line-height: 1.1;
}

.alert-dismissible .btn-close {
  padding: var(--sp-4);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
}

.badge {
  background: var(--primary-opacity);
  color: var(--bs-primary);
  font-size: var(--fs-xs);
  border: 1px solid var(--primary-opacity);
  font-weight: var(--fw-normal);
}

.badge.discount {
  background: #fff4f2;
  color: #b3171e;
  border: 1px solid #fff4f2;
}

.badge.on-sale {
  background: var(--bs-primary);
  color: #fff;
  border: 1px solid var(--bs-primary);
}

.badge.pack {
  background: #effbf5;
  color: #135649;
  border: 1px solid #effbf5;
}

.badge.out_of_stock {
  background: #e2e2e4;
  color: #55575d;
  border: 1px solid #e2e2e4;
}

.header {
  --header-color: var(--bs-dark);
}

.section-title {
  color: var(--bs-body-color);
  font-weight: var(--fw-normal);
  line-height: 1;
}

.all-product-link {
  display: inline-flex;
}

.all-product-link.btn i {
  color: var(--bs-body-color);
}

/* BREADCRUMBS - start */
.breadcrumb__wrapper {
  background-color: var(--bg-light-gray);
}

.breadcrumb {
  color: var(--bs-body-color);
}

.breadcrumb span,
.breadcrumb a {
  font-size: var(--fs-xs);
}

.breadcrumb a {
  color: var(--dark-gray);
}

/* BREADCRUMBS - end */

/* CAROUSEL arrows - start */
.carousel-control-next,
.carousel-control-prev {
  opacity: 0.3;
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: var(--bs-body-color);
  opacity: 0.75;
}

.carousel .carousel-control-prev {
  left: 1rem;
  height: 40px;
  width: 40px;
}

.carousel .carousel-control-next {
  right: 1rem;
  height: 40px;
  width: 40px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 20px;
  height: 20px;
}

/* CAROUSEL arrows - end */

/* HEADER - start */
@media (min-width: 768px) {
  .header-bottom__row {
    min-height: 5rem;
  }
}

.header-bottom__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.search-bar-container {
  flex-grow: 1;
  background: var(--bg-light-gray);
  font-size: var(--fs-sm);
  padding: var(--sp-2);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--dark-gray);
}

.header-bottom-right {
  display: flex;
  gap: var(--sp-2);
}

.header-bottom-right a {
  font-size: var(--fs-sm);
}

#_desktop_user_info .header-block > a,
#_desktop_cart .header-block__action-btn,
#userMenuButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

#userMenuButton.dropdown-toggle:after {
  display: none;
}

#_desktop_user_info .header-block > a span,
#_desktop_cart .header-block__action-btn span,
#userMenuButton span {
  font-size: var(--fs-xs);
  color: var(--dark-gray);
  line-height: 1;
}

#_desktop_user_info:hover .header-block > a span,
#_desktop_cart:hover .header-block__action-btn span,
#userMenuButton:hover span {
  color: var(--bs-primary);
}

#_desktop_cart .header-block .header-block__badge {
  margin: 0;
  position: absolute;
  right: 10px;
  top: -7px;
  background: var(--primary-opacity);
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xxs);
  font-weight: var(--fw-medium);
  min-width: 16px;
  min-height: 16px;
  border-radius: var(--radius-sm);
}

header {
  border-bottom: 1px solid var(--bs-gray-200);
}

@media (max-width: 767px) {
  header img.logo.img-fluid {
    width: 120px;
  }

  .header-bottom-right {
    display: none;
  }

  .header-bottom__row .mobile-icons {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
  }

  .header-bottom-menu {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: 0px var(--sp-3);
  }

  .header-bottom-menu .search-bar-container {
    border-radius: var(--radius-sm);
    height: 30px;
  }

  span.header-block__badge {
    margin: 0;
    position: absolute;
    right: 0px;
    top: 4px;
    background: var(--primary-opacity);
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: var(--fw-medium);
    min-width: 14px;
    min-height: 14px;
    border-radius: var(--radius-sm);
  }

  .search-bar {
    font-size: var(--fs-xs);
  }
}

.main-menu__tree > li > a {
  font-size: var(--fs-sm);
  padding: var(--sp-4);
}

.header a:not(.dropdown-item):not(.btn) {
  color: var(--dark-gray);
}

.header a:not(.dropdown-item):not(.btn):hover,
.header a:not(.dropdown-item):not(.btn):hover i {
  color: var(--bs-primary);
}

a.main-menu__tree__link.dropdown-toggle:after {
  display: none;
}

#top-menu li:first-of-type a {
  padding-left: 0px;
}

.header .menu-container a:not(.submenu .dropdown-item):not(.btn) {
  color: var(--bs-body-color);
  line-height: 1.1;
  font-weight: var(--fw-medium);
}

li.category .submenu a.dropdown-item {
  color: var(--dark-gray);
  line-height: 1.1;
  transition: 0.15s ease-in;
}

li.category .submenu a.dropdown-item:hover {
  color: var(--bs-primary);
}

.header .menu-container ul.submenu {
  padding-top: var(--sp-2);
  line-height: 1;
}

.header .menu-container ul.submenu li a {
  padding: 6px 0;
  font-size: var(--fs-sm);
}

/* menu header - 3rd child of category hide */
ul.submenu .dropdown-menu {
  display: none;
}

/* HEADER - end */

/* MODULE - IMAGE SLIDER - start */
#home-slider.ratio-homeSlider {
  min-height: 400px;
  margin-top: var(--sp-6);
}

#home-slider .carousel .carousel-inner {
  border-radius: var(--radius-sm);
}

.carousel .carousel-indicators button.active {
  background-color: white;
}

#home-slider .carousel .carousel-control-next,
#home-slider .carousel .carousel-control-prev {
  background: transparent;
}

#home-slider .carousel .carousel-control-next span,
#home-slider .carousel .carousel-control-prev span {
  color: white;
  filter: invert(1);
}

#home-slider .carousel-caption,
#home-slider .carousel .carousel-content p {
  color: white;
  font-size: var(--fs-md);
  font-weight: var(--fw-light);
}

/* hide title from module */
#home-slider .carousel .carousel-caption h2.display-1 {
  display: none !important;
}

#home-slider .carousel .carousel-caption .caption-description {
  max-width: initial;
}

#home-slider .carousel .carousel-content p.slider-title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-light);
  line-height: 1;
  max-width: initial;
}

#home-slider .carousel .carousel-content p.slider-title span {
  font-style: italic;
  font-family: "Instrument Serif", serif;
  font-weight: var(--fw-normal);
  font-size: inherit;
}

#home-slider .carousel .carousel-content p.slider-desc {
  max-width: 480px;
}

#home-slider .slider-cta.outline {
  display: inline-block;
  border: 1px solid #fff;
  border-radius: var(--radius-sm);
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-5);
  font-size: var(--fs-sm);
  line-height: 1;
  font-weight: var(--fw-normal);
  transition: 0.15s ease-in;
}

#home-slider .slider-cta.outline:hover {
  background: white;
  color: var(--bs-body-color);
}

@media (max-width: 768px) {
  #home-slider .carousel .carousel-content p.slider-title {
    font-size: 28px !important;
  }

  #home-slider .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    width: 32px !important;
  }
}

/* MODULE - IMAGE SLIDER - end */

/* PRODUCT MINIATURE - start */

.product-miniature {
  margin-bottom: 1.5rem;
}

.product-miniature .card {
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-sm);
}

.card-img,
.card-img-top {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.product-miniature .product-miniature__image-container {
  border-radius: var(--radius-sm) var(--radius-sm) 0px 0px;
}

.product-miniature .product-miniature__title {
  color: var(--bs-body-color);
  font-weight: var(--fw-normal);
  font-size: var(--fs-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 35px;
}

.product-miniature .product-miniature__prices {
  flex-direction: row;
  gap: var(--sp-1) var(--sp-2);
  align-items: flex-end;
  line-height: 1;
}

.product-miniature .product-miniature__price {
  font-weight: var(--fw-normal);
  font-size: var(--fs-sm);
  margin-right: 0 !important;
}

.product-miniature .product-miniature__regular-price {
  color: var(--light-gray);
  font-size: var(--fs-xs);
}

.product-miniature a.product-miniature__category p {
  font-size: var(--fs-xs);
}

/* hide quickview on product miniature */
.product-miniature .product-miniature__quickview,
.product-miniature .product-miniature__variants,
.product-miniature .quantity-button {
  display: none;
}

button[data-button-action="add-to-cart"] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0;
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
  line-height: 1;
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.product-miniature a.btn.btn-outline-primary {
  padding: 0px 16px;
  min-width: 48px;
  height: 40px;
}

.product-miniature a.btn.btn-outline-primarysvg path {
  transition: 0.15s ease-in;
}

.product-miniature a.btn.btn-outline-primary:hover svg path {
  stroke: white;
}

.product-miniature .card:hover {
  filter: none;
}

.product-miniature .product-miniature__link:hover .product-miniature__image {
  transform: none;
}

.product-miniature a.product-miniature__category {
  color: var(--light-gray);
  font-size: var(--fs-xs);
}

.product-miniature a.product-miniature__category:hover {
  text-decoration: underline;
  color: var(--bs-primary);
}

.products article .wishlist-button-add {
  box-shadow: none;
}

.products article .wishlist-button-add {
  box-shadow: none;
  width: 30px;
  height: 30px;
  min-width: 30px;
  padding: 0px;
  top: var(--sp-2);
  right: var(--sp-2);
  border-radius: var(--radius-sm);
}

.product-miniature i.material-icons {
  font-size: 18px;
  color: var(--bs-body-color);
}

.product-miniature .product-miniature__infos__bottom {
  margin-bottom: 0px;
  padding-bottom: 0.5rem;
  border-radius: 2px;
}

.product-miniature__infos__bottom button[data-button-action="add-to-cart"] {
  max-width: 40px;
}

.product-miniature .card-body form .btn,
.product-miniature
  .card-body
  .product-miniature__infos__bottom
  .btn.btn-outline-primary {
  margin-top: auto;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--dark-gray) !important;
}

.products.swiper-wrapper .swiper-slide article {
  width: 100% !important;
}

@media (max-width: 576px) {
  .products.row {
    --bs-gutter-x: 0.8rem;
  }

  .product-flags.js-product-flags {
    max-width: calc(100% - 46px);
  }
  .products
    .product-miniature
    .product-miniature__infos__bottom
    .btn.btn-outline-primary {
    color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23151515'%3E%3Cpath d='M480.3-358.46q58.39 0 99.82-41.72 41.42-41.72 41.42-100.12 0-58.39-41.72-99.82-41.72-41.42-100.12-41.42-58.39 0-99.82 41.72-41.42 41.72-41.42 100.12 0 58.39 41.72 99.82 41.72 41.42 100.12 41.42Zm-.67-31.85q-45.86 0-77.59-32.1-31.73-32.1-31.73-77.96 0-45.86 32.1-77.59 32.1-31.73 77.96-31.73 45.86 0 77.59 32.1 31.73 32.1 31.73 77.96 0 45.86-32.1 77.59-32.1 31.73-77.96 31.73Zm.48 150.31q-129.19 0-235.65-71.08Q138-382.15 83.08-500 138-617.85 244.35-688.92 350.7-760 479.89-760t235.65 71.08Q822-617.85 876.92-500 822-382.15 715.65-311.08 609.3-240 480.11-240ZM480-500Zm-.17 229.23q117.32 0 214.98-62.04Q792.46-394.85 843.92-500q-51.46-105.15-148.94-167.19-97.49-62.04-214.81-62.04-117.32 0-214.98 62.04Q167.54-605.15 115.85-500q51.69 105.15 149.17 167.19 97.49 62.04 214.81 62.04Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 26px 26px;
    max-width: 40px;
    min-width: 40px !important;
  }

  .products
    .product-miniature
    .product-miniature__infos__bottom
    .btn.btn-outline-primary:hover {
    background-color: white !important;
  }
}

.modal.fade.quickview .sopchy-ask-question-btn,
.product-miniature__quickview_touch.btn.js-quickview,
.product-miniature .product-miniature__quickview_touch {
  display: none !important;
}

/* PRODUCT MINIATURE - end */

/* MODULE - HOME BANNER - start */
a.banner img {
  border-radius: var(--radius-sm);
}

/* MODULE - HOME BANNER - end */

/* MODULE - FEATURED PRODUCTS - start */
.featured-products .featured-products-footer {
  padding-bottom: 1rem;
}

/* MODULE - FEATURED PRODUCTS - end */

/* MODULE - CUSTOM TEXT - start */
#custom-text {
  padding: 2.5rem;
  background: var(--primary-opacity);
  border-radius: var(--radius-sm);
  margin: var(--sp-7) auto 0;
}

#custom-text h1 {
  font-size: var(--fs-xl);
}

#custom-text h2 {
  font-size: var(--fs-lg);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

#custom-text p {
  font-size: var(--fs-sm);
  color: var(--dark-gray);
}

#custom-text p:last-of-type {
  margin-bottom: 0px;
}

/* MODULE - CUSTOM TEXT - end */

/* FOOTER - start */
#footer.footer {
  /* --footer-background-color: #16181c; */
  /* --footer-background-color: var(--primary-opacity); */
  --footer-background-color: var(--bg-light-gray);
  --footer-text-color: var(--dark-gray);
  --footer-hover-color: var(--bs-primary);
  --footer-heading-color: var(--bs-body-colory);
}

.footer .footer__main {
  padding: 4rem 0;
}

#footer.footer .footer__block__title {
  font-weight: var(--fw-normal);
}

#footer .custom-page-link,
#footer .category-link,
#footer .cms-page-link {
  font-size: var(--fs-sm);
  padding: var(--sp-2) 0;
}

#footer ul li:last-of-type a {
  padding-bottom: 0px;
}

#footer .copyright {
  background: var(--bg--dark-gray);
  padding: var(--sp-4) 0;
  font-size: var(--fs-sm);
  color: var(--dark-gray);
}

#footer .copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .copyright a {
  color: var(--light-gray);
}

#footer .copyright a:hover {
  color: var(--bs-body-color);
  text-decoration: underline;
}

#footer div#contact-infos {
  font-size: var(--fs-sm);
}

#footer .contact__infos {
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: var(--sp-5);
}

a.social-instagram:hover svg path {
  fill: var(--bs-primary);
}

a.social-facebook:hover svg path,
a.social-youtube:hover svg path,
a.social-tiktok:hover svg path {
  stroke: var(--bs-primary);
}

@media (min-width: 768px) {
  .footer .footer__block {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .footer__block__title + i {
    color: transparent !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23151515'%3E%3Cpath d='M480-371.92 267.69-584.23 296-612.54l184 183.77 184-183.77 28.31 28.31L480-371.92Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  #footer .footer__block:nth-child(2) {
    margin-bottom: 52px !important;
  }
}

/* FOOTER - end */

/* BLOCKCART MODAL - start */
.blockcart-modal .modal-title {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
}

.blockcart-modal .modal-title i {
  font-size: var(--fs-xxl);
  line-height: 1;
  font-weight: 100;
  color: var(--bs-primary);
}

.blockcart-modal p.h6.product-name {
  font-weight: var(--fw-medium);
  font-size: 15px;
}

.blockcart-modal__summery {
  font-size: var(--fs-xs);
  padding: var(--sp-4);
  background: var(--primary-opacity);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-primary-border-light);
}

.blockcart-modal__summery span.label {
  font-weight: var(--fw-medium);
}

.blockcart-modal__total.product-total {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--bs-body-color);
  margin-bottom: 0px;
}

.blockcart-modal__property,
.blockcart-modal .product-quantity {
  font-size: var(--fs-xs);
  color: var(--dark-gray);
}

.blockcart-modal__property strong,
.blockcart-modal .product-quantity strong {
  font-weight: var(--fw-medium);
}

/* BLOCKCART MODAL - end */

/* CATEGORY LISTING - start */
h1.h2 {
  font-size: 24px;
  font-weight: var(--fw-normal);
}

#category h1 {
  font-weight: var(--fw-normal);
  font-size: var(--fs-xxl);
}

.category-cover img {
  border-radius: var(--radius-sm);
}

.left-block {
  border-bottom: none;
}

.js-search-filters-clear-all {
  font-size: var(--fs-xs);
  color: var(--dark-gray);
}

div#subcategories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subcategory__wrapper {
  margin-bottom: 0px;
}

a.subcategory {
  padding: var(--sp-2) var(--sp-4);
  background: var(--primary-opacity);
  border: 1px solid var(--color-primary-border-light);
}

.subcategory__name {
  color: var(--bs-primary);
  font-size: var(--fs-xs);
  margin: 0;
  line-height: 1;
}

.left-block__title,
.search-filters .left-block__title {
  font-size: 16px;
  font-weight: var(--fw-normal);
  color: var(--bs-body-color);
  margin-bottom: var(--sp-2);
}

.category-tree__child .category-tree__list {
  row-gap: 0px;
}

.category-tree__item__header.nosplit {
  padding: 8px 0;
}

.accordion--category .accordion-body {
  padding-top: 0px;
  padding-bottom: 4px;
}

.category-tree__child
  .category-tree__list[data-depth="0"]
  > .category-tree__item
  > .category-tree__item__header
  .category-tree__item__link {
  font-weight: var(--fw-normal);
  font-size: var(--fs-sm);
  color: var(--bs-body-color);
}

.category-tree__item__header .category-tree__item__link {
  font-size: var(--fs-sm);
  color: var(--dark-gray);
}

.facet .accordion-button {
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal) !important;
}

.search-filters .search-filters-link {
  color: var(--dark-gray);
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
}

.search-filters .js-faceted-values {
  color: var(--light-gray);
}

.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.search-filters span.align-middle {
  font-weight: var(--fw-normal);
  color: var(--dark-gray);
  font-size: var(--fs-sm);
  cursor: pointer;
}

.custom-checkbox input[type="checkbox"] + span.color.active,
.custom-checkbox input[type="checkbox"] + span.color:hover,
.variant-links .color.active,
.variant-links .color:hover,
label .color.active,
label .color:hover {
  border-color: var(--bs-primary);
}

.total-products,
.pagination-number {
  font-size: var(--fs-sm);
  color: var(--dark-gray);
}

#js-product-list-top .align-middle {
  color: var(--dark-gray);
}

#js-active-search-filters p {
  font-weight: var(--fw-normal) !important;
}

#js-active-search-filters a {
  font-size: var(--fs-sm);
  color: var(--dark-gray);
  font-size: 13px;
}

#js-active-search-filters a i {
  font-size: 16px;
  color: var(--bs-body-color);
}

.layout-left-column .products-selection .select-title {
  font-size: var(--fs-sm);
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3) !important;
  color: var(--dark-gray);
}

.layout-left-column .products-selection .select-title i.material-icons {
  font-size: 18px;
}

.products-sort-order a.dropdown-item {
  font-size: 13px;
  padding: 6px var(--sp-2);
  color: var(--dark-gray);
}

.products-sort-order .dropdown-menu {
  padding: var(--sp-2) 0;
  top: var(--sp-2) !important;
}

.products-sort-order a.dropdown-item:first-of-type {
  padding-top: 0px;
}

.products-sort-order a.dropdown-item:last-of-type {
  padding-bottom: 0px;
}

a.subcategory:hover {
  border-color: var(--bs-primary);
}

a.subcategory:hover p.subcategory__name {
  color: var(--bs-primary);
}

.page-not-found .h4 {
  font-weight: var(--fw-normal);
  font-size: 18px;
}

.page-not-found p:nth-of-type(2) {
  color: var(--dark-gray);
}

/* ----- SEO CATEGORY DESC  */
#category-bottom .category-title {
  font-weight: var(--fw-normal);
  font-size: var(--fs-xxl);
}

#category-bottom .toggle-checkbox {
  display: none;
}

#category-bottom #category-additional-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

#category-bottom .toggle-checkbox:checked ~ #category-additional-description {
  max-height: 1000px;
}

#category-bottom .read-more-btn {
  display: block;
  color: var(--bs-primary);
  cursor: pointer;
  border-bottom: 2px solid var(--bs-primary);
  font-size: var(--fs-sm);
  /* margin-top: -8px; */
  width: fit-content;
}

#category-bottom .read-more-btn::after {
  content: "Pokaż więcej";
}

#category-bottom .toggle-checkbox:checked ~ .read-more-btn::after {
  content: "Zwiń";
}

#category-bottom #category-main-description *,
#category-bottom #category-additional-description * {
  color: var(--dark-gray);
  font-size: var(--fs-sm);
  text-align: justify;
}

/* ----- SEO CATEGORY DESC */
.pagination--custom {
  margin: 0;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: var(--fs-sm);
  --bs-pagination-color: var(--dark-gray);
  --bs-pagination-bg: transparent;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: var(--color-light-border);
  --bs-pagination-border-radius: var(--radius-sm);
  --bs-pagination-hover-color: var(--dark-gray);
  --bs-pagination-hover-bg: transparent;
  --bs-pagination-hover-border-color: var(--light-gray);
  --bs-pagination-focus-color: var(--dark-gray);
  --bs-pagination-focus-bg: var(--bg-light-gray);
  --bs-pagination-focus-box-shadow: none;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: var(--bs-primary);
  --bs-pagination-active-border-color: var(--bs-primary);
  --bs-pagination-disabled-color: var(--dark-gray);
  --bs-pagination-disabled-bg: #f4f4f4;
  --bs-pagination-disabled-border-color: #f4f4f4;
  display: flex;
  list-style: none;
  padding-left: 0;
}

.pagination a {
  height: 100%;
}

.pagination .page-item:not(:first-child) .page-link {
  margin-left: initial;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  padding: 0 6px;
}

.pagination .page-item:first-child .page-link span,
.pagination .page-item:last-child .page-link span {
  display: none !important;
}

.pagination li.page-item:not(.active):has(a.disabled) {
  display: none;
}

/* CATEGORY LISTING - end */

/* PAGE LOADER - start */
.page-loader {
  --page-loader-background: #f4f4f460;
}

.page-loader .spinner-border {
  color: var(--bs-body-color) !important;
}

/* PAGE LOADER - end */

/* PRODUCT PAGE - start */
#product #notifications .alert-info {
  display: none;
}

#product .product__name {
  margin-bottom: 0;
}

#product .__category-name {
  width: fit-content;
  color: var(--bs-primary);
  padding: 2px var(--sp-2);
  background: var(--primary-opacity);
  border-radius: 2px;
  font-size: var(--fs-xs);
}

#product .__category-name:hover {
  text-decoration: underline;
}

#product .product__name,
#product .product__current-price {
  font-weight: var(--fw-medium);
}

#product .product__current-price {
  font-size: var(--fs-lg);
  line-height: 1;
}

#product .product__discount {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  color: var(--light-gray);
  flex-grow: 1;
  justify-content: space-between;
}

#product .product__tax-info {
  display: none !important;
}

#product .product__description-short {
  /* max-width: 600px; */
  margin-bottom: var(--sp-4);
}

#product .product__description-short.rich-text p {
  color: var(--dark-gray);
  font-size: var(--fs-xs);
  text-align: justify;
}

#product .product__add-to-cart {
  margin-bottom: 0;
}

#product .favorite,
#product .favorite_border {
  color: var(--bs-body-color);
}

#product .quantity-button input {
  height: 40px;
}

#product .wishlist-button-product {
  margin-left: 0;
}

#product .wishlist-button-add {
  box-shadow: none;
  width: fit-content;
}

#product .product-modal .wishlist-button-add {
  position: absolute;
  top: -80px;
  right: 20px;
  border-color: var(--bg--dark-gray);
}

@media (max-width: 998px) {
  #product .product-modal .wishlist-button-add {
    top: 0px;
  }
}

#product .product__variants {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#product .product__variants .variant {
  margin-bottom: 0px;
  width: fit-content;
}

#product .product__variants .form-select {
  font-size: var(--fs-sm);
  cursor: pointer;
}

#product label.form-label {
  font-size: 13px;
  font-weight: var(--fw-normal);
  color: var(--bs-body-color);
}

#product .tab-content {
  background: var(--bg-light-gray);
  padding: 32px;
  border-radius: var(--radius-sm);
}

#product .tab-content * {
  font-size: var(--fs-sm);
}

#product .tab-content p:last-of-type {
  margin-bottom: 0px;
}

#product .product__details,
#product .product__features {
  background: transparent;
  margin: 0;
}

#product .detail {
  border: 0;
  gap: var(--sp-2);
  line-height: 1;
  border-bottom: 1px solid var(--bg--dark-gray);
}

#product .detail .detail__left {
  text-align: right;
}

#product .detail .detail__title {
  font-weight: var(--fw-medium);
}

#product .detail .detail__right {
  color: var(--dark-gray);
}

#product .detail:first-of-type {
  padding-top: 0;
}

#product .detail:last-of-type {
  border: none;
  padding-bottom: 0;
}

#product .attachment {
  margin-bottom: var(--sp-4);
  border-bottom: 1px solid var(--bg--dark-gray);
  padding-bottom: var(--sp-4);
}

#product .attachment:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}

#product .attachment-title {
  font-weight: var(--fw-medium);
}

#product .attachment-title span {
  font-weight: var(--fw-normal);
  color: var(--dark-gray);
  font-size: var(--fs-xs);
}

#product .attachment-description {
  color: var(--dark-gray);
  font-size: var(--fs-xs);
}

#product .attachment-download {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  line-height: 1;
  color: var(--dark-gray);
  font-size: var(--fs-xs);
}

#product .attachment-download:hover {
  text-decoration: underline;
}

/* --------- product variants - start */
#product .product__variants .variant .radio-variants {
  gap: 8px;
}

#product .product__variants .variant .radio-variants .radio-variant {
  padding: 0;
  min-height: initial;
  line-height: 1;
}

#product li.radio-variant.form-check * {
  cursor: pointer;
}

#product li.radio-variant.form-check .form-check-input {
  display: none;
}

#product span.form-check-label.radio-label {
  font-size: 13px;
  color: var(--dark-gray);
  border: 1px solid var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2) 10px var(--sp-2);
  border-radius: var(--radius-sm);
  opacity: 0.5;
  transition: 0.15s ease-in;
}

#product .form-check-input:checked ~ .form-check-label.radio-label {
  color: var(--bs-body-color);
  border-color: var(--dark-gray);
  opacity: 1;
}

#product .form-check-input:not(:checked) ~ .form-check-label.radio-label:hover {
  opacity: 0.75;
}

/* --------- product variants - end */

#product .product__images li.thumbnail {
  cursor: pointer;
}

.page-product .product__images__modal-opener {
  border-radius: var(--radius-sm);
  height: 36px;
  width: 36px;
  min-width: initial;
}

.page-product .product__images__modal-opener i {
  font-size: 21px;
  color: var(--bs-body-color);
}

#product p.sku {
  font-size: var(--fs-xs);
  background: var(--bg-light-gray);
  padding: 2px var(--sp-2);
  border-radius: 2px;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

#product p.sku strong {
  font-weight: var(--fw-medium);
}

#product .product-modal {
  padding: var(--sp-4);
  border: 1px solid var(--bg--dark-gray);
  border-radius: var(--radius-sm);
  height: fit-content;
  max-width: 100%;
  min-width: 360px;
}

#product .product__left .product-flags {
  left: initial;
  right: 0;
}

#product .product__left .product-flags .badge.discount {
  display: none;
}

#product #content-wrapper .product__col {
  position: relative;
}

#product .title-details {
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--bg--dark-gray);
}

#product .product-modal span.product__price-regular {
  margin-top: 2px;
}

#product .product__actions .detail {
  justify-content: unset;
  padding: 8px 0;
}

#product .product__actions .detail:first-of-type {
  padding-top: 0px;
}

#product .product__actions .detail:last-of-type {
  padding-bottom: 0px;
}

#product .product__actions .detail .detail__left {
  text-align: left;
}

#product .product__actions .detail .detail__title,
#product .product__actions .detail .detail__right span {
  font-size: var(--fs-xs);
}

#product .product-modal-infos svg {
  min-width: 22px;
  margin-right: 8px;
}

#product .availability-container span {
  font-weight: var(--fw-medium);
}

#product .availability-container.in_stock span {
  color: var(--color-green);
}

#product .availability-container.unavailable span {
  color: var(--color-red);
}

#product .order-call span {
  text-decoration: underline;
}

#product span.fast-delivery {
  color: var(--color-green);
  font-weight: var(--fw-medium);
}

/* PRODUCT PAGE - end */

/* BLOCK REASSURANCE - start */
.blockreassurance_product {
  margin-top: 0px;
  padding: var(--sp-4) 0;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-4);
}

.blockreassurance_product > div {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.blockreassurance_product .clearfix {
  display: none;
}

.blockreassurance_product svg.item-product {
  margin-right: 0px;
  padding-top: 0px;
  margin-top: 0;
  height: 40px;
  width: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background-color: #f2f9f3;
}

.blockreassurance_product p:last-of-type {
  margin-bottom: 0px;
}

.blockreassurance_product span {
  color: var(--bs-body-color) !important;
  font-weight: var(--fw-medium);
  font-size: var(--fs-xs);
  line-height: 1;
}

.blockreassurance_product p {
  color: var(--dark-gray) !important;
  font-size: var(--fs-xxs);
  line-height: 1.25;
}

.blockreassurance_product svg.item-product path {
  fill: transparent !important;
  stroke: var(--color-green) !important;
}

#cart .blockreassurance_product {
  flex-direction: column;
  background-color: transparent;
}

#cart .blockreassurance_product .item-product {
  height: 40px;
  width: 40px;
  margin-top: 0px;
  padding: 8px;
}

/* BLOCK REASSURANCE - end */

/* CART - start */
#cart button.wishlist-button-add {
  display: none;
}

#cart .cart-summary {
  border: 1px solid var(--bg--dark-gray);
  border-radius: var(--sp-1);
}

#cart .cart__item .product-line__title {
  color: var(--bs-body-color);
  font-weight: 400;
  font-size: var(--fs-sm);
}

#cart .cart__item .product-line__regular {
  font-size: var(--fs-xs);
  color: var(--light-gray);
}

#cart .product-line__prices.product-line__item {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: var(--sp-1) var(--sp-2);
  flex-wrap: wrap;
}

#cart .cart__item .product-line__current span {
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
}

#cart .cart__item .product-line__basic .badge {
  margin: 0px;
}

#cart .cart__item .product-line__actions a:after {
  display: none;
}

#cart .cart__item {
  position: relative;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 0;
}

#cart .cart__item:nth-of-type(odd) {
  background-color: var(--bg-light-gray);
}

#cart .cart__item .product-line__actions a {
  position: absolute;
  right: 16px;
  padding: 0;
  top: 16px;
  transition: 0.15s ease-in;
}

#cart .cart__item .product-line__actions a:hover svg path {
  stroke: var(--bs-body-color);
}

#cart .product-line__content,
#cart .product-line__informations {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#cart .product-line__info.product-line__item {
  font-size: var(--fs-xs);
  color: var(--dark-gray);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

#cart .product-line__info.product-line__item span {
  font-size: var(--fs-xxs);
}

#cart .quantity-button input {
  background: transparent;
  border-radius: var(--sp-1);
  color: var(--bs-body-color);
  max-width: 3rem;
  font-size: var(--fs-sm);
  line-height: 1;
}

#cart .quantity-button button {
  border: none;
}

#cart .quantity-button button .material-icons {
  font-size: var(--fs-md);
}

#cart .quantity-button div.input-group {
  justify-content: center;
}

#cart .product-line__informations span.product-line__price {
  font-size: var(--fs-sm);
  line-height: 1;
  font-weight: var(--fw-medium);
  color: var(--bs-body-color);
}

#cart .continue-shopping {
  width: fit-content;
}

#cart .cart-summary__line span {
  font-size: var(--fs-sm);
}

#cart .cart-summary__line.cart-total span {
  font-size: var(--fs-md);
}

#cart .cart-summary__totals {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

#cart .cart-summary__totals span {
  font-weight: var(--fw-medium);
}

#cart .cart-summary hr {
  margin: 0.5rem 0;
}

#cart div#cart-subtotal-products,
#cart div#cart-subtotal-discount,
#cart div#cart-subtotal-shipping {
  padding-top: 0px;
}

#cart .cart-voucher button {
  font-size: var(--fs-sm);
}

#cart span.cart-voucher__name {
  font-size: var(--fs-sm);
  line-height: 1;
}

#cart ul.cart-voucher__list {
  margin-bottom: 0;
}

#cart li.cart-voucher__item {
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 8px 0;
}

#cart .cart-voucher span.fw-bold {
  font-weight: var(--fw-medium) !important;
  font-size: var(--fs-sm);
  line-height: 1 !important;
  margin-top: 2px;
}

#cart .cart-voucher a svg path {
  transition: 0.15s ease-in;
}

#cart .cart-voucher a:hover svg path {
  stroke: var(--bs-body-color);
}

.cart-voucher .form-control {
  font-size: var(--fs-sm);
}

#cart .form-control:focus,
#cart .modal.product-comment-modal .form-control:focus,
#cart .modal.product-comment-modal textarea:focus {
  box-shadow: none;
  border-color: var(--bs-body-color);
}

#cart .breadcrumb__wrapper {
  visibility: hidden;
  height: 0;
}

/* CART - end */

/* CONTACT - START */

.page-contact .form-control:focus,
.page-contact .form-select:focus {
  border-color: #151515;
  box-shadow: none;
}

.page-contact label.form-label {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 1px;
}

.page-contact .form-control,
.page-contact select.form-select {
  border: 1px solid #cac8c8;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 500ms;
  padding: 6px 12px;
  font-size: 14px;
  outline: none;
  min-height: 33px;
  margin-top: 1px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .contact-form {
    margin-top: 1.5rem !important;
  }
}

.page-contact .faq-accordion {
  padding: 10px 0px 30px;
}

.page-contact .faq-input {
  display: none;
}

.page-contact .faq-question {
  display: block;
  padding: 18px 20px;
  background-color: var(--bg-light-gray);
  color: #151515;
  font-size: 1.1rem;
  font-weight: 400;
  cursor: pointer;
  border-radius: 8px;
  margin-top: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 60px;
  user-select: none;
}

.page-contact .faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 300;
  color: #151515;
  transition: transform 0.3s ease;
}

.page-contact .faq-input:checked + .faq-question::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}

.page-contact .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.7;
}

.page-contact .faq-input:checked + .faq-question + .faq-answer {
  max-height: 500px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.page-contact .faq-input:checked + .faq-question {
  border-radius: 8px 8px 0 0;
}

/* Responsywność */
@media (max-width: 768px) {
  .page-contact .faq-section {
    margin: 0 auto;
    border-radius: 8px;
  }

  .page-contact .faq-header {
    padding: 0px 0px;
  }

  .page-contact .faq-question {
    font-size: 1rem;
    padding: 16px 15px;
    padding-right: 50px;
    font-weight: 500;
  }

  .page-contact .faq-question::after {
    right: 15px;
  }

  .page-contact .faq-accordion {
    padding: 10px 0px 25px;
  }

  .page-contact .faq-answer {
    padding: 0 0px;
  }

  .page-contact .faq-input:checked + .faq-question + .faq-answer {
    padding: 18px 15px;
  }
}

.page-contact .address-card {
  background: var(--bg-light-gray);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-contact .address-card h3 {
  color: #151515;
  font-weight: 500;
  display: inline-block;
}

.page-contact .address-card address p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-contact .address-card a {
  margin-top: auto;
}

.contact-form .form-footer {
  justify-content: flex-start;
}

@media (max-width: 768px) {
  .page-contact .contact-addresses {
    padding: 0px 0 0;
  }

  .page-contact .address-card {
    padding: 20px;
    margin-bottom: 20px;
  }
}

.page-contact #left-column:has(.ps_categorytree) {
  display: none;
}

.page-contact #content-wrapper {
  width: 100% !important;
}

@media (max-width: 768px) {
  .page-contact .contact-form {
    width: 100% !important;
  }
}

.page-contact .h2.contact__title {
  font-size: 1.5rem !important;
}

.contact__item svg {
  margin-right: 14px;
}

/* CONTACT - END */
/* MY ACCOUNT - START */

#authentication label,
#registration label,
#identity label,
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  label,
.wishlist-modal label {
  font-weight: 400;
  width: 100%;
  text-align: left;
  font-size: 14px;
  margin-bottom: 1px;
}

#authentication input[type="text"],
#authentication input[type="password"],
#authentication input[type="email"],
#registration input[type="text"],
#registration input[type="password"],
#registration input[type="email"],
#identity input[type="text"],
#identity input[type="password"],
#identity input[type="email"],
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  input[type="text"],
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  input[type="password"],
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  input[type="email"],
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  input[type="tel"],
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  textarea,
.wishlist-modal input[type="text"] {
  border: 1px solid #cac8c8;
  box-shadow: none;
  transition: border-color 500ms;
  padding: 6px 12px;
  font-size: 14px;
  outline: none;
  min-height: 33px;
  margin-top: 1px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

#authentication input[type="text"]:focus,
#authentication input[type="password"]:focus,
#authentication input[type="email"]:focus,
#registration input[type="text"]:focus,
#registration input[type="password"]:focus,
#registration input[type="email"]:focus,
#identity input[type="text"]:focus,
#identity input[type="password"]:focus,
#identity input[type="email"]:focus,
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  input[type="text"]:focus,
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  input[type="password"]:focus,
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  input[type="email"]:focus,
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  input[type="tel"]:focus,
:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #password
  )
  textarea:focus,
.wishlist-modal input[type="text"]:focus {
  border-color: #151515;
  box-shadow: none;
}

:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr
  )
  .alert.alert-info {
  background: var(--primary-opacity);
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
}

#registration div:has([for="field-birthday"]) div.form-text:last-child,
#identity div:has([for="field-birthday"]) div.form-text:last-child {
  display: none;
}

#module-blockwishlist-lists .text-primary {
  color: var(--bs-primary) !important;
}

#password header {
  border-bottom: 0 !important;
}

#authentication h1,
#registration h1,
#password h1 {
  margin-top: 48px;
}

#authentication h1,
.login__register-prompt h2,
#registration h1,
#password h1,
:is(
    #identity,
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #order-detail,
    #addresses,
    #my-account
  )
  :is(h1, .h4, .h3) {
  font-weight: var(--fw-normal);
  font-size: 1.5rem;
}

.address.card .address__alias.h4,
#module-psgdpr-gdpr h2.h5 {
  font-size: 1.2rem !important;
}

#module-psgdpr-gdpr h2.h5 {
  font-weight: var(--fw-normal);
}

.login__register-prompt h2,
#registration h2 {
  font-size: 1.2rem;
  margin-top: 22px;
}

#registration input:focus {
  box-shadow: none;
}

#authentication #submit-login,
#registration #submit-login {
  margin-top: 14px;
}

.wishlist-modal.modal .text-primary,
.wishlist-modal.modal .text-primary i {
  color: #0073bd !important;
  fill: #0073bd;
}

.wishlist-toast.success {
  background-color: #0073bd !important;
  border-color: #0073bd !important;
}

#authentication .input-group.password-field .btn.btn-primary,
#registration .input-group.password-field .btn.btn-primary,
#identity .input-group.password-field .btn.btn-primary {
  background-color: #6c6c6c;
  border: none;
}

.input-group.password-field .btn.btn-primary .material-icons {
  font-size: 18px !important;
}

#registration .form-check-input:checked,
#identity .form-check-input:checked {
  background-color: #151515;
  border-color: #151515;
}

.login__forgot-password a,
.register-form__login-prompt a {
  text-decoration: underline;
}

.login__forgot-password a:hover,
.register-form__login-prompt a:hover {
  text-decoration: none;
}

.account-menu .link-item svg {
  fill: var(--dark-gray);
  margin-right: 10px;
  min-width: 24px;
}

.account-menu a.active .link-item svg {
  fill: var(--bs-primary);
}

#my-account #content .link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  text-align: center;
  height: 100%;
}

@media (min-width: 768px) {
  #my-account #content .customer-link a span:hover svg,
  #my-account #content .customer-link__link span:hover svg {
    fill: white;
  }

  #my-account #content .customer-link__link span:hover svg path,
  #my-account #content span.link-item:hover svg path {
    stroke: var(--bs-primary);
  }
}

#my-account #content .link-item > svg {
  margin-bottom: 14px;
  font-weight: 600;
  fill: #151515;
  stroke-width: 4px;
  stroke: #f8f9fa;
  width: 48px;
  height: 48px;
}

#my-account #content .link-item > svg > path {
  stroke-width: 28px;
  transition: all 0.3s ease;
}

:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #identity,
    #order-detail,
    #password
  )
  .form-check-input:focus {
  box-shadow: none;
}

:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #identity,
    #order-detail,
    #password
  )
  .form-select:focus {
  border-color: #151515;
  box-shadow: none;
}

:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #identity,
    #order-detail,
    #password
  )
  select.form-select {
  border: 1px solid #cac8c8;
  border-radius: 0;
  box-shadow: none;
  transition: border-color 500ms;
  padding: 6px 12px;
  font-size: 14px;
  outline: none;
  min-height: 33px;
  margin-top: 1px;
  border-radius: 4px;
}

:is(
    #address,
    #history,
    #order-slip,
    #discount,
    #module-blockwishlist-lists,
    #module-psgdpr-gdpr,
    #identity,
    #order-detail
  )
  p.h6 {
  font-weight: 400;
  font-size: var(--fs-sm);
  margin-bottom: 1rem;
}

.wishlist-footer-links {
  margin-top: 40px;
}

.address__content {
  font-weight: 400;
  font-size: 14px;
}

.order-message-form.box header {
  border-bottom: 0 !important;
}

#module-blockwishlist-lists .wishlist-list-item-title {
  font-weight: 500;
}

.account-menu > a:hover svg {
  fill: var(--bs-primary);
}

.form-check input,
.form-check label {
  cursor: pointer;
}

.password-strength-feedback .progress {
  height: 6px;
}

.password-requirements-length i {
  font-size: 22px;
}

.password-requirements-score {
  display: none !important;
}

.wishlist-list-empty {
  font-size: 16px !important;
}

#module-blockwishlist-lists .wishlist-footer-links {
  display: none;
}

.page-history .orders .order__label,
.page-order-detail .orders .order__label,
.page-history .thead-default tr th,
.page-order-detail .thead-default tr th {
  font-weight: 500;
}

.modal-cancel.btn.btn-secondary {
  font-size: 14px !important;
}

.badge.bright {
  color: white;
}

:is(#order-detail, #history, #discount) .table-wrapper {
  padding: 0 !important;
}

:is(#order-detail, #history, #discount) .table-wrapper th {
  font-weight: 500 !important;
}

.address__alias.h4.card-title {
  font-weight: 500;
}

.wishlist-list-item:hover .wishlist-list-item-title {
  color: #0073bd !important;
}

#order-detail .h3 {
  margin: 2.5rem 0 1rem;
}

#order-detail .addresses.row > div {
  margin-bottom: 0 !important;
}

#order-detail .addresses.row > div > .address.card {
  height: 100%;
}

.products-sort-order .dropdown-menu {
  top: var(--sp-5) !important;
}

.wishlist-products-container .sort-by-row .dropdown-menu.show {
  display: flex;
  flex-direction: column;
  right: 0;
  padding: 0;
}

.wishlist-products-container .sort-by-row .dropdown-menu.show a {
  padding: 8px;
  font-size: 14px !important;
}

.wishlist-products-container .sort-by-row .dropdown-menu.show a:hover {
  background-color: #f7f7f7;
}

.wishlist-products-container button i.material-icons {
  transition: all 0.1s ease-in-out;
}

.wishlist-products-container button[aria-expanded="true"] i.material-icons {
  transform: rotate(180deg);
}

.wishlist-products-item {
  margin: 0 !important;
}

.wishlist-product-price + .wishlist-product-combinations a {
  display: none;
}

.wishlist-products-container .wishlist-product {
  border: 1px solid var(--color-light-border);
  border-radius: var(--radius-sm);
}

.wishlist-products-list {
  gap: 20px !important;
}

.wishlist-products-container p.wishlist-product-title {
  color: var(--bs-body-color);
  font-weight: var(--fw-normal);
  font-size: var(--fs-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 35px;
}

.wishlist-products-container .wishlist-product-right {
  padding: 0 6px 4px;
}

.wishlist-products-item .wishlist-product-price-promo {
  color: var(--light-gray);
  font-size: var(--fs-xs);
  font-weight: 400 !important;
  line-height: normal !important;
  margin-top: unset !important;
}

.wishlist-products-container .wishlist-product-title {
  line-height: 1.3;
}

.wishlist-product-price .wishlist-product-price-promo {
  display: flex;
  align-items: center;
}

.wishlist-products-item .wishlist-product-price {
  font-weight: 400;
}

.wishlist-products-container .wishlist-product-price {
  display: flex;
  flex-direction: row-reverse;
  gap: 6px;
  justify-content: flex-end;
  font-size: 14px !important;
  margin-bottom: 62px;
}

.wishlist-products-container .wishlist-button-add {
  border-radius: var(--radius-sm) !important;
  height: 30px;
  width: 30px;
  min-width: 30px;
}

.wishlist-products-container .wishlist-button-add i.material-icons {
  font-size: 20px;
}

.wishlist-products-container-header .sort-by-row {
  justify-content: flex-end;
}

.wishlist-products-list {
  margin: 0 !important;
  padding: 0 !important;
}

.wishlist-products-container-header .wishlist-products-count {
  font-size: 0.85rem !important;
  transform: translateY(-1px);
  display: inline-block;
}

.wishlist-products-container .sort-by-row .products-sort-order {
  width: auto !important;
}

.wishlist-products-container-header > h1 {
  color: var(--bs-body-color);
  font-weight: var(--fw-normal);
  font-size: 24px !important;
}

.wishlist-products-container .wishlist-product-combinations-text {
  min-height: auto;
}

.wishlist-products-item .btn.wishlist-product-addtocart {
  text-decoration: underline;
  font-size: 14px;
}

.wishlist-products-item .btn.wishlist-product-addtocart:hover {
  text-decoration: none;
}

.wishlist-products-container .wishlist-product-availability {
  top: 10px;
  left: 10px;
  font-weight: 500;
  background: white;
  z-index: 5;
  padding: 2px 8px;
  border-radius: 2px;
  min-width: auto;
  transform: none;
  height: fit-content;
}

.row.addresses .addresses__new-address:hover i {
  transform: scale(1) !important;
}

#addresses .address.card {
  height: 100%;
}

.customer-link a span,
.customer-link__link span {
  background: #f7f7f7 !important;
}

#content .customer-link a span:hover,
#content .customer-link__link span:hover {
  background: var(--bs-primary) !important;
}

#_desktop_user_info .dropdown-menu a svg,
#_desktop_user_info .dropdown-menu a .material-icons {
  margin-right: 6px !important;
  height: 22px !important;
  width: 22px !important;
}

.wishlist-footer-links {
  display: flex;
}

.wishlist-footer-links a {
  align-items: center;
  display: flex;
}

.wishlist-footer-links a svg {
  height: 20px;
  width: 20px;
  margin-right: 6px;
}

.wishlist-product-combinations {
  display: none !important;
}

#content .addresses__new-address i {
  background: #eff6fb;
}

.wishlist-product-bottom .wishlist-product-addtocart {
  display: none;
}

.wishlist-product-link {
  position: relative;
  display: block;
}

.wishlist-product-link::after {
  content: "Zobacz";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 16px;
  height: 40px;
  min-width: 120px;
  border-radius: 4px;
  color: var(--bs-dark);
  border: 1px solid var(--bs-dark);
  background: transparent;
  font-weight: 500;
  cursor: pointer;
  font-weight: 400;
  transition: background-color 0.25s ease-out, color 0.25s ease-out,
    border-color 0.25s ease-out;
  z-index: 1;
}

.wishlist-product-link:hover::after {
  background-color: var(--bs-dark);
  color: #fff;
  border-color: var(--bs-dark);
}

.wishlist-products-container
  .wishlist-products-item
  .wishlist-product-availability {
  display: none !important;
}

.wishlist-products-container
  .wishlist-products-item
  .wishlist-product-availability:has(i) {
  display: block !important;
  color: transparent !important;
}

.wishlist-products-container
  .wishlist-products-item
  .wishlist-product-availability:has(i)
  i {
  display: none !important;
}

.wishlist-products-list
  .wishlist-products-item
  .wishlist-product-bottom
  + .wishlist-product-availability {
  display: none !important;
}

.wishlist-products-container
  .wishlist-products-item
  .wishlist-product-availability:has(i) {
  content: "Niedostępny";
  background: #e2e2e4;
  color: #55575d !important;
  border: 1px solid #e2e2e4;
  position: relative;
  width: fit-content;
  font-weight: 400;
  border-radius: var(--bs-badge-border-radius);
}

.wishlist-products-item .wishlist-product .wishlist-button-add i {
  color: transparent !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'><path fill='%23000' d='M292.31-140q-29.92 0-51.12-21.19Q220-182.39 220-212.31V-720h-40v-60h180v-35.38h240V-780h180v60h-40v507.69Q740-182 719-161q-21 21-51.31 21H292.31ZM680-720H280v507.69q0 5.39 3.46 8.85t8.85 3.46h375.38q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46V-720ZM376.16-280h59.99v-360h-59.99v360Zm147.69 0h59.99v-360h-59.99v360ZM280-720v520-520Z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.wishlist-list
  .wishlist-list-item
  .wishlist-list-item-right:has(button + button)
  button:last-child
  i {
  color: transparent !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960'><path fill='%23000' d='M292.31-140q-29.92 0-51.12-21.19Q220-182.39 220-212.31V-720h-40v-60h180v-35.38h240V-780h180v60h-40v507.69Q740-182 719-161q-21 21-51.31 21H292.31ZM680-720H280v507.69q0 5.39 3.46 8.85t8.85 3.46h375.38q4.62 0 8.46-3.85 3.85-3.84 3.85-8.46V-720ZM376.16-280h59.99v-360h-59.99v360Zm147.69 0h59.99v-360h-59.99v360ZM280-720v520-520Z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 768px) {
  #my-account #content .link-item {
    justify-content: left !important;
  }

  html #content .customer-link a span:hover,
  #content .customer-link__link span:hover {
    background: #f7f7f7 !important;
  }

  #my-account #content .link-item svg {
    margin-right: 8px !important;
  }

  .footer__block.block-contact .logo {
    margin-bottom: 1rem;
  }

  #footer .copyright .container {
    flex-wrap: wrap;
    gap: var(--bs-gutter-x);
    justify-content: center !important;
  }

  #my-account .customer-link.row #psgdpr-link {
    width: 100% !important;
  }

  #my-account #content .link-item > svg {
    margin-bottom: 0px;
  }

  #my-account #content .link-item {
    width: 100% !important;
  }

  #my-account #content .link-item > svg {
    width: 24px;
    height: 24px;
  }

  .wishlist-products-container-header .products-sort-order {
    flex: none !important;
  }

  .wishlist-product-link {
    display: block !important;
  }

  .wishlist-product-image {
    width: 15.625rem !important;
    height: 15.625rem !important;
  }

  .wishlist-product {
    max-width: 15.625rem !important;
  }

  .wishlist-products-container .page-content.card {
    box-shadow: none !important;
  }

  .wishlist-products-list .wishlist-product-availability {
    display: block !important;
  }

  .wishlist-product-bottom .wishlist-button-add {
    position: absolute !important;
  }

  .wishlist-product-right .wishlist-product-title {
    margin-top: 4px !important;
  }

  .wishlist-products-item {
    width: auto !important;
  }

  .wishlist-product-availability.wishlist-product-availability-responsive {
    display: none !important;
  }

  .customer-link a span:hover,
  .customer-link__link span:hover {
    color: var(--bs-gray-800);
  }

  .orders.row {
    display: flex;
    gap: var(--bs-gutter-x);
  }

  #order-detail .addresses.row {
    gap: var(--bs-gutter-x);
  }

  #order-detail .order__header__right a {
    margin-top: 12px !important;
  }

  .wishlist-container .page-content.card {
    box-shadow: none !important;
  }
}

/* MY ACCOUNT - END */

/* PRODUCT CART - START */

/* html:has(#product .availability-container.unavailable span) .product__delivery__information {
    display: none !important;
} */

@media (max-width: 576px) {
  #product .product-modal .wishlist-button-add {
    top: unset !important;
    left: 316px !important;
    right: unset !important;
    position: static !important;
  }

  #product .product-modal {
    width: 100% !important;
    min-width: none;
  }
}

@media (min-width: 992px) and (max-width: 1120px) {
  #add-to-cart-or-refresh > div {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  #add-to-cart-or-refresh > div {
    flex-wrap: wrap;
  }
  #product .tab-content {
    padding: 16px !important;
  }
}

@media (max-width: 1150px) {
  /* #product .product.js-product-container {
    flex-direction: column;
  } */
}

@media (min-width: 992px) {
  #product .product-modal {
    position: sticky;
    top: 160px;
  }

  #product #add-to-cart-or-refresh,
  #product #add-to-cart-or-refresh > div:last-child,
  #product .product__actions.js-product-actions {
    height: 100% !important;
  }
}

/* PRODUCT CART - END */
