.shim-badges {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  align-items: flex-start;
}

.shim-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.shim-badge-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.shim-badge-text {
  font-size: clamp(0.625rem, 1.2vw, 0.75rem);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}


/* table Shim Specifications */
#specs { width: 100%;    padding: 50px 0; }
#specs .sec-title { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #0a192f; margin: 12px 0 16px; }
#specs .sec-sub { font-size: 14px; color: rgba(10,25,47,0.6); margin-bottom: 40px; max-width: 520px; }

.spec-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 700px; }
.spec-table thead tr { background: #0a192f; }
.spec-table thead th { padding: 16px 20px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: #fff; text-transform: uppercase; white-space: nowrap; }
.spec-table thead th:first-child {padding-left: 24px; }
.spec-table tbody tr { border-bottom: 1px solid rgba(10,25,47,.1); transition: background .15s; }
.spec-table tbody tr:hover { background: rgba(10,25,47,.03); }
.spec-table tbody td { padding: 20px; color: rgba(10,25,47,.75); vertical-align: middle; }
.row-num { padding-left: 24px !important; font-size: 11px; font-weight: 600; color: rgba(10,25,47,.25) !important; letter-spacing: .05em; width: 48px; }
.row-product { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: #0a192f !important; text-transform: uppercase; }
.app-tag { display: inline-block; padding: 3px 10px; border: 1px solid rgba(10,25,47,.18); border-radius: 20px; font-size: 11px; color: rgba(10,25,47,.65); margin-right: 6px; white-space: nowrap; }


.faq-collec{
padding: 70px 90px !important;
}
.faq-2, .benefits{
   padding: 2.5rem 0!important; 
}
/* collection-filter */
/* ── PRODUCTS SECTION ── */
.products-layout {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 48px 24px; */
}

/* ── SIDEBAR ── */
.sidebar {
  /* width: 210px; */
  flex-shrink: 0;
  position: sticky;
  top: 24px;
}

.sidebar-group { margin-bottom: 28px; }

.sidebar-label {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sidebar-link {
  display: block;
  font-size: 13.5px;
  font-weight: 500;
  color: #0A192F;
  padding: 2px 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s;
}
.sidebar-link:hover { color: #E6B800; }
/* .sidebar-link.active {
  font-weight: 700;
  border-left: 2px solid #FFCC00;
  padding-left: 8px;
} */

.sidebar-divider {
  border: none;
  border-top: 1px solid #E2E6EC;
  margin: 20px 0;
}

/* Custom order box */
.custom-box {
  background: #0A192F;
  border-radius: 10px;
  padding: 18px 16px;
  margin-top: 8px;
}
.custom-box-icon { margin-bottom: 8px; }
.custom-box-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 6px;
}
.custom-box-desc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 14px;
}
.custom-box-btn {
display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    background: transparent;
    border: none;
    text-decoration: underline;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s;
}


/* ── MAIN CONTENT ── */
.products-main { flex: 1; min-width: 0; }

.products-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0 20px;
}
.section-divider-line {
  flex: 1;
  height: 1px;
  background: #E2E6EC;
}
.section-divider-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,25,47,0.55);
  white-space: nowrap;
}

/* ── CARDS GRID ── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pcard-img-pad {
  background: #F2F5FB;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard-img-pad img {
  max-width: 100%!important;
  width: auto!important;
  height: auto!important;
  display: block!important;
}
.pcard {
  background: #fff;
  border: 1px solid #E2E6EC;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  position: relative;
}
.pcard:hover {
  box-shadow: 0 6px 24px rgba(10,25,47,0.10);
  transform: translateY(-2px);
}

.pcard-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard-img img { width: 100%; height: 100%; object-fit: cover; }

.pcard-body { padding: 12px 14px 14px; }

.pcard-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #0A192F;
  margin-bottom: 4px;
  line-height: 1.3;
}
.pcard-desc {
font-size: 0.75rem;
  color: rgba(10,25,47,0.55);
  line-height: 1.35;
}
.card-desc {
  /*display: -webkit-box;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-desc.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.cnc-card-desc{
  /*display: -webkit-box;*/
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;

}

.accordion-title{
  font-weight: 700;
    font-size: clamp(1rem, 0.9rem + 2vw, 1.5rem);
    line-height: clamp(1rem, 1.464rem + 1.875vw, 1.5rem);
    color: #1a2233;
}
.read-more {
  font-size: 12px;
  color: rgb(116, 116, 116);
  cursor: pointer;
  display: inline-block;
  margin-top: 4px;
}
.quality-list {
  margin: 15px 0 0;
  padding-left: 20px;
}

.quality-list li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #868B93;
}

.quality-list li:last-child {
  margin-bottom: 0;
}
/* Highlight / Custom card */
.pcard.highlight {
  background: #FFFBEA;
  border: 1.5px solid #FFCC00;
}
.pcard-star { position: absolute; top: 12px; right: 12px; }
.pcard-icon {
  width: 36px; height: 36px;
  background: #FFCC00;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.pcard-icon svg { width: 18px; height: 18px; }
.custom-cta {
  display: inline-block;
  background: #FFCC00;
  color: #0A192F;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
  margin-top: 12px;
  cursor: pointer;
  border: none;
  transition: background 0.15s;
}
.custom-cta:hover { background: #E6B800; }

/* Shim Kits grid */
.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.kits-grid .pcard-img { height: 130px; }

/* info-cards  */

.info-section {
  padding: 80px;
  background: #F1F5F9;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.info-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: none;
}

.info-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: block;
  object-fit: contain;
  transition: 0.3s ease;
}
.info-card h3 {
  font-size: clamp(1rem, 1.2vw, 1.25rem)!important; 
    line-height: 1.2!important;
  font-weight: 600;
  margin: 0 0 12px;
  color: inherit;
}

.info-card p {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem)!important; 
  line-height: 1.7;
  color: #666;
  margin: 0;
  transition: 0.3s ease;
}

/* Blogs */
.blogs-section {
  padding: 60px 0;
  margin: 0 auto;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-body {
  padding: 16px 0;
}

.blog-title {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
   line-height: 1.3;
  font-weight: 600;
  color: #0A192F;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-desc {
  /* font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: #555;
 line-height: 1.7; */
  margin-bottom: 14px;
}

.blog-read {
  font-size: 13.5px;
  color: #111;
  text-decoration: none;
  font-weight: 500;
}

.blog-read:hover { text-decoration: underline; }


/* youtube section  */
.youtube-section {
  padding: 5rem 1.5rem;
  background: #f5f6f8;
}
.youtube-section .container {
  margin: 0 auto;
}
.youtube-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.youtube-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


/* Related Downloads  */
.related-downloads{
    padding: 3.125rem 1rem;
}

.downloads-wrapper{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.downloads-text{
    max-width: 800px;
    margin: 1.25rem auto;
    padding: 0;
    /* line-height: 1.7;
    font-size: clamp(0.75rem, 1vw, 0.875rem); */
}

.downloads-audio{
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto 1.5rem;
}

.download-btn-wrap{
    display:flex;
    justify-content:center;
    margin-top:20px;
}

.download-btn{
    display:inline-block;
    background:#0A192F;
    color:#fff !important;
    padding:14px 30px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    line-height:1;
}

.download-btn:hover{
    color:#fff !important;
    opacity:.9;
}

/* Request a quote */

.testimonial-center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.testimonial-center .testi-swiper {
  width: 50%;
  margin-left: auto !important;
  margin-right: 0 !important;
}

.testimonial-center .swiper-slide {
  display: flex;
  justify-content: flex-end;
}

.testimonial-center .testi-card.request-quote {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 10px 0 0 10px;
  margin-bottom: 8rem;
}
.request-quote-btn {
  margin-top: 24px;
  margin-bottom: 0;
  text-align: left;
}

.processing{
  padding-bottom: 4rem!important;
}
.why-faqs{
  padding: 4rem 0;
}
.faq-collec{
    padding: 4rem 6rem;
}
.washer-chart{
  padding: 2rem 0 0;
}



/* category section  */


@media (max-width: 900px) {
  .products-layout { flex-direction: column; padding: 0; }
  .sidebar { width: 100%; position: static; }
  #specs{padding: 20px;
  }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .kits-grid { grid-template-columns: repeat(2, 1fr); }
   .info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cards-grid, .kits-grid { grid-template-columns: 1fr 1fr; }
    .info-cards {
    grid-template-columns: 1fr;
  }
}


/* Mobile */
@media (max-width: 768px) {

    .related-downloads {
    padding: 4rem 1rem;
  }
  .faq-2, .benefits{
   padding: 2rem 1rem!important; 
} 
    .blogs-grid { grid-template-columns: 1fr; }
  .shim-badges {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }

  .shim-badge-item {
    width: calc(50% - 8px);
  }

  .shim-badge-icon {
    width: 28px;
    height: 28px;
  }
  .blogs-section, .info-section {
    padding: 1rem;
  }
  .testimonial-center .testi-swiper {
    width: 100%!important;
  }
  .why-faqs{
        padding: 3rem 1rem!important;
  }.faq-collec {
    padding: 3rem 1rem!important;
}
}


/*  category  */
.collection-section{
  padding: 40px 0;
}
.collection-grid{
    display:grid;
    grid-template-columns:repeat(8, 1fr);
    gap:16px;
}

.collection-item{
    text-align:center;
}

.collection-img-box{
    display:flex;
    align-items:center;
    justify-content:center;
}

.collection-img-box img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    display:block;
}

.collection-label{
    margin-top:12px;
    font-size:15px;
    line-height:1.4;
    color:#1f2a44;
}

/* Large Tablet */
@media (max-width:1200px){
    .collection-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* Tablet */
@media (max-width:768px){
    .collection-grid{
        grid-template-columns:repeat(3,1fr);
        gap:14px;
    }

}

/* Mobile */
@media (max-width:576px){
    .collection-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .collection-label{
        font-size:14px;
    }
}