:root {
  --brand: #0F2B46;
  --accent: #1E73BE;
  --ink: #1c2730;
  --circle-icon:#f04134;
}

body {
  color: var(--ink);
  background: #fbfcfd;
}

.btn-primary {
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: #104c5c;
  --bs-btn-hover-border-color: #104c5c;
}

.hero-band {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(3, 31, 122, 0.8), rgba(18, 136, 247, 0.78)),
    url("../../assets/img/smart-quote-cover-image-2.png") center/cover;
}

.text-white-75 {
  color: rgba(255, 255, 255, .78);
}

.stats-panel {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 8px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.stats-panel span {
  display: inline-grid;
  width: 80px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: var(--circle-icon);
  font-weight: 700;
}

.stats-panel p {
  margin: 8px 0 0;
}

.category-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid #e6ebef;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(17, 38, 54, .1);
}

.category-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #eef3f6;
}

.category-card span {
  display: block;
  padding: 16px 16px 4px;
  font-weight: 700;
}

.category-card small {
  display: block;
  padding: 0 16px 16px;
  color: #667781;
}

.quote-step {
  height: 100%;
  background: #fff;
  border: 1px solid #e6ebef;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(1, 145, 255, 0.06);
}

.quote-step span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #01075c !important;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.quote-step p {
  color: #667781;
  margin: 0;
}

.spec-list dt {
  color: #667781;
}

.cart-qty {
  width: 96px;
}

.quote-list-callout,
.category-product-group {
  background: #fff;
  border: 1px solid #e6ebef;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 38, 54, .07);
}

.quote-list-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.category-product-group {
  overflow: hidden;
  margin-bottom: 24px;
}

.category-product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: #f4f8fa;
  border-bottom: 1px solid #e6ebef;
}

.product-list-row {
  padding: 18px 20px;
}

.product-list-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
}

.product-list-main.has-product-image {
  grid-template-columns: 118px minmax(0, 1fr) 360px;
}

.product-thumb {
  width: 118px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #eef3f6;
  border: 1px solid #e6ebef;
}

.product-list-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px auto;
  gap: 8px;
}

.product-specs,
.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-specs span,
.variant-list span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef3f6;
  color: #566873;
  font-size: .8rem;
}

.variant-list span {
  background: #fff7e7;
  color: #76500d;
}

@media (max-width: 900px) {
  .quote-list-callout,
  .category-product-head {
    flex-direction: column;
  }

  .product-list-main,
  .product-list-form {
    grid-template-columns: 1fr;
  }

  .product-list-main.has-product-image {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .product-list-main.has-product-image .product-list-form {
    grid-column: 1 / -1;
  }

  .product-thumb {
    width: 88px;
  }
}

.success-box {
  max-width: 640px;
  text-align: center;
  background: #fff;
  border: 1px solid #e6ebef;
  border-radius: 8px;
  padding: 48px 24px;
  box-shadow: 0 16px 32px rgba(17, 38, 54, .08);
}

.text-bold{
  font-weight: 500;
}

.not-found-box {
  max-width: 620px;
  text-align: center;
  background: #fff;
  border: 1px solid #e6ebef;
  border-radius: 8px;
  padding: 48px 24px;
  box-shadow: 0 16px 32px rgba(17, 38, 54, .08);
}

.not-found-code {
  display: inline-block;
  color: #165f73;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
}
