/* =========================================================
   المزار الدمشقي — إضافات صفحتي /menu و /breakfast
   لا تغيّر أي تنسيق قائم، تضيف فقط زر العودة وحالة الفطور.
   ========================================================= */

.back-to-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 16px;
  padding: 9px 15px 9px 13px;
  min-height: 42px;
  font-family: "IBM Plex Sans Arabic", system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 600;
  line-height: 1;
  color: #6F2F27;
  text-decoration: none;
  background: #FFFDF9;
  border: 1px solid #DED4CC;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(47, 39, 35, .05);
  -webkit-tap-highlight-color: transparent;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.back-to-choice svg {
  width: 17px;
  height: 17px;
  flex: none;
}

@media (hover: hover) and (pointer: fine) {
  .back-to-choice:hover {
    background: #F1E8E1;
    box-shadow: 0 2px 8px rgba(47, 39, 35, .07);
  }
  .back-to-choice:hover svg { transform: translateX(3px); }
}

.back-to-choice svg { transition: transform .2s ease; }

.back-to-choice:active { transform: scale(.98); }

.back-to-choice:focus-visible {
  outline: 3px solid #6F2F27;
  outline-offset: 3px;
}

/* حالة الفطور: إخفاء ما هو خارج تصنيف الفطور دون حذفه من البيانات */
[data-menu-view="breakfast"] .is-hidden-view {
  display: none !important;
}

/* الأسماء الإنجليزية تبقى في البيانات وتُخفى بصرياً
   (أضف اسم الكلاس المستخدم لديك هنا إن اختلف) */
.name-en,
.product__name-en,
[data-name-en] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-choice,
  .back-to-choice svg { transition: none; }
  .back-to-choice:hover svg,
  .back-to-choice:active { transform: none; }
}
