/* ==========================================================
   Unified Product Catalog page — consistent with brand style
   Brand colors: #71602a (olive gold), #a5a6a8 (grey)
   ========================================================== */

.prod-banner{
  padding: 70px 0 50px;
  text-align: center;
  color: #fff;
}
.prod-eyebrow{
  display:inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d9c07f;
  margin-bottom: 12px;
}
.prod-banner h1{
  font-size: 34px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.prod-banner p{
  max-width: 640px;
  margin: 0 auto;
  color: #cfcabd;
  font-size: 15px;
  line-height: 1.7;
}
.prod-download-group{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
}
.prod-download-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border: 1.5px solid #d9c07f;
  border-radius: 30px;
  color: #f3e6bf;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
}
.prod-download-btn:hover{
  background: #d9c07f;
  color: #2c2a22;
  border-color: #d9c07f;
}

@media (max-width: 575px){
  .prod-download-group{
    flex-direction: column;
    align-items: stretch;
  }
  .prod-download-btn{
    justify-content: center;
  }
}

#product-catalog{
  padding: 45px 0 70px;
}

/* ---- category pills ---- */
#prodNav{
  margin-bottom: 25px;
}
.prod-group{
  margin-bottom: 16px;
}
.prod-group-label{
  display:block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #71602a;
  margin-bottom: 8px;
}
.prod-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prod-pill{
  border: 1px solid #ddd;
  background: #fff;
  color: #555;
  padding: 9px 18px;
  font-size: 13.5px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s ease;
}
.prod-pill:hover{
  border-color: #71602a;
  color: #71602a;
}
.prod-pill.active{
  background: #71602a;
  border-color: #71602a;
  color: #fff;
}

/* ---- toolbar: title + search ---- */
.prod-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0ede4;
}
.prod-active-title h2{
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin: 0;
  display: inline-block;
}
.prod-count{
  font-size: 13px;
  color: #999;
  margin-left: 10px;
}
.prod-search{
  position: relative;
}
.prod-search i{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 13px;
}
.prod-search input{
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 9px 16px 9px 34px;
  font-size: 13.5px;
  width: 250px;
  outline: none;
  transition: 0.2s ease;
}
.prod-search input:focus{
  border-color: #71602a;
  box-shadow: 0 0 0 3px rgba(113,96,42,0.12);
}

/* ---- table ---- */
.prod-table-wrap{
  box-shadow: 0 2px 18px rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.prod-table{
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  background: #fff;
}
.prod-table thead th{
  background: #71602a;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
  white-space: nowrap;
}
.prod-table thead th:first-child{
  text-align: left;
}
.prod-table tbody td{
  padding: 10px;
  border-bottom: 1px solid #f0ede4;
  text-align: center;
  color: #555;
}
.prod-table tbody td:first-child{
  text-align: left;
  font-weight: 600;
  color: #333;
}
.prod-table tbody tr:nth-child(even){
  background: #faf9f6;
}
.prod-table tbody tr:hover{
  background: #f6f1e6;
}
.prod-table .mark-yes{
  color: #4c8c4a;
  font-weight: 700;
}
.prod-table .mark-no{
  color: #c2c2c2;
}
.prod-no-results{
  text-align: center;
  padding: 40px 10px;
  color: #999;
  background: #fff;
}

.prod-cta{
  margin-top: 40px;
}
.prod-cta p{
  color: #777;
  margin-bottom: 14px;
}

@media (max-width: 767px){
  .prod-toolbar{ flex-direction: column; align-items: flex-start; }
  .prod-search input{ width: 100%; }
  .prod-banner{ padding: 50px 0 36px; }
  .prod-banner h1{ font-size: 26px; }
}
