/* ═══════════════════════════════════════════════════
   GLOBALS & RESET
   ═══════════════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Segoe UI',system-ui,-apple-system,sans-serif;
  -webkit-font-smoothing:antialiased;
  /* max-width:100vw;
  overflow-x:hidden; */
  max-width:100%;
overflow-x:clip;
  background:#fff;
  color:#1e293b
}
:root{
  --color-primary:#004438;
  --color-primary-light:#2a7a64;
  --color-primary-text:#2a7a64;
  --color-secondary:#cb9f22;
  --color-secondary-light:#edcd94;
  --grad-primary:linear-gradient(135deg,#004438 0%,#2a7a64 100%);
  --grad-gold:linear-gradient(135deg,#cb9f22 0%,#edcd94 100%);
  --color-surface-dark:#3e4b48;
  --color-border-subtle:rgba(203,159,34,0.18);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
button{cursor:pointer;font-family:inherit}
ul{list-style:none}

/* ═══════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════ */
.header {
  position:absolute;top:0;left:0;right:0;z-index:50;
  background:linear-gradient(to bottom,rgba(0,0,0,0.55),transparent);
  transition:background 0.3s;
}
.header.scrolled{background:rgba(0,68,56,0.95);box-shadow:0 2px 20px rgba(0,0,0,0.15)}
.nav{
  display:flex;align-items:center;justify-content:space-between;
  padding:clamp(0.8rem,2.5vw,1.2rem) clamp(1rem,5vw,4rem);
}
.logo-img{width:clamp(80px,10vw,120px);height:auto}
.nav-links{display:flex;align-items:center;gap:clamp(1rem,3vw,2rem)}
.nav-links a{
  font-size:max(0.85rem,min(1.3vw,1rem));
  font-weight:500;letter-spacing:0.08em;text-transform:uppercase;
  color:#fff;transition:color .25s;white-space:nowrap;
  overflow:hidden;
text-overflow:ellipsis;
  display:inline-flex;align-items:center;gap:0.4rem
}
.nav-links a:hover{color:var(--color-secondary)}
.nav-end{display:flex;align-items:center;gap:0.75rem}
.lang-btn,.cart-btn{
  display:inline-flex;align-items:center;gap:0.4rem;
  padding:0.4rem 0.9rem;border-radius:2rem;
  border:1px solid rgba(255,255,255,0.28);
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  color:#fff;font-size:0.8rem;font-weight:600;white-space:nowrap;
  transition:background .22s,border-color .22s;cursor:pointer
}
.lang-btn:hover,.cart-btn:hover{background:rgba(255,255,255,0.18);border-color:rgba(255,255,255,0.5)}
.cart-btn{position:relative;padding:0.4rem 0.7rem}
.cart-badge{
  position:absolute;top:-5px;right:-5px;
  min-width:18px;height:18px;padding:0 4px;
  border-radius:99px;background:var(--color-secondary);
  color:#fff;font-size:0.6rem;font-weight:700;
  line-height:18px;text-align:center;pointer-events:none;
  animation:badgeIn .35s cubic-bezier(0.34,1.56,0.64,1) forwards
}
.badge-bump{animation:badgeBump .42s cubic-bezier(0.34,1.56,0.64,1)}
@keyframes badgeIn{from{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}
@keyframes badgeBump{0%{transform:scale(1)}45%{transform:scale(1.6)}100%{transform:scale(1)}}
.burger{
  display:none;flex-direction:column;justify-content:center;
  align-items:center;gap:5px;width:40px;height:40px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);border-radius:8px;cursor:pointer;
  padding:0;flex-shrink:0;transition:background .2s
}
.burger:hover{background:rgba(255,255,255,0.22)}
.burger span{display:block;width:20px;height:2px;background:#fff;border-radius:2px}
@media(max-width:767px){
  .nav-links{display:none}
  .burger{display:flex}
}
.backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,0.55);
  backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);
  z-index:90;opacity:0;pointer-events:none;transition:opacity .35s
}
.backdrop.show{opacity:1;pointer-events:all}
.drawer{
  position:fixed;top:0;right:0;width:min(280px,80vw);height:100dvh;
  background:#fff;z-index:100;display:flex;flex-direction:column;
  padding:1.5rem;transform:translateX(110%);
  transition:transform .38s cubic-bezier(0.4,0,0.2,1);
  box-shadow:-8px 0 32px rgba(0,0,0,0.18);overflow-y:auto
}
/* html[dir="rtl"] .drawer{transform:translateX(-110%)} */
.drawer.open{transform:translateX(0)!important}
.close-btn{
  align-self:flex-end;width:36px;height:36px;border-radius:50%;
  border:1px solid #e2e8f0;background:transparent;
  font-size:1rem;color:#64748b;cursor:pointer;
  display:flex;align-items:center;justify-content:center;transition:background .2s
}
.close-btn:hover{background:#f1f5f9;color:#0f172a}
.drawer-logo{text-align:center;margin:1.25rem 0 2rem}
.drawer-links{display:flex;flex-direction:column;gap:0.25rem}
.drawer-links li{
  opacity:0;transform:translateX(16px);
  transition:opacity .3s ease,transform .3s ease
}
.drawer.open .drawer-links li{opacity:1;transform:translateX(0)}
.drawer-links a{
  display:flex;align-items:center;gap:0.6rem;
  padding:0.9rem 0;border-bottom:1px solid #f1f5f9;
  font-size:1.1rem;font-weight:600;color:#1e293b;transition:color .2s
}
.drawer-links a:hover{color:var(--color-primary);padding-right:0.5rem}
.drawer-footer{margin-top:auto;padding-top:1.5rem;border-top:1px solid #f1f5f9}
.drawer-footer .lang-btn{
  border-color:#e2e8f0;background:#f8fafc;color:#1e293b;
  width:100%;justify-content:center;padding:0.6rem 1rem;font-size:0.9rem
}
.drawer-footer .lang-btn:hover{background:#f1f5f9;border-color:#cbd5e1}

/* ═══════════════════════════════════════════════════
   HERO / SWIPER
   ═══════════════════════════════════════════════════ */
.hero{position:relative;width:100%;height:100vh;min-height:560px;overflow:hidden;background:#000}
.swiper{width:100%;height:100%}
.slide{position:relative;width:100%;height:100%;display:flex;align-items:center;overflow:hidden}
.bg-wrap{position:absolute;inset:0;z-index:0}
.bg-wrap img{width:100%;height:100%;object-fit:cover;object-position:center}
.bg-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.13)}
.slide-content{
  position:relative;z-index:10;width:100%;max-width:52rem;
  padding:10rem clamp(1.5rem,5vw,6rem) clamp(1.5rem,5vw,6rem);
  display:flex;flex-direction:column;gap:clamp(1rem,2.2vw,1.5rem);
  opacity:0;transform:translateY(16px)
}
.swiper-slide-active .slide-content{
  animation:contentReveal .75s cubic-bezier(0.22,1,0.36,1) .35s both
}
@keyframes contentReveal{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
.badge{
  display:inline-flex;align-items:center;gap:0.5rem;
  font-size:max(0.8rem,min(1.3vw,1rem));font-weight:600;
  letter-spacing:0.16em;text-transform:uppercase;
  color:var(--color-secondary);margin:0
}
.badge-dot{display:inline-block;width:6px;height:6px;border-radius:50%;background:var(--color-secondary)}
.headline{margin:0;display:flex;flex-direction:column;gap:0.05em;line-height:1.05}
.headline-l1,.headline-l2{
  display:block;font-size:clamp(2rem,7vw,5rem);font-weight:400;color:#fff;letter-spacing:-0.02em
}

html[lang='en'] .headline-l1, html[lang='en'] .headline-l2 {
    font-size: clamp(1.5rem, 5vw, 3.8rem);
}
.sub{
  margin:0;font-size:max(1rem,min(1.9vw,1.25rem));line-height:1.7;
  color:#e7e9e9;max-width:36rem
}
.ctas{display:flex;flex-direction:column;align-items:flex-start;gap:1rem;padding-top:0.5rem}
.cta-primary,.wa-btn{
  display:inline-flex;align-items:center;gap:0.625rem;
  padding:clamp(0.7rem,1.5vw,0.9rem) clamp(1.2rem,3vw,1.75rem);
  border-radius:2rem;background:var(--color-secondary);color:#fff;
  font-size:max(.9rem,min(1.4vw,1rem));font-weight:500;text-decoration:none;
  box-shadow:0 8px 32px rgba(139,154,42,0.28);
  transition:box-shadow .25s,transform .2s;white-space:nowrap;border:none
}
.cta-primary:hover{box-shadow:0 12px 40px rgba(139,154,42,0.45);transform:translateY(-1px)}
.social-row{display:flex;align-items:center;gap:0.5rem}
.social-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:38px;height:38px;border-radius:50%;
  border:1px solid rgba(255,255,255,0.22);color:rgba(255,255,255,0.85);
  background:rgba(255,255,255,0.06);backdrop-filter:blur(8px);
  transition:background .25s,border-color .25s,transform .2s;flex-shrink:0
}
.social-icon:hover{background:rgba(255,255,255,0.16);border-color:rgba(255,255,255,0.45);transform:translateY(-2px)}
.slider-dots{
  position:absolute!important;bottom:clamp(2rem,4vw,3.5rem)!important;
  left:clamp(1.5rem,5vw,4rem)!important;z-index:20!important;
  display:flex!important;align-items:center!important;gap:0.5rem!important
}
.slider-dots .dot{
  width:6px;height:6px;border-radius:3px;background:rgba(255,255,255,0.3);
  transition:width .4s,background .4s;cursor:pointer;border:none;padding:0
}
.slider-dots .dot.active{width:28px;background:var(--color-secondary)}
.progress-bar{
  position:absolute;bottom:0;left:0;right:0;height:2px;
  background:rgba(255,255,255,0.08);z-index:30;overflow:hidden
}
.progress-fill{height:100%;width:0%;background:linear-gradient(to right,var(--color-secondary),var(--color-primary-light))}
.vertical-text{
  position:absolute;right:clamp(1rem,2vw,2rem);top:50%;
  transform:translateY(-50%) rotate(180deg);
  writing-mode:vertical-rl;font-size:0.62rem;letter-spacing:0.35em;
  color:rgba(255,255,255,0.2);pointer-events:none;user-select:none;z-index:10
}
@media(max-width:767px){
  .slide{align-items:flex-end}
  .slide-content{padding-top:clamp(5rem,18vw,8rem)}
  .vertical-text{display:none}
  .slider-dots{left:clamp(1rem,4vw,1.5rem)!important}
  .social-icon{width:34px;height:34px}
}

/* ═══════════════════════════════════════════════════
   MENU HERO (Section intro banners)
   ═══════════════════════════════════════════════════ */
.menu-hero{width:100%;display:flex;flex-direction:column;align-items:center;padding:1.5rem 1rem}
@media(min-width:768px){.menu-hero{padding:3rem 1rem}}
.mh-mobile-text{
  width:100%;display:flex;flex-direction:column;align-items:center;
  text-align:center;gap:0.6rem;padding:1.5rem 1.25rem 1.75rem
}
.mh-mobile-img{
  position:relative;width:100%;height:240px;border-radius:2rem;overflow:hidden
}
.mh-mobile-img img{width:100%;height:100%;object-fit:cover}
.mh-mobile-img .overlay{
  position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,0.25),transparent)
}
@media(min-width:768px){.mh-mobile-text,.mh-mobile-img{display:none}}
.mh-desktop{display:none}
@media(min-width:768px){
  .mh-desktop{
    display:flex;position:relative;width:100%;min-height:450px;
    border-radius:40px;overflow:hidden;box-shadow:rgba(0,0,0,0.24) 0 3px 8px;
    align-items:center;background-size:cover;direction:rtl
  }
}
@media(min-width:1024px){.mh-desktop{width:80%}}
.mh-text-wrap{
  position:relative;z-index:10;width:50%;padding:3rem;
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:0.5rem
}
@media(min-width:1024px){.mh-text-wrap{width:70%;padding:4rem}}
.mh-icon{width:56px;height:56px;margin-bottom:0.25rem}
@media(min-width:768px){.mh-icon{width:64px;height:64px}}
.mh-title{font-size:2rem;font-weight:500;color:#1a3c34;line-height:1.2;margin:0}
@media(min-width:768px){.mh-title{font-size:3rem}}
@media(min-width:1024px){.mh-title{font-size:3.75rem}}
.mh-sub{font-size:1rem;color:#3d5a52;font-weight:500;opacity:0.9;margin:0}
@media(min-width:768px){.mh-sub{font-size:1.25rem}}
.mh-btn{
  margin-top:0.75rem;display:flex;align-items:center;gap:0.75rem;
  background:var(--color-secondary);color:#fdfaf5;
  padding:0.85rem 2rem;border-radius:2rem;font-size:1rem;font-weight:500;
  box-shadow:0 10px 15px -3px rgba(0,0,0,0.1);
  border:none;cursor:pointer;transition:all .2s
}
@media(min-width:768px){.mh-btn{padding:1rem 2.5rem;font-size:1.125rem}}
.mh-btn:hover{opacity:0.85}
.mh-btn:active{transform:scale(0.95)}
.mh-dec{
  position:absolute;bottom:2.5rem;left:2.5rem;opacity:0.1;pointer-events:none
}
.menu-hero.party .mh-desktop{background-position:center left;justify-content:flex-start}
.menu-hero.individual .mh-desktop{background-position:center right;justify-content:flex-end}

/* ═══════════════════════════════════════════════════
   MENU SECTIONS (Party Menu / Individual Menu)
   ═══════════════════════════════════════════════════ */
.menu-section{min-height:100vh;background:#fff;padding:2rem 1rem;position:relative}
@media(min-width:768px){.menu-section{padding:2rem}}
.section-header{max-width:56rem;margin:0 auto 1rem;text-align:center}
.overline{display:flex;align-items:center;justify-content:center;gap:1rem;margin-bottom:0.5rem}
.overline-line{height:1px;width:3rem;background:var(--color-secondary)}
@media(max-width:640px){.overline-line{display:none}
.contact-section {
  overflow-x: hidden;
}
.contact-desc h4 {
  flex-wrap: wrap;
  font-size: 18px;
}
}
.overline-text{color:var(--color-secondary);font-size:1.5rem}
.section-title{
  font-size:2.25rem;font-weight:500;color:var(--color-primary);
  letter-spacing:-0.025em;margin:0
}
@media(min-width:768px){.section-title{font-size:3rem}}

/* ── Tabs ── */
.tabs-wrap {
  max-width: 48rem;
  margin: 0 auto 4rem;
  width: 100%;
  top: 60px;             /* ← تحت الـ header */
  z-index: 10;
  background: #fff;      /* ← عشان المحتوى ميطلعش من تحتها */
  padding: 0.5rem 0;
}
.tabs-list{
  display:flex;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;
  -webkit-overflow-scrolling:touch;scrollbar-width:none;
  border-bottom:1px solid #e2e8f0;justify-content:flex-start;
  max-width: 100%;
box-sizing: border-box;
}
.tabs-list::-webkit-scrollbar{display:none}
@media(min-width:1024px){.tabs-list{flex-wrap:wrap;overflow-x:visible;justify-content:center}}
.tab-btn{
  display:flex;align-items:center;gap:0.4rem;padding:0.65rem 0.85rem;
  flex-shrink:0;position:relative;transition:color .3s;
  background:none;border:none;cursor:pointer;color:#64748b;outline:none;white-space:nowrap
}
.tab-btn:hover{color:var(--color-primary)}
.tab-btn.active{color:var(--color-secondary)}
.tab-btn img{width:1.1rem;height:1.1rem;color:var(--color-secondary);flex-shrink:0}
@media(min-width:640px){.tab-btn{padding:0.85rem 1.1rem;gap:0.5rem}
  .tab-btn img{width:1.25rem;height:1.25rem}}
@media(min-width:1024px){.tab-btn{padding:1rem 1.5rem;gap:0.75rem}
  .tab-btn img{width:1.5rem;height:1.5rem}}
.tab-info{text-align:start}
.tab-sub{display:block;font-size:8px;text-transform:uppercase;font-weight:700;line-height:1;opacity:0.6}
@media(min-width:640px){.tab-sub{font-size:9px}}
@media(min-width:1024px){.tab-sub{font-size:10px}}
.tab-label{display:block;font-weight:700;font-size:0.85rem;white-space:nowrap}
@media(min-width:640px){.tab-label{font-size:0.95rem}}
@media(min-width:1024px){.tab-label{font-size:1.125rem}}
.tab-indicator{
  position:absolute;bottom:0;left:0;right:0;
  height:2px;background:var(--color-secondary)
}

/* ── Menu Grid ── */
.menu-grid{max-width:72rem;margin:0 auto;display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:768px){.menu-grid{grid-template-columns:1fr 1fr;column-gap:3rem;row-gap:2rem}}
.menu-item{
  display:flex;gap:1.25rem;align-items:flex-start;padding-bottom:1.5rem;
  border-bottom:1px solid #e1e6eb;animation:slideUp .4s ease-out both
}
@keyframes slideUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
.menu-item-img{
  width:4rem;height:4rem;object-fit:cover;border-radius:0.25rem;
  box-shadow:0 1px 2px rgba(0,0,0,0.05);flex-shrink:0;display:none
}
@media(min-width:768px){.menu-item-img{width:5rem;height:5rem;display:block}}
.menu-item-content{flex-grow:1}
.menu-item-header{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:0.25rem}
.menu-item-title{font-size:1.1rem;font-weight:700;color:var(--color-primary);margin:0}
.menu-item-price{font-size:1.1rem;font-weight:700;color:var(--color-secondary)}
.menu-item-desc{color:#64748b;font-size:0.8rem;font-style:italic;margin:0.25rem 0 0;line-height:1.5}
.menu-item-liters{
  display:block;font-size:0.75rem;color:#94a3b8;font-weight:500;margin-top:0.1rem;text-align:end
}
.menu-actions{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:center;
  gap:1rem;margin-top:clamp(1.5rem,3vw,2.5rem)
}
.see-more{
  display:inline-flex;align-items:center;gap:0.5rem;
  padding:0.75rem 2rem;border-radius:2rem;border:1px solid var(--color-primary);
  background:transparent;color:var(--color-primary);
  font-size:clamp(0.8rem,1.2vw,0.9rem);font-weight:600;
  cursor:pointer;transition:background .22s,color .22s;white-space:nowrap
}
.see-more:hover{background:var(--color-primary);color:#fff}
.wa-order{
  display:inline-flex;align-items:center;gap:0.625rem;
  padding:0.75rem 2rem;border-radius:2rem;
  background:linear-gradient(135deg,#25d366 0%,#128c7e 100%);
  color:#fff;font-size:clamp(0.8rem,1.2vw,0.9rem);font-weight:700;
  text-decoration:none;box-shadow:0 6px 24px rgba(37,211,102,0.25);
  transition:opacity .22s;white-space:nowrap;border:none
}
.wa-order:hover{opacity:0.85}
/* Individual menu price grid */
.price-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:0.375rem;margin-top:0.5rem
}
@media(max-width:480px){.price-grid{grid-template-columns:repeat(2,1fr)}}
.price-chip{
  display:flex;flex-direction:column;align-items:center;gap:0.125rem;
  background:linear-gradient(135deg,#f0f7f4 0%,#e8f4ef 100%);
  border:1px solid #c8e6d8;border-radius:0.5rem;
  padding:0.375rem 0.25rem;text-align:center;transition:transform .15s,box-shadow .15s
}
.price-chip:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,68,56,0.12)}
.price-chip-label{font-size:0.65rem;font-weight:700;color:var(--color-primary);text-transform:uppercase}
.price-chip-value{font-size:0.82rem;font-weight:800;color:#1a2e35;line-height:1.1}
.price-chip-currency{font-size:0.6rem;font-weight:600;color:var(--color-secondary)}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */
.contact-section{
  position:relative;width:95%;display:flex;justify-content:space-evenly;
  align-items:center;padding:25px 10px;margin:0 auto 40px;
  border-radius:23px;background:#fff
}
.contact-section::before{
  content:"";position:absolute;inset:0;border-radius:23px;
  box-shadow:inset 0 5px 15px rgba(0,0,0,0.15);pointer-events:none
}
.contact-desc{width:50%}
.contact-desc h4{
  font-size:35px;color:var(--color-primary);
  display:flex;align-items:flex-end;gap:10px
}
.contact-desc h4 img{width:75px}
.contact-details{padding-right:60px}
.contact-slogan{margin-bottom:15px;color:grey;font-weight:500}
.contact-hours{
  display:flex;align-items:center;gap:10px;margin-bottom:15px;width:75%;font-size:16px
}
.contact-details a{
  display:flex;align-items:center;gap:10px;margin-bottom:15px;
  font-size:16px;color:#475569;transition:0.3s
}
.contact-details a span{direction:ltr!important}
.contact-details a:hover{margin-right:10px}
.contact-btn{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--color-secondary);color:#fff!important;
  padding:9px 40px;border-radius:25px;font-weight:600;width:fit-content;transition:0.3s
}
.contact-btn:hover{margin-right:10px;padding:9px 45px}
.contact-map{width:45%;position:relative}
.contact-map .mobile-img{
  width:25%;position:absolute;left:85%;bottom:0;z-index:1;
  display:none
}
.contact-map iframe{width:100%;height:24rem;border-radius:23px;border:0}
@media(max-width:1024px){
  .contact-section{flex-direction:column;gap:30px;padding:30px 20px}
  .contact-desc{width:100%}
  .contact-desc h4{font-size:28px}
  .contact-desc h4 img{width:60px}
  .contact-details{padding-right:30px}
  .contact-map{width:100%}
  .contact-map .mobile-img{display:none}
  .contact-map iframe{height:20rem}
}
@media(max-width:640px){
  .contact-section{width:100%;border-radius:0;padding:24px 16px;gap:24px}
  .contact-section::before{border-radius:0}
  .contact-desc h4{font-size:22px}
  .contact-desc h4 img{width:48px;height:48px}
  .contact-details{padding-right:0;margin-top:12px}
  .contact-slogan{font-size:14px}
  .contact-hours{width:100%;font-size:14px}
  .contact-details a{font-size:14px;gap:8px}
  .contact-btn{width:100%;justify-content:center;padding:11px 24px}
  .contact-map iframe{height:16rem;border-radius:16px}
  .footer {
  overflow-x: hidden;
  word-break: break-word;
}
}

/* ═══════════════════════════════════════════════════
   REVIEWS SECTION
   ═══════════════════════════════════════════════════ */
.reviews-section{margin:3rem 0}
.reviews-title{color:#fff;text-align:center;margin-bottom:50px}
.reviews-title h2{
  margin-bottom:10px;color:var(--color-primary);font-size:2rem
}
.reviews-title h2 span{color:var(--color-secondary)}
.reviews-title p{width:60%;margin:auto;line-height:1.75;font-weight:500;color:var(--color-primary-text)}
.reviews-swiper{width:100%;
max-width:90%;
overflow:hidden;margin:auto;overflow:hidden}
.review-card{
  width:100%;height:400px;position:relative;border-radius:16px;overflow:hidden
}
.review-bg{width:100%;height:100%;object-fit:cover}
.review-box{
  background:#fff;position:absolute;bottom:10%;
  left:50%;transform:translateX(-50%);width:75%;
  display:flex;flex-direction:column;align-items:center;text-align:center;
  gap:10px;border-radius:16px;padding:15px;padding-top:50px
}
.review-profile{
  background:#fff;border-radius:50%;width:90px;height:90px;
  padding:7px;position:absolute;top:-20%;left:50%;
  overflow:hidden;transform:translateX(-50%)
}
.review-profile img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.review-box h3{color:#1e293b;font-weight:600;font-size:18px;padding-top: 1rem;}
.review-box h4{color:#94a3b8;font-size:14px;font-weight:400}
.review-box h5{
  color:gray;font-size:14px;font-weight:400;line-height:1.5;
  display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden
}
.review-stars{width:100px;height:auto;margin-top:5px}
.rew-dots{display:flex;justify-content:center;gap:8px;margin-top:20px}
.rew-dots button{
  width:10px;height:10px;border-radius:50%;border:2px solid var(--color-secondary);
  background:transparent;cursor:pointer;padding:0;transition:background .3s
}
.rew-dots button.active{background:var(--color-secondary)}
@media(max-width:600px){
  .reviews-title h2{font-size:25px;width:85%;margin:0 auto 15px}
  .reviews-title p{width:85%}
  .reviews-swiper{width:95%}
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer{
  --text-muted:#a0a0a0;
  background:var(--color-primary);color:#fff;padding:2rem 1.5rem 1rem;
  border-top:2px solid var(--color-secondary);margin-top:3rem
}
.footer-container{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1.2fr;gap:60px}
@media(max-width:968px){.footer-container{grid-template-columns:1fr 1fr;gap:40px}}
@media(max-width:640px){.footer-container{grid-template-columns:1fr;text-align:center}}
.footer h3{
  color:var(--color-secondary);font-size:1.25rem;font-weight:600;
  margin-bottom:1.3rem;text-transform:uppercase;letter-spacing:2px;
  border-bottom:1px solid var(--color-secondary);width:fit-content;padding-bottom:.3rem
}
/* @media(max-width:640px){.footer h3{margin:0 auto 1.3rem}} */
.footer-logo img{width:9rem;height:auto}
@media(max-width:768px){.footer-logo{text-align:center}}
.footer-desc{line-height:1.8;color:var(--text-muted);max-width:350px}
@media(max-width:640px){.footer-desc{max-width:100%}}
.footer-social{display:flex;gap:15px;margin-top:10px}
@media(max-width:640px){.footer-social{justify-content:center}}
.footer-social a{
  color:#fff;background:rgba(255,255,255,0.05);
  width:40px;height:40px;display:flex;align-items:center;justify-content:center;
  border-radius:50%;transition:all .3s;border:1px solid rgba(255,255,255,0.1)
}
.footer-social a:hover{background:var(--color-secondary);color:var(--color-primary);transform:translateY(-5px)}
.footer-links{display:flex;flex-direction:column;gap:12px; align-items: flex-start;}
.footer-links a{
  color:var(--text-muted);transition:color .3s;display:inline-block;font-weight:500
}
.footer-links a:hover{color:var(--color-secondary);padding-left:5px}
.footer-contact{display:flex;flex-direction:column;gap:20px}
.footer-contact-item{
  display:flex;gap:12px;align-items:flex-start;color:var(--text-muted)
}
.footer-contact-item, .footer-contact-item div {
    text-align: start;
}
.footer-contact-item .icon{color:var(--color-secondary);flex-shrink:0;margin-top:4px}
.footer-contact-item .label{display:block;font-weight:600;color:#fff;font-size:0.9rem;margin-bottom:2px}
.footer-contact-item p{margin:0;line-height:1.6}
.copyright{
  margin-top:2rem;padding-top:30px;border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;font-size:0.85rem;color:var(--text-muted);letter-spacing:1px
}

/* ═══════════════════════════════════════════════════
   CART SIDEBAR
   ═══════════════════════════════════════════════════ */
.cart-sidebar{
  position:fixed;top:0;right:0;width:min(380px,90vw);height:100dvh;
  background:#fff;z-index:200;display:flex;flex-direction:column;
  transform:translateX(110%);transition:transform .38s cubic-bezier(0.4,0,0.2,1);
  box-shadow:-8px 0 40px rgba(0,0,0,0.2);overflow:hidden
}
/* html[dir="rtl"] .cart-sidebar{transform:translateX(-110%)} */
.cart-sidebar.open{transform:translateX(0)!important}
.cart-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.25rem 1.5rem;border-bottom:1px solid #e2e8f0
}
.cart-header h3{font-size:1.25rem;color:var(--color-primary)}
.cart-close{
  width:36px;height:36px;border-radius:50%;border:1px solid #e2e8f0;
  background:transparent;font-size:1.2rem;color:#64748b;
  cursor:pointer;display:flex;align-items:center;justify-content:center
}
.cart-items{flex:1;overflow-y:auto;padding:1rem 1.5rem}
.cart-item{
  display:flex;gap:1rem;padding:0.75rem 0;border-bottom:1px solid #f1f5f9;align-items:center
}
.cart-item-img{width:50px;height:50px;object-fit:cover;border-radius:8px;flex-shrink:0}
.cart-item-info{flex:1}
.cart-item-name{font-weight:600;font-size:0.9rem;color:#1e293b;margin-bottom:2px}
.cart-item-meta{font-size:0.75rem;color:#94a3b8}
.cart-item-qty{display:flex;align-items:center;gap:8px;margin-top:4px}
.cart-item-qty button{
  width:26px;height:26px;border-radius:50%;border:1px solid #e2e8f0;
  background:#f8fafc;cursor:pointer;display:flex;align-items:center;justify-content:center;
  font-size:0.9rem;font-weight:600;color:#475569;transition:background .2s
}
.cart-item-qty button:hover{background:#e2e8f0}
.cart-item-qty span{font-weight:600;font-size:0.9rem;min-width:20px;text-align:center}
.cart-item-remove{
  background:none;border:none;color:#ef4444;font-size:1.1rem;
  cursor:pointer;padding:4px;opacity:0.6;transition:opacity .2s
}
.cart-item-remove:hover{opacity:1}
.cart-footer{
  padding:1.25rem 1.5rem;border-top:1px solid #e2e8f0;
  background:#fafafa
}
.cart-total{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}
.cart-total span{font-weight:600;color:#1e293b}
.cart-total .amount{font-size:1.25rem;color:var(--color-secondary)}
.cart-checkout{
  width:100%;padding:0.9rem;border:none;border-radius:12px;
  background:linear-gradient(135deg,#25d366 0%,#128c7e 100%);
  color:#fff;font-size:1rem;font-weight:700;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:0.5rem;
  transition:opacity .22s
}
.cart-checkout:hover{opacity:0.9}
.cart-empty{text-align:center;padding:3rem 0;color:#94a3b8}
.cart-empty svg{width:60px;height:60px;margin-bottom:1rem;opacity:0.4}

/* ═══════════════════════════════════════════════════
   LOADING / UTILITY
   ═══════════════════════════════════════════════════ */
.loading-skeleton .menu-item{opacity:0.4;pointer-events:none}
.skeleton-img{height:4rem;background:#e2e8f0;border-radius:0.25rem}
.skeleton-text{height:1rem;background:#e2e8f0;border-radius:4px}
.skeleton-text-sm{height:0.75rem;background:#f1f5f9;border-radius:4px}
.empty-msg{grid-column:1/-1;text-align:center;color:#a4b4bb;padding:3rem 0}

/* ═══════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
   ═══════════════════════════════════════════════════ */
@media(max-width:767px){
  .menu-item-img{display:none}
  .menu-item-title{font-size:1rem}
  .hero .swiper-slide {
    display: flex;
    align-items: flex-end;
}
}

/* ── Animations ── */
@keyframes fadeIn{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.fade-in{animation:fadeIn .5s ease-out both}


