:root {
    --card-bg:#fff;
    --page-bg:#32327f;
  }
  
  
  @font-face {
    font-family: 'futuramdbt_bold';
    src: url('futuramdbt_bold.eot'); /* IE9 Compat Modes */
    src: url('futuramdbt_bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('webfont.woff') format('woff'), /* Modern Browsers */
         url('futuramdbt_bold.otf')  format('truetype'); /* Safari, Android, iOS */
       
  }
  @font-face {
    font-family: 'zahra.arabic.bold';
    src: url('zahra.arabic.bold.eot'); /* IE9 Compat Modes */
    src: url('zahra.arabic.bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('webfont.woff') format('woff'), /* Modern Browsers */
         url('zahra.arabic.bold.otf')  format('truetype'); /* Safari, Android, iOS */
       
  }
  
  

  html[lang="ar"] {
    direction: rtl;
    font-family: "zahra.arabic.bold", sans-serif;
  }
  
  html[lang="en"] {
    direction: ltr;
    font-family: "futuramdbt_bold", sans-serif;
  }
  
  body {
    margin:0;
    padding:20px;
    background:#32327f;

    color:#d8ac46;
    direction: rtl; 
  }
  
      
  .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background-color: #32327f;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        z-index: 1000;
        color: #fff;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  
      }
  

      .menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
      }
      .menu-btn span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
      }
      .menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }
      .menu-btn.open span:nth-child(2) {
        opacity: 0;
      }
      .menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
      }


  .full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%; 
    background-color: #32327f;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column; 
    align-items: center;    
  
    opacity: 0;
    pointer-events: none;
    z-index: 999;

    padding-bottom: 300px; 

  
    visibility: hidden;
    transition: opacity 0.4s ease;
  }

  .full-screen-menu .mt-5 {
    padding-top: 100px;
    margin-bottom: 40px; 
  
  }

.menu-logo {
      
        max-width: clamp(220px, 25vw, 280px);
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        transition-delay: 0.05s;
        }
.full-screen-menu.active .menu-logo {
          opacity: 1;
          transform: translateY(0);
        }

  .full-screen-menu.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;


  }
  
  

  .nav-rows {
    display: flex;
    flex-direction: column;
    width: 85%;
    gap: 10px; 
    padding-bottom: 80px;
  }
  
  .nav-rows  a:not(.lang-btn) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
    width: 100%;
    border: 1px solid #d8ac46;
    border-radius: 10px;
    background: linear-gradient(145deg, #3a3aad, #32327f, #2a2a6a);
  /* ✨ تدرج اللمعة على النص */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #fff4b2, #d8ac46, #fff4b2);
  background-size: 200%;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size: clamp(32px, 2vw, 50px);
    text-transform: uppercase;


    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  /* كل عنصر يتأخر شوي */
.nav-rows a:nth-child(1) { transition-delay: 0.1s; }
.nav-rows a:nth-child(2) { transition-delay: 0.2s; }
.nav-rows a:nth-child(3) { transition-delay: 0.3s; }
.nav-rows a:nth-child(4) { transition-delay: 0.4s; }
.nav-rows a:nth-child(5) { transition-delay: 0.5s; }


.full-screen-menu.active .nav-rows  a:not(.lang-btn) {
  opacity: 1;
  transform: translateY(0);
}



  html[lang="en"] .nav-rows  a:not(.lang-btn) {
    font-size: clamp(26px, 2vw, 40px);
  }
  

  .nav-rows .lang-btn {
    display: block;
    width: auto;
    padding: 5px 10px;
    background: none;   
    color: #d8ac46;       
    font-size: clamp(20px, 4vw, 30px);       
    font-weight: normal;
    text-decoration: underline; 
    cursor: pointer;
    text-align: center;
    margin-top: 10px;     
  }
  
  
  
  

      .close-menu {
        position: absolute;
        top: 20px;
        right: 20px; 
        font-size: 40px;
        color: #fff;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
      }
      html[dir="ltr"] .close-menu {
        left: 20px;
        right: auto;
      }
  
  
      html[dir="rtl"] .full-screen-menu {
        text-align: right;
      }
      html[dir="ltr"] .full-screen-menu {
        text-align: left;
      }
  
  
  .topbar {
    display:flex;
    justify-content:flex-end;
    margin-bottom:1rem;
  }
  
  
  .menu-grid {
    display:grid;
    column-gap: 50px; 
    row-gap: 20px;    
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  }

  .menu-grid.list .menu-card {
    display:flex;
  }
  
  
  .menu-card {
    display:flex;
    align-items:stretch; 
    background:var(--card-bg);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor:pointer;
    transition: transform .14s ease, box-shadow .14s ease;
    height: clamp(100px, 25vw, 130px);
  }
  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  }
  
  
  

  html[dir="rtl"] .menu-card { flex-direction: row-reverse; }
  html[dir="rtl"] .card-content { text-align: right; }
  html[dir="rtl"] .meta { flex-direction: row; }
  

  html[dir="ltr"] .menu-card { flex-direction: row; }
  html[dir="ltr"] .card-content { text-align: left; }
  html[dir="ltr"] .meta { flex-direction: row-reverse; }
  
  .img-wrap {
    flex: 0 0 clamp(100px, 20vw, 120px); 
    width: 120px;
    height: clamp(100px, 25vw, 130px);
    overflow:hidden;
  }
  .img-wrap img {
    width:100%;
    height:100%;
    object-fit:cover;
  }
  
  .card-content {
    flex:1 1 auto;
    display:flex;
    flex-direction:column;
  
    gap:6px;
    justify-content: space-between; 
    height: 100%; 
  }
  
  .title {
    padding: 10px;
    margin:0 0 6px 0; 
  
    font-weight: bold !important;
    color:#0e1020;
  }
  .title2 {
    text-align: center;

    color:#fff;
    font-weight: 100;

    
      margin-top: 50px;
  }
  .title3{
    text-transform: uppercase;
      text-align: center;
  color:#fff;
  font-weight: 600; 
  
  }
  
  .meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 10px;
  }
  
  /* السعرات */
  .cal {
    margin: 0;
    color: rgba(50, 50, 127, 0.4);

    font-size: clamp(14px, 1.5vw, 20px);
    display: flex;
    align-items: center; /* 👈 يخلي النص بنفس ارتفاع السعر */
    line-height: 1.2;
  }

  html[lang="en"] .cal {
    font-size: clamp(12px, 1.5vw, 18px);
  }
  /* تعديل المسافة حسب اتجاه النص */
html[lang="ar"] .cal { margin-right: 10px; }
html[lang="en"] .cal { margin-left: 10px; }

  .price {
    margin: 0;

    font-weight: bold;
    color: #0e1020;
    font-size: clamp(19px, 1.5vw, 23px);
    display: flex;
    align-items: center; /* 👈 نفس الارتفاع بالضبط */
  }
  html[lang="en"] .price {
    font-size: clamp(15px, 1.5vw, 18px);
  }
  html[lang="ar"] .price { margin-left: 10px; }
  html[lang="en"] .price { margin-right: 10px; }
  .meta .icons {
    display: flex;
    gap: 6px;
    align-items: center; /* 👈 الأيقونات بنفس خط السعر والسعرات */
    margin: 0;
  }
  
  .meta .icons img {
    width: 13px;
    height: 13px;
    padding: 4px;
    border: 1px solid  rgba(50, 50, 127, 0.4);
    border-radius: 50%;
    box-sizing: content-box;
    display: inline-block;
    vertical-align: middle;
  }
  
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr)); 
    gap:1px;
   
  }
  
  .cat-box {
    display: flex;
    justify-content: space-between;
    align-items: center;

    border: 1px solid #d8ac46;
    background: linear-gradient(145deg, #3a3aad, #32327f, #2a2a6a);
  /* ✨ تدرج اللمعة على النص */
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #fff4b2, #d8ac46, #fff4b2);
  background-size: 200%;
    text-decoration: none;
    padding: clamp(10px, 2vw, 16px) clamp(14px, 3vw, 24px);
    font-size: clamp(17px, 2vw, 21px);
    transition: background 0.2s ease;
  }
  html[lang="en"] .cat-box {
    font-size: clamp(15px, 2vw, 19px);
  }

  html[dir="rtl"]  .cat-name { order: 0; text-align: right; }
  html[dir="rtl"]  .cat-count { order: 1; }
  

  html[dir="ltr"] .cat-name { order: 1; text-align: left; }
  html[dir="ltr"]  .cat-count { order: 0; }
  
  

  .cat-name {
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .cat-count {
    font-size: 18px;
    opacity: 0.9;
  }
  
  html[lang="en"] .cat-count {
    font-size: clamp(15px, 2vw, 19px);
  }
  
  
  
  .view-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* الأزرار كلها يمين */
  gap: 10px; /* مسافة بين الأزرار */
  margin-bottom: 10px;
}





 .view-toggle button {
        background: none;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        color: rgba(255, 255, 255, 0.6); 
        font-size: 26px;
    
        transition: all 0.3s ease;
      }
.view-toggle button.active {
       
        color: #fff;
      }
  
  
  
  /* --- البوب أب --- */
  .popup {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
  }
  .popup:target {
    display: flex; /* يظهر عند الضغط على الكرت */
  }
  .popup-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    overflow: hidden;
    position: relative;
  
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
  .close {
    all: unset; 
    position: absolute;
    top: 10px;
    inset-inline-end: 10px; 
    cursor: pointer;
    text-decoration: none;
    z-index: 10; 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
  }

  .popup-close-btn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  
  
  .close i {
    font-size: 24px; 
    color: #fff;    
    pointer-events: none;
  }
  
  
  .popup-img {
    position: relative;
  }
  
  .popup-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block; 
  }
  
  .popup-label {
    background-color: #d8ac46;
    color: #fff;
    padding: 5px 14px;      
 
    font-size:  clamp(13px, 1.5vw, 20px);
  
  }
  
  .popup-label-bot {
    background-color: #32327f;
    color: #fff;
    padding: 12px 14px;      

    font-size: 14px;
  text-align: center;
  
  }
  
  .popup-body {
    padding: 20px;
    text-align: center;
  }
  .popup-title {
    text-align: right;
    font-size: clamp(18px, 1.5vw, 22px);
    margin-bottom: 10px;
    font-weight: bold;
    color: #0e1020;
  }

  html[dir="rtl"] .popup-label,
  html[dir="rtl"] .popup-title,
  html[dir="rtl"] .popup-desc {
    text-align: right;
  }
  

  html[dir="ltr"] .popup-label,
  html[dir="ltr"] .popup-title,
  html[dir="ltr"] .popup-desc {
    text-align: left;
  }
  
  .popup-share {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  

  html[dir="ltr"] .popup-share {
    flex-direction: row-reverse;
    text-align: right;
  }
  

  html[dir="rtl"] .popup-share {
    flex-direction: row;
    text-align: left;
    
  }
  
  
  
  
  .popup-desc{
    text-align: right;
    font-size: clamp(16px, 1.5vw, 20px);
    color: #0e1020;
    margin-bottom: 12px; 
    line-height: 1.6;    
  }
  
  .popup-meta {
    display:flex;
    justify-content:space-between;
    gap:8px;
  padding-top: 20px;
  padding-bottom: 15px;
    margin-top: auto; 
  }
  
  .popup-cal {
    margin: 0;
    color: rgba(50, 50, 127, 0.4);
  
    font-size: clamp(14px, 1.5vw, 20px);
  }
  .popup-price {
    margin: 0;
    font-weight: bold;
    color: #0e1020;
    font-size: clamp(19px, 1.5vw, 23px);
  }

  
/* الأيقونات في منتصف المسافة بين السعر والسعرات */
.popup-meta .popup-icons {
  margin: 0;
  position: absolute;
  left: 50%;              /* نحدد المنتصف الحقيقي للحاوية */
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;

}

/* شكل الأيقونات */
.popup-meta .popup-icons img {
  width: 14px;
  height: 14px;
  padding: 6px;
  border: 1px solid  rgba(50, 50, 127, 0.4);
  border-radius: 50%;
  box-sizing: content-box;
  display: inline-block;
}


  @media (max-width: 576px) {
    .menu-grid {
      grid-template-columns: 1fr !important; 
    }
    .category-grid {
      grid-template-columns: repeat(1, 1fr) !important;
    }
    .menu-grid.grid .menu-card {
      aspect-ratio: auto; 
    }
    .menu-card .card-content {
      display: flex; 
    }
    .popup-content {
      width: 95%;
      max-width: none;
    }
    .popup-img img {
      height: auto;
    }
  }
  

  @media (min-width: 577px) and (max-width: 992px) {
    .menu-grid {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .category-grid {
      grid-template-columns: repeat(2, 1fr) !important; 
    }
    .menu-grid.grid .menu-card {
      aspect-ratio: 1/1;
    }
  }
  

  @media (min-width: 993px) {
    .menu-grid {
      grid-template-columns: repeat(2, 1fr) !important; 
    }
    .category-grid {
      grid-template-columns: repeat(2, 1fr) !important; 
    }
  }
  

  .full-screen-menu {
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
  }
  

  .popup-content {
    max-height: 90vh; 
    overflow-y: auto; 
  }
  .popup-img img {
    width: 100%;
    max-height: 50vh;
    object-fit: cover;
  }
  

  .navbar {
    flex-wrap: wrap; 
  }
  .menu-btn {
    margin-left: auto;
  }
  
  
  

  .popup-title, .popup-desc {
    word-wrap: break-word;
  }
  
  
  h1 {
    font-size: clamp(32px, 5vw, 52px);
  }
  h2 {
    font-size: clamp(28px, 4vw, 44px);
  }
  h3 {
    font-size: clamp(20px, 3vw, 36px);
  }
  h4 {
    font-size: clamp(18px, 2.5vw, 30px);
  }
  h5 {
    font-size: clamp(16px, 2vw, 24px);
  }
  h6 {
    font-size: clamp(14px, 1.5vw, 20px);
  }
  
  

  .menu-grid.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr)  !important; 
    gap: 2px;
  }
  

  .menu-grid.grid .menu-card {
    aspect-ratio: 1 / 1 !important; 
    height: auto !important;       
    min-height: 0 !important;
    display: block !important;
    position: relative;
    overflow: hidden;
  }
  

  .menu-grid.grid .menu-card .img-wrap {
    width: 100% !important;
    height: 100% !important;
    flex: unset !important;
    min-height: 0;
  }
  
  .menu-grid.grid .menu-card .img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; 
    object-position: center !important;
  }
  

  .menu-grid.grid .menu-card .card-content {
    display: none !important;
  }


  html[dir="rtl"].popup-table,
  html[dir="rtl"] .floating-btn {
    left: 10px;
    right: auto;
  }
  
  
  html[dir="ltr"] .popup-table, 
  html[dir="ltr"] .floating-btn {
    right: 10px;
    left: auto;
  }
        
  
    .floating-btn {
      position: fixed;
      bottom: 20px;
      right: 10px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #d8ac46;
      color: white;
      font-size: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
      z-index: 1003;
  
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    }
  
  .floating-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  
    .floating-btn:hover {
      background: #d8ac46;
      transform: scale(1.05);
    }
  
  .floating-btn img {
    width: 35px; 
    height: 35px;
  }
  
  
    .popup-table {
      position: fixed;
      bottom: 10px;
      left: 15px;
    
      border-radius: 18px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      width: 230px;
      padding: 12px 14px;

      background: linear-gradient(145deg, #3a3aad, #32327f, #2a2a6a);
color: #d8ac46;
 
      z-index: 2005; 

      animation: popIn 0.3s ease forwards;

        /* 👇 الإضافات المهمة */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
    }
  
  /* لما تكون مفعلة */
.popup-table.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

    .popup-table::after {
      content: "";
      position: absolute;
      bottom: -10px;
      right: 40px;
      border-width: 10px;
      border-style: solid;
      border-color: #d8ac46 transparent transparent transparent;
    }
  
    @keyframes popIn {
    from {
      transform: scale(0.9) translateY(10px);
      opacity: 0;
    }
    to {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
  }
  
    .popup-table a {
      display: flex;
      justify-content: space-between;
      text-decoration: none;
      color: #d8ac46;
      font-size: clamp(15px, 2vw, 20px);
      padding: 6px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    html[lang="en"] .cat-box {
      font-size: clamp(11px, 2vw, 19px);
    }

    .popup-table a:last-child {
      border-bottom: none;
    }
  
    .popup-table.active {
      display: block;
    }
    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.2);
      z-index: 1000;
    
      /* ✅ نفس الفكرة */
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .overlay.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }


  
  hr {
    border: none;
    height: 0.6px;
    background-color: #232352;
        margin-top: 40px;
  }
  .footer {
    display: flex;            
    justify-content: center;   
    align-items: center;        
    padding: 20px;
    color: #fff;
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  .footer a {
    text-decoration: none;     
    color: inherit;
    
  }
  
  .footer .underline-word {
    text-decoration: underline;
  }


  #openMeatSources{
    font-size: 15px !important;
      background-color: #d8ac46;
  }
  #openAllergy{
    font-size: 15px !important;
    background-color: #d8ac46;
  }
    /* خلفية الحجب */
    #backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 999;
    }

  .info-btn {
  position: relative;             
  display: inline-flex;
  align-items: left;
  gap: 5px;
  padding: 6px 15px;
  border-radius: 50px;
  background: #32327f;
  color: #d8ac46;
  font-weight: 600;
  font-family: "zahra.arabic.bold", sans-serif;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); 
  transform: translateY(0);
  transition: all 0.2s ease;
  margin-left: auto; 
}

.info-btn-Allergens {
  position: relative;             
  display: inline-flex;
  align-items: left;
  gap: 5px;
  font-family: "zahra.arabic.bold", sans-serif;
  padding: 6px 15px;
  border-radius: 50px;
  background: #32327f;
  color: #fff;
  font-weight: 600;
  font-size: 12px !important;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25); 
  transform: translateY(0);
  transition: all 0.2s ease;
  margin-right: auto; 
}



/* عند المرور عليه */
.info-btn:hover {
  background: #4545a5;
  transform: translateY(-3px); /* يرتفع شوي */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}


      



/* المودال (مخفي افتراضياً) */
.meat-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:1200;
  direction:rtl;

}

/* الخلفية الغامقة */
.meat-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0, 0, 0, 0.75); /* جعلها غامقة أكثر */
  backdrop-filter: blur(3px); /* ضباب خفيف يعطي عمق */
}


.meat-modal-panel{
  position:relative;
  max-width:460px;
  margin:100px auto;
  background:#32327f; /* أزرق متماسك */
  color:white;
  border-radius:14px;
  box-shadow:0 12px 36px rgba(0,0,0,0.5);
  overflow:hidden;
  animation: popupIn 0.3s ease;
}

/* حركة ناعمة عند الظهور */
@keyframes popupIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* الهيدر */
.meat-modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;

}
.meat-modal-header h2{
  margin:0;
  font-size:19px;
  font-weight:600;
}

/* زر الإغلاق */
.close-btn{
  background:transparent;
  border:none;
  color:white;
  font-size:20px;
  cursor:pointer;
}

/* المحتوى */
.meat-modal-body{
  padding:20px;
  color:#e5e5e5;
}

/* شبكة البطاقات */
.meat-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
.meat-card{
  display:flex;
  gap:10px;
  align-items:center;
  padding:7px;
  border-radius:10px;

  transition:background 0.2s ease;
}


html[dir="ltr"] .meat-card {
    flex-direction: row-reverse; 
}

html[dir="ltr"] .meat-card .info {
    text-align: left; 
}


html[dir="rtl"] .meat-modal-header {
  flex-direction: row;         
  justify-content: space-between;
  text-align: right;
}


html[dir="ltr"] .meat-modal-header {
  flex-direction: row-reverse;  
  justify-content: space-between;
  text-align: left;
}

.meat-card:hover{
  background:rgba(255,255,255,0.2);
}
.icon {
  width:33px;   /* نفس العرض للـ container */
  height: 33px;  /* نفس الارتفاع */

  display: flex;


}
.icon-title {
  width:20px;   /* نفس العرض للـ container */
  height: 20px;  /* نفس الارتفاع */

  display: flex;


}
.icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.meat-type{ font-weight:700; font-size:15px; color:white; }
.meat-meta{ color:#d1d1ff;  font-size:16px; margin-top:3px; }

/* عرض للموبايل */
@media (max-width:600px){
  .meat-modal-panel{
    width:90%;
    margin:60px auto;
  }
  .meat-grid{ grid-template-columns:1fr; }
}