* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: Arial, sans-serif;
      background: #f7f7f7;
      color: #333;
      direction: rtl;
      line-height: 1.6;
      text-align: center;
    }
    header {
      background: #333;
      color: #fff;
      padding: 10px 20px;
      text-align: center;
    }
    header .logo {
      max-height: 40px;
    }
    .container {
      max-width: 90%;
      margin: 20px auto;
      background: #fff;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      border-radius: 8px;
    }
    .product-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      margin: 0 auto;
      display: block;
    }
    h1 {
      font-size: 24px;
      margin: 15px 0;
    }
    .affiliate-link {
      display: inline-block;
      padding: 12px 20px;
      background: #ff9900;
      color: #fff;
      text-decoration: none;
      border-radius: 6px;
      margin-top: 20px;
      font-size: 18px;
      transition: background 0.3s;
    }
    .affiliate-link:hover {
      background: #e68a00;
    }
    .fab {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: auto;
      height: 50px;
      background-color: #007bff;
      color: white;
      border-radius: 25px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 16px;
      padding: 0 15px;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: background 0.3s ease-in-out, transform 0.2s;
    }
    .fab:hover {
      background-color: #0056b3;
    }
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 10px;
      margin-top: 20px;
    }
    footer a {
      color: #ff9900;
      text-decoration: none;
      margin: 0 5px;
    }
    footer a:hover {
      text-decoration: underline;
    }
    .disclaimer {
      font-size: 14px;
      color: #777;
      margin-top: 15px;
    }
 .price {
      font-size: 20px;
      color: #b12704; /* لون قريب من لون السعر في أمازون */
      margin: 15px 0;
    }

    /* تحسين التصميم للهواتف */
    @media (max-width: 600px) {
      h1 {
        font-size: 20px;
      }
      .container {
        padding: 15px;
      }
      .affiliate-link {
        font-size: 16px;
        padding: 10px 15px;
      }
      .fab {
        font-size: 12px;
        padding: 8px 15px;
      }
    }
