@import url('https://fonts.googleapis.com/css2?family=Beiruti:wght@200..900&display=swap');
:root {
    --menu-color: linear-gradient(135deg, #43cea2, #185a9d);
    --support-color: linear-gradient(135deg, #36d1dc, #5b86e5);
    --complain-color: linear-gradient(135deg, #f7971e, #ffd200);
    --btn-radius: 50px;
    --btn-padding: 15px 30px;
    --btn-font: 'Tahoma', sans-serif;
    --accent-1: linear-gradient(135deg,#ff8a00,#ff3d00);
    --accent-2: linear-gradient(135deg,#00c6ff,#0072ff);
    --accent-3: linear-gradient(135deg,#8be000,#2aa100);
    --bg: #f7f8fb;
    --card-bg: #fff;
    --shadow: 0 6px 18px rgba(10,10,15,0.08);

}

body {
   background:#F2F4F3;
    font-family: "Beiruti", sans-serif;
 
}

header {
    width: 100%;
    max-height: 120px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    
}

.topheader {
    max-height: 40px;
          background: var(--accent-1);
}

    .topheader p {
        text-align: center;
        color: #fff;
        height: 100%;
        font-size: 1.3rem;
        font-weight: 700;

        padding: 0;
        height: 40px;
    }

.topheader, .mainhead {
    margin: 0;
    padding: 0;
}

.mainhead {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    background:  #fff;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-bottom: 1px solid #eee;
}

    .mainhead img {
        width: 100px;
        height: 60px;
    }
/* Hero Start */
.hero {
    margin-top: 130px;
    width: 100%;
    height: 70vh;
    padding: 0 80px;
    border-radius: 20px;
}

.IMGCONTAINER {
   width: 100%;
   overflow: auto;
   display: flex;
   gap: 1rem; /* مسافة بين الصور */
   overflow-x: auto;   /* يسمح بالتمرير أفقياً */
   scroll-snap-type: x mandatory; /* السحب بيقف على كل صورة */
   -webkit-overflow-scrolling: touch; 
   scrollbar-width: none; 
     scroll-padding: 0 50%; /* يحدد إن السناب يكون على المنتصف */
}
.IMGCONTAINER ::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.heroimg{
    width: 100%;
    height: 70vh;
    transform-origin: center center;
    transition: transform 0.5s ease;
    border-radius: 10px;
   flex: 0 0 80%; /* حجم العنصر */
    scroll-snap-align: center; /* العنصر يتمركز في النص */
}

.hero .container {
    position: relative;
    padding: 0 20px;
    margin: 0;
    width: 100%;
}

.IMGCONTAINER:hover img {
    transform: scale(1.05);
}

/* link btn start */
.linksbtn{
    margin: 0;
}
.btncontainer {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin:40px 80px;
}
.btn {
border: none;
padding: var(--btn-padding);
border-radius: var(--btn-radius);
color: #fff;
font-size: 1.2rem;
cursor: pointer;
display: flex;
align-items: center;
gap: 10px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
transition: transform 0.3s ease, box-shadow 0.3s ease;
margin: 20px;
}


.btn:hover {
transform: translateY(-5px);
box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}


.btn svg {
width: 22px;
height: 22px;
}


.menu-btn { background: var(--menu-color); }
.support-btn { background: var(--support-color); }
.complain-btn { background: var(--complain-color); }

/* how it work */
.howitwork {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }
  .howitwork:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
  }
  /* Animation */
  @keyframes fadeUp {
    from {
      transform: translateY(40px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  /* Delay لكل كارت */
  .col-md-4:nth-child(1) .howitwork { animation-delay: 0.1s; }
  .col-md-4:nth-child(2) .howitwork { animation-delay: 0.3s; }
  .col-md-4:nth-child(3) .howitwork { animation-delay: 0.5s; }

  /* bottom slider */
   .split-slide {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .split-text {
      padding: 40px;
    }
    .split-text h1 {
      font-size: 2.5rem;
      font-weight: bold;
    }
    .split-text p {
      font-size: 1.1rem;
      margin: 15px 0;
    }
    .split-text .btn {
      border-radius: 30px;
      padding: 10px 25px;
    }
    .split-img img {
      width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    }
    /* footer */
    /* From Uiverse.io by adarshpatel111 */ 
.holographic-stack {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  perspective: 1000px;
}

.holographic-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.holographic-icon svg {
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px currentColor);
}

.holographic-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid;
  border-top-color: transparent;
  border-bottom-color: transparent;
  animation: rotate 3s linear infinite;
  opacity: 0.7;
}

.holographic-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    transparent 20%,
    currentColor 20%,
    currentColor 30%,
    transparent 30%,
    transparent 40%,
    currentColor 40%,
    currentColor 50%,
    transparent 50%
  );
  background-size: 15px 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.holographic-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 15px currentColor;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.holographic-icon.github {
  color: #0e49eb;
}

.holographic-icon.github:hover {
  color: #768dcd;
  transform: translateY(-10px) rotateX(20deg);
}

.holographic-icon.github:hover .holographic-ring {
  border-color: #0813ea;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.holographic-icon.instagram {
  color: #bc2a8d;
}

.holographic-icon.instagram:hover {
  color: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  transform: translateY(-10px) rotateX(20deg);
}

.holographic-icon.instagram:hover .holographic-ring {
  border-color: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.holographic-icon.tiktok {
  color: #eb0c7f;
}

.holographic-icon.tiktok:hover {
  color: #cd76c9;
  transform: translateY(-10px) rotateX(20deg);
}

.holographic-icon.tiktok:hover .holographic-ring {
  border-color: #ea08bd;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.holographic-icon.whatsapp {
  color: #0f8d13;
}

.holographic-icon.whatsapp:hover {
  color: #76cd9a;
  transform: translateY(-10px) rotateX(20deg);
}

.holographic-icon.whatsapp:hover .holographic-ring {
  border-color: #12a321;
  border-top-color: transparent;
  border-bottom-color: transparent;
}
.holographic-icon:hover {
  transform: translateY(-10px) rotateX(20deg);
}

.holographic-icon:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.holographic-icon:hover .holographic-particles {
  opacity: 0.3;
  animation: particles 3s linear infinite;
}

.holographic-icon:hover .holographic-pulse {
  opacity: 0.5;
  animation: pulse 2s ease-out infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes particles {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 30px 30px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.holographic-icon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 5%;
  width: 90%;
  height: 20%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  filter: blur(10px);
  transform: rotateX(80deg) translateZ(-20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.holographic-icon:hover::before {
  opacity: 0.5;
}
.footer .container{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.qrimg{
    padding: 5px;
    border-radius: 20px;
    box-shadow: #1D3557 5px 5px 5px;
    margin-bottom: 40px;
}
.holographic-stack{
    margin-bottom: 40px;
}
.cominfo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.address{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.address i{
    font-size: 1.5rem;
    font-weight: 900;
    color: #eb0c7f;
    margin: 5px;
    align-self: center;
}
.address p{
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    margin: 10px;
    align-self: center;
}
.copright span{
    font-size: 2rem;
}
 .bottomslider {
  overflow: hidden;
 }
 .copright img{
  width: 100px;
 }
/* minu list */
 .view-toggle .btn {
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      transition: 0.3s;
      color: #1D3557;
    }
    .view-toggle .btn:hover {
      background-color: #f0f0f0;
      transform: scale(1.1);
    }
    .search-box input {
      border-radius: 25px;
      padding-right: 40px;
    }
    .search-box .bi-search {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #888;
    }
     .product-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px; /* مربع */
      box-shadow: 0 4px 4px #ddd;
      transition: 0.3s;
      padding: 15px;
    }
    .product-card:hover {
      transform: translateY(-3px);
    }
    .product-card img {
      width: 140px;
      height: 100px;
      object-fit: cover;
    }
    /* شكل عرض القائمة */
     .productsContainer{
      display: flex;
      justify-content: space-around;
      flex-direction: row;
      flex-wrap: wrap;
    
     }
    .list-view .product-card {
      display: flex;
      align-items: center;
      gap: 15px;
   
    }
    .qty-vertical {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
    }
    .currence-span{
      color: #fa7509;
      margin-right: 5px;
    }
    .qty-vertical button {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      border: none;
      outline: none;
      color: #fff;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      background: var(--accent-1);
      cursor: pointer;
      transition: all 0.2s ease-in-out;
 
    }
    /* لما المستخدم يضغط */
   .qty-vertical button:active {
      transform: scale(0.85);
      background: var(--menu-color); /* لون مؤقت عند الضغط (ممكن تغيره) */
      color: #fff;
    }
     .qty-vertical button i {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      padding: 2px;
      font-weight: 900;
      align-self: center;
    }
    .qty-vertical span {
      font-weight: bold;
      align-self: center;
    }
    .product-card img {
      height: 90px;
      width: 90px;
      border-radius: 5px;
    }
    .product-card  a{
      text-decoration: none;
      color: #000;
      font-weight: 700;
    }
     .product-card  p{
      height: 40px;
      overflow-y: auto;
    }
   .menu-categories {
      direction: rtl;
      display: flex;
      justify-content: center;
      gap: 5px;
      margin: 20px auto;
      overflow: auto;
    
    }

    .menu-category {
      padding: 12px 25px;
      border-radius: 5px;
      font-size: 1rem;
      font-weight: 600;
      background: #fff;
      color: #000;
      cursor: pointer;
      transition: all 0.3s ease;
      text-align: center;
      white-space: nowrap;
      box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
      text-decoration: none;
      margin-top: 10px;
      margin-bottom: 10px;
    }
    .menu-category:hover {
      transform: translateY(-4px);
      box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
    }
    .menu-category.active {
      background:var(--accent-1);
    }
    .menu-category img ,.menu-category svg{
      width: 24px;
      height: 24px;
      border-radius: 50%;
      object-fit: cover;
      margin-left: 10px;
      background-color: #fff;
      color: #000;
    }
.add-to-cart {
  width: 40px;
  height: 40px;
  display:inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left:-40%;
  gap: 8px;
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.add-to-cart i {
  font-size: 20px;
}

.add-to-cart:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0,0,0,0.3);
}

.add-to-cart:active {
  transform: scale(0.9);
  background: linear-gradient(45deg, #ff5722, #e64a19);
}
 .extras {
    width: 100%;
    display:flex;
    justify-content: center;
    flex-direction: column;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
  }
  .xtraitem{
     display: flex;
     flex-direction: row;
     justify-content: space-between;
  }
  /* اخفي الـ checkbox الحقيقي */
  .extra-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  /* البلوك اللي بيظهر للمستخدم */
  .extra-label {
    display:inline-flex;
    flex-direction:row;
    align-items:center;
    justify-content: space-between;
    gap:8px;
    padding:12px;
    background:var(--card-bg);
    border-radius:14px;
    box-shadow: var(--shadow);
    text-align:center;
    cursor:pointer;
    user-select:none;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    border: 1px solid transparent;
    width: 270px;
  }

  .extra-label .icon {
    width:56px;
    height:56px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    margin-left: 20px;
  }

  .extra-label .title { font-weight:700; font-size:14px; color:#222; }
  .extra-label .price { font-size:13px; color:#666; }

  /* الحالة المختارة */
  .extra-input:checked + .extra-label {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: rgba(0,0,0,0.06);
  }
  .extra-input:checked + .extra-label .icon {
    transform: scale(1.06) rotate(-3deg);
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,0.14));
  }

  /* لون كل أيقونة حسب data-attr */
  .extra-label[data-color="a"] .icon { background: var(--accent-1); }
  .extra-label[data-color="b"] .icon { background: var(--accent-2); }
  .extra-label[data-color="c"] .icon { background: var(--accent-3); }

  /* علامة الصح الصغيرة */
  .tick {
    position:absolute;
    top:8px;
    left:8px;
    width:22px;
    height:22px;
    border-radius:6px;
    display:flex;
    align-items:center;
    justify-content:center;
    background: rgba(255,255,255,0.85);
    color:green;
    font-size:14px;
    transform: scale(.6);
    opacity:0;
    transition: transform .18s ease, opacity .18s ease;
    border: 1px solid rgba(0,0,0,0.06);
    
  }
  .extra-input:checked + .extra-label .tick {
    transform: scale(1);
    opacity:1;
  }

  /* ripple animation عند النقر */
  .ripple {
    position:absolute;
    border-radius:50%;
    transform:scale(0);
    pointer-events:none;
    opacity:.18;
    background: radial-gradient(circle, rgba(255,255,255,1) 10%, rgba(255,255,255,0) 40%);
  }

  /* استجابة لوحة المفاتيح للـ focus */
  .extra-input:focus + .extra-label {
    outline: 3px solid rgba(0,123,255,0.12);
    outline-offset:4px;
  }

  /* عرض النتائج */
  .summary {
    margin-top:18px;
    display:flex;
    gap:12px;
    align-items:center;
  }
  .summary .badge {
    font-size:14px;
    padding:10px 14px;
    border-radius:10px;
    background:#fff;
    box-shadow:var(--shadow);
  }

  @media (max-width:520px){
    .extra-label { width: 100%; }
  }

.total-box {
  background: #fff;
  border: 2px solid var(--support-color, #ff9800);
  transition: all 0.3s ease-in-out;
}

.total-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.total-price {
  font-size: 1.5rem;
  color: var(--primary-color, #d32f2f);
}
 /* Animation for fade out-in filter effect */
.product-item {
   transition: opacity 3000ms ease, transform 3000ms ease;
  opacity: 1;
  transform: translateY(0);
  position: relative;
}
.product-item .hide {
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  position: absolute;
}
.itemcover{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #83817f;
  opacity: .8;
  border-radius: 5px;
}
 .itemcoverh5{
   position: absolute;
  top:40%;
  left: 0;
  width: 100%;
  text-align: center;
  height: 100%;
  color: #000;
}
.g-4 .product-card{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.g-4 .product-card img{
  width: 80%;
  height: 200px;
  margin-right: 15px;
  margin-bottom: 20px;
}
.g-4 .product-card p  ,.g-4 .product-card .xtitle{
  display: block;
   width: 100%;
   text-align: center;
} 
.g-4 .product-card .add-to-cart{
  position: static;
  margin-right: 30px;
}

.bottomnav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    display: flex;
    background: var(--accent-1);
    border-radius:5px 5px  0 0;
    padding:5px;

}
#themeToggle i {
    font-size: 1.5rem;
    
}
#cart-icon, #themeToggle {
    position: relative;
    background: none;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 9999;
    text-decoration: none;
    width: 25%;
    display: flex;
    justify-content: center;
}

    #cart-icon:hover, #themeToggle:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    }

  .cart-icon {
    font-size:  1.5rem;
  }

  /* عدد المنتجات */
#cart-count {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 3px 8px;
    border-radius: 20px;
    min-width: 24px;
    text-align: center;
    position:absolute;
    top:5px;
    left:20%;
}
#waiterBtn {
    position: relative;
    background: none;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 9999;
    text-decoration: none;
    border: none;
    width: 25%;
    display: flex;
    justify-content: center;
}

    #waiterBtn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    }
 #toast-container {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 20000; /* أعلى من modal backdrop (bootstrap ~ 1050) */
  margin: 10px;
}
.toast-custom {
  background: var(--accent-1);
  color:#fff;
  padding:12px 16px;
  margin-bottom:10px;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(0,0,0,0.18);
  display:flex; gap:10px; align-items:center;
  animation: toast-in 0.36s ease;
}
@keyframes toast-in {
  from { transform: translateX(30%); opacity:0 }
  to   { transform: translateX(0); opacity:1 }
}

.checkout-container {
  max-width: 650px;
  margin: 30px auto;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  animation: fadeIn 0.6s ease-in-out;
}

.checkout-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #444;
}

.cart-list {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  background: #fafafa;
  max-height: 250px;
  overflow-y: auto;
  animation: slideUp 0.6s ease-in-out;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  margin: 6px 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.cart-item:hover {
  transform: scale(1.02);
}

.notes-box {
  margin-bottom: 20px;
}
.notes-box textarea {
  width: 100%;
  height: 80px;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  resize: none;
}

.order-options {
  display: flex;
  justify-content: space-around;
  margin: 15px 0;
}
.option-btn {
  flex: 1;
  margin: 0 8px;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s;
  background: #f5f5f5;
}
.option-btn i {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}
.option-btn:hover {
  background: #e0e0e0;
  transform: translateY(-3px);
}
.option-btn.active {
  background: var(--accent-1);
  color: white;
}

.order-form {
  display: flex;
  flex-direction: column;
  margin: 15px 0;
  gap: 10px;
}
.order-form input {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
.hidden {
  display: none;
}

.confirm-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent-1);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.confirm-btn:hover {
  background:  var(--accent-1);
  transform: scale(1.02);
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes slideUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}
.checkout_section{
  margin-top: 150px;
}
.remove-item i{
  color: #000;
}

#toast-container2{ position:fixed; top:30px; left:20px; z-index:2000000; }
 .toast-custom2{ background:var(--accent-1); color:#fff; padding:12px 16px; border-radius:10px; box-shadow:0 8px 24px rgba(15,30,60,0.18); display:flex; gap:10px; align-items:center; margin-bottom:10px; animation: slideIn .35s ease; }
 @keyframes slideIn { from { transform: translateX(-20px); opacity:0 } to { transform: translateX(0); opacity:1 } }
  @keyframes fadeIn { from { opacity:0; transform: translateY(10px)} to {opacity:1; transform:translateY(0)} }
/* الوضع الليلي */
body.dark-mode {
    background-color: #3a3838;
    color: #f1f1f1;
}
.footer{
  padding-bottom: 60px;
}

#itemModal{
  padding-bottom: 40px;
}
.IMGCONTAINER{
  padding-right: 5px;
}
.extra-qty {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.extra-qty button {
    width: 28px;
    height: 28px;
    color: #fff;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.extra-qty button i{
    font-size: 1.5rem;
    font-weight: 700;
    align-self: center;
}



 .defultbtn{
  border: none;
  background: var(--accent-1);
  padding: 15px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
 }




















 /* Phone */
 @media (max-width: 768px) {
  .hero{
    height: 30vh;
    margin-top: 130px;
    width: 100%;
    padding: 0 0px;
    border-radius: 20px;
  }
  .hero img{
    height: 30vh;
  }
  .btn{
    margin: 2px;
    font-size: 1rem;
    padding: 18px;
   }
   .qrimg{
    width: 100px;
    }
    .holographic-icon {
      width: 40px;
      height: 40px;

   }
   .holographic-icon svg {
     width: 20px;
     height: 20px;
 
    }
    .address i{
      font-size: 1.2rem;
    }
     .address p{
      font-size: 1rem;
    }
 
    .split-text h2{
      width: 100%;
      text-align: center;
      font-size: 1.5rem;
    }
    .split-text p{
           width: 100%;
      text-align: center;
      font-size: 1rem;
    }
    .split-text a{
       width: 100%;
      text-align: center;
    }
    .indexitem{
      flex-direction: column-reverse;
      justify-content: center;
      align-items: center;
    }
 
    .indexitem .btn{
      text-align: center;
      align-items: center;
      display: flex;
      justify-content: center;
      flex-direction: row-reverse;
      font-size: 1rem;
      font-weight: 700;
    }
    .topheader p{
      font-size: 1rem;
      padding-top: 5px;
      background: var(--accent-1);
    }
       .menu-categories {
          justify-content: flex-start;
    
    }
      .xtraitem{
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  #modalDescription{
    text-align: center;
  }
  #modalPrice{
    color: #fa7509;
    font-weight: 700;
    margin-right: 5px;
     margin-left: 5px;
  }
  #modalqty{
    color: #fa7509;
    font-weight: 700;
    margin-right: 5px;
     margin-left: 5px;
  }
   .mainhead  {
       padding: 5px 15px;
    }
  .mainhead img {
        width: 70px;
        height: 60px;
        
  }
  .copright img{
    width: 100px;
  }
 .productsContainer{
      display: flex;
      justify-content: space-around;
      flex-direction: column;
 
   }
 }

