h1 {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: 0.1px;
}

h2 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.24;
  font-weight: 750;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}

p {
  margin: 0 0 10px;
  color: #3f556b;
  line-height: 1.55;
}

a {
  color: #125e9f;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 12px;
  color: #5d7690;
  font-weight: 700;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 12px;
}

.section-head--center {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section-head--center h2,
.section-head--center p,
.section-head--center a {
  text-align: center;
}

.section-head a {
  font-weight: 700;
}

button,
.btn-primary {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

button:hover,
.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-ghost {
  border: 1px solid #cad9e8;
  border-radius: 8px;
  padding: 9px 12px;
  background: #fff;
  color: #25435e;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.cart-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #12314f;
  color: #e8f3ff;
  border: 1px solid #2f5272;
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 10px 20px rgba(7, 26, 44, 0.2);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

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

.cart-toast a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

.flash {
  background: #e8f6ec;
  border: 1px solid #bde3c8;
  border-radius: 9px;
  color: #0f7240;
  padding: 10px 12px;
  margin: 10px 0;
}

.empty {
  background: #fff;
  border: 1px dashed #ccdae9;
  border-radius: 10px;
  padding: 16px;
}

.breadcrumbs {
  margin-bottom: 12px;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #617a90;
  line-height: 1.5;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 8px;
  color: #8aa0b5;
}

.breadcrumbs a {
  color: #20639e;
}

.breadcrumbs span[aria-current="page"] {
  color: #37526b;
  font-weight: 700;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-row span {
  border: 1px solid #cfe0ef;
  background: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 600;
  color: #30485e;
}

.pagination {
  margin-top: 16px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.pagination a {
  border: 1px solid #cfe0ef;
  border-radius: 7px;
  padding: 6px 10px;
  background: #fff;
  color: #2a4358;
}

.pagination a.active {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  color: #fff;
  border-color: transparent;
}
