.inner-hero {
  background: #edf5fd;
}

.inner-hero-grid {
  display: grid;
  min-height: 305px;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
}

.inner-hero-media {
  min-height: 305px;
  overflow: hidden;
}

.inner-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blue-rule {
  width: 34px;
  height: 2px;
  margin-top: 14px;
  background: #0756b7;
}

.field {
  width: 100%;
  min-height: 46px;
  border: 1px solid #dfe7f0;
  border-radius: 4px;
  padding: 0 14px;
  color: #172033;
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field:focus {
  border-color: #0756b7;
  box-shadow: 0 0 0 3px rgba(7, 86, 183, .1);
}

textarea.field {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.primary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: #0756b7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  background: #064799;
  box-shadow: 0 12px 24px rgba(7, 86, 183, .2);
}

.filter-button {
  min-height: 38px;
  border: 1px solid #e4e9f0;
  border-radius: 999px;
  padding: 0 18px;
  color: #202936;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: #0756b7;
  color: #fff;
  background: #0756b7;
}

.product-tile-image {
  aspect-ratio: 1.24 / 1;
  overflow: hidden;
  background: #f7f8fa;
}

.product-tile-image img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center top;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: 340px;
  border-left: 4px solid #0756b7;
  padding: 16px 20px;
  color: #172033;
  background: #fff;
  box-shadow: 0 18px 45px rgba(6, 47, 99, .18);
  opacity: 0;
  transform: translateY(18px);
  visibility: hidden;
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.detail-breadcrumb a {
  color: #64748b;
  transition: color .2s ease;
}

.detail-breadcrumb a:hover {
  color: #0756b7;
}

.detail-gallery-main {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #f6f8fb;
}

.detail-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}

.detail-gallery-main:hover img {
  transform: scale(1.035);
}

.detail-tab {
  border-bottom: 2px solid transparent;
  padding: 17px 3px;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}

.detail-tab.is-active {
  border-color: #0756b7;
  color: #0756b7;
}

.article-content h2 {
  margin-top: 34px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.article-content p {
  margin-top: 14px;
  color: #526071;
  font-size: 15px;
  line-height: 1.9;
}

.article-content blockquote {
  margin-top: 28px;
  border-left: 3px solid #0756b7;
  padding: 18px 22px;
  color: #073b7d;
  background: #f2f7fe;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .inner-hero-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero-media {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-action,
  .filter-button,
  .toast {
    transition: none;
  }
}
