/* ── reset heading colour for light sections ── */
  .prod-page h1,
  .prod-page h2,
  .prod-page h3,
  .prod-page h4,
  .prod-page h5 {
    color: #1a1a1a !important;
  }

  /* ══ INTRO HERO STRIP ══ */
  .prod-intro {
    background: #fff;
    padding: 70px 0 60px;
    border-bottom: 1px solid #eeebe4;
  }

  .prod-intro-eyebrow {
    display: inline-block;
    font-size: 10.5px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8912e;
    border: 1px solid rgba(184,145,46,.35);
    padding: 6px 20px;
    border-radius: 2px;
    margin-bottom: 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  .prod-intro h2 {
    font-size: clamp(26px, 4vw, 42px) !important;
    font-weight: 700;
    color: #1a1a1a !important;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .prod-intro h2 em {
    font-style: normal;
    color: #b8912e !important;
  }

  .prod-intro-lead {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 36px;
  }

  /* stats row */
  .prod-intro-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
  }

  .prod-stat {
    text-align: left;
  }

  .prod-stat-num {
    font-size: 34px;
    font-weight: 800;
    color: #b8912e !important;
    line-height: 1;
    display: block;
  }

  .prod-stat-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    margin-top: 4px;
  }

  /* right side badge panel */
  .prod-intro-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    height: 100%;
    align-content: center;
  }

  .prod-badge {
    background: #faf8f4;
    border: 1px solid #eeebe4;
    border-left: 3px solid #b8912e;
    border-radius: 4px;
    padding: 18px 20px;
  }

  .prod-badge i {
    font-size: 20px;
    color: #b8912e;
    margin-bottom: 10px;
    display: block;
  }

  .prod-badge strong {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
  }

  .prod-badge span {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
  }

  /* ══ CATEGORY TABS ══ */
  .prod-tabs-bar {
    background: #faf8f4;
    border-bottom: 2px solid #eeebe4;
    padding: 0;
    position: sticky;
    top: 80px;
    z-index: 90;
  }

  .prod-tabs-inner {
    display: flex;
    gap: 0;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .prod-tab-btn {
    padding: 18px 36px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color .25s, border-color .25s;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .prod-tab-btn:hover,
  .prod-tab-btn.active {
    color: #b8912e;
    border-bottom-color: #b8912e;
  }

  .prod-tab-btn i { font-size: 15px; }

  /* ══ CATEGORY SECTIONS ══ */
  .prod-category {
    padding: 90px 0 80px;
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  .prod-category:nth-child(even) {
    background: #faf8f4;
  }

  /* section anchor offset fix */
  .prod-anchor {
    display: block;
    position: relative;
    top: -120px;
    visibility: hidden;
  }

  /* ── category header ── */
  .prod-cat-header {
    margin-bottom: 56px;
  }

  .prod-cat-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #b8912e;
    border: 1px solid rgba(184,145,46,.3);
    padding: 5px 16px;
    border-radius: 2px;
    margin-bottom: 14px;
  }

  .prod-cat-title {
    font-size: clamp(28px, 4vw, 44px) !important;
    font-weight: 800;
    color: #1a1a1a !important;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  .prod-cat-desc {
    font-size: 15.5px;
    color: #555;
    line-height: 1.85;
    max-width: 560px;
  }

  /* gold divider */
  .prod-cat-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #b8912e, #e8c96a);
    border-radius: 2px;
    margin: 22px 0;
  }

  /* ── image block ── */
  .prod-cat-img-wrap {
    position: relative;
  }

  .prod-cat-img-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }

  /* floating badge on image */
  .prod-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,.96);
    border-left: 3px solid #b8912e;
    border-radius: 4px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
  }

  .prod-img-badge strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #b8912e;
    line-height: 1;
  }

  .prod-img-badge span {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888;
  }

  /* ── products grid ── */
  .prod-items-heading {
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a !important;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eeebe4;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .prod-items-heading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #b8912e;
    flex-shrink: 0;
  }

  .prod-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
  }

  @media (max-width: 480px) {
    .prod-items-grid { grid-template-columns: 1fr; }
  }

  .prod-item-pill {
    background: #fff;
    border: 1px solid #e8e4da;
    border-radius: 4px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: border-color .25s, box-shadow .25s;
  }

  .prod-category:nth-child(even) .prod-item-pill {
    background: #fff;
  }

  .prod-item-pill:hover {
    border-color: #b8912e;
    box-shadow: 0 4px 16px rgba(184,145,46,.1);
  }

  .prod-item-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b8912e;
    flex-shrink: 0;
  }

  .prod-item-pill span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
  }

  /* ── feature tags ── */
  .prod-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
  }

  .prod-feature-tag {
    font-size: 11.5px;
    font-weight: 600;
    color: #b8912e;
    background: rgba(184,145,46,.08);
    border: 1px solid rgba(184,145,46,.2);
    border-radius: 3px;
    padding: 5px 12px;
  }

  /* ── CTA ── */
  .prod-cta-strip {
    background: linear-gradient(135deg, #1a1a1a 0%, #2e2a22 100%);
    border-radius: 6px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .prod-cta-strip p {
    color: rgba(255,255,255,.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
  }

  .prod-cta-strip strong {
    display: block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
  }

  .prod-cta-btn {
    background: linear-gradient(135deg, #b8912e, #d4a83a);
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .25s;
    display: inline-block;
  }

  .prod-cta-btn:hover { opacity: .85; }

  /* ── quality promise strip ── */
  .prod-promise {
    background: #1a1a1a;
    padding: 56px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }

  .prod-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  @media (max-width: 992px) {
    .prod-promise-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 576px) {
    .prod-promise-grid { grid-template-columns: 1fr 1fr; }
    .prod-tabs-inner { justify-content: flex-start; overflow-x: auto; }
    .prod-tab-btn { padding: 16px 22px; white-space: nowrap; }
  }

  .prod-promise-item {
    padding: 32px 30px;
    border-right: 1px solid rgba(255,255,255,.07);
    text-align: center;
  }

  .prod-promise-item:last-child { border-right: none; }

  .prod-promise-item i {
    font-size: 28px;
    color: #b8912e;
    margin-bottom: 14px;
    display: block;
  }

  .prod-promise-item h4 {
    font-size: 14px !important;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 8px;
  }

  .prod-promise-item p {
    font-size: 12.5px;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
    margin: 0;
  }