#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 #c2b59b;
  border-radius: 1rem;
  background: transparent;
  color: black;
  font-family: inherit;
  padding: 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_menu_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 20px;
}

#product_selector {
  width: fit-content;
}

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

.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;
  background-color: white;
  gap: 0.5rem;
  z-index: 100;
  padding: 0.5rem 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: 0.3s ease-in-out;
}

.product_to_cart_sticky {
  margin-top: 0 !important;
  width: fit-content !important;
  padding: 0.4rem 0.6rem;
  color: white;
  text-transform: uppercase;
  border-radius: 1rem;
  background-color: #f47721;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
}

.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 {
  display: flex;
  flex-direction: column;
  border: 1px solid #cfcfcf;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: white;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.catalog-category-banner-image {
  aspect-ratio: 16/11;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.catalog-category-banner-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: white;
  color: black;
  padding: 0.7rem;
  border-top: 1px solid #cfcfcf;
  text-align: center;
}

.catalog-category-banner:hover {
  transform: translateY(-4px);
  border-color: #b8b8b8;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.catalog-category-banner:hover .catalog-category-banner-image {
  transform: scale(1.04);
}

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

.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;
}

.rl_class_prop_table {
  width: 100%;
  border-collapse: collapse;
}

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

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

.rl_class_prop_table tr td:first-child {
  border-radius: 6px 6px 0 0;
}

.rl_class_prop_table tr td:last-child {
  border-radius: 0 0 6px 6px;
}

#product_specs .property_title,
.rl_class_prop_table td:first-child {
  font-weight: 600;
  color: #222;
  background-color: #f1f3f5;
}

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

.catalog-product-description-show-more {
  color: #fe5b00;
  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: #30b0c5; /* 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: #2fb0c5; /* 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: #2fb0c5;
  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: #f47721;
  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: #f47721;
  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: #f47721;
  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: #f47721;
}

.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;
}

@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;
}

@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,
  .rl_class_prop_table {
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

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

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

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

  .rl_class_prop_table tr td:first-child {
    border-radius: 6px 0 0 6px;
  }

  .rl_class_prop_table tr td:last-child {
    border-radius: 0 6px 6px 0;
  }

  #product_specs .property_title,
  .rl_class_prop_table td:first-child {
    width: 35%;
    background-color: #f8f9fa;
    white-space: nowrap;
  }

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

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

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

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

  #product_specs tr:hover .property_title,
  .rl_class_prop_table tr:hover td:first-child {
    color: #54b8c5;
  }

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