@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap");
* {
  font-family: "Asap", serif !important;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

:root {
  --szary: #6d6e71ff;
  --bialy: #ffffff;
  --czerwony:#ec1c24ff;
}

.scroll {
  background-color: var(--szary);
}

section {
  padding: 20px 10%;
}

/* Top Bar */
.top-bar {
  background-color: var(--szary);
  color: var(--bialy);
  padding: 10px 10%;
  font-size: 14px;
  position: relative;
}

.top-bar .top-bar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-bar .top-bar-container .contact-info span {
  margin-right: 15px;
  padding: 0 30px;
  font-size: 33px;
  font-weight: 600;
}

.top-bar .top-bar-container .contact-info span img {
  padding-right: 15px;
  padding-bottom: 2px;
}

.top-bar .top-bar-container .header-icons {
  position: absolute;
  right: 10%;
}

.top-bar .top-bar-container .header-icons .header-icons-images {
  width: 35px;
  height: 35px;
  display: inline-block;
  margin-left: 10px;
  position: relative;
}

.top-bar .top-bar-container .header-icons .header-icons-images a {
  color: #fff;
}

.top-bar .top-bar-container .header-icons .header-icons-images a:hover {
  color: #ccc;
}

.top-bar .top-bar-container .header-icons .header-icons-images a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-bar .top-bar-container .header-icons .header-icons-images .cart-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.top-bar .top-bar-container .header-icons .header-icons-images .cart-count {
  background: #d00000;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
}

.top-bar .top-bar-container .header-icons .header-icons-images .mini-cart-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 10px;
}

.top-bar .top-bar-container .header-icons .header-icons-images .mini-cart-wrapper .woocommerce-mini-cart {
  max-height: 400px;
  overflow-y: auto;
}

.top-bar .top-bar-container .header-icons .header-icons-images .mini-cart-wrapper.visible {
  display: block;
}

/* Main Header */
.main-header {
  background-color: var(--bialy);
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #ddd;
  -webkit-box-shadow: 0 0 30px var(--szary);
          box-shadow: 0 0 30px var(--szary);
  /* Breadcrumb */
}

.main-header .main-header-container {
  margin: 0 auto;
  text-align: center;
  /* Górna kreska (before) */
  /* Dolna kreska (after) */
  /* Aktywna wersja menu (np. dla efektu X) */
}

.main-header .main-header-container .logo {
  width: 575px;
  height: 120px;
  margin: 0 auto;
}

.main-header .main-header-container .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-header .main-header-container .main-nav {
  text-align: center;
  margin: 0 auto;
}

.main-header .main-header-container .main-nav .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

.main-header .main-header-container .main-nav .nav-menu li {
  margin-right: 20px;
  display: inline-block;
}

.main-header .main-header-container .main-nav .nav-menu li a {
  font-family: "Asap", serif;
  text-decoration: none;
  color: #333;
  font-weight: 300;
  font-size: 28px;
  text-transform: uppercase;
}

.main-header .main-header-container .main-nav .nav-menu li a:hover {
  font-weight: 400;
}

.main-header .main-header-container #menu-btn {
  cursor: pointer;
  z-index: 10000;
  margin-top: 1rem;
  display: none;
}

.main-header .main-header-container .burger-menu {
  position: relative;
  width: 30px;
  /* Szerokość kreski */
  height: 3px;
  /* Wysokość kreski */
  background-color: var(--czerwony);
  cursor: pointer;
}

.main-header .main-header-container .burger-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  /* Odległość od głównej kreski */
  width: 30px;
  height: 3px;
  background-color: var(--czerwony);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-header .main-header-container .burger-menu::after {
  content: '';
  position: absolute;
  top: 10px;
  /* Odległość od głównej kreski */
  width: 30px;
  height: 3px;
  background-color: var(--czerwony);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.main-header .main-header-container .burger-menu.active::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.main-header .main-header-container .burger-menu.active::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.main-header .main-header-container .burger-menu.active {
  background-color: transparent;
  /* Ukryj środkową kreskę */
}

.main-header .breadcrumb {
  font-size: 14px;
  color: #777;
  padding: 10px 0;
}

.main-header .breadcrumb .breadcrumb-container {
  font-family: "Asap", serif;
  color: #555;
  margin-left: 10px;
  font-size: 20px;
}

.main-header .breadcrumb .breadcrumb-container a {
  font-family: "Asap", serif;
  color: #555;
  font-size: 20px;
  text-decoration: none;
}

.main-header .breadcrumb .breadcrumb-container a:hover {
  text-decoration: underline;
}

/* Style dla stopki */
.site-footer {
  background-color: #0d1a26;
  color: #fff;
  padding: 40px 10%;
  font-size: 14px;
}

.site-footer .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}

.site-footer .footer-container .column-width {
  min-width: 420px;
}

.site-footer .footer-container .footer-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.site-footer .footer-container .footer-column h3 {
  color: #e63946;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
}

.site-footer .footer-container .footer-column ul {
  list-style: none;
  padding: 0;
}

.site-footer .footer-container .footer-column ul li {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  padding: 3px 0;
}

.site-footer .footer-container .footer-column ul li img {
  margin-right: 20px;
  width: 30px;
}

.site-footer .footer-container .footer-column ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.site-footer .footer-container .footer-column ul li a:hover {
  text-decoration: underline;
}

.site-footer .footer-social {
  text-align: center;
  position: relative;
  margin: 20px 0;
}

.site-footer .footer-social a {
  margin: 0 10px;
}

.site-footer .footer-social a:hover {
  color: #e63946;
}

.site-footer .footer-social::before {
  content: '';
  width: 44%;
  height: 2px;
  background-color: var(--bialy);
  position: absolute;
  top: 17px;
  left: 0;
}

.site-footer .footer-social::after {
  content: '';
  width: 44%;
  height: 2px;
  background-color: var(--bialy);
  position: absolute;
  top: 17px;
  right: 0;
}

.site-footer .footer-bottom {
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
}

.site-footer .footer-bottom a {
  color: var(--bialy);
  font-size: 12px;
}

/* ------------------------------------------------------------  woocommerce ------------------*/
.product-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  /* Stylizacja pól niestandardowych */
  /* Czerwona linia */
  /* Stylizacja pól niestandardowych */
}

.product-layout .product-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25rem;
          flex: 1 1 25rem;
}

.product-layout .product-left .custom-product-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.product-layout .product-left .custom-product-images .main-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-layout .product-left .custom-product-images .secondary-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-layout .summary {
  margin-bottom: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25rem;
          flex: 1 1 25rem;
  border-left: 2px solid #d50000;
  /* Czerwona linia po lewej stronie */
}

.product-layout .summary .product-custom-fields-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-layout .summary .product-custom-fields-box label {
  width: 20%;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 14px;
  padding: 0 10px;
  color: #333;
}

.product-layout .summary .product-custom-fields-box select {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.product-layout .summary .product-custom-fields-box .input-box {
  width: 80%;
}

.product-layout .summary .product-custom-fields-box .input-box input {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
}

.product-layout .summary .product-custom-fields-box .input-box .custom-fields-note {
  width: 80%;
  margin: 0.5rem auto;
  font-size: 12px;
  color: var(--czerwony);
  margin-top: -5px;
  line-height: 1.5;
}

.product-layout .summary .product-custom-fields-box .quantity-add-to-cart {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.product-layout .summary .product-custom-fields-box .quantity-add-to-cart .quantity {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  overflow: hidden !important;
  margin-top: 0;
  padding: 2px 8px;
}

.product-layout .summary .product-custom-fields-box .single_add_to_cart_button {
  width: 40%;
  background-color: #d50000;
  color: var(--bialy);
  font-size: 16px;
  font-weight: bold;
  padding: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.product-layout .summary .product-custom-fields-box .single_add_to_cart_button:hover {
  background-color: var(--czerwony);
}

.product-layout .summary .product-custom-fields-box-image-one {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.product-layout .summary .product-custom-fields-box-image-one .image {
  width: 50px;
}

.product-layout .summary .product-custom-fields-box-image-one .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-layout .summary .product-custom-fields-box-image-one p {
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs {
  background-color: #d50000;
  text-align: center;
  color: var(--bialy);
  font-size: 16px;
  font-weight: bold;
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs:hover {
  background-color: var(--czerwony);
}

.product-layout .summary .product-custom-fields-box-image {
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  text-align: left;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
}

.product-layout .summary .product-custom-fields-box-image .image {
  width: 50px;
}

.product-layout .summary .product-custom-fields-box-image .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-layout .summary .product-custom-fields-box-image p {
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.product-layout .summary .product-custom-fields-box-image .check-shipping-costs {
  background-color: #d50000;
  text-align: center;
  color: var(--bialy);
  font-size: 16px;
  font-weight: bold;
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.product-layout .summary .product-custom-fields-box-image .check-shipping-costs:hover {
  background-color: var(--czerwony);
}

.product-layout .red-line {
  border: none;
  border-top: 2px solid #d50000;
  margin: 20px 0;
}

.woocommerce-result-count {
  background-color: var(--czerwony);
  color: var(--bialy);
  padding: 5px 10px;
  font-family: "Asap", serif !important;
  font-size: 14px;
  font-weight: 500;
}

.woocommerce-ordering .orderby {
  background-color: var(--czerwony);
  color: var(--bialy);
  padding: 5px 10px;
  font-family: "Asap", serif !important;
  font-size: 14px;
  font-weight: 500;
}

.products {
  padding: 10px;
}

.products .woocommerce-loop-product__title {
  color: #000;
}

.custom-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 9998;
  display: none;
}

.custom-success-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  z-index: 9999;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  display: none;
  width: 600px;
  max-width: 90%;
}

.modal-content {
  position: relative;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.product-details {
  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;
  margin-bottom: 20px;
}

.remove-product {
  background: red;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 50%;
}

.product-image img {
  max-width: 80px;
  border-radius: 5px;
}

.product-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 20px;
}

.product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.quantity-btn {
  background: #ddd;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.quantity-btn:hover {
  background: #bbb;
}

.product-price {
  font-weight: bold;
}

.product-total {
  text-align: right;
  margin-bottom: 20px;
}

.modal-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.modal-buttons .button {
  background: #f7f7f7;
  padding: 10px 15px;
  border: none;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.modal-buttons .button:hover {
  background: #ddd;
}

/* Podziękowanie */
.thankyou-container {
  text-align: center;
  padding: 20px;
  margin: 50px auto;
  max-width: 800px;
}

.thankyou-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.thankyou-message {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.thankyou-message strong {
  color: #000;
}

.thankyou-message a {
  color: #d00000;
  text-decoration: none;
}

.thankyou-message a:hover {
  text-decoration: underline;
}

/* Podziękowanie */
.custom-product-info {
  margin-top: 40px;
  text-align: center;
}

.custom-divider {
  border: 0;
  border-top: 2px solid #d00000;
  /* Czerwona linia */
  margin: 20px auto;
  width: 80%;
}

.product-opinion {
  margin: 20px 0;
}

.product-opinion p {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.trusted-shop-button {
  border: 1px solid #000;
  border-radius: 5px;
  padding: 10px 20px;
  background: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
}

.product-contact {
  margin-top: 20px;
}

.product-contact p {
  font-size: 16px;
  margin: 5px 0;
}

.product-contact strong {
  font-size: 18px;
  color: #000;
}

/* Główne sekcje */
.product-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;
  margin-bottom: 20px;
}

.product-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.product-rating {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.product-review-count {
  margin-left: 5px;
  font-size: 14px;
  color: #888;
}

.product-price-and-quality {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.product-price {
  font-size: 28px;
  color: #333;
  font-weight: bold;
}

.quality-check-button {
  background-color: #d50000;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 10px;
}

.quality-check-button:hover {
  background-color: #b00000;
}

/* Opis produktu */
.product-description {
  margin: 20px 0;
  font-size: 16px;
  color: #555;
}

/* Czerwona linia */
.red-line {
  border: none;
  border-top: 2px solid #d50000;
  margin: 20px 0;
}

/* Niestandardowe pola */
.product-custom-fields label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.product-custom-fields input,
.product-custom-fields select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.custom-fields-note {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

/* Waga i ilość */
.product-weight-quantity {
  margin-top: 20px;
}

.quantity-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}

.quantity-add-to-cart .single_add_to_cart_button {
  margin-left: 15px;
  background-color: #d50000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
}

.quantity-add-to-cart .single_add_to_cart_button:hover {
  background-color: #b00000;
}

/* Kod rabatowy i informacje */
.product-extra-info label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.product-extra-info input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.delivery-info {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

.check-shipping-costs {
  display: inline-block;
  margin-top: 10px;
  color: #d50000;
  text-decoration: none;
  font-weight: bold;
}

.check-shipping-costs:hover {
  text-decoration: underline;
}

/* Kontener z gwiazdkami, opiniami, ceną i przyciskiem */
.product-rating-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Wyrównanie elementów w pionie */
  margin-top: 10px;
  margin-bottom: 20px;
  /* Odstęp od kolejnych sekcji */
}

.product-rating-price .rating-price-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product-rating-price .rating-price-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-rating {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  /* Odstęp między gwiazdkami a ceną */
}

.product-rating .product-review-count {
  margin-left: 5px;
  font-size: 14px;
  color: #888;
}

.product-price {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* Przycisk "Zobacz badania jakościowe" */
.quality-check-button {
  background-color: #d50000;
  color: #fff;
  padding: 15px;
  text-align: center;
  margin: 0 0 0 auto;
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
  /* Zapobiega łamaniu tekstu */
}

.quality-check-button:hover {
  background-color: #b00000;
}

/* Kontener z gwiazdkami, opiniami, ceną i przyciskiem */
/* Nowa sekcja poniżej zakładek */
.product-bottom-section {
  text-align: center;
  margin-top: 30px;
  /* Sekcja opinii o produkcie */
  /* Sekcja kontaktu */
}

.product-bottom-section .red-line {
  border: none;
  border-top: 2px solid #d50000;
  /* Czerwona linia */
  margin: 20px auto;
  width: 100%;
}

.product-bottom-section .product-opinion {
  margin: 20px 0;
}

.product-bottom-section .product-opinion .opinion-header {
  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;
  gap: 10px;
  margin-bottom: 10px;
}

.product-bottom-section .product-opinion .opinion-header .opnion-header-image {
  width: 36px;
  height: 36px;
}

.product-bottom-section .product-opinion .opinion-header .opnion-header-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-bottom-section .product-opinion .opinion-header .opinion-title {
  font-size: 26px;
  font-weight: 500;
}

.product-bottom-section .product-opinion .trusted-shop-input {
  width: 600px;
  max-width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
  font-size: 22px;
}

.product-bottom-section .product-contact {
  margin-top: 20px;
}

.product-bottom-section .product-contact p {
  font-size: 28px;
  margin: 5px 0;
  font-weight: 500;
}

.product-bottom-section .product-contact .contact-phone {
  font-size: 26px;
  font-weight: bold;
}

/* Nowa sekcja poniżej zakładek */
/*---- checkout site ----*/
.checkout-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.checkout-column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 33%;
          flex: 1 1 33%;
  max-width: 33%;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*---- checkout site ----*/
/* Kontener mini koszyka */
.mini-cart-wrapper {
  display: none;
  position: absolute;
  top: 130% !important;
  left: 0px;
  width: 420px !important;
  /* Ustaw szerokość mini koszyka */
  height: 80vh;
  background: var(--szary) !important;
  border: none;
  border-top: 2px solid var(--czerwony) !important;
  -webkit-box-shadow: 0 4px 8px var(--szary) !important;
          box-shadow: 0 4px 8px var(--szary) !important;
  z-index: 1000;
  padding: 15px;
  overflow-y: auto;
  /* Dodanie scrolla dla długich koszyków */
}

.mini-cart-wrapper .woocommerce-mini-cart-item {
  /* Elementy wewnątrz mini koszyka */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.mini-cart-wrapper .woocommerce-mini-cart-item img {
  width: 100px !important;
  /* Maksymalna szerokość obrazka */
  height: auto;
  margin-right: 10px;
  border-radius: 8px;
  /* Zaokrąglone rogi */
}

.mini-cart-wrapper .woocommerce-mini-cart-item a {
  font-size: 24px !important;
  padding: 5px !important;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-weight: bold;
  color: #333;
  border-right: 1px solid var(--czerwony);
}

.mini-cart-wrapper .woocommerce-mini-cart-item .remove {
  border: none !important;
}

.mini-cart-wrapper .woocommerce-mini-cart-item .quantity {
  padding: 0 10px !important;
}

.mini-cart-wrapper .woocommerce-mini-cart__total {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 25px 5px;
  border-top: 1px solid var(--bialy);
  border-bottom: 1px solid var(--bialy);
}

.mini-cart-wrapper .woocommerce-mini-cart__buttons {
  /* Przyciski w mini koszyku */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 10px;
}

.mini-cart-wrapper .woocommerce-mini-cart__buttons .button {
  background-color: var(--czerwony) !important;
  color: var(--bialy) !important;
  border-radius: 8px;
  padding: 10px 20px;
  margin: 2px 10px;
  font-size: 16px;
  font-weight: 700;
}

.checkout-two-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.checkout-two-columns .checkout-left {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 60%;
          flex: 1 1 60%;
  min-width: 300px;
}

.checkout-two-columns .checkout-right {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 40%;
          flex: 1 1 40%;
  min-width: 300px;
}

.checkout-two-columns .checkout-right #order_review {
  border: 1px solid #ddd;
  padding: 20px;
  background-color: #f9f9f9;
}

.checkout-two-columns .checkout-right #order_review_heading {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .checkout-two-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .checkout-two-columns .checkout-left,
  .checkout-two-columns .checkout-right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

/* -------------------------------------------------------------- wooocommerce -------------------------------------------------- */
@media (max-width: 1254px) {
  .top-bar {
    padding: 5px 5%;
  }
  .top-bar .top-bar-container .contact-info {
    margin: 0 auto;
    text-align: center;
  }
  .top-bar .top-bar-container .contact-info span {
    margin-right: 0px;
    padding: 0 13px;
    font-size: 18px;
  }
  .top-bar .top-bar-container .contact-info span img {
    padding-right: 10px;
    padding-bottom: 0px;
    width: 26px;
  }
  .top-bar .top-bar-container .header-icons {
    margin: 20px auto;
    position: static;
  }
  .top-bar .top-bar-container .header-icons .header-icons-images {
    width: 25px;
    height: 25px;
    margin-left: 20px;
  }
  .product-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
    /* Stylizacja pól niestandardowych */
    /* Stylizacja pól niestandardowych */
  }
  .product-layout .product-left .custom-product-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .product-layout .summary .product-custom-fields-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-layout .summary .product-custom-fields-box label {
    width: 20%;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    padding: 0 10px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box select {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .product-layout .summary .product-custom-fields-box .input-box {
    width: 80%;
  }
  .product-layout .summary .product-custom-fields-box .input-box input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box .input-box .custom-fields-note {
    width: 80%;
    margin: 0.5rem auto;
    font-size: 12px;
    color: var(--czerwony);
    margin-top: -5px;
    line-height: 1.5;
  }
  .product-layout .summary .product-custom-fields-box .quantity-add-to-cart {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-layout .summary .product-custom-fields-box .quantity-add-to-cart .quantity {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    overflow: hidden !important;
    margin-top: 0;
    padding: 2px 8px;
  }
  .product-layout .summary .product-custom-fields-box .single_add_to_cart_button {
    width: 40%;
    background-color: #d50000;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box .single_add_to_cart_button:hover {
    background-color: var(--czerwony);
  }
  .product-layout .summary .product-custom-fields-box-image-one {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .product-layout .summary .product-custom-fields-box-image-one .image {
    width: 50px;
  }
  .product-layout .summary .product-custom-fields-box-image-one .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-layout .summary .product-custom-fields-box-image-one p {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs {
    background-color: #d50000;
    text-align: center;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs:hover {
    background-color: var(--czerwony);
  }
  .product-layout .summary .product-custom-fields-box-image {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
  .product-layout .summary .product-custom-fields-box-image .image {
    width: 50px;
  }
  .product-layout .summary .product-custom-fields-box-image .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-layout .summary .product-custom-fields-box-image p {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box-image .check-shipping-costs {
    background-color: #d50000;
    text-align: center;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box-image .check-shipping-costs:hover {
    background-color: var(--czerwony);
  }
}

@media (max-width: 1024px) {
  .top-bar .top-bar-container {
    padding: 5px 5%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .top-bar .top-bar-container .header-icons {
    margin: 10px auto;
    position: static;
  }
  .main-header .main-header-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-layout {
    gap: 5px;
    /* Stylizacja pól niestandardowych */
    /* Stylizacja pól niestandardowych */
  }
  .product-layout .product-left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 23rem;
            flex: 1 1 23rem;
  }
  .product-layout .product-left .custom-product-images {
    gap: 10px;
  }
  .product-layout .product-left .custom-product-images .main-image {
    margin: 0 auto;
  }
  .product-layout .product-left .custom-product-images .secondary-image {
    margin: 0 auto;
  }
  .product-layout .summary {
    margin-bottom: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 35rem;
            flex: 1 1 35rem;
    border-left: 2px none;
    /* Czerwona linia po lewej stronie */
    border-top: 2px solid #d50000;
    /* Czerwona linia po lewej stronie */
  }
  .product-layout .summary .product-custom-fields-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-layout .summary .product-custom-fields-box label {
    width: 20%;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    padding: 0 10px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box select {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .product-layout .summary .product-custom-fields-box .input-box {
    width: 80%;
  }
  .product-layout .summary .product-custom-fields-box .input-box input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box .input-box .custom-fields-note {
    width: 80%;
    margin: 0.5rem auto;
    font-size: 12px;
    color: var(--czerwony);
    margin-top: -5px;
    line-height: 1.5;
  }
  .product-layout .summary .product-custom-fields-box .quantity-add-to-cart {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-layout .summary .product-custom-fields-box .quantity-add-to-cart .quantity {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    overflow: hidden !important;
    margin-top: 0;
    padding: 2px 8px;
  }
  .product-layout .summary .product-custom-fields-box .single_add_to_cart_button {
    width: 40%;
    background-color: #d50000;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box .single_add_to_cart_button:hover {
    background-color: var(--czerwony);
  }
  .product-layout .summary .product-custom-fields-box-image-one {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .product-layout .summary .product-custom-fields-box-image-one .image {
    width: 50px;
  }
  .product-layout .summary .product-custom-fields-box-image-one .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-layout .summary .product-custom-fields-box-image-one p {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs {
    background-color: #d50000;
    text-align: center;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs:hover {
    background-color: var(--czerwony);
  }
  .product-layout .summary .product-custom-fields-box-image {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
  .product-layout .summary .product-custom-fields-box-image .image {
    width: 50px;
  }
  .product-layout .summary .product-custom-fields-box-image .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-layout .summary .product-custom-fields-box-image p {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box-image .check-shipping-costs {
    background-color: #d50000;
    text-align: center;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box-image .check-shipping-costs:hover {
    background-color: var(--czerwony);
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 10px 2%;
  }
  .top-bar .top-bar-container .contact-info {
    margin: 0 auto;
    text-align: center;
  }
  .top-bar .top-bar-container .contact-info span {
    margin-right: 0px;
    padding: 0 13px;
    font-size: 18px;
  }
  .top-bar .top-bar-container .contact-info span img {
    padding-right: 10px;
    padding-bottom: 0px;
    width: 26px;
  }
  .top-bar .top-bar-container .header-icons {
    margin: 20px auto;
    position: static;
  }
  .top-bar .top-bar-container .header-icons .header-icons-images {
    width: 25px;
    height: 25px;
    margin-left: 20px;
  }
  .main-header .main-header-container {
    position: relative;
  }
  .main-header .main-header-container .logo {
    width: 350px;
  }
  .main-header .main-header-container .main-nav {
    position: relative;
  }
  .main-header .main-header-container .main-nav .nav-menu {
    z-index: 100000;
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    padding: 3rem 1rem;
    background: rgba(0, 0, 0, 0.525);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100vh;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    display: block;
  }
  .main-header .main-header-container .main-nav .nav-menu.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .main-header .main-header-container .main-nav .nav-menu li {
    display: block;
    text-align: center;
    margin: 1rem 0;
    font-weight: normal;
    width: 100%;
  }
  .main-header .main-header-container .main-nav .nav-menu li a {
    font-size: 26px;
    font-weight: normal;
    padding: 1rem;
    color: var(--bialy) !important;
  }
  .main-header .main-header-container #menu-btn {
    z-index: 1000;
    margin-left: 0rem;
    display: inline-block;
    position: absolute;
    top: 2.5rem;
    right: 2rem;
  }
  /* Style dla stopki */
  .site-footer {
    padding: 40px 6%;
    font-size: 14px;
  }
  .site-footer .footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 50px;
  }
  .site-footer .footer-container .column-width {
    min-width: none;
  }
  .site-footer .footer-container .footer-column {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 250px;
  }
  .site-footer .footer-container .footer-column h3 {
    color: #e63946;
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
  }
  .site-footer .footer-container .footer-column ul li {
    margin-bottom: 8px;
    font-size: 16px;
    padding: 3px 0;
  }
  .site-footer .footer-container .footer-column ul li img {
    margin-right: 20px;
    width: 20px;
  }
  .site-footer .footer-container .footer-column ul li a {
    font-size: 16px;
  }
  .site-footer .footer-container .footer-column ul li a:hover {
    text-decoration: underline;
  }
  .site-footer .footer-social {
    text-align: center;
    position: relative;
    margin: 20px 0;
  }
  .site-footer .footer-social a {
    margin: 0 10px;
  }
  .site-footer .footer-social a:hover {
    color: #e63946;
  }
  .site-footer .footer-social::before {
    content: '';
    width: 24%;
    height: 2px;
    background-color: var(--bialy);
    position: absolute;
    top: 17px;
    left: 0;
  }
  .site-footer .footer-social::after {
    content: '';
    width: 24%;
    height: 2px;
    background-color: var(--bialy);
    position: absolute;
    top: 17px;
    right: 0;
  }
  .site-footer .footer-bottom {
    text-align: center;
    padding: 10px 0;
    font-size: 13px;
  }
  .product-layout {
    gap: 5px;
    /* Stylizacja pól niestandardowych */
    /* Stylizacja pól niestandardowych */
  }
  .product-layout .product-left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 35rem;
            flex: 1 1 35rem;
  }
  .product-layout .product-left .custom-product-images {
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .product-layout .summary {
    margin-bottom: 20px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 35rem;
            flex: 1 1 35rem;
  }
  .product-layout .summary .product-custom-fields-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-layout .summary .product-custom-fields-box label {
    width: 20%;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    padding: 0 10px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box select {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .product-layout .summary .product-custom-fields-box .input-box {
    width: 80%;
  }
  .product-layout .summary .product-custom-fields-box .input-box input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box .input-box .custom-fields-note {
    width: 80%;
    margin: 0.5rem auto;
    font-size: 12px;
    color: var(--czerwony);
    margin-top: -5px;
    line-height: 1.5;
  }
  .product-layout .summary .product-custom-fields-box .quantity-add-to-cart {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-layout .summary .product-custom-fields-box .quantity-add-to-cart .quantity {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    overflow: hidden !important;
    margin-top: 0;
    padding: 2px 8px;
  }
  .product-layout .summary .product-custom-fields-box .single_add_to_cart_button {
    width: 40%;
    background-color: #d50000;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box .single_add_to_cart_button:hover {
    background-color: var(--czerwony);
  }
  .product-layout .summary .product-custom-fields-box-image-one {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .product-layout .summary .product-custom-fields-box-image-one .image {
    width: 50px;
  }
  .product-layout .summary .product-custom-fields-box-image-one .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-layout .summary .product-custom-fields-box-image-one p {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs {
    background-color: #d50000;
    text-align: center;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs:hover {
    background-color: var(--czerwony);
  }
  .product-layout .summary .product-custom-fields-box-image {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
  .product-layout .summary .product-custom-fields-box-image .image {
    width: 50px;
  }
  .product-layout .summary .product-custom-fields-box-image .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-layout .summary .product-custom-fields-box-image p {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box-image .check-shipping-costs {
    background-color: #d50000;
    text-align: center;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box-image .check-shipping-costs:hover {
    background-color: var(--czerwony);
  }
  .product-rating-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* Ustaw elementy w kolumnie */
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    /* Wyrównaj do lewej */
  }
  .rating-price-right {
    margin-top: 10px;
    /* Odstęp między ceną a przyciskiem */
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    /* Przycisk zajmuje pełną szerokość */
  }
  .quality-check-button {
    width: 100%;
    /* Przyciski na pełną szerokość */
    text-align: center;
    /* Wycentruj tekst w przycisku */
  }
  .quantity-add-to-cart {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    /* Ustaw przycisk pod polem ilości */
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .quantity-add-to-cart .single_add_to_cart_button {
    width: 100%;
    /* Przycisk zajmuje pełną szerokość */
    text-align: center;
  }
  .product-custom-fields select,
  .product-custom-fields input {
    font-size: 14px;
    /* Zmniejszenie rozmiaru czcionki dla mniejszych ekranów */
  }
  .product-weight-quantity select {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    text-align: center;
  }
  .top-bar .top-bar-container .contact-info span {
    margin-right: 0px;
    padding: 0 5px;
    font-size: 16px;
  }
  .top-bar .top-bar-container .contact-info span img {
    padding-right: 6px;
    padding-bottom: 0px;
    width: 23px;
  }
  .main-header .main-header-container .logo {
    width: 280px;
  }
  .main-header .main-header-container #menu-btn {
    position: absolute;
    top: 1rem;
    right: 2rem;
  }
  .breadcrumb .breadcrumb-container {
    font-size: 16px;
  }
  .product-rating-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .product-rating-price .rating-price-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-rating-price .rating-price-right {
    width: 40%;
  }
  .quality-check-button {
    background-color: #d50000;
    color: #fff;
    padding: 5px;
    text-align: center;
    margin: 0;
    border-radius: 10px;
    font-size: 10px;
    white-space: nowrap;
    /* Zapobiega łamaniu tekstu */
  }
  .product-layout {
    gap: 5px;
    /* Stylizacja pól niestandardowych */
    /* Stylizacja pól niestandardowych */
  }
  .product-layout .product-left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 35rem;
            flex: 1 1 35rem;
  }
  .product-layout .product-left .custom-product-images {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-layout .summary .product-custom-fields-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .product-layout .summary .product-custom-fields-box label {
    width: 20%;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
    padding: 0 10px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box select {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .product-layout .summary .product-custom-fields-box .input-box {
    width: 80%;
  }
  .product-layout .summary .product-custom-fields-box .input-box input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box .input-box .custom-fields-note {
    width: 80%;
    margin: 0.5rem auto;
    font-size: 12px;
    color: var(--czerwony);
    margin-top: -5px;
    line-height: 1.5;
  }
  .product-layout .summary .product-custom-fields-box .quantity-add-to-cart {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-layout .summary .product-custom-fields-box .quantity-add-to-cart .quantity {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    overflow: hidden !important;
    margin-top: 0;
    padding: 2px 8px;
  }
  .product-layout .summary .product-custom-fields-box .single_add_to_cart_button {
    width: 40%;
    background-color: #d50000;
    color: var(--bialy);
    font-size: 14px;
    font-weight: bold;
    padding: 20px 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box .single_add_to_cart_button:hover {
    background-color: var(--czerwony);
  }
  .product-layout .summary .product-custom-fields-box-image-one {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .product-layout .summary .product-custom-fields-box-image-one .image {
    width: 50px;
  }
  .product-layout .summary .product-custom-fields-box-image-one .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-layout .summary .product-custom-fields-box-image-one p {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs {
    background-color: #d50000;
    text-align: center;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box-image-one .check-shipping-costs:hover {
    background-color: var(--czerwony);
  }
  .product-layout .summary .product-custom-fields-box-image {
    margin-top: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    text-align: left;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
  .product-layout .summary .product-custom-fields-box-image .image {
    width: 50px;
  }
  .product-layout .summary .product-custom-fields-box-image .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-layout .summary .product-custom-fields-box-image p {
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  .product-layout .summary .product-custom-fields-box-image .check-shipping-costs {
    background-color: #d50000;
    text-align: center;
    color: var(--bialy);
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .product-layout .summary .product-custom-fields-box-image .check-shipping-costs:hover {
    background-color: var(--czerwony);
  }
}
/*# sourceMappingURL=groszek.css.map */