
 
    /* ─── SECTION WRAPPER ─── */
.ips__section {
    /* Full width breakout */
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    padding: 0px 0 70px;
   
    overflow: hidden;
}
 
    /* ─── SECTION HEADER ─── */
    .ips__header {
      text-align: center;
      margin-bottom: 36px;
      padding: 0 20px;
    }
 
    .ips__eyebrow {
      display: inline-block;
      font-family: 'Arial', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #9b7b5a;
      margin-bottom: 10px;
    }
 
    .ips__title {
      font-size: clamp(22px, 4vw, 36px);
      font-weight: 400;
      letter-spacing: 0.5px;
      color: #1a1a1a;
      line-height: 1.2;
    }
 
    /* ─── TRACK WRAPPER (clips overflow) ─── */
    .ips__track-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      /* fade edges */
      -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
      );
      mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
      );
    }
 
    /* ─── SCROLLING TRACK ─── */
    .ips__track {
      display: flex;
      gap: 20px;
      width: max-content;
      animation: ips-scroll 30s linear infinite;
      will-change: transform;
    }
 
    /* pause on hover */
    .ips__track-wrap:hover .ips__track {
      animation-play-state: paused;
    }
 
    @keyframes ips-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
 
    /* ─── PRODUCT CARD ─── */
    .ips__card {
      flex: 0 0 auto;
      width: 280px;
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-decoration: none;
      color: inherit;
      display: block;
    }
 
    .ips__card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    }
 
    /* ─── CARD IMAGE ─── */
    .ips__card-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 3 / 4;
      background: #ede8e1;
      overflow: hidden;
    }
 
    .ips__card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
 
    .ips__card:hover .ips__card-img-wrap img {
      transform: scale(1.06);
    }
 
    /* badge */
    .ips__badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #1a1a1a;
      color: #fff;
      font-family: 'Arial', sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 2px;
    }
 
    .ips__badge--new    { background: #9b7b5a; }
    .ips__badge--hot    { background: #c00; }
    .ips__badge--collab { background: #1a1a1a; }
 
    /* ─── CARD BODY ─── */
    .ips__card-body {
      padding: 14px 14px 16px;
    }
 
    .ips__card-name {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.3px;
      color: #1a1a1a;
      line-height: 1.4;
      margin-bottom: 6px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
 
    .ips__card-price {
      font-family: 'Arial', sans-serif;
      font-size: 12px;
      color: #6b6b6b;
      letter-spacing: 0.5px;
    }
 
    .ips__card-price-old {
      text-decoration: line-through;
      margin-right: 6px;
      color: #bbb;
    }
 
    .ips__card-price-sale {
      color: #c00;
      font-weight: 600;
    }
 
    /* ─── CTA ROW ─── */
    .ips__cta-row {
      text-align: center;
      margin-top: 40px;
    }
 
    .ips__cta-btn {
      display: inline-block;
      font-family: 'Arial', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #1a1a1a;
      border: 1.5px solid #1a1a1a;
      padding: 13px 36px;
      text-decoration: none;
      transition: background 0.25s ease, color 0.25s ease;
      border-radius: 2px;
    }
 
    .ips__cta-btn:hover {
      background: #1a1a1a;
      color: #fff;
    }
 
    /* ─── MOBILE ─── */
    @media (max-width: 600px) {
      .ips__card { width: 165px; }
      .ips__section { padding: 44px 0 54px; }
    }

     @media (prefers-reduced-motion: reduce) {
    .ips__track { animation: none; }
  }