    .sale-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .sale-title {
      font-size: 13px;
      font-weight: bold;
      position: relative;
      font-family: "BPG Arial Caps", sans-serif;
    }

    .sale-title::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 50px;
      height: 3px;
      background-color: #f44336;
    }

    .sale-controls {
      display: flex;
      gap: 10px;
      margin-top: 10px;
    }

    .sale-slider-btn {
      width: 35px;
      height: 35px;
      border-radius: 50%;
      background: #f0f0f0;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      font-size: 18px;
    }

    .sale-slider-btn:hover {
      background: #f44336;
      color: white;
    }

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

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

    .sale-item {
      flex: 0 0 calc(50% - 10px);
      min-width: calc(50% - 10px);
      background: #fff;
      border-radius: 8px;
      padding: 10px;
      position: relative;
      border: solid #d5d5d5 1px;
      font-family: "DejaVu Sans", sans-serif;
    }

    .sale-badge {
      position: absolute;
      top: 22px;
      left: 10px;
      background-color: #f44336;
      color: #fff;
      font-size: 12px;
      font-weight: bold;
      padding: 4px 8px;
      /* border-radius: 4px; */
    }

    .sale-content {
      display: flex;
      gap: 20px;
    }

    .sale-image {
      width: 180px;
      height: auto;
      object-fit: contain;
    }

    .sale-details {
      flex: 1;
    }

    .sale-product-title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 5px;
    }

    .sale-rating {
      color: #ffb400;
      font-size: 14px;
      margin-bottom: 5px;
    }

    .sale-price {
      font-size: 18px;
      color: #f44336;
      font-weight: bold;
    }

    .sale-old-price {
      text-decoration: line-through;
      color: #888;
      margin-left: 10px;
      font-size: 14px;
    }

    .sale-timer-label {
      font-size: 14px;
      margin-top: 10px;
    }

    .sale-timer {
      display: flex;
      gap: 10px;
      margin: 10px 0;
    }

    .sale-timer-unit {
      background: #f0f0f0;
      padding: 8px 12px;
      border-radius: 5px;
      font-weight: bold;
      font-size: 13px;
    }

    .sale-progress {
      width: 100%;
      height: 8px;
      background: #ddd;
      border-radius: 4px;
      overflow: hidden;
      margin: 10px 0;
    }

    .sale-progress-bar {
      height: 100%;
      background: #f44336;
    }

    .sale-stock {
      font-size: 14px;
    }

    /* Responsive styles */
    @media (max-width: 1024px) {
      .sale-item {
        flex: 0 0 100%;
        min-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .sale-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .sale-content {
        flex-direction: column;
        gap: 15px;
      }

      .sale-image {
        width: 100%;
        height: auto;
        margin: 0 auto;
      }

      .sale-slider-btn {
        font-size: 20px;
        width: 40px;
        height: 40px;
      }

      .sale-title {
        font-size: 22px;
      }

      .sale-product-title {
        font-size: 17px;
      }

      .sale-price {
        font-size: 20px;
      }
    }