#catalog_stat {
  color: black;
  font-size: 15px;
  padding-bottom: 0.5rem;
}
.catalog_options_container {
  display: flex;
  flex-direction: column-reverse;
}

#catalog_options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
}

#catalog_options fieldset {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: baseline;
}

#catalog_options label {
  color: #868686;
  padding: 0.2rem 0.8rem;
  font-size: 12px;
}

#catalog_options select {
  outline: none;
  border: 1.5px solid black;
  border-radius: 1rem;
  background: transparent;
  color: black;
  font-family: inherit;
  padding: 0.2rem 0.5rem;
  font-size: 15px;
}

.catalog_option_sticky {
  z-index: 100;
  position: sticky;
  border-radius: 0.5rem;
  justify-content: end !important;
}

.catalog_option_sticky #catalog_stat {
  display: none;
}

.layout_side_menu.catalog_option_sticky {
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  padding: 0.3rem;
}

.catalog_option_sticky #catalog_options {
  background-color: white;
  box-shadow:
    rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.catalog_option_sticky fieldset {
  flex-direction: row !important;
  align-items: center !important;
}

.product_related_items {
  margin-top: 2rem;
}

.product_related_items > p {
  color: black;
  font-weight: 500;
  font-size: 30px;
  padding-bottom: 1rem;
}

.product_flag {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-right: 3rem;
  margin-bottom: 1rem;
}

#product_stock {
  margin-bottom: 1rem;
}

.product_flag img {
  height: 2rem;
}

.product_flag p {
  color: #333333;
  font-weight: 400;
  line-height: 1em !important;
}

.product-gallery-top #prodGalleryTags {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: min(560px, calc(100% - 1.7rem));
  pointer-events: none;
}

.product-gallery-top #prodGalleryTags .product_flag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  min-height: 2rem;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(65, 115, 139, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(16, 67, 122, 0.16);
  backdrop-filter: blur(10px);
}

.product-gallery-top #prodGalleryTags .product_flag img {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.product-gallery-top #prodGalleryTags .product_flag p {
  max-width: 18rem;
  margin: 0;
  overflow: hidden;
  color: #26343b;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2 !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product_item_tags {
  gap: 0.5rem;
  align-items: flex-start;
}

.product_item_tags > br {
  display: none;
}

.product_item_tags > span,
.product_item_tags > .product_item_tag {
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 20px);
  min-height: 2rem;
  margin: 0;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(65, 115, 139, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(16, 67, 122, 0.16);
  color: #26343b;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
}

.product_item_tags > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product_menu_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 20px;
}

#product_selector {
  width: 100%;
}

.product_property_dropdown {
  min-width: 100px;
  border-radius: 1rem;
  border: 1px solid #41738b;
}

.bundle-image-wrapper {
  position: relative;
}

.bundle-marker {
  position: absolute;
  margin-top: -10px;
  margin-left: -10px;
  z-index: 1;
}
.bundle-marker:hover {
  z-index: 999;
}

.bundle-dot {
  position: relative;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
  z-index: 1;
}

.bundle-positioned-product {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 250px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.bundle-marker:hover .bundle-positioned-product {
  opacity: 1;
  pointer-events: auto;
}

.product_menu_sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  gap: 1.25rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  box-sizing: border-box;
  box-shadow: 0 -10px 30px -24px rgba(16, 67, 122, 0.55);
  flex-wrap: nowrap;
  transform: translateY(100%);
  transition: 0.3s ease-in-out;
}

.product_menu_sticky .product_price {
  flex: 0 1 auto;
  flex-basis: auto;
  width: auto;
  min-width: 0;
}

.product_menu_sticky .product_price > strong {
  font-size: 28px;
}

.product_to_cart_sticky {
  margin-top: 0 !important;
  width: auto !important;
  min-width: 190px;
  min-height: 42px;
  padding: 0.55rem 1.4rem;
  color: white;
  text-transform: uppercase;
  border: 0;
  border-radius: 0.5rem;
  background-color: #41738b;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

.product_to_cart_sticky_border {
  border: 2px solid #41738b;
  background-color: transparent;
  color: #41738b;
}

.catalog_list_sticky {
  flex-wrap: wrap;
}

.catalog_list_sticky .product_to_cart_sticky {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}


.product_menu_sticky.visible {
  transform: translateY(0%);
}

.catalog-category-banners-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.5rem;
}

.catalog-category-banner {
  aspect-ratio: 16/11;
  border-radius: 0.5rem;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
}

.catalog-category-banner-overlay {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 0.5rem;
}

.catalog-category-banner-overlay > p {
  text-transform: uppercase;
}

.product_code {
  font-weight: 600 !important;
}

#product_specs {
  margin-top: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

#product_specs h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

#product_specs table {
  width: 100%;
  border-collapse: collapse;
  overflow: visible;
}

#product_specs tr {
  margin-bottom: 12px;
  display: block;
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

#product_specs tr:hover,
#product_specs tr:focus-within {
  z-index: 5;
}

#product_specs td {
  display: block;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: #444;
}

#product_specs .property_title {
  font-weight: 600;
  color: #222;
  background-color: #f1f3f5;
  position: relative;
}

#product_specs .property_info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 6px;
  vertical-align: middle;
  cursor: help;
}

#product_specs .property_info_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #41738b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

#product_specs .property_info_cloud {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  z-index: 20;
  width: max-content;
  max-width: min(280px, 80vw);
  padding: 10px 12px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  color: #333;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease;
}

#product_specs .property_info_cloud:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 12px;
  height: 12px;
  background-color: #fff;
  transform: translate(-50%, -6px) rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.06);
}

#product_specs .property_info:hover .property_info_cloud,
#product_specs .property_info:focus .property_info_cloud,
#product_specs .property_info:focus-within .property_info_cloud {
  opacity: 1;
  transform: translate(-50%, 0);
}

#productDesc {
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.catalog-product-description-show-more {
  color: #41738b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.catalog-product-description-show-more img {
  transform: rotate(90deg);
}

.product-inquiry-wrapper {
  display: block;
  width: 100%;
}

#productInquiryForm {
  overflow: hidden;
}

.product-inquiry-form {
  padding: 20px 5px;
  max-width: 480px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: inherit;
}

.product-inquiry-form input,
.product-inquiry-form textarea {
  width: 100%;
  padding: 7px 8px;
  border-radius: 8px;
  border: 2px solid #e6e6e6;
  font-size: 14px;
  color: #000;
  background-color: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.product-inquiry-form input::placeholder,
.product-inquiry-form textarea::placeholder {
  color: #999;
}

.product-inquiry-form input:focus,
.product-inquiry-form textarea:focus {
  outline: none;
  border-color: #41738b; /* secondary */
  box-shadow: 0 0 0 3px rgba(48, 176, 197, 0.2);
}

.product-inquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.product-inquiry-form button {
  margin-top: 8px;
  padding: 14px 20px;
  border-radius: 6px;
  border: none;
  background-color: #41738b; /* primary */
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.product-inquiry-form button:hover {
  background-color: #41738b;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(254, 91, 0, 0.3);
}

.product-inquiry-form button:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(254, 91, 0, 0.25);
}

.product-inquiry-btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;

  background-color: #41738b;
  color: #fff;
  border: none;
  border-radius: 6px;

  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.product-inquiry-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.product_table {
  color: black;
  overflow: hidden;
  margin-bottom: 10px;
}
.product_table table {
  width: 100%;
  border-spacing: 0 10px;
  border-collapse: collapse;
}
.product_table tr {
  border: 1px solid #e1dbcb;
  border-radius: 1rem;
}
.product_table td {
  padding: 10px;
}

.product_table tr td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.product_table tr td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.product_table a {
  color: black;
  text-decoration: none;
  text-transform: none;
}
.product_table_price .price {
  font-size: 20px;
  color: #41738b;
  font-weight: 700;
}
.product_table_price .price_regular {
  font-size: 14px;
  color: #b1b0b0;
  font-weight: 500;
  text-decoration: line-through;
}
.product_table_check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  background: white;
  border: 1px solid black;
}

.product_accessories {
  display: grid;
  gap: 14px;
}

/* row */
.product_accessories .product_row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #e7ddcf;
  border-radius: 14px;
  padding: 14px 18px;
}

/* image */
.product_accessories .product_img {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;

  border-radius: 12px;
  background: #f4f1ec;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product_accessories .product_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* body */
.product_accessories .product_body {
  flex: 1;
  min-width: 0;
}

.product_accessories .product_title {
  color: #3f3f3f;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* price */
.product_accessories .product_price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  white-space: nowrap;
}

.product_accessories .price_current {
  color: #f07a2b;
  font-weight: 700;
  font-size: 22px;
  text-decoration: none;
}

.product_accessories .price_regular {
  color: #9a9a9a;
  font-size: 14px;
  text-decoration: line-through;
}

/* checkbox */
.product_accessories .product_check {
  margin-left: 12px;
}

.product_accessories .product_check input[type="checkbox"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: #2fb0c5;
}

#product_lp_more {
  cursor: pointer;
  font-weight: bold;
  background: linear-gradient(135deg, #fe6b71, #ffa667);
  color: white;
  padding: 0.4rem 1rem;
  display: block;
  border-radius: 0.5rem;
  width: fit-content;
  margin: 0.5rem 0;
  font-size: 12px;
}

.wishlist-add {
  width: 40px;
  height: 40px;
  color: #41738b;
  cursor: pointer;
}

.wishlist-add path {
  fill: transparent;
  stroke: currentColor;
  stroke-width: 2;
  transition: fill 0.25s ease;
}

.wishlist-add.active path {
  fill: currentColor;
}

.wishlist {
  padding: 2rem 0;
}

.wishlist h1 {
  margin-bottom: 1rem;
  color: #41738b;
}

.wishlist-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: red;
  z-index: 30;
  background-color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-code-wrapper {
  display:flex;
  justify-content: space-between;
  align-items: center;
}

.product_list {
  margin-bottom: 1rem;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-4px);
  }
  40% {
    transform: translateX(4px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.4s ease-in-out;
}

.product_item_subtitle {
  color: grey;
  font-weight: 400;
}

.product_list .news-card-wrapper {
  width: 100%;
}

.product_list .news-card-overlay > div {
  min-height: 10.9rem;
}

.product_list .news-card-title {
  min-height: calc(17px * 1.35 * 3 + 0.85rem);
  -webkit-line-clamp: 3;
}

@media screen and (min-width: 1024px) {
  #catalog_stat {
    font-size: 18px;
  }

  #catalog_options {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 0;
    padding: 0.5rem;
  }

  #catalog_options label {
    font-size: 15px;
  }

  #catalog_options select {
    font-size: 17px;
  }

  .catalog_options_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-direction: row;
  }

  .product_flag {
    max-width: 30%;
    margin-bottom: 0;
  }

  #product_stock {
    margin-bottom: 0rem;
  }

  .product_menu_sticky {
    justify-content: center;
  }

  #product_specs table {
    background-color: #fff;
    border-radius: 6px;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  #product_specs tr {
    display: table-row;
    box-shadow: none;
    border-bottom: 1px solid #e6e6e6;
  }

  #product_specs tr:last-child {
    border-bottom: none;
  }

  #product_specs td {
    display: table-cell;
    padding: 12px 16px;
  }

  #product_specs .property_title {
    width: 35%;
    background-color: #f8f9fa;
    white-space: nowrap;
  }

  #product_specs tr:nth-child(even) td {
    background-color: #fafafa;
  }
  #product_specs tr:nth-child(even) td {
    background-color: #fafafa;
  }

  #product_specs tr:nth-child(odd) td {
    background-color: #ffffff;
  }

  #product_specs td {
    transition:
      background-color 0.2s ease,
      color 0.2s ease;
  }

  #product_specs tr:hover td {
    background-color: #eef4ff;
  }

  #product_specs tr:hover .property_title {
    color: #41738b;
  }

  .product_accessories {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media screen and (max-width: 520px) {
  .product-gallery-top #prodGalleryTags {
    top: 0.5rem;
    left: 0.5rem;
    gap: 0.35rem;
    max-width: calc(100% - 1rem);
  }

  .product-gallery-top #prodGalleryTags .product_flag {
    min-height: 1.8rem;
    padding: 0.28rem 0.55rem;
  }

  .product-gallery-top #prodGalleryTags .product_flag p {
    max-width: 12rem;
    font-size: 0.76rem;
  }
}
