  :root {
    /* local extras */
    --rule:   #dcdad6;
    --smoke:  #f0eff0;
  }

/* ── Products Intro Strip ───────────────────────────────────── */
#products-intro {
    background: var(--primary);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
#products-intro .pi-inner {
    max-width: 90rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}
#products-intro .pi-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
    line-height: 1.4;
}
#products-intro .pi-cta {
    font-family: var(--headerFont);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}
#products-intro .pi-cta:hover { opacity: 0.75; }

/*-- -------------------------- -->
<---         Product Grid       -->
<--- -------------------------- -*/

#collection-1553 {
    padding: var(--sectionPadding);
    background: #f7f7f7;
}

#collection-1553 .cs-container {
    list-style: none;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1rem, 2vw, 1.25rem);
}

#collection-1553 .cs-item {
    position: relative;
    overflow: hidden;
    background: #111;
    height: 18rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

/* gradient overlay — always on, darkens on hover */
#collection-1553 .cs-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,50,0.82) 0%, rgba(10,15,50,0.25) 55%, transparent 100%);
    z-index: 1;
    transition: background 0.35s ease;
}
#collection-1553 .cs-item:hover::before {
    background: linear-gradient(to top, rgba(10,15,50,0.9) 0%, rgba(10,15,50,0.45) 65%, rgba(10,15,50,0.1) 100%);
}

/* image */
#collection-1553 .cs-picture {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    transition: transform 0.55s ease;
}
#collection-1553 .cs-item:hover .cs-picture { transform: scale(1.05); }
#collection-1553 .cs-picture img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* faded number */
#collection-1553 .cs-num {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    font-family: var(--headerFont);
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.09;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
    user-select: none;
}

/* title at the bottom */
#collection-1553 .cs-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.25rem 1.5rem 1.5rem;
    z-index: 3;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}
#collection-1553 .cs-item:hover .cs-body {
    border-left-color: var(--accent);
}

#collection-1553 .cs-h3 {
    font-family: var(--headerFont);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.1;
    margin: 0 0 0.5rem;
    color: #fff;
    text-align: left;
}

#collection-1553 .cs-desc,
#collection-1553 .cs-explore { display: none; }

/* View Products link — always visible */
#collection-1553 .cs-view {
    display: inline-block;
    font-family: var(--headerFont);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
#collection-1553 .cs-item:hover .cs-view { color: var(--accent); }

/* ── Tablet: 2-col ── */
@media only screen and (min-width: 48rem) {
    #collection-1553 .cs-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Desktop: 3-col ── */
@media only screen and (min-width: 64rem) {
    #collection-1553 .cs-container {
        grid-template-columns: repeat(3, 1fr);
    }
    #collection-1553 .cs-item { height: 20rem; }
}
                                

  /* ─── SECTION ─── */
  #collection-1624 {
    padding: var(--sectionPadding);
  }
 
  #collection-1624 .cs-container {
    width: 100%;
    max-width: 82rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
 
  /* ─── HEADER ROW ─── */
  #collection-1624 .cs-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 2px solid var(--steel);
    padding-bottom: 1rem;
  }
 
  .cs-header-left { display: flex; flex-direction: column; gap: 0.25rem; }
 
  .cs-eyebrow {
    font-family: var(--headerFont);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
  }
 
  #collection-1624 .cs-title {
    font-family: var(--headerFont);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--steel);
    line-height: 1;
  }
 
  #collection-1624 .cs-button-solid {
    font-family: var(--headerFont);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    color: #fff;
    background: var(--steel);
    border: 2px solid var(--steel);
    display: inline-block;
    transition: background 0.2s, color 0.2s;
  }
  #collection-1624 .cs-button-solid:hover {
    background: var(--primary);
    border-color: var(--primary);
  }
 
  /* ─── BODY ─── */
  #collection-1624 .cs-body {
    display: grid;
    grid-template-columns: 14rem 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  /* ─── SIDEBAR ─── */
  #collection-1624 .cs-sidebar {
    position: sticky;
    top: 9rem;
    border: 1px solid var(--rule);
    background: #fff;
    overflow: hidden;
  }
 
  .cs-sidebar-heading {
    font-family: var(--headerFont);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: var(--steel);
    padding: 0.65rem 1rem;
  }
 
  .cs-category-list {
    list-style: none;
  }

  /* Sidebar CTA card */
  .cs-sidebar-cta {
    background: var(--secondary);
    margin-top: 1.5rem;
    border-top: 3px solid var(--accent);
    padding: 1.75rem 1.25rem;
    position: relative;
    overflow: hidden;
  }
  .cs-sidebar-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    pointer-events: none;
  }
  .cs-sidebar-cta-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
  }
  .cs-sidebar-cta-icon svg {
    width: 1.375rem;
    height: 1.375rem;
    color: #fff;
  }
  .cs-sidebar-cta-title {
    font-family: var(--headerFont);
    font-size: clamp(1.125rem, 2vw, 1.3rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.625rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
    position: relative;
  }
  .cs-sidebar-cta-text {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.8);
    margin: 0 0 1.25rem;
    position: relative;
  }
  .cs-sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    background: #fff;
    padding: 0.625rem 1.125rem;
    text-decoration: none;
    position: relative;
    transition: background 0.25s, color 0.25s;
  }
  .cs-sidebar-cta-btn:hover {
    background: var(--accent);
    color: var(--primary);
  }

  .cs-category-item { border-bottom: 1px solid var(--rule); }
  .cs-category-item:last-child { border-bottom: none; }
 
  .cs-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--steel-light);
    transition: background 0.15s, color 0.15s;
  }
  .cs-category-link:hover {
    background: var(--smoke);
    color: var(--steel);
  }
  .cs-category-link.active {
    background: #fff8f5;
    color: var(--primary);
    font-weight: 700;
    border-left: 3px solid var(--primary);
    padding-left: calc(1rem - 3px);
  }
 
  .cs-cat-arrow {
    font-size: 0.65rem;
    opacity: 0.4;
  }
  .cs-category-link.active .cs-cat-arrow { opacity: 1; color: var(--primary); }
 
  /* ─── PRODUCT GRID ─── */
  #collection-1624 .cs-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
    gap: 1.5rem;
    list-style: none;
  }
 
  #collection-1624 .cs-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--rule);
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 0.4s forwards;
  }
  #collection-1624 .cs-item:nth-child(1) { animation-delay: 0.04s; }
  #collection-1624 .cs-item:nth-child(2) { animation-delay: 0.08s; }
  #collection-1624 .cs-item:nth-child(3) { animation-delay: 0.12s; }
  #collection-1624 .cs-item:nth-child(4) { animation-delay: 0.16s; }
  #collection-1624 .cs-item:nth-child(5) { animation-delay: 0.20s; }
  #collection-1624 .cs-item:nth-child(6) { animation-delay: 0.24s; }
  #collection-1624 .cs-item:nth-child(7) { animation-delay: 0.28s; }
  #collection-1624 .cs-item:nth-child(8) { animation-delay: 0.32s; }
  #collection-1624 .cs-item:nth-child(9) { animation-delay: 0.36s; }
  #collection-1624 .cs-item:nth-child(10) { animation-delay: 0.40s; }
 
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
 
  #collection-1624 .cs-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
 
  /* Square image */
  #collection-1624 .cs-image-group {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
 
  /* SVG icon placeholder for each spring product */
  .cs-product-icon {
    width: 60%;
    height: 60%;
    opacity: 0.18;
    transition: opacity 0.3s, transform 0.4s;
  }
  #collection-1624 .cs-item:hover .cs-product-icon {
    opacity: 0.25;
    transform: scale(1.08) rotate(3deg);
  }
 
  /* If a real image is used */
  #collection-1624 .cs-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;

  }
  #collection-1624 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
  }
  #collection-1624 .cs-item:hover .cs-picture img {
    transform: scale(1.06);
  }
 
  /* Industry tag (top-left corner of image) */
  .cs-industry-tag {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    font-family: var(--headerFont);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.55rem;
    background: var(--steel);
    color: #fff;
    z-index: 2;
  }
 
  /* ─── CARD DETAILS ─── */
  #collection-1624 .cs-details {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.35rem;
    border-top: 2px solid var(--smoke);
  }
 
  #collection-1624 .cs-product {
    font-family: var(--headerFont);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--steel);
    line-height: 1.2;
    transition: color 0.2s;
  }
  #collection-1624 .cs-item:hover .cs-product { color: var(--primary); }
 
  #collection-1624 .cs-teaser {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--text-muted);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
 
  #collection-1624 .cs-details-btn {
    font-family: var(--headerFont);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    transition: gap 0.2s;
  }
  #collection-1624 .cs-item:hover .cs-details-btn { gap: 0.6rem; }
 
  /* ─── RESPONSIVE ─── */
  @media (max-width: 48rem) {
    #collection-1624 .cs-body {
      grid-template-columns: 1fr;
    }
    #collection-1624 .cs-sidebar {
      position: static;
    }
    .cs-category-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    .cs-category-item { border-right: 1px solid var(--rule); }
  }
 
  @media (max-width: 30rem) {
    .cs-category-list { grid-template-columns: 1fr; }
  }

    /* ── SECTION ── */
  #collection-1624 {
    padding: var(--sectionPadding);
  }
 
  #collection-1624 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }
 
  /* ── HEADER ROW ── */
  #collection-1624 .cs-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 1rem;
  }
 
  .cs-header-left { display: flex; flex-direction: column; gap: 0.25rem; }
 
  /* .cs-topper — matches your global style */
  #collection-1624 .cs-topper {
    display: block;
    text-transform: uppercase;
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.08em;
  }
 
  /* .cs-title — matches your global style */
  #collection-1624 .cs-title {
    margin: 0;
    text-transform: uppercase;
    font-family: var(--headerFont);
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--headerColor);
  }
 
  /* .cs-button-solid — matches your global style */
  #collection-1624 .cs-button-solid {
    z-index: 1;
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background-color: var(--primary);
    overflow: hidden;
    padding: 0 1.75rem;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--headerFont);
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
    gap: 0.75rem;
  }
  #collection-1624 .cs-button-solid::before {
    z-index: -1;
    position: absolute;
    top: 0; left: 0;
    content: "";
    background: var(--accent);
    height: 100%; width: 0%;
    transition: width 0.3s;
  }
  #collection-1624 .cs-button-solid:hover { color: var(--dark); }
  #collection-1624 .cs-button-solid:hover::before { width: 100%; }
 
  /* ── BODY: SIDEBAR + GRID ── */
  #collection-1624 .cs-body {
    display: grid;
    grid-template-columns: 14.5rem 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
  }
 
  /* ── SIDEBAR ── */
  #collection-1624 .cs-sidebar {
    position: sticky;
    top: 9rem;
    background: #fff;
    border-top: 4px solid var(--secondary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
  }
 
  .cs-sidebar-heading {
    font-family: var(--headerFont);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bodyTextColorWhite);
    background: var(--dark);
    padding: 0.7rem 1.1rem;
  }
 
  .cs-category-list { list-style: none; }
 
  .cs-category-item {
    border-bottom: 1px solid var(--rule);
  }
  .cs-category-item:last-child { border-bottom: none; }
 
  .cs-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 0.75rem 1.1rem;
    font-family: var(--bodyFont);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--bodyTextColor);
    transition: background 0.15s, color 0.15s, border-left-color 0.15s;
    border-left: 3px solid transparent;
  }
  .cs-category-link:hover {
    background: var(--smoke);
    color: var(--primary);
    border-left-color: var(--primary);
  }
  .cs-category-link.active {
    background: #fff8e6;
    color: var(--secondary);
    font-weight: 700;
    border-left: 3px solid var(--secondary);
  }
 
  .cs-cat-arrow { font-size: 0.7rem; opacity: 0.4; }
  .cs-category-link.active .cs-cat-arrow { opacity: 1; color: var(--secondary); }
 
  /* ── PRODUCT GRID ── */
  #collection-1624 .cs-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    list-style: none;
  }
 
  #collection-1624 .cs-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-top: 3px solid transparent;
    box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    opacity: 0;
    transform: translateY(14px);
    animation: fadeUp 0.4s forwards;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  #collection-1624 .cs-item:hover {
    border-top-color: var(--secondary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }
 
  /* staggered entrance */
  #collection-1624 .cs-item:nth-child(1)  { animation-delay: 0.04s; }
  #collection-1624 .cs-item:nth-child(2)  { animation-delay: 0.08s; }
  #collection-1624 .cs-item:nth-child(3)  { animation-delay: 0.12s; }
  #collection-1624 .cs-item:nth-child(4)  { animation-delay: 0.16s; }
  #collection-1624 .cs-item:nth-child(5)  { animation-delay: 0.20s; }
  #collection-1624 .cs-item:nth-child(6)  { animation-delay: 0.24s; }
  #collection-1624 .cs-item:nth-child(7)  { animation-delay: 0.28s; }
  #collection-1624 .cs-item:nth-child(8)  { animation-delay: 0.32s; }
  #collection-1624 .cs-item:nth-child(9)  { animation-delay: 0.36s; }
  #collection-1624 .cs-item:nth-child(10) { animation-delay: 0.40s; }
 
  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
 
  #collection-1624 .cs-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
 
  /* ── SQUARE IMAGE BOX ── */
  #collection-1624 .cs-image-group {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .cs-product-icon {
    width: 52%;
    height: 52%;
    opacity: 0.13;
    transition: opacity 0.35s, transform 0.4s;
  }
  #collection-1624 .cs-item:hover .cs-product-icon {
    opacity: 0.22;
    transform: scale(1.1) rotate(4deg);
  }
 
  /* industry tag */
  .cs-industry-tag {
    position: absolute;
    top: 0; left: 0;
    font-family: var(--headerFont);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    background: var(--primary);
    color: #fff;
  }
 
  /* ── CARD DETAILS ── */
  #collection-1624 .cs-details {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.35rem;
    border-top: 1px solid var(--rule);
  }
 
  /* .cs-h3 matches global header font rule */
  #collection-1624 .cs-product {
    font-family: var(--headerFont);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--headerColor);
    line-height: 1.2;
    transition: color 0.2s;
  }
  #collection-1624 .cs-item:hover .cs-product { color: var(--secondary); }
 
  #collection-1624 .cs-teaser {
    font-family: var(--bodyFont);
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--bodyTextColor);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
 
  /* CTA — uses the cs-button-6 pattern from root.css */
  #collection-1624 .cs-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--headerFont);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.1rem;
    align-self: flex-start;
    transition: color 0.2s, border-color 0.2s, gap 0.2s;
  }
  #collection-1624 .cs-item:hover .cs-details-btn {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    gap: 0.75rem;
  }
 
  /* ── RESPONSIVE ── */
  @media (max-width: 48rem) {
    #collection-1624 .cs-body {
      grid-template-columns: 1fr;
    }
    #collection-1624 .cs-sidebar {
      position: static;
    }
    .cs-category-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    .cs-category-item { border-right: 1px solid var(--rule); }
    #collection-1624 .cs-header-row { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 30rem) {
    .cs-category-list { grid-template-columns: 1fr; }
  }