
.post-type-archive-product .archive-title,
.post-type-archive-product .product-sidebar h3 {
    font-family: "DM Sans", sans-serif;
    font-weight: 500; /* Medium */
}

.products-archive {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.archive-title {
    display: block;
     color: #3B52A4;
    width: 100%;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 0;
}

.archive-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
    transform: translateX(-50%);
    border-bottom: 1px solid #e1e1e1;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.page-banner__title h1 {
    color: #000;
}
/* Sidebar */

/* Remove default bullets */
.products-archive .filter-placeholder ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.filter-placeholder h3 {
    font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Style list items */
.products-archive .filter-placeholder li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
}

/* Orange square bullet */
.products-archive .filter-placeholder li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background-color: #f18821;
}

/* Link styling */
.products-archive .filter-placeholder li a  {
  text-decoration: none !important;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.products-archive .filter-placeholder li a:hover {
  color: #f18821;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    border-left: 1px solid #e1e1e1;
    padding-left: 32px;
}

.product-card {
    background: #ffffff;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: auto;
}

.product-title {
  margin: 12px 0 0;
  padding: 4px 0;
  width: 100%;
 

  background-color: #d9d9d9;
  color: #263248;

  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;

  text-align: center;
  text-transform: uppercase;
}

.product-grid .product-card a,
.product-grid .product-card a:visited {
  text-decoration: none !important;
}

@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 220px 1fr;
        gap: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 24px;
    }
}

@media (max-width: 768px) {
    .products-archive {
        padding: 56px 0;
    }

    .archive-title {
        margin-bottom: 28px;
        padding-bottom: 18px;
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-sidebar {
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #e1e1e1;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 540px) {
    .container {
        padding: 0 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        padding: 16px;
    }
}


.product-side-banner {
  position: relative;
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
  min-height: 240px;
  background: linear-gradient(165deg, #2f4f95 0%, #20386e 100%);
  background-position: center;
  background-size: cover;
}

.product-side-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 25, 48, 0.55);
}

.product-side-banner__content {
  position: relative;
  z-index: 1;
  padding: 22px 18px;
  color: #fff;
}

.product-side-banner__title {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
  
  
}

.product-side-banner__text {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
}

.product-side-banner__btn {
  display: inline-block;
  text-decoration: none;
  background: #f99c1c;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .product-side-banner {
    min-height: 200px;
  }
}


.products-pagination {
  margin-top: 28px;
}

.products-pagination .page-numbers {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.products-pagination .page-numbers li {
  margin: 0;
}

.products-pagination .page-numbers a,
.products-pagination .page-numbers span {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #d8dbe2;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #273045;
  font-size: 14px;
  font-weight: 600;
}

.products-pagination .page-numbers .current {
  background: #3B52A4;
  border-color: #3B52A4;
  color: #fff;
}

.products-pagination .page-numbers a:hover {
  border-color: #f99c1c;
  color: #f99c1c;
}