.badge-platform {
  background: #fc9010;
  color: #1e3a6f;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
}

.content-minimal {
  padding: 4rem 0 5rem 0;
}
.linecard-heading-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}
.linecard-heading-actions h2 {
  margin-bottom: 0;
  color:#337ab7 !important;
}
.print-brochure-btn {
  background: #fc9010;
  color: #1e2f3c;
  border: 0;
  border-radius: 50px;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 18px rgba(252, 144, 16, 0.24);
}
.print-brochure-btn:hover {
  background: #ffb347;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(252, 144, 16, 0.32);
}
.vendor-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}
.vendor-card {
  background: white;
  border-radius: 2rem;
  padding: 2rem 1.8rem;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.vendor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #fc9010, #337ab7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.vendor-card:hover::before {
  transform: scaleX(1);
}
.vendor-card:hover {
  transform: translateY(-10px);
  border-color: #fc901040;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2);
}
.vendor-logo {
  width: 100%;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  border-radius: 1.5rem;
  padding: 0.8rem;
  transition: all 0.3s;
}
.vendor-card:hover .vendor-logo {
  background: #fc901008;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.vendor-logo img {
  max-height: 100px;
  max-width: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.vendor-card:hover .vendor-logo img {
  transform: scale(1.05);
}
.product-categories {
  margin: 1.2rem 0 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
  background: #fafcff;
  border-radius: 16px;
}
.category-grid-scroll {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.5rem 0.8rem;
  max-height: 150px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: auto;
}
.category-grid-scroll::-webkit-scrollbar {
  width: 0;
}
.category-grid-scroll:hover {
  scrollbar-width: thin;
}
.category-grid-scroll:hover::-webkit-scrollbar {
  width: 5px;
}
.category-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  padding: 0.4rem 0.5rem;
  transition: all 0.2s;
  border-radius: 10px;
}
.category-item i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fc9010;
  font-size: 1rem;
  line-height: 1;
}
.category-item span {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
}
.category-item:hover {
  background: #fc901010;
  transform: translateX(3px);
}
.vendor-buttons {
  display: flex;
  gap: 12px;
  margin-top: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-quote,
.btn-browse {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}
.btn-quote {
  background: #fc9010;
  color: #1e2f3c;
}
.btn-browse {
  background: #337ab7;
  color: #fff;
}
.vendor-desc {
  margin: 0.6rem 0 0.25rem;
  line-height: 1.4;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}
.linecard-cta {
  background: linear-gradient(135deg, #0f2b3d 0%, #1a4058 100%);
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.linecard-cta h4 {
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}
.linecard-cta p {
  color: #cbd5e6;
  margin-bottom: 0;
  font-size: 0.85rem;
}
.cta-button {
  background: #fc9010;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  font-weight: 700;
  color: #0c2e42;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s;
  text-decoration: none;
}

@media (max-width: 1280px) and (min-width: 768px) {
  .page-header {
    padding-top: 90px;
  }
}

@media (max-width: 850px) {
  .vendor-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .linecard-cta {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .page-header h1 {
    font-size: 2.2rem;
  }
  .linecard-heading-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .print-brochure-btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
  }
  .vendor-logo {
    height: 90px;
  }
  .vendor-logo img {
    max-height: 70px;
    max-width: 180px;
  }
  .category-grid-scroll {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.4rem 0.5rem;
  }
  .category-item {
    font-size: 0.7rem;
    padding: 0.3rem;
  }
  .category-item i {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }
  .vendor-buttons {
    flex-direction: column;
    gap: 8px;
  }
  .btn-quote,
  .btn-browse {
    justify-content: center;
  }
}

@media print {
  .print-brochure-btn {
    display: none;
  }
}
.card-page-icon{
  font-size: 10rem; opacity:0.50; color:#fff;
}