/* ============================================================
   category-commercial.css — Steel Shakti Commercial Category Layout
   Premium B2B catalogue-style category page.
   ============================================================ */

/* ---- Design Tokens (Commercial Layout Override) ---- */
.cc-wrap {
  --cc-navy: #082B58;
  --cc-navy-light: #0D376D;
  --cc-red: #F32D32;
  --cc-red-hover: #D92329;
  --cc-white: #FFFFFF;
  --cc-bg-light: #F7F9FC;
  --cc-text: #48566A;
  --cc-heading: #10294D;
  --cc-muted: #68768A;
  --cc-border: #E1E7EF;
  --cc-border-light: #DFE5ED;
  --cc-radius: 12px;
  --cc-radius-sm: 8px;
  --cc-container: 1320px;
}

/* ---- Container ---- */
.cc-wrap .container,
.cc-wrap .cc-container {
  max-width: var(--cc-container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ============================================================
   1. BREADCRUMB
   ============================================================ */
.cc-breadcrumb {
  padding: 6px 0 8px;
}
.cc-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: var(--cc-muted);
}
.cc-breadcrumb ol li {
  display: inline-flex;
  align-items: center;
}
.cc-breadcrumb ol li::after {
  content: '>';
  margin: 0 6px;
  color: #adb5bd;
  font-size: 11px;
}
.cc-breadcrumb ol li:last-child::after { display: none; }
.cc-breadcrumb ol li:last-child {
  color: var(--cc-heading);
  font-weight: 600;
}
.cc-breadcrumb ol li a {
  color: var(--cc-muted);
  text-decoration: none;
  transition: color .2s;
}
.cc-breadcrumb ol li a:hover {
  color: var(--cc-red);
}

/* ============================================================
   2. HERO SECTION
   ============================================================ */
.cc-hero {
  background: var(--cc-white);
  border-bottom: 1px solid var(--cc-border);
  padding: 12px 0 14px;
  margin: 0;
}
.cc-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 24px;
}
.cc-hero-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  color: var(--cc-heading);
  margin: 0 0 4px;
  line-height: 1.25;
  letter-spacing: -0.2px;
  text-transform: none;
}
.cc-hero-subtitle {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 700;
  color: var(--cc-heading);
  margin: 0 0 6px;
  line-height: 1.3;
}
.cc-hero-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cc-text);
  margin: 0;
  max-width: 620px;
}
.cc-hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cc-hero-img {
  width: 100%;
  max-width: 340px;
  max-height: 200px;
  object-fit: contain;
  object-position: center bottom;
}

/* ============================================================
   3. SECTION HEADING (shared)
   ============================================================ */
.cc-section-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--cc-heading);
  margin: 0 0 20px;
  padding-bottom: 8px;
  position: relative;
}
.cc-section-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--cc-red);
  border-radius: 2px;
}

/* ============================================================
   4. SHOP BY CAPACITY
   ============================================================ */
.cc-capacity-section {
  padding: 38px 0 28px;
  background: var(--cc-white);
}
.cc-capacity-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.cc-cap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: var(--cc-white);
  border: 1px solid #DDE4ED;
  border-radius: var(--cc-radius-sm);
  font-weight: 700;
  font-size: 14px;
  color: var(--cc-heading);
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.cc-cap-btn:hover,
.cc-cap-btn.active {
  border-color: var(--cc-red);
  color: var(--cc-red);
}
.cc-cap-btn.active {
  background: var(--cc-red);
  color: var(--cc-white);
  border-color: var(--cc-red);
}

/* ============================================================
   5. SHOP BY TYPE
   ============================================================ */
.cc-type-section {
  padding: 24px 0 32px;
  background: var(--cc-white);
}
.cc-type-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.cc-type-card {
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: 10px;
  min-height: 130px;
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  color: var(--cc-heading);
}
.cc-type-card:hover {
  border-color: var(--cc-red);
  transform: translateY(-2px);
  color: var(--cc-red);
  text-decoration: none;
}
.cc-type-card .cc-type-desc {
  font-size: 11px;
  color: var(--cc-muted);
  line-height: 1.3;
}
.cc-type-card.active {
  border-color: var(--cc-red);
  background: #FFF5F5;
}
.cc-type-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cc-bg-light);
  color: var(--cc-navy);
  font-size: 24px;
}
.cc-type-card.active .cc-type-icon {
  background: var(--cc-red);
  color: var(--cc-white);
}
.cc-type-label {
  font-size: 13px;
  font-weight: 650;
  color: #13294B;
  line-height: 1.25;
}

/* ============================================================
   6. MAIN PRODUCT GRID
   ============================================================ */
.cc-products-section {
  padding: 38px 0 28px;
  background: var(--cc-bg-light);
}
.cc-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cc-prod-card {
  position: relative;
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: 11px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.cc-prod-card:hover {
  border-color: var(--cc-red);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.cc-prod-img-wrap {
  width: 100%;
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cc-bg-light);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.cc-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cc-prod-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: #172942;
  margin: 0 0 6px;
}
.cc-prod-title a {
  color: inherit;
  text-decoration: none;
}
.cc-prod-title a:hover {
  color: var(--cc-red);
}
.cc-prod-spec {
  font-size: 13px;
  color: #59687C;
  line-height: 1.5;
  margin-bottom: 2px;
}
.cc-prod-spec strong {
  color: var(--cc-heading);
  font-weight: 600;
}
.cc-prod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 12px;
}
.cc-prod-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 16px;
  background: var(--cc-white);
  color: var(--cc-red);
  border: 1px solid var(--cc-red);
  border-radius: 7px;
  font-weight: 650;
  font-size: 13px;
  text-decoration: none;
  transition: all .2s;
}
.cc-prod-btn a:hover {
  background: var(--cc-red);
  color: var(--cc-white);
}

/* View All CTA */
.cc-viewall-wrap {
  text-align: center;
  padding: 28px 0 0;
}
.cc-viewall-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 28px;
  background: var(--cc-red);
  color: var(--cc-white);
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
}
.cc-viewall-btn:hover {
  background: var(--cc-red-hover);
  color: var(--cc-white);
}

/* ============================================================
   7. BIG WASTE CONTAINERS
   ============================================================ */
.cc-big-section {
  padding: 38px 0 42px;
  background: var(--cc-white);
}
.cc-big-inner {
  display: grid;
  grid-template-columns: 72% 28%;
  gap: 24px;
  align-items: start;
}
.cc-big-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cc-big-card {
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: 11px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.cc-big-card:hover {
  border-color: var(--cc-red);
}
.cc-big-card-img {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cc-bg-light);
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.cc-big-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cc-big-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #172942;
  margin: 0 0 4px;
}
.cc-big-card-title a {
  color: inherit;
  text-decoration: none;
}
.cc-big-card-title a:hover { color: var(--cc-red); }
.cc-big-card-spec {
  font-size: 13px;
  color: #59687C;
  line-height: 1.5;
  margin-bottom: 8px;
}
.cc-big-card-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  background: var(--cc-white);
  color: var(--cc-red);
  border: 1px solid var(--cc-red);
  border-radius: 7px;
  font-weight: 650;
  font-size: 12px;
  text-decoration: none;
  transition: all .2s;
}
.cc-big-card-btn a:hover {
  background: var(--cc-red);
  color: var(--cc-white);
}

/* Info Panel */
.cc-info-panel {
  background: var(--cc-navy);
  border-radius: var(--cc-radius);
  padding: 22px 26px;
  color: var(--cc-white);
}
.cc-info-panel h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--cc-white);
  margin: 0 0 16px;
}
.cc-info-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cc-info-panel ul li {
  position: relative;
  padding: 0 0 12px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
}
.cc-info-panel ul li:last-child { padding-bottom: 0; }
.cc-info-panel ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: var(--cc-red);
  border-radius: 50%;
}

/* ============================================================
   8. SIZE SELECTION GUIDE
   ============================================================ */
.cc-guide-section {
  padding: 38px 0 42px;
  background: var(--cc-bg-light);
}
.cc-guide-table {
  width: 100%;
  border-collapse: separate;
  border: 1px solid var(--cc-border-light);
  border-radius: 10px;
  overflow: hidden;
}
.cc-guide-table thead th {
  background: #F6F8FB;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cc-heading);
  text-align: left;
  border-bottom: 1px solid var(--cc-border-light);
}
.cc-guide-table tbody td {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--cc-text);
  border-bottom: 1px solid #F0F3F7;
  line-height: 1.5;
}
.cc-guide-table tbody tr:last-child td {
  border-bottom: none;
}
.cc-guide-table tbody td:first-child {
  font-weight: 600;
  color: var(--cc-heading);
}

/* ============================================================
   9. APPLICATIONS
   ============================================================ */
.cc-apps-section {
  padding: 38px 0 42px;
  background: var(--cc-white);
}
.cc-apps-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.cc-app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 12px 6px;
  border-radius: 10px;
  transition: background .2s;
}
.cc-app-item:hover {
  background: var(--cc-bg-light);
}
.cc-app-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--cc-bg-light);
  color: var(--cc-navy);
  font-size: 22px;
}
.cc-app-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--cc-heading);
  line-height: 1.25;
}

/* ============================================================
   10. WHY CHOOSE
   ============================================================ */
.cc-benefits-section {
  padding: 38px 0 42px;
  background: var(--cc-bg-light);
}
.cc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.cc-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px 8px;
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  transition: transform .2s, box-shadow .2s;
}
.cc-benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.cc-benefit-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cc-bg-light);
  color: var(--cc-navy);
  font-size: 20px;
}
.cc-benefit-text {
  font-size: 13px;
  font-weight: 650;
  color: var(--cc-heading);
  line-height: 1.3;
}
.cc-benefit-sub {
  font-size: 11px;
  color: var(--cc-muted);
  line-height: 1.25;
  margin-top: -4px;
}

/* ============================================================
   11. FAQ
   ============================================================ */
.cc-faq-section {
  padding: 38px 0 42px;
  background: var(--cc-white);
}
.cc-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.cc-faq-item {
  background: var(--cc-white);
  border: 1px solid var(--cc-border-light);
  border-radius: 7px;
  overflow: hidden;
  transition: border-color .2s;
}
.cc-faq-item.open {
  border-color: var(--cc-red);
}
.cc-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background: var(--cc-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--cc-heading);
  gap: 12px;
  transition: background .2s;
}
.cc-faq-q:hover {
  background: #FAFBFD;
}
.cc-faq-q i {
  font-size: 14px;
  color: var(--cc-muted);
  flex-shrink: 0;
  transition: transform .3s;
}
.cc-faq-item.open .cc-faq-q i {
  transform: rotate(45deg);
  color: var(--cc-red);
}
.cc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.cc-faq-item.open .cc-faq-a {
  max-height: 300px;
  padding: 0 16px 14px;
}
.cc-faq-a p {
  font-size: 14px;
  line-height: 1.65;
  color: #526177;
  margin: 0;
}

/* ============================================================
   12. BOTTOM CTA
   ============================================================ */
.cc-cta-section {
  padding: 38px 0;
  background: var(--cc-bg-light);
}
.cc-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--cc-navy);
  border-radius: var(--cc-radius);
  padding: 22px 26px;
}
.cc-cta-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cc-white);
  margin: 0 0 4px;
  line-height: 1.3;
}
.cc-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.cc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  background: var(--cc-red);
  color: var(--cc-white);
  border: none;
  border-radius: 7px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cc-cta-btn:hover {
  background: var(--cc-red-hover);
  color: var(--cc-white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .cc-hero-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cc-hero-right {
    order: -1;
    justify-content: center;
  }
  .cc-hero-img {
    max-height: 240px;
  }
  .cc-type-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cc-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cc-big-inner {
    grid-template-columns: 1fr;
  }
  .cc-big-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .cc-apps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cc-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cc-hero {
    padding: 24px 0 28px;
  }
  .cc-hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cc-hero-right {
    order: 0;
    justify-content: center;
  }
  .cc-hero-img {
    max-height: 200px;
  }
  .cc-hero-title {
    font-size: 26px;
  }
  .cc-hero-subtitle {
    font-size: 16px;
  }
  .cc-hero-desc {
    font-size: 13px;
  }

  .cc-capacity-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .cc-cap-btn {
    height: 42px;
    font-size: 13px;
  }

  .cc-type-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .cc-type-card {
    min-height: 110px;
    padding: 10px 6px;
  }
  .cc-type-icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  .cc-type-label {
    font-size: 11px;
  }

  .cc-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cc-prod-img-wrap {
    height: 160px;
  }
  .cc-prod-card {
    padding: 10px;
  }
  .cc-prod-title {
    font-size: 14px;
  }

  .cc-big-cards {
    grid-template-columns: 1fr;
  }

  .cc-guide-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cc-apps-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  .cc-app-item {
    padding: 8px 4px;
  }

  .cc-benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .cc-faq-grid {
    grid-template-columns: 1fr;
  }

  .cc-cta-band {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
  }
  .cc-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .cc-capacity-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .cc-cap-btn {
    height: 40px;
    font-size: 12px;
  }
  .cc-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cc-products-grid {
    grid-template-columns: 1fr;
  }
  .cc-prod-img-wrap {
    height: 180px;
  }
  .cc-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cc-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Pagination (inherited from category.css) */
.cc-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* Product filtering visibility */
.cc-prod-card.cc-hidden {
  display: none;
}

/* ============================================================
   SIZE GUIDE — Card Format
   ============================================================ */
.cc-guide-intro {
  font-size: 14px;
  color: var(--cc-text);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cc-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.cc-guide-card {
  background: var(--cc-white);
  border: 1px solid var(--cc-border-light);
  border-radius: 10px;
  padding: 18px 20px;
}
.cc-guide-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cc-heading);
  margin: 0 0 10px;
}
.cc-guide-card-row {
  font-size: 13px;
  color: var(--cc-text);
  line-height: 1.6;
  margin-bottom: 6px;
}
.cc-guide-card-row:last-child { margin-bottom: 0; }
.cc-guide-card-row strong {
  color: var(--cc-heading);
  font-weight: 650;
}

/* ============================================================
   BUYING GUIDE SECTION — Checklist Layout
   ============================================================ */
.cc-guide-block-section {
  padding: 38px 0 42px;
  background: var(--cc-bg-light);
}
.cc-guide-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}
.cc-guide-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cc-white);
  border: 1px solid var(--cc-border-light);
  border-radius: 10px;
  transition: border-color .2s;
}
.cc-guide-check-item:hover {
  border-color: var(--cc-red);
}
.cc-guide-check-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #EEF2F7;
  color: var(--cc-navy);
  font-size: 17px;
  flex-shrink: 0;
}
.cc-guide-check-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cc-guide-check-content strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--cc-heading);
  line-height: 1.3;
}
.cc-guide-check-content span {
  font-size: 13px;
  color: var(--cc-text);
  line-height: 1.55;
}

/* ============================================================
   CATEGORY CONTENT SECTION
   ============================================================ */
.cc-content-section {
  padding: 38px 0 42px;
  background: var(--cc-white);
}
.cc-content-body {
  font-size: 15px;
  color: var(--cc-text);
  line-height: 1.75;
  max-width: 900px;
}
.cc-content-body p {
  margin-bottom: 14px;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
  .cc-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cc-guide-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cc-guide-grid {
    grid-template-columns: 1fr;
  }
  .cc-guide-checklist {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   COMPARISON TABLE (SS 202 vs SS 304)
   ============================================================ */
.cc-comparison-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1rem 0;
}
.cc-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cc-comparison-table th,
.cc-comparison-table td {
  padding: 12px 16px;
  border: 1px solid var(--cc-border, #e2e5ea);
  text-align: left;
  vertical-align: top;
}
.cc-comparison-table thead th {
  background: var(--cc-navy, #082B58);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.cc-comparison-table tbody td:first-child {
  font-weight: 700;
  color: var(--cc-heading, #10294D);
  background: #f7f9fc;
  white-space: nowrap;
}
.cc-comparison-table tbody tr:nth-child(even) td:not(:first-child) {
  background: #fafbfc;
}
.cc-comparison-note {
  font-size: 13px;
  color: #64748b;
  margin-top: 8px;
  font-style: italic;
}

/* ============================================================
   GUIDE TEXT (plain paragraph variant)
   ============================================================ */
.cc-guide-text {
  font-size: 14px;
  line-height: 1.75;
  color: #475569;
  max-width: 800px;
}
.cc-guide-text p {
  margin-bottom: 12px;
}

/* ============================================================
   GUIDE CARD TEXT (simple card variant)
   ============================================================ */
.cc-guide-card-text {
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* ============================================================
   BROWSE MODULE — Type + Capacity in ONE container
   ============================================================ */
.cc-browse-module {
  padding: 14px 0 0;
}
.cc-browse-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--cc-heading);
  margin: 0 0 8px;
}
.cc-browse-row {
  margin-bottom: 12px;
}
.cc-browse-subheading {
  font-size: 12px;
  font-weight: 650;
  color: var(--cc-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
}

/* Type chips — horizontal scroll */
.cc-type-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 2px;
}
.cc-type-scroll::-webkit-scrollbar { height: 3px; }
.cc-type-scroll::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }

.cc-type-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 42px;
  min-width: 120px;
  padding: 0 12px;
  background: var(--cc-white);
  border: 1px solid var(--cc-border);
  border-radius: 9px;
  font-size: 13px;
  font-weight: 650;
  color: var(--cc-heading);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .15s;
}
.cc-type-chip i { font-size: 16px; color: var(--cc-navy); flex-shrink: 0; }
.cc-type-chip:hover {
  border-color: var(--cc-red);
  color: var(--cc-red);
  text-decoration: none;
}
.cc-type-chip:hover i { color: var(--cc-red); }
.cc-type-chip.active {
  background: #EF2B2D;
  color: #FFFFFF;
  border-color: #EF2B2D;
}
.cc-type-chip.active i { color: #FFFFFF; }

/* Capacity chips — horizontal scroll */
.cc-cap-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 2px;
}
.cc-cap-scroll::-webkit-scrollbar { height: 3px; }
.cc-cap-scroll::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }

.cc-cap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 52px;
  padding: 0 10px;
  background: var(--cc-white);
  border: 1px solid #DDE4ED;
  border-radius: 7px;
  font-weight: 650;
  font-size: 13px;
  color: var(--cc-heading);
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.cc-cap-btn:hover {
  border-color: var(--cc-red);
  color: var(--cc-red);
}
.cc-cap-btn.active {
  background: #EF2B2D;
  color: #FFFFFF;
  border-color: #EF2B2D;
}

/* Product Results Header */
.cc-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 8px;
  border-top: 1px solid var(--cc-border-light);
  margin-top: 2px;
}
.cc-results-left {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.cc-results-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cc-heading);
}
.cc-results-count {
  font-size: 13px;
  color: var(--cc-muted);
  font-weight: 500;
}
.cc-clear-filter {
  background: #fff;
  border: 1px solid #EF2B2D;
  border-radius: 7px;
  padding: 0 12px;
  height: 34px;
  font-size: 12px;
  font-weight: 600;
  color: #EF2B2D;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.cc-clear-filter:hover {
  background: #EF2B2D;
  color: #fff;
  border-color: #EF2B2D;
}

/* Loading state inside grid */
.cc-loading { text-align: center; padding: 40px 20px; color: var(--cc-muted); }

/* ============================================================
   RESPONSIVE — Browse Module
   ============================================================ */
@media (max-width: 768px) {
  .cc-hero {
    padding: 14px 0 16px;
  }
  .cc-hero-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cc-hero-right { display: none; }
  .cc-hero-title { font-size: 18px; }
  .cc-hero-desc { font-size: 13px; }

  .cc-browse-module { padding: 16px 0 0; }
  .cc-browse-heading { font-size: 17px; margin-bottom: 12px; }

  .cc-results-header { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cc-hero-inner { grid-template-columns: 58% 42%; gap: 20px; }
  .cc-hero-title { font-size: 20px; }
}
