/* أنماط الخصم المحسنة */
  .discount-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: #ff4757;
      color: white;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: bold;
      z-index: 10;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }

      100% {
          transform: scale(1);
      }
  }

  .original-price {
      text-decoration: line-through;
      color: #2f2a2a;
      font-size: 0.85em;
      margin-left: 8px;
  }

  .discounted-price {
      color: #cd3131;
      font-weight: bold;
      font-size: 0.8em;
  }

  .save-amount {
      display: block;
      color: #28a745;
      font-size: 0.6em;
      margin-top: 3px;
  }

  .product-card {
      position: relative;
      overflow: hidden;
  }

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

  .product-slider {
      position: relative;
      width: 100%;
  }

  .product-slides {
      position: relative;
      display: flex;
  }

  .product-slide {
      min-width: 100%;
      transition: opacity 0.5s ease;
      opacity: 0;
      position: absolute;
      top: 0;
      left: 0;
  }

  .product-slide.active {
      opacity: 1;
      position: relative;
  }

  .product-prev,
  .product-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      font-size: 11px;
      padding: 5px 10px;
      cursor: pointer;
  }

  .product-prev {
      right: 10px;
  }

  .product-next {
      left: 10px;
  }

  .size-badge {
      display: inline-block;
      padding: 4px 8px;
      font-size: 12px;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin: 2px;
  }

  .discount-banner {
      background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
      padding: 20px;
      border-radius: 8px;
      margin-bottom: 30px;
      text-align: center;
      color: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  .discount-banner h1 {
      font-size: 2.2rem;
      margin-bottom: 10px;
  }

  .discount-banner p {
      font-size: 1.2rem;
      margin-bottom: 15px;
  }