body {
    background-color: #504f4f;
  }
  
  main {
    padding-top: 0;
    padding-bottom: 40px;
  }
  
  /* What We Carry box */
  .what-we-carry-box {
    background-color: #660707;
    color: #cccbcb;
    border: 2px solid #ccc;
    padding: 16px;
    margin: 20px;
    border-radius: 4px;
    text-align: center;
  }
  .what-we-carry-box h2 {
    margin-bottom: 8px;
    text-decoration: underline;
  }
  .what-we-carry-box p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  /* Product wheel base styling */
  .product-wheel {
    overflow: hidden;
    margin: 20px 0;
  }
  .product-wheel .wheel-viewport {
    overflow: hidden;
    width: 100%;
  }
  .product-wheel .wheel-track {
    display: flex;
    flex-direction: row;
    will-change: transform;
  }
  .product-wheel .wheel-item {
    flex: 0 0 auto;
    padding: 10px;
  }
  .product-wheel .wheel-item img {
    width: 100px;
    height: 80px;
    display: block;
  }
  
  /* Desktop layout: full-width wheels with 20px side gutters */
  @media (min-width: 1100px) {
    .product-wheel-left,
    .product-wheel-right {
      margin: 20px 20px;
      width: calc(100% - 40px); /* full width minus 20px gutters */
    }
  }