@charset "UTF-8";
.woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius);
}

.thumbs-product-gallery {
  margin-top: var(--spacing--xxs);
}
.thumbs-product-gallery__slide {
  padding: 0;
  margin: 0;
  border: 0;
  cursor: pointer;
}
.thumbs-product-gallery__slide-img {
  border-radius: var(--border-radius--small);
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumbs-product-gallery .swiper-button {
  top: 50%;
}

/*

.element {
  // Domyślnie mobile-first
  @include media('up', 'md') { ... }

  // Tylko tablet
  @include media('only', 'md') { ... }

  // Mobile
  @include media('down', 'sm') { ... }
}
*/
.c-related_products__title {
  font-family: var(--wp-preset--font-family--lexend-deca);
  font-size: var(--h-fz--lg);
  line-height: 1;
  margin-bottom: 3rem;
  font-weight: 400;
  text-align: center;
}
.c-related_products .product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing--md) var(--spacing--sm);
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (min-width: 768px) {
  .c-related_products .product-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.c-related_products .product-list::before {
  display: none !important;
}
.c-related_products .product-list > .content-product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  position: relative;
}
.c-related_products .product-list > .content-product .content-product__image-wrapper {
  overflow: hidden;
  border-radius: var(--border-radius);
  display: flex;
  aspect-ratio: 1/1;
  line-height: 1;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}
.c-related_products .product-list > .content-product .content-product__image-wrapper .size-woocommerce_thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: transform var(--trainsition);
}
.c-related_products .product-list > .content-product .woocommerce-loop-product__title {
  margin: var(--spacing--xxs) 0;
  font-size: var(--fz-14);
}
.c-related_products .product-list > .content-product .woocommerce-loop-product__link {
  position: relative;
  display: block;
}
.c-related_products .product-list > .content-product .woocommerce-loop-product__link:hover, .c-related_products .product-list > .content-product .woocommerce-loop-product__link:focus {
  text-decoration: none;
  color: var(--color-text);
}
.c-related_products .product-list > .content-product .woocommerce-loop-product__link:hover .content-product__image-wrapper .size-woocommerce_thumbnail, .c-related_products .product-list > .content-product .woocommerce-loop-product__link:focus .content-product__image-wrapper .size-woocommerce_thumbnail {
  transform: scale(1.1);
}
.c-related_products .product-list > .content-product .button {
  width: 100%;
}

.upsells__title {
  font-family: var(--wp-preset--font-family--lexend-deca);
  font-size: var(--h-fz--lg);
  line-height: 1;
  margin-bottom: 3rem;
  font-weight: 400;
  text-align: center;
}
.upsells .product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing--md) var(--spacing--sm);
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (min-width: 768px) {
  .upsells .product-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.upsells .product-list::before {
  display: none !important;
}

select {
  border-radius: var(--border-radius--small);
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(27, 27, 31, 0.2);
  width: 100%;
  font-family: var(--wp--preset--font-family--jost);
  font-weight: 600;
  font-size: var(--fz-14);
  line-height: 1.5;
  color: var(--color-text-opacity-50);
}

input[type=number] {
  width: 9rem;
  height: 2.625rem;
  border-radius: var(--border-radius--small);
  padding: 0 1rem;
  background-color: var(--color-border);
  font-family: var(--wp--preset--font-family--jost);
  font-size: var(--fz-16);
  line-height: 1.5;
  border: 0;
}

.product-attributes {
  line-height: 20px;
  width: 100%;
  border-spacing: 1rem;
}
.product-attributes .product-attributes-item__value, .product-attributes .product-attributes-item__label {
  width: 50%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.product-attributes .product-attributes-item__value a, .product-attributes .product-attributes-item__label a {
  font-weight: 600;
}
.product-attributes .product-attributes-item__value p, .product-attributes .product-attributes-item__label p {
  margin: 0;
}
.product-attributes .product-attributes-item__value:first-child, .product-attributes .product-attributes-item__label:first-child {
  font-weight: 600;
  text-align: right;
  padding-right: 1rem;
}
.product-attributes .product-attributes-item__value:last-child, .product-attributes .product-attributes-item__label:last-child {
  padding-left: 0.5rem;
}
.product-attributes .product-attributes-item:nth-child(2n) .product-attributes-item__value, .product-attributes .product-attributes-item:nth-child(2n) .product-attributes-item__label {
  background: var(--body-background--light);
}

.c-product-section {
  clear: both;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  zoom: 1;
}
.c-product-section:after, .c-product-section:before {
  content: "";
  display: table;
}
.c-product-section:after {
  clear: both;
}
.c-product-section.c-product-section--description, .c-product-section.c-product-section--additional_information {
  width: 100%;
}
@media (min-width: 768px) {
  .c-product-section.c-product-section--description, .c-product-section.c-product-section--additional_information {
    max-width: 70%;
    margin-right: 30%;
  }
}
.c-product-section.c-product-section--description.c-product-section--description p, .c-product-section.c-product-section--additional_information.c-product-section--description p {
  font-family: var(--wp--preset--font-family--jost);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 2rem;
}
.c-product-section.c-product-section--reviews {
  background: var(--body-background--light);
  position: relative;
  margin-left: calc(-1 * (var(--spacing--md)));
  margin-right: calc(-1 * (var(--spacing--md)));
  width: calc(100% + 2 * var(--spacing--md));
  padding-left: var(--spacing--md);
  padding-right: var(--spacing--md);
}
.c-product-section.c-product-section--reviews::after, .c-product-section.c-product-section--reviews::before {
  content: "";
  position: absolute;
  width: calc((100vw - var(--wp--style--global--content-size)) / 2 + var(--spacing--md));
  background: var(--body-background--light);
  height: 100%;
  left: 100%;
  top: 0;
}
.c-product-section.c-product-section--reviews::before {
  right: 100%;
  left: initial;
}
.c-product-section .c-product-section__title {
  font-family: var(--wp-preset--font-family--lexend-deca);
  font-size: var(--h-fz--lg);
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 400;
  margin-top: 0;
}
.c-product-section .c-product-section__title.woocommerce-reviews-title {
  text-align: center;
  margin-top: 2rem;
}
.c-product-section .woocommerce-noreviews {
  text-align: center;
}

.woocommerce-Reviews {
  margin-bottom: 2rem;
}
.woocommerce-Reviews .comment-respond {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.woocommerce-Reviews .comment-respond .comment-reply-title {
  font-family: var(--wp-preset--font-family--lexend-deca);
  font-size: var(--h-fz--md);
  margin-bottom: 2rem;
  line-height: 1;
  font-weight: 400;
}
.woocommerce-Reviews .comment-respond .comment-form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: var(--spacing--x);
  -moz-column-gap: var(--spacing--md);
       column-gap: var(--spacing--md);
}
@media (min-width: 768px) {
  .woocommerce-Reviews .comment-respond .comment-form {
    max-width: 50%;
  }
}
.woocommerce-Reviews .comment-respond .comment-form > * {
  width: 100%;
}
.woocommerce-Reviews .comment-respond .comment-form .required {
  color: #CA3131;
}
.woocommerce-Reviews .comment-respond .comment-form .comment-notes {
  text-align: center;
}
.woocommerce-Reviews .comment-respond .comment-form .comment-form-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.woocommerce-Reviews .comment-respond .comment-form .comment-form-author, .woocommerce-Reviews .comment-respond .comment-form .comment-form-email {
  width: calc(50% - var(--spacing--md) / 2);
}
.woocommerce-Reviews .comment-respond .comment-form .comment-form-author, .woocommerce-Reviews .comment-respond .comment-form .comment-form-email, .woocommerce-Reviews .comment-respond .comment-form .comment-form-comment {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.woocommerce-Reviews .comment-respond .comment-form .comment-form-author label, .woocommerce-Reviews .comment-respond .comment-form .comment-form-email label, .woocommerce-Reviews .comment-respond .comment-form .comment-form-comment label {
  font-weight: 600;
  font-size: var(--fz-14);
  line-height: 1.3;
}
.woocommerce-Reviews .comment-respond .comment-form .comment-form-author input, .woocommerce-Reviews .comment-respond .comment-form .comment-form-author textarea, .woocommerce-Reviews .comment-respond .comment-form .comment-form-email input, .woocommerce-Reviews .comment-respond .comment-form .comment-form-email textarea, .woocommerce-Reviews .comment-respond .comment-form .comment-form-comment input, .woocommerce-Reviews .comment-respond .comment-form .comment-form-comment textarea {
  box-sizing: border-box;
  width: 100%;
  background: var(--color-white);
  border: 1px solid rgba(43, 48, 48, 0.2);
  padding: 10px 15px;
  border-radius: 4px;
  font-size: var(--fz-14);
  line-height: 1.3;
  font-family: var(--wp--preset--font-family--jost);
}
.woocommerce-Reviews .comment-respond .comment-form .form-submit #submit {
  padding: 10px 30px !important;
  display: inline-block !important;
  font-size: 1em !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  margin: 0 !important;
  border-radius: 10px !important;
  transition: 300ms ease-in-out;
  cursor: pointer;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-primary) !important;
}
.woocommerce-Reviews .comment-respond .comment-form .form-submit #submit:visited, .woocommerce-Reviews .comment-respond .comment-form .form-submit #submit:focus, .woocommerce-Reviews .comment-respond .comment-form .form-submit #submit:active {
  color: var(--color-primary) !important;
}
.woocommerce-Reviews .comment-respond .comment-form .form-submit #submit:hover {
  background: transparent !important;
  color: var(--color-primary) !important;
}

.variations {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .variations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 991px) {
  .variations {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1200px) {
  .variations {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1400px) {
  .variations {
    grid-template-columns: repeat(3, 1fr);
  }
}
.variations__single {
  display: flex;
  gap: 0.5rem;
}
.variations__single-label {
  font-family: var(--wp--preset--font-family--jost);
  font-weight: 600;
  font-size: var(--fz-16);
  color: var(--color-text);
  line-height: 3;
}
.variations__single-value {
  width: 100%;
}

.single_variation_wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.woocommerce-variation.single_variation {
  display: flex;
  width: 100%;
}

.woocommerce div.product.product-type-simple form.cart {
  margin-bottom: 2em;
  display: flex;
  gap: 0.5rem;
}
.woocommerce div.product.product-type-simple form.cart::before {
  content: none;
}

.woocommerce-variation-availability p {
  margin: 0;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  font-size: var(--fz-16);
  color: var(--color-text-opacity-50);
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price ins {
  color: var(--color-red);
  text-decoration: none;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
  color: var(--color-text-opacity-50);
}

.delivery {
  font-family: var(--wp--preset--font-family--jost);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--spacing--md);
}
.delivery__available {
  font-weight: 500;
  margin: 0;
}
.delivery__row {
  display: flex;
  gap: 0.25rem;
}
.delivery__row-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.delivery__row-value {
  margin: 0;
}
.delivery__row-value strong {
  font-weight: 500;
}

.product_meta {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem 2rem;
  width: -moz-min-content;
  width: min-content;
  margin-bottom: var(--spacing--md);
}
@media (min-width: 768px) {
  .product_meta {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product_meta__single {
  line-height: 1.5;
  min-width: 14rem;
  display: inline-block;
  margin: 0;
}
.product_meta__heading {
  font-weight: 500;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button {
  padding: 0.5rem;
  display: inline-flex;
  font-size: var(--fz-12);
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  border-radius: var(--border-radius--small);
  transition: background-color 0.3s, color 0.3s ease-in-out;
  cursor: pointer;
  width: auto;
  box-sizing: border-box;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button:visited, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button:focus, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button:active {
  color: var(--color-white);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button:focus, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button:hover {
  background-color: transparent;
  color: var(--color-primary);
}
@media (min-width: 576px) {
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button {
    padding: 0.5rem 1rem;
  }
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button {
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button svg {
  height: 1.5rem;
  width: 1.5rem;
  transition: fill var(--trainsition);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button:focus svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button.add_to_cart_button:hover svg {
  fill: var(--color-primary);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button:not(.add_to_cart_button) {
  padding: 0.5rem;
  display: inline-flex;
  font-size: var(--fz-12);
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  border-radius: var(--border-radius--small);
  transition: background-color 0.3s, color 0.3s ease-in-out;
  cursor: pointer;
  width: auto;
  box-sizing: border-box;
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: 1px solid var(--color-secondary);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button:not(.add_to_cart_button):focus, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button:not(.add_to_cart_button):hover {
  background-color: transparent;
  color: var(--color-secondary);
}
@media (min-width: 576px) {
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button:not(.add_to_cart_button) {
    padding: 0.5rem 1rem;
  }
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button:not(.add_to_cart_button) {
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button:not(.add_to_cart_button) svg {
  height: 1.5rem;
  width: 1.5rem;
  transition: fill var(--trainsition);
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button:not(.add_to_cart_button):focus svg, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) .product a.button:not(.add_to_cart_button):hover svg {
  fill: var(--color-secondary);
}

.woocommerce .badges-wrapper {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  z-index: 9;
}
.woocommerce .badges-wrapper span.onsale, .woocommerce .badges-wrapper .label-new, .woocommerce .badges-wrapper .label-promotion {
  font-size: var(--fz-12);
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius--small);
  font-weight: 800;
  min-width: 3.625rem;
  text-align: center;
}
.woocommerce .badges-wrapper span.onsale {
  position: unset !important;
  min-height: auto;
  background-color: var(--color-gold);
}
.woocommerce .badges-wrapper .label-new {
  background-color: var(--color-green);
}
.woocommerce .badges-wrapper .label-promotion {
  background-color: var(--color-red);
}

.swiper-button {
  backdrop-filter: blur(1rem);
  background: var(--color-text);
  border-radius: var(--border-radius);
  opacity: 0.7;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 9;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  margin: 0;
  padding: 0;
  transition: opacity var(--trainsition);
  cursor: pointer;
}
.swiper-button--next {
  right: 0;
}
.swiper-button--prev {
  left: 0;
}
.swiper-button__icon {
  width: auto !important;
}
.swiper-button.swiper-button-disabled {
  cursor: auto;
}
.swiper-button.swiper-button-disabled, .swiper-button:hover, .swiper-button:focus {
  opacity: 1;
}

.woocommerce-page div.product {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 1200px) {
  .woocommerce-page div.product {
    gap: 4rem;
  }
}
.woocommerce-page div.product div.summary {
  float: none;
  clear: none;
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 991px) {
  .woocommerce-page div.product div.summary {
    width: calc(100% - (30rem + var(--spacing--lg)));
  }
}
.woocommerce-page div.product div.summary .badges-wrapper {
  position: unset;
  flex-direction: row;
  margin-bottom: 1.25rem;
}
.woocommerce-page div.product div.images {
  float: none;
  max-width: 30rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-page div.product .product_title {
  font-family: var(--wp-preset--font-family--lexend-deca);
  font-weight: 400;
  font-size: var(--h-fz--xl);
  line-height: 1;
  margin: 0 0 2rem;
}

.add-to-cart--fixed {
  display: flex;
  gap: 0.75rem;
  position: fixed;
  bottom: 5rem;
  z-index: 50;
  background: var(--body-background--light);
  left: 0;
  right: 0;
  padding: 1rem;
  max-width: var(--wp--style--global--content-size);
  justify-content: center;
  margin: 0 !important;
}
@media (min-width: 991px) {
  .add-to-cart--fixed {
    position: unset;
    background: transparent;
    padding: 0;
  }
}

.woocommerce .quantity .qty {
  width: 5rem;
}
@media (min-width: 991px) {
  .woocommerce .quantity .qty {
    width: 9rem;
  }
}

.woocommerce div.product form.cart div.quantity {
  float: none;
  margin: 0;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price {
  font-family: var(--wp--preset--font-family--lexend-deca);
  font-size: var(--fz-20);
  line-height: 1;
  color: var(--color-text-opacity-50);
  font-weight: 400;
  margin: 0;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price ins {
  font-size: var(--fz-40);
  color: var(--color-red);
  text-decoration: none;
  font-weight: 400;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product.product-type-simple p.price {
  display: flex;
  flex-direction: column;
}

.woocommerce div.product form.cart .button {
  padding: 0.5rem;
  display: inline-flex;
  font-size: var(--fz-12);
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  border-radius: var(--border-radius--small);
  transition: background-color 0.3s, color 0.3s ease-in-out;
  cursor: pointer;
  width: auto;
  box-sizing: border-box;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}
.woocommerce div.product form.cart .button:visited, .woocommerce div.product form.cart .button:focus, .woocommerce div.product form.cart .button:active {
  color: var(--color-white);
}
.woocommerce div.product form.cart .button:focus, .woocommerce div.product form.cart .button:hover {
  background-color: transparent;
  color: var(--color-primary);
}
@media (min-width: 576px) {
  .woocommerce div.product form.cart .button {
    padding: 0.5rem 1rem;
  }
}
.woocommerce div.product form.cart .button {
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.woocommerce div.product form.cart .button svg {
  height: 1.5rem;
  width: 1.5rem;
  transition: fill var(--trainsition);
}
.woocommerce div.product form.cart .button:focus svg, .woocommerce div.product form.cart .button:hover svg {
  fill: var(--color-primary);
}/*# sourceMappingURL=netivo-woocommerce-product.css.map */