/* Add custom CSS styles below */ 


#quiz-container {
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  direction: rtl;
  text-align: center;
  font-family: "Cairo", sans-serif;
}

.quiz-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #222;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-options button {
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.quiz-options button:hover {
  background: #444;
}

.quiz-link {
  display: inline-block;
  margin-top: 20px;
  background: #fdd835;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

#quiz-container {
  max-width: 500px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  direction: rtl;
  text-align: center;
  font-family: "Cairo", sans-serif;
}

.quiz-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #222;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.quiz-options button {
  padding: 12px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.quiz-options button:hover {
  background: #444;
}

.quiz-link {
  display: inline-block;
  margin-top: 20px;
  background: #fdd835;
  color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}
_________________________________________________
/* تعديل تصميم بطاقة المنتج */
.product-card {
    position: relative;
}

/* زر العرض السريع */
.product-card .quick-view-button {
    position: absolute !important;
    top: 10px;
    right: 10px;
    z-index: 5;
}

/* زر الإضافة إلى السلة */
.product-card .add-to-cart-button {
    position: absolute !important;
    top: 10px;
    left: 10px;
    z-index: 5;
}