:root {
  --primary: #073b8f;
  --primary-dark: #062e70;
  --secondary: #0d5bc7;
  --light-blue: #eef6ff;
  --text: #4f5b6b;
  --dark: #10213f;
  --border: #e3e9f2;
  --red: #e31d2b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: #fff;
}

a {
  text-decoration: none;
}

/* =========================
           TOP BAR
        ========================= */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 12px;
  padding: 9px 0;
}

.topbar i {
  margin-right: 6px;
}

.topbar a {
  color: #fff;
}

/* =========================
           HEADER
        ========================= */
.main-header {
  background: #fff;
  border-bottom: 1px solid #edf0f5;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.navbar {
  padding: 12px 0;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-name {
  font-size: 19px;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary);
}

.brand-name span {
  color: var(--red);
}

.brand-tagline {
  color: #7a8492;
  font-size: 9px;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

.nav-link {
  color: #17243b !important;
  font-size: 13px;
  font-weight: 600;
  margin: 0 7px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  padding: 10px 17px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.header-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* =========================
           PAGE HERO / BREADCRUMB
        ========================= */
.page-hero {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(3, 36, 86, 0.92), rgba(3, 36, 86, 0.72)),
    url("images/shop.png") center/cover no-repeat;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-hero-content .eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #b9d8ff;
}

.page-hero-content h1 {
  font-size: 45px;
  font-weight: 800;
  margin: 8px 0 10px;
}

.page-hero-content p {
  max-width: 650px;
  font-size: 14px;
  line-height: 1.8;
  color: #e1ecfb;
  margin: 0 0 15px;
}

.breadcrumb-custom {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 12px;
}

.breadcrumb-custom a {
  color: #fff;
}

.breadcrumb-custom .active {
  color: #bcd3f1;
}

/* =========================
           SECTION
        ========================= */
.products-section {
  padding: 75px 0 85px;
}

.section-heading {
  margin-bottom: 35px;
}

.section-heading .eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 34px;
  font-weight: 800;
  margin: 7px 0 10px;
}

.section-heading p {
  color: var(--text);
  font-size: 13px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0;
}

/* =========================
           SIDEBAR
        ========================= */
.filter-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  position: sticky;
  top: 95px;
}

.filter-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 5px;
}

.filter-subtitle {
  font-size: 11px;
  color: #8993a2;
  margin-bottom: 18px;
}

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-list li + li {
  margin-top: 7px;
}

.filter-btn {
  width: 100%;
  border: 1px solid transparent;
  background: #f6f8fb;
  color: #39475c;
  border-radius: 5px;
  padding: 11px 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  transition: 0.25s;
  cursor: pointer;
}

.filter-btn span {
  float: right;
  color: #9aa4b2;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.filter-btn:hover span,
.filter-btn.active span {
  color: #fff;
}

.brand-panel {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.brand-panel h5 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.brand-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.brand-mini img {
  width: 100%;
  height: 48px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 7px;
  background: #fff;
}

/* =========================
           TOOLBAR
        ========================= */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.results-text {
  font-size: 13px;
  color: #697588;
}

.results-text strong {
  color: var(--dark);
}

.search-box {
  position: relative;
  width: 260px;
}

.search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8993a2;
  font-size: 12px;
}

.search-box input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0 12px 0 34px;
  font-size: 12px;
  outline: none;
}

.search-box input:focus {
  border-color: var(--primary);
}

/* =========================
           PRODUCT CARD
        ========================= */
.product-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #c8d6e9;
  box-shadow: 0 15px 35px rgba(14, 50, 95, 0.1);
}

.product-image {
  height: 220px;
  background: #f8fafc;
  padding: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  border-radius: 3px;
  padding: 5px 8px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-body {
  padding: 17px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-company {
  color: var(--primary);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 800;
  margin-bottom: 5px;
}

.product-body h4 {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  margin: 0 0 8px;
}

.product-body p {
  color: #788394;
  font-size: 11px;
  line-height: 1.65;
  margin: 0 0 15px;
  flex: 1;
}

.product-actions {
  display: flex;
  gap: 7px;
}

.product-btn {
  flex: 1;
  text-align: center;
  border-radius: 4px;
  padding: 9px 7px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.product-btn.primary {
  background: var(--primary);
  color: #fff;
}

.product-btn:hover {
  background: var(--primary-dark);
  color: #fff;
}

/* =========================
           EMPTY SEARCH
        ========================= */
.no-result {
  display: none;
  text-align: center;
  padding: 50px 20px;
  border: 1px dashed #ccd5e2;
  border-radius: 8px;
  color: #7a8492;
}

.no-result i {
  font-size: 35px;
  color: var(--primary);
  margin-bottom: 12px;
}

/* =========================
           CTA
        ========================= */
.quote-cta {
  background:
    linear-gradient(90deg, rgba(3, 34, 80, 0.96), rgba(3, 62, 139, 0.86)),
    url("https://images.unsplash.com/photo-1584982751601-97dcc096659c?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  padding: 55px 0;
  color: #fff;
}

.quote-cta h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 7px;
}

.quote-cta p {
  color: #dce8fa;
  font-size: 13px;
  margin: 0;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.quote-btn:hover {
  background: #eaf2ff;
  color: var(--primary-dark);
}

/* =========================
           FOOTER
        ========================= */
.footer {
  background: #061b43;
  color: #fff;
  padding: 55px 0 0;
}

.footer-logo {
  width: 125px;
  height: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer p,
.footer li,
.footer a {
  color: #b9c8df;
  font-size: 12px;
  line-height: 1.8;
}

.footer h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 17px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 6px;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 35px;
  padding: 17px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
}

.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
           RESPONSIVE
        ========================= */
@media (max-width: 991px) {
  .filter-box {
    position: static;
    margin-bottom: 30px;
  }

  .filter-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .filter-list li + li {
    margin-top: 0;
  }

  .brand-panel {
    display: none;
  }

  .page-hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .topbar {
    display: none;
  }

  .page-hero {
    min-height: 250px;
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  .products-section {
    padding: 55px 0 65px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .products-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .filter-list {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 190px;
  }

  .quote-cta {
    text-align: center;
  }

  .quote-btn {
    margin-top: 20px;
  }
}
/* =========================
   PRODUCT COMPANY LOGO
========================== */

.product-brand-logo {
  height: 52px;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px 15px;

  border-bottom: 1px solid #edf1f5;
}

.product-brand-logo img {
  width: auto;
  max-width: 110px;
  height: auto;
  max-height: 34px;

  object-fit: contain;
}

/* Product image ke saath proper alignment */

.product-card .product-image {
  position: relative;
}

/* Existing company badge */

.product-card .product-badge {
  z-index: 2;
}
