.product_top_full_image {
  width: 100vw;
  height: 100vh;
  min-height: 520px;
  max-height: 820px;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #111;
}
.product_top_full_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.catalog_sidebar_nav a.active {
  background: #ffd800;
  border-color: #ffd800;
  color: #111;
}
.catalog_card_body h2 a {
  color: inherit;
  text-decoration: none;
}
.page_bar:empty {
  display: none;
}
.catalog_inquiry_panel {
  width: 100%;
  margin: 52px 0 0;
}
.product_catalog_inquiry_shell {
  grid-template-columns: 1fr;
  gap: 34px;
  padding: 44px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 216, 0, .22), transparent 30%),
    linear-gradient(135deg, #111111 0%, #242a35 100%);
  overflow: visible;
}
.product_catalog_inquiry_shell .inquiry-form-wrap {
  width: 100% !important;
  height: auto !important;
  min-height: 0;
  padding: 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .22);
  overflow: visible;
  box-sizing: border-box;
}
.product_catalog_inquiry_form .form_grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}
.product_catalog_inquiry_form label {
  margin-bottom: 7px;
  font-size: 12px;
  letter-spacing: .06em;
}
.product_catalog_inquiry_form input,
.product_catalog_inquiry_form select,
.product_catalog_inquiry_form textarea {
  min-height: 50px;
  border-radius: 10px;
  border-color: rgba(17, 17, 17, .14);
  background: #fbfcff;
}
.product_catalog_inquiry_form textarea {
  min-height: 150px;
}
.product_catalog_inquiry_form .submit_btn {
  min-width: 260px;
}
@media (max-width: 768px) {
  .product_top_full_image {
    height: 62vh;
    min-height: 360px;
    max-height: 560px;
  }
}
@media (max-width: 1024px) {
  .catalog_inquiry_panel {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .product_catalog_inquiry_shell {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}
@media (max-width: 640px) {
  .product_catalog_inquiry_shell {
    padding: 22px;
    border-radius: 18px;
  }
  .product_catalog_inquiry_shell .inquiry-form-wrap {
    padding: 18px;
  }
  .product_catalog_inquiry_form .form_grid {
    grid-template-columns: 1fr;
  }
  .product_catalog_inquiry_form .submit_btn {
    width: 100%;
    min-width: 0;
  }
}
