/* 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 {
    /* 1. الحواف الدائرية العصرية */
    border-radius: 20px; 
    
    /* 2. الخلفية والحدود */
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05); /* إطار خفيف جداً لتحديد الشكل */

    /* 3. الظلال الناعمة (طبقات متعددة لعمق واقعي) */
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.03), 
        0 4px 10px rgba(0, 0, 0, 0.02);
    
    /* 4. سلاسة الحركة */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden; /* لضمان عدم خروج الصور عن الحواف الدائرية */
}

/* التأثير الجمالي عند مرور الماوس (Hover) */
.product-card:hover {
    /* رفع البطاقة للأعلى قليلاً */
    transform: translateY(-10px); 
    
    /* زيادة نعومة وعمق الظل لإعطاء إيحاء بالارتفاع */
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08), 
        0 10px 20px rgba(0, 0, 0, 0.04);
        
    border-color: rgba(0, 0, 0, 0.1);
}
/*******/
_________________________________________________
/* تعديل تصميم بطاقة المنتج */
.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;
}
_________________________________________________