/* Add custom CSS styles below */ 
/* Add custom CSS styles below */ 
.bayouni-branches {
  background: transparent;
  padding: 20px 15px;
  text-align: center;
  direction: rtl;
}

.bayouni-branches h3 {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 10px;
}

.bayouni-branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.bayouni-branch-item {
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 12px 10px;
}

.bayouni-branch-item h4 {
  color: #e8c97e;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.bayouni-branch-item p {
  color: rgba(255,255,255,0.85);
  font-size: 20px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 480px) {
  .bayouni-branches-grid {
    grid-template-columns: 1fr;
  }
}
/* ----------------- */
/* --- تنسيق اسم المنتج للشاشات الصغيرة (الموبايل) --- */
.product-single__info h1 {
    font-size: 26px !important;      /* حجم الخط للموبايل */
    line-height: 1.3 !important;     /* لتقليص الارتفاع الافتراضي ومنع التداخل */
    margin-bottom: 15px !important;  /* إجبار القالب على عمل هامش سفلي ومسافة مريحة */
}

/* --- تنسيق اسم المنتج للشاشات الكبيرة (الكمبيوتر) --- */
@media (min-width: 768px) {
    .product-single__info h1 {
        font-size: 34px !important;      /* تكبير الخط على الكمبيوتر */
        margin-bottom: 22px !important;  /* زيادة الهامش على الكمبيوتر لتناسق المظهر */
    }
}
/* تعديل حجم ولون وهامش العنوان الفرعي للمنتج */
.product-entry__sub-title {
    font-size: 20px !important;      /* لتكبير الخط (يمكنك زيادة الرقم أو إنقاصه) */
    color: #e53e3e !important;          /* لتغيير اللون (مستوحى من اللون الأحمر في صورتك) */
    margin-bottom: 16px !important;   /* لزيادة الهامش السفلي وإعطاء مساحة إضافية */
}