    .win-section-title {
      font-size: 13px;
      font-weight: bold;
      color: #000000;
      padding: 10px 0px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      font-family: "BPG Arial Caps", sans-serif;
      border-bottom: solid #959595 3px;
    }

    .win-slider-controls {
      display: flex;
      gap: 10px;
    }

    .win-slider-controls button {
      padding: 6px 12px;
      background-color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-weight: bold;
      color: #007bff;
      transition: background 0.3s;
    }

    .win-slider-controls button:hover {
      background: #cce5ff;
    }

    .win-slider-container {
      overflow: hidden;
      position: relative;
    }

    .win-slider-track {
      display: flex;
      transition: transform 0.5s ease;
      gap: 20px;
    }

    .win-card-1 {
      flex: 0 0 calc(100% / 7 - 17px);
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      position: relative;
      margin-bottom: 25px;
    }

    .win-card-1 img {
      width: 100%;
      height: auto;
      display: block;
    }

    .win-discount-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: red;
      color: white;
      font-size: 14px;
      padding: 4px 8px;
      border-radius: 8px;
      font-weight: bold;
    }

    .win-card-content {
      padding: 10px;
    }

    .win-card-title {
      font-size: 13px;
      margin-bottom: 8px;
      font-weight: bold;
      font-family: "BPG Arial Caps", sans-serif;
    }

    .win-prices {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .win-old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 14px;
    }

    .win-new-price {
      font-size: 16px;
      color: green;
      font-weight: bold;
    }

    .win-stock {
      margin-top: 8px;
      font-size: 12px;
      font-weight: bold;
      color: #007bff;
      font-family: "BPG Arial Caps", sans-serif;
    }

    @media screen and (max-width: 768px) {
      .win-card-1 {
        flex: 0 0 calc(50% - 10px);
      }
    }