.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #004985;
}

.breadcrumb a,
.breadcrumb .nav-link-part {
  font-weight: 600;
  font-size: 10px;
  text-decoration: none;
  color: #B0B0B0;
  transition: 0.3s all;
}
.breadcrumb a:hover,
.breadcrumb .nav-link-part:hover {
  color: #004985;
}

.product-container {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 32px;
  gap: 32px;
}

@media (min-width: 1024px) {
  .product-container {
    flex-direction: row;
    margin-top: 34px;
  }
}
.product-image-section,
.product-details-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .product-image-section,
  .product-details-section {
    width: 50%;
  }
}
#main-image {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(0, 73, 150, 0.5019607843);
  cursor: pointer;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 25px;
  overflow: hidden;
}

.image-gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.image-gallery a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.image-gallery img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 1024px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}
@media (min-width: 1024px) {
  .product-image-section {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }
  .image-gallery img {
    height: 480px;
  }
  .gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 20%;
  }
  .image-gallery {
    width: 79%;
  }
  .image-gallery-single {
    width: 100% !important;
  }
}
.product_parameters_wrapper {
  text-align: left;
}
.product_parameters_wrapper p {
  text-align: left;
  color: black;
}

.distributors_wrap {
  margin-top: 25px;
}
.distributors_wrap a {
  color: #004996;
  font-size: 14px;
}

.for_distributors_table th {
  font-size: 14px;
}
.for_distributors_table td {
  font-size: 12px;
}

.color_variation_icon {
  width: 25px;
  height: 25px;
  border: 1px solid #ddd;
}

.sku_text {
  text-align: left;
  font-size: 14px;
}

.gallery-item {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(0, 73, 150, 0.5019607843);
  cursor: pointer;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 25px;
  overflow: hidden;
}

.gallery-item img {
  max-height: 100px;
  width: 100%;
  padding: 5px;
  -o-object-fit: contain;
     object-fit: contain;
}

.gallery-item.border-primary {
  border: 2px solid #004985;
}

.nav-arrow {
  cursor: pointer;
  display: none;
}

.nav-arrow svg {
  width: 48px;
  height: 48px;
}

.product-details-section h1 {
  font-size: 24px;
  font-weight: 600;
  color: #004985;
  text-align: left;
}

@media (min-width: 1024px) {
  .product-details-section h1 {
    font-size: 30px;
  }
}
.desc-content {
  overflow: hidden;
  margin-top: 25px;
  transition: max-height 0.3s ease;
}
.desc-content p {
  text-align: left;
  color: black;
}

.desc-content.expanded {
  max-height: 2000px;
}

.read-more-btn {
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 8px;
  display: none;
}

.colors-section,
.dynamic-attributes .attribute-section {
  margin-top: 16px;
}

.colors-section h3,
.dynamic-attributes h3 {
  color: #004985;
  margin-bottom: 8px;
}

.color-buttons,
.attribute-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.color-buttons button {
  width: 100px;
  height: 100px;
  border: 1px solid #d1d5db;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.color-buttons button.selected {
  border: 2px solid #004985;
}

.color-buttons img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.attribute-buttons button {
  width: 100px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  color: #004985;
  cursor: pointer;
  border-radius: 4px;
}

.attribute-buttons button.selected {
  background-color: #004985;
  color: #fff;
  font-weight: 600;
}

#monogram {
  width: 100%;
  height: 56px;
  background-color: #f3f4f6;
  color: #004985;
  padding: 0 16px;
  border-radius: 4px;
  border: none;
}

.stock-price-section {
  margin-top: 16px;
  display: none;
}

.stock-price-section .price {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 600;
  color: black;
}

.stock-price-section .sale-price {
  margin-top: 8px;
  font-size: 18px;
  text-decoration: line-through;
  color: black;
}

.quantity-controls {
  display: flex;
  align-items: center;
  max-width: 150px;
  width: 100%;
  border: 1px solid #004996;
  overflow: hidden;
  border-radius: 25px;
}

.quantity-controls .quantity-decrement,
.quantity-controls .quantity-increment {
  width: 48px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.quantity-controls .quantity-increment {
  padding-right: 20px;
}

.quantity-controls .quantity-decrement {
  padding-left: 20px;
}

.quantity-controls .quantity-input {
  width: 100%;
  height: 42px;
  color: black;
  text-align: center;
  font-weight: 600;
  border: none;
  font-size: 20px;
}

.quantity-controls .quantity-input::-webkit-outer-spin-button,
.quantity-controls .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-controls .quantity-input[type=number] {
  -moz-appearance: textfield;
}

.add-to-cart-btn {
  width: 100%;
  height: 72px;
  background-color: #ff6200;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.add-to-cart-btn:disabled {
  background-color: #d1d5db;
  cursor: not-allowed;
}

.stock_availability_available {
  color: #00983F;
}

.stock_availability_nonavailable {
  color: #EE283E;
}

.cart-form {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: space-between;
}
.cart-form .shopping_bag {
  max-height: 24px;
  width: auto;
}

.your_price_detail_label {
  color: black !important;
  font-size: 20px;
}

.your_price_detail {
  color: black;
  font-size: 30px;
  font-weight: bold;
}

.your_price_detail_vat {
  color: black;
  font-size: 12px;
  font-weight: normal;
  text-align: left;
}

.info-section {
  margin-top: 32px;
  background-color: #f3f4f6;
  padding: 32px 0;
}

@media (min-width: 1024px) {
  .info-section {
    margin-top: 64px;
  }
}
.info-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.info-tabs a.btn {
  padding: 8px 16px;
  background-color: #fff;
  color: #004985;
  text-decoration: none;
  border-radius: 4px;
}

.info-content {
  margin-top: 32px;
  max-width: 872px;
}

.info-content h3 {
  font-size: 32px;
  font-weight: 600;
  color: #004985;
}

.info-content .text {
  margin-top: 16px;
}

.info-content .list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-content .list-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-content .list-item .number {
  width: 24px;
  height: 24px;
  background: #ff6200;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}

.size-table {
  background-color: #fff;
  padding: 8px 24px;
}

.size-table .row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 73, 133, 0.1);
}

.size-table .row:last-child {
  border-bottom: none;
}

.size-table .row .label {
  font-weight: 600;
  color: #004985;
}

.size-table .row .values {
  display: flex;
  gap: 32px;
}

.size-table-note {
  padding: 32px;
  background-color: #ff6200;
  color: #fff;
  margin-top: 16px;
}

.size-table-note .note-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-products {
  margin-top: 32px;
}

@media (min-width: 1024px) {
  .related-products {
    margin-top: 64px;
  }
}
.related-products h2 {
  font-size: 24px;
  font-weight: 600;
  color: #004985;
}

@media (min-width: 1024px) {
  .related-products h2 {
    font-size: 32px;
  }
}
.swiper-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 64px;
}

@media (min-width: 1280px) {
  .swiper-container {
    padding: 32px 0;
  }
}
.swiper {
  max-width: 1200px;
  position: static;
}

.swiper-button-prev,
.swiper-button-next {
  color: #004985;
  top: 42%;
}

.swiper-pagination {
  bottom: 5%;
}

.piktogramy_wrapper {
  margin-top: 25px;
  margin-bottom: 25px;
  display: flex;
  gap: 15px;
}
.piktogramy_wrapper .single_piktogram {
  max-width: 43px;
  /* width: auto; */
  height: auto;
  transform: scale(1);
  transition: 0.3s all;
}
.piktogramy_wrapper .single_piktogram:hover {
  cursor: pointer;
  transform: scale(1.05);
}

/* Styling for the distributors info wrapper */
.for_distributors_info_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  overflow-x: auto; /* Allows horizontal scrolling on small screens */
  display: none; /* Initially hidden */
  padding-left: 0px !important;
}

/* Class to show the wrapper when toggled */
.for_distributors_info_wrapper.active {
  display: block;
}

/* Styling for the table */
.for_distributors_table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for table headers */
.for_distributors_table thead th {
  background-color: #004996;
  color: #fff;
  font-weight: 600;
  padding: 5px 15px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 2px solid #1a252f;
}

/* Styling for table cells */
.for_distributors_table tbody td {
  padding: 10px 15px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

/* Alternating row colors for better readability */
.for_distributors_table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Hover effect for rows */
.for_distributors_table tbody tr:hover {
  background-color: #f1f1f1;
}

/* Styling for the toggle link */
/* Responsive adjustments for small screens */
@media screen and (max-width: 768px) {
  .for_distributors_table {
    font-size: 12px;
  }
  .for_distributors_table thead th,
  .for_distributors_table tbody td {
    padding: 8px 10px;
  }
  /* Optional: Hide less critical columns on very small screens */
  .for_distributors_table th:nth-child(5),
  .for_distributors_table td:nth-child(5),
  .for_distributors_table th:nth-child(7),
  .for_distributors_table td:nth-child(7) {
    display: none;
  }
  #info_distributors_link {
    margin: 10px;
    font-size: 14px;
  }
}/*# sourceMappingURL=single-product.css.map */