/* ==========================================================================
   IKON PARTITIONS — CATEGORY PAGE STYLES
   ========================================================================== */

/* ==========================================================================
   BREADCRUMB + HERO LAYOUT
   ========================================================================== */

.cat-breadcrumb {
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
}

.cat-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
}

.cat-breadcrumb a:hover {
  color: var(--primary);
}

.cat-breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 10px;
}

.cat-breadcrumb-active {
  color: rgba(255, 255, 255, 0.9);
}


.cat-hero-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  width: 32%;
}

/* ==========================================================================
   ABOUT STRIP
   ========================================================================== */

.cat-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111111;
}

.cat-about-text {
  background: #111111;
  color: var(--text-light);
  padding: 80px clamp(20px, 8vw, 120px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cat-about-desc-top-margin {
  margin-top: 24px;
}

.cat-about-title {
  font-family: 'Arial', serif;
  font-size: 38.4px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.cat-about-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 15.2px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
  margin-bottom: 0;
}

.cat-about-desc:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CATEGORY STATS
   ========================================================================== */

.cat-about-stats {
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px clamp(20px, 4vw, 120px);
}

.cat-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  gap: 8px;
}

.cat-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 36px;
  background: #5353534d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 150px;
}

.cat-stat-num {
  font-family: 'Arial', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.cat-stat-unit {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--primary);
}

.cat-stat-unit::before {
  content: '/';
  color: var(--primary);
  font-weight: 300;
  font-size: 15px;
  margin: 0 6px;
  display: inline;
  background: none;
  width: auto;
  height: auto;
  vertical-align: baseline;
}

.cat-stat-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */

.cat-products {
  background: #FFFFFF;
  color: var(--text-dark);
  padding: 112px 0;
}

.cat-products-header {
  margin-bottom: 64px;
}

.cat-products-title {
  font-family: 'Arial', sans-serif;
  font-size: 38.4px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cat-products-intro {
  font-family: 'Outfit', sans-serif;
  font-size: 15.2px;
  font-weight: 300;
  color: #5A5550;
  line-height: 1.85;
  max-width: 518px;
  margin: 0;
}

.cat-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: #fff;
}

/* ==========================================================================
   PRODUCT CARD
   ========================================================================== */

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  text-decoration: none;
  color: var(--text-dark);
  transition: background 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  background: #fff;
}

.product-card-img {
  position: relative;
  height: 254px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(26, 26, 26, 1);
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 13.3px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 4px 12px;
  border: solid 1px #B8965A;
  opacity: 0.8;
}

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

.product-name {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.15;
}

.product-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13.4px;
  font-weight: 300;
  color: #5A5550;
  line-height: 1.75;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-specs {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.product-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-num {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark);
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1.2;
}

.spec-unit {
  font-family: 'Arial', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--primary);
}

.spec-unit::before {
  content: '/';
  color: var(--primary);
  font-weight: 300;
  font-size: 14px;
  margin: 0 3px;
  display: inline;
  background: none;
  width: auto;
  height: auto;
  vertical-align: baseline;
}

.spec-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 9.9px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.product-quote-btn {
  font-size: 10.9px;
  padding: 14px 32px;
  letter-spacing: 0;
  cursor: pointer;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.product-view-link {
  font-family: 'Outfit', sans-serif;
  font-size: 9.9px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
}

.product-view-link .link-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 6px;
}

.product-view-link .link-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
}

.product-card:hover .product-view-link {
  color: var(--primary);
}

/* ==========================================================================
   RESPONSIVE — CATEGORY PAGE
   ========================================================================== */

@media (max-width: 992px) {

  /* Hero — stack content at the top with a 20px gap from above */
  .page-hero {
    height: 715px;
    min-height: 715px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .cat-breadcrumb {
    position: static;
    margin-top: 30px;
    justify-content: flex-start;
    text-align: left;
    margin-left: 5px;

  }

  .cat-breadcrumb-active {
    color: #fff;
  }

  .page-hero .section-tag {
    font-size: 11px;
  }

  .page-hero-title {
    font-size: 46px;
  }

  .page-hero-inner {
    padding-top: 16px;
    padding-bottom: 80px;
  }

  .cat-hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 65px;
  }

  .cat-hero-text {
    width: 100%;
  }

  .cat-about {
    grid-template-columns: 1fr;
  }

  .cat-about-text {
    padding: 64px 24px;
  }

  .cat-about-title {
    font-size: 30px;
    line-height: 38px;
  }

  .cat-about-stats {
    grid-template-columns: 1fr 1fr;
    padding: 24px;
  }

  .cat-stat-item {
    padding: 32px 16px;
    justify-content: flex-start;
  }

  .cat-products {
    padding: 64px 0;
  }

  .cat-products-header {
    margin-bottom: 40px;
  }

  .cat-products-title {
    font-size: 30px;
    line-height: 38px;
  }

  .cat-products-intro {
    font-size: 14px;
    max-width: none;
    margin: 0;
  }

  .cat-products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding-top: 15px;
  }

  .product-badge {
    font-size: 13px;
  }

  .product-card-body {
    padding: 24px 24px 20px;
  }

  .product-card-img {
    height: 220px;
  }
}