/*
 * Custom company website styles go here.
 */


body.shhk-page #page,
body.shhk-page .site,
body.shhk-page .site-content,
body.shhk-page .main-content {
  background: transparent;
}

@media (max-width: 782px) {
  body.admin-bar .shhk-site .navbar {
    top: 46px;
  }
}

.shhk-site .pd-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shhk-site .pd-pill-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--gray-line);
  font-size: 14px;
  font-weight: 600;
}

.shhk-site .pd-pill-list i {
  color: var(--blue);
}

.shhk-site .pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.shhk-site .product-detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 38px;
  padding-top: 60px;
  padding-bottom: 100px;
}

.shhk-site .product-sidebar {
  display: grid;
  align-content: start;
  gap: 20px;
}

.shhk-site .product-side-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(15, 34, 71, .08);
  overflow: hidden;
}

.shhk-site .product-side-card h3 {
  padding: 18px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-2), var(--blue));
  font-size: 18px;
}

.shhk-site .product-side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  border-bottom: 1px solid var(--gray-line);
  color: var(--text);
  font-weight: 600;
}

.shhk-site .product-side-link::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--text-soft);
}

.shhk-site .product-side-link:hover,
.shhk-site .product-side-link.active {
  color: var(--blue);
  background: rgba(37, 99, 255, .06);
}

.shhk-site .product-contact-card {
  padding-bottom: 20px;
}

.shhk-site .product-contact-card p {
  padding: 14px 22px 0;
  color: var(--text-soft);
  font-size: 14px;
}

.shhk-site .product-side-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  margin: 18px 22px 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  font-weight: 700;
}

.shhk-site .product-detail-main {
  min-width: 0;
}

.shhk-site .product-hero-card {
  display: grid;
  grid-template-columns: minmax(280px, 44%) 1fr;
  gap: 36px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.shhk-site .product-hero-image {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #fff, var(--gray-bg));
  border-radius: 8px;
  padding: 26px;
}

.shhk-site .product-hero-image img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(15, 34, 71, .18));
}

.shhk-site .product-hero-info h2 {
  margin: 8px 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.24;
}

.shhk-site .product-hero-info > p {
  margin: 18px 0 24px;
  color: var(--text-soft);
  line-height: 1.9;
}

.shhk-site .product-detail-tabs {
  position: sticky;
  top: 82px;
  z-index: 30;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 22px;
  padding: 12px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(15, 34, 71, .08);
}

.shhk-site .product-detail-tabs a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text);
  background: var(--gray-bg);
  font-size: 14px;
  font-weight: 700;
}

.shhk-site .product-detail-tabs a:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.shhk-site .product-detail-section {
  margin-top: 22px;
  padding: 32px;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(15, 34, 71, .06);
  scroll-margin-top: 150px;
}

.shhk-site .product-detail-section h2 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 14px;
  color: var(--navy);
  font-size: 24px;
}

.shhk-site .product-detail-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.shhk-site .product-detail-content p {
  margin: 0 0 13px;
  color: var(--text-soft);
  line-height: 1.95;
}

.shhk-site .product-detail-table {
  margin: 14px 0 22px;
  overflow-x: auto;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
}

.shhk-site .product-detail-table table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
}

.shhk-site .product-detail-table td {
  padding: 12px 16px;
  border-right: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  color: var(--text);
}

.shhk-site .product-detail-table tr:first-child td {
  background: var(--gray-bg);
  color: var(--navy);
  font-weight: 700;
}

.shhk-site .product-detail-table td:last-child {
  border-right: 0;
}

.shhk-site .product-detail-table tr:last-child td {
  border-bottom: 0;
}

.shhk-site .product-detail-figure {
  margin: 18px 0 24px;
  padding: 20px;
  border-radius: 8px;
  background: var(--gray-bg);
}

.shhk-site .product-detail-figure img {
  margin: 0 auto;
  max-height: 620px;
  object-fit: contain;
}

.shhk-site .product-empty-note {
  color: var(--text-soft);
}

.shhk-site .related-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.shhk-site .related-product-card {
  display: block;
  text-align: center;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s;
}

.shhk-site .related-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.shhk-site .related-product-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-bg);
  padding: 16px;
}

.shhk-site .related-product-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.shhk-site .related-product-card h3 {
  padding: 16px 12px 4px;
  color: var(--navy);
  font-size: 15px;
}

.shhk-site .related-product-card p {
  padding: 0 12px 16px;
  color: var(--text-soft);
  font-size: 12px;
}

.shhk-site .pc-cat {
  display: inline-flex;
  margin-top: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(37, 99, 255, .08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.shhk-site .pc-summary {
  margin: 10px auto 0;
  max-width: 210px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.shhk-site .product-search-form {
  max-width: 760px;
  margin: 0 auto 34px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.shhk-site .product-search-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  border: 1px solid var(--gray-line);
  border-radius: 999px;
  padding: 0 20px;
  font-size: 15px;
  outline: none;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 34, 71, .06);
}

.shhk-site .product-search-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, .12);
}

.shhk-site .product-search-form button,
.shhk-site .product-search-form a {
  height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
}

.shhk-site .product-search-form button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}

.shhk-site .product-search-form a {
  color: var(--text-soft);
  background: var(--gray-bg);
}

@media (max-width: 640px) {
  .shhk-site .product-search-form {
    align-items: stretch;
    flex-direction: column;
  }

  .shhk-site .product-search-form button,
  .shhk-site .product-search-form a {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .shhk-site .product-detail-layout,
  .shhk-site .product-hero-card {
    grid-template-columns: 1fr;
  }

  .shhk-site .product-detail-tabs {
    position: static;
  }

  .shhk-site .related-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .shhk-site .product-detail-layout {
    padding-top: 36px;
  }

  .shhk-site .product-hero-card,
  .shhk-site .product-detail-section {
    padding: 22px;
  }

  .shhk-site .related-product-grid {
    grid-template-columns: 1fr;
  }
}

.shhk-floating-contact {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 1200;
  display: grid;
  gap: 10px;
}

.shhk-floating-contact a,
.shhk-floating-contact button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 255, .18);
  background: #fff;
  color: var(--blue, #2563ff);
  box-shadow: 0 10px 30px rgba(15, 34, 71, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.shhk-floating-contact a:first-child {
  background: linear-gradient(135deg, var(--blue, #2563ff), var(--cyan, #19e3f0));
  color: #fff;
}

.shhk-floating-contact a:hover,
.shhk-floating-contact button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 99, 255, .26);
}

.shhk-floating-contact span {
  position: absolute;
  right: 62px;
  white-space: nowrap;
  background: rgba(6, 13, 31, .92);
  color: #fff;
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: all .2s ease;
}

.shhk-floating-contact a:hover span,
.shhk-floating-contact button:hover span {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 560px) {
  .shhk-floating-contact {
    right: 14px;
    bottom: 16px;
  }

  .shhk-floating-contact a,
  .shhk-floating-contact button {
    width: 46px;
    height: 46px;
  }
}

/* Full-site search results. */
.shhk-search-page {
  min-height: 52vh;
  padding: 72px 0 96px;
  background: var(--gray-bg);
}
.shhk-search-summary { margin: 0 0 22px; color: var(--text-soft); font-size: 14px; }
.shhk-search-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.shhk-search-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(15,34,71,.06);
}
.shhk-search-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: #eef3fb; }
.shhk-search-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.shhk-search-card-media:hover img { transform: scale(1.035); }
.shhk-search-card-media > span { width: 100%; height: 100%; display: grid; place-items: center; color: var(--blue); font-size: 34px; }
.shhk-search-card-body { padding: 22px; }
.shhk-search-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; color: var(--blue); font-size: 12px; font-weight: 700; }
.shhk-search-card-meta span { padding: 3px 9px; background: rgba(37,99,255,.08); border-radius: 999px; }
.shhk-search-card h2 { margin: 0 0 10px; color: var(--navy); font-size: 19px; line-height: 1.45; }
.shhk-search-card p { margin: 0 0 18px; color: var(--text-soft); font-size: 14px; line-height: 1.75; }
.shhk-search-more { color: var(--blue); font-size: 14px; font-weight: 700; }
.shhk-search-more i { margin-left: 5px; }
.shhk-search-empty { padding: 72px 24px; text-align: center; background: #fff; border: 1px solid var(--gray-line); border-radius: 8px; }
.shhk-search-empty > i { margin-bottom: 18px; color: var(--blue); font-size: 34px; }
.shhk-search-empty h2 { margin-bottom: 8px; color: var(--navy); font-size: 24px; }
.shhk-search-empty p { color: var(--text-soft); }
.shhk-search-pagination { margin-top: 38px; }
.shhk-search-pagination ul { display: flex; justify-content: center; gap: 8px; list-style: none; }
.shhk-search-pagination a,
.shhk-search-pagination span { min-width: 40px; height: 40px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gray-line); border-radius: 6px; background: #fff; }
.shhk-search-pagination .current { color: #fff; border-color: var(--blue); background: var(--blue); }
@media (max-width: 920px) { .shhk-search-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) {
  .shhk-search-page { padding: 48px 0 72px; }
  .shhk-search-grid { grid-template-columns: 1fr; }
}
