
/* Inner pages */
.hy-page-hero {
  min-height: 260px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.hy-page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.28));
}

.hy-page-hero .hy-container {
  position: relative;
  z-index: 2;
}

.hy-page-hero h1 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.2;
}

.hy-page-hero p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.hy-page {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  padding: 52px 0 68px;
}

.hy-side {
  align-self: start;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0,0,0,.06);
}

.hy-side__title {
  padding: 24px 22px;
  background: #d91820;
  color: #fff;
}

.hy-side__title span {
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.hy-side__title em {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 11px;
  opacity: .78;
  text-transform: uppercase;
}

.hy-side__nav {
  padding: 10px 0;
}

.hy-side__item > a {
  display: block;
  padding: 14px 22px;
  color: #222;
  font-weight: 700;
  border-bottom: 1px solid #f0f0f0;
}

.hy-side__item.is-active > a,
.hy-side__item > a:hover {
  color: #d91820;
  background: #f8f8f8;
}

.hy-side__item ul {
  margin: 0;
  padding: 0 0 10px;
  list-style: none;
  background: #fafafa;
}

.hy-side__item li a {
  display: block;
  padding: 9px 22px 9px 34px;
  color: #666;
  font-size: 13px;
}

.hy-side__item li a:hover {
  color: #d91820;
}

.hy-side__contact {
  margin: 18px;
  padding: 18px;
  background: #151515;
  color: #fff;
}

.hy-side__contact span {
  display: block;
  color: #aaa;
  font-size: 13px;
  margin-bottom: 6px;
}

.hy-side__contact strong {
  font-size: 19px;
}

.hy-page-main {
  min-width: 0;
}

.hy-page-title {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  padding-bottom: 18px;
  margin-bottom: 26px;
  border-bottom: 1px solid #e5e5e5;
}

.hy-page-title h2 {
  margin: 0;
  font-size: 30px;
  color: #171717;
}

.hy-page-title p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

.hy-page-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hy-page-product-card {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.055);
  overflow: hidden;
  transition: .28s;
}

.hy-page-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(0,0,0,.1);
}

.hy-page-product-card__img {
  height: 220px;
  padding: 16px;
  background: linear-gradient(145deg, #f7f7f7, #e5e5e5);
}

.hy-page-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: .35s;
}

.hy-page-product-card:hover img {
  transform: scale(1.05);
}

.hy-page-product-card h3 {
  height: 50px;
  margin: 18px 18px 8px;
  font-size: 17px;
  line-height: 1.45;
  overflow: hidden;
}

.hy-page-product-card span {
  display: inline-block;
  margin: 0 18px 22px;
  color: #d91820;
  font-weight: 700;
  font-size: 13px;
}

.hy-pages {
  margin-top: 32px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.hy-pages a,
.hy-pages span,
.hy-pages .hy-page-btn {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  margin: 0 3px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  line-height: 1;
}

.hy-pages a:hover,
.hy-pages span.current,
.hy-pages .hy-page-btn:hover,
.hy-pages .current,
.hy-pages .active {
  background: #d91820;
  color: #fff;
  border-color: #d91820;
}

.hy-pages .hy-page-text {
  cursor: default;
}

.hy-product-price {
  margin: 18px 0 22px;
  padding: 14px 16px;
  background: #f8f8f8;
  border-left: 3px solid #d91820;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 12px;
}

.hy-product-price__label {
  color: #222;
  font-size: 14px;
  font-weight: 400;
}

.hy-product-price__value {
  color: #d91820;
  font-size: 26px;
  font-weight: 900;
}

.hy-product-price__note {
  flex-basis: 100%;
  color: #222;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.hy-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 48%) 1fr;
  gap: 34px;
  margin-bottom: 38px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0,0,0,.055);
}

.hy-product-gallery .view {
  height: 390px;
  background: linear-gradient(145deg, #f7f7f7, #e6e6e6);
  overflow: hidden;
}

.hy-product-gallery .view img {
  width: 100%;
  height: 390px;
  object-fit: contain;
  padding: 20px;
  mix-blend-mode: multiply;
}

.hy-product-gallery .preview {
  margin-top: 12px;
  overflow: hidden;
}

.hy-product-gallery .preview .swiper-slide {
  width: 78px;
  height: 64px;
  margin-right: 10px;
  border: 1px solid #ddd;
  background: #f4f4f4;
  cursor: pointer;
}

.hy-product-gallery .preview .active-nav {
  border-color: #d91820;
}

.hy-product-gallery .preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.hy-product-summary {
  padding: 20px 10px;
}

.hy-product-summary span {
  color: #d91820;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: 12px;
}

.hy-product-summary h1 {
  margin: 12px 0 18px;
  font-size: 30px;
  line-height: 1.35;
}

.hy-product-summary p {
  min-height: 96px;
  color: #666;
  line-height: 1.9;
}

.hy-detail-content,
.hy-related {
  background: #fff;
  padding: 26px;
  margin-bottom: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,.045);
}

.hy-content-title {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.hy-content-title span {
  display: inline-block;
  padding: 0 0 12px;
  border-bottom: 3px solid #d91820;
  font-size: 22px;
  font-weight: 800;
}

.hy-content-body {
  color: #444;
  line-height: 1.9;
  font-size: 15px;
}

.hy-content-body img {
  height: auto !important;
  margin: 14px auto;
}

.hy-tags {
  margin: 18px 0;
  color: #777;
  font-size: 13px;
}

.hy-tags a {
  display: inline-block;
  margin: 4px;
  padding: 5px 10px;
  background: #f0f0f0;
}

.hy-prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0 30px;
}

.hy-prevnext a {
  padding: 14px 16px;
  background: #fff;
  color: #555;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hy-related-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.hy-related-products a {
  background: #f6f6f6;
  padding: 12px;
  text-align: center;
}

.hy-related-products img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.hy-related-products span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.hy-order-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  transform: scale(0);
}

.hy-order-modal .messagebg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}

.hy-order-modal .m-content {
  position: relative;
  width: min(560px, 92vw);
  margin: 8vh auto 0;
  background: #fff;
  padding: 28px;
}

.hy-order-modal label {
  display: block;
  margin-bottom: 12px;
}

.hy-order-modal input,
.hy-order-modal textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid #ddd;
  padding: 9px 10px;
}

.hy-order-modal textarea {
  min-height: 110px;
}

.hy-order-modal .btn-1 {
  display: flex;
  gap: 12px;
}

.hy-order-modal .btn-1 input {
  width: auto;
  padding: 0 26px;
  cursor: pointer;
}

.hy-order-modal .focus {
  background: #d91820;
  color: #fff;
  border-color: #d91820;
}
