/* =========================================================
   Start El-Madina Blend Mobile eHotline CSS
========================================================= */

/* =========================================================
   Start Variables
========================================================= */
:root{
  --brown:#613916;
  --brown-dark:#321704;
  --brown-soft:#8a561e;
  --orange:#d9a748;
  --yellow:#f7e181;
  --cream:#fff4d5;
  --cream-2:#fff9ea;
  --white:#ffffff;
  --ink:#261304;
  --muted:#7b5932;
  --line:rgba(97,57,22,.13);
  --shadow:0 18px 42px rgba(63,34,9,.18);
  --shadow-soft:0 10px 26px rgba(63,34,9,.11);
  --radius:28px;
  --footer-h:76px;
}
/* =========================================================
   End Variables
========================================================= */


/* =========================================================
   Start Reset
========================================================= */
*{
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Cairo",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 18% -8%, rgba(247,225,129,.75), transparent 33%),
    radial-gradient(circle at 100% 10%, rgba(217,167,72,.28), transparent 33%),
    linear-gradient(180deg,#fff9ea 0%,#fff1cf 45%,#fffaf0 100%);
  overflow-x:hidden;
  padding-bottom:calc(var(--footer-h) + 34px + env(safe-area-inset-bottom));
}

body| before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.28;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(97,57,22,.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 30%, rgba(97,57,22,.07) 0 1px, transparent 1.5px);
  background-size:26px 26px,34px 34px;
  z-index:-1;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font-family:inherit;
}

img{
  display:block;
  max-width:100%;
}
/* =========================================================
   End Reset
========================================================= */


/* =========================================================
   Start Layout
========================================================= */
.mb-page{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

.container{
  width:min(100% - 28px, 840px);
  margin-inline:auto;
  position:relative;
  z-index:2;
}
/* =========================================================
   End Layout
========================================================= */


/* =========================================================
   Start Header
========================================================= */
.mb-header{
  position:sticky;
  top:0;
  z-index:80;
  padding:9px 0;
  background:linear-gradient(180deg,rgba(255,248,225,.94),rgba(255,244,211,.86));
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(97,57,22,.12);
  box-shadow:0 12px 28px rgba(65,34,10,.10);
  transition:.28s ease;
}

.mb-header.is-scrolled{
  padding:6px 0;
  box-shadow:0 14px 34px rgba(65,34,10,.16);
}

.head-shell{
  min-height:80px;
  padding:10px 12px;
  border-radius:27px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background:
    radial-gradient(circle at 20% 20%,rgba(247,225,129,.55),transparent 32%),
    radial-gradient(circle at 85% 70%,rgba(97,57,22,.12),transparent 35%),
    linear-gradient(135deg,rgba(255,255,255,.76),rgba(255,242,204,.54));
  border:1px solid rgba(97,57,22,.10);
  overflow:hidden;
  position:relative;
}

.head-shell| after{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:22px;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.45);
}

.head-beans{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}

.head-beans span{
  position:absolute;
  width:27px;
  height:16px;
  border-radius:50%;
  background:
    linear-gradient(90deg,transparent 46%,rgba(255,235,185,.35) 48%,rgba(255,235,185,.35) 52%,transparent 54%),
    radial-gradient(circle at 32% 28%,#9e662e,#4c260c 72%);
  box-shadow:inset -4px -3px 8px rgba(30,12,3,.26);
  opacity:.32;
  animation:beanFloat 5.5s ease-in-out infinite;
}

.head-beans span:nth-child(1){
  right:43%;
  top:10px;
  rotate:-24deg;
}

.head-beans span:nth-child(2){
  right:56%;
  bottom:12px;
  rotate:18deg;
  animation-delay:.7s;
}

.head-beans span:nth-child(3){
  left:18%;
  top:15px;
  rotate:36deg;
  animation-delay:1.4s;
}

@keyframes beanFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-7px);}
}

.head-brand{
  display:flex;
  align-items:center;
  gap:10px;
  position:relative;
  z-index:3;
  min-width:0;
}

.head-logo{
  width:112px;
  min-width:112px;
  padding:5px;
  border-radius:22px;
  background:rgba(255,255,255,.62);
  box-shadow:0 12px 22px rgba(65,34,10,.14);
  position:relative;
  z-index:2;
}

.head-brand-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
  line-height:1.2;
  min-width:0;
}

.head-brand-text strong{
  color:var(--brown);
  font-size:17px;
  font-weight:900;
  white-space:nowrap;
}

.head-brand-text small{
  margin-top:3px;
  color:#7d5529;
  font-size:10.5px;
  font-weight:800;
  white-space:nowrap;
}

.head-bar{
  width:min(30vw,150px);
  min-width:110px;
  padding:4px;
  border-radius:15px;
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 18px rgba(65,34,10,.12);
  position:relative;
  z-index:2;
}
/* =========================================================
   End Header
========================================================= */


/* =========================================================
   Start Hero
========================================================= */
.hero{
  padding:16px 0 10px;
}

.hero-card{
  min-height:430px;
  padding:16px 14px 18px;
  border-radius:34px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 50% 12%, rgba(247,225,129,.30), transparent 31%),
    radial-gradient(circle at 18% 88%, rgba(217,167,72,.18), transparent 36%),
    linear-gradient(155deg,#210d02 0%,#3d1905 36%,#6b3813 65%,#d0a04c 100%);
  border:1px solid rgba(255,239,183,.30);
  box-shadow:var(--shadow);
}

.hero-card| before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-4;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(0,0,0,.26), transparent 42%),
    linear-gradient(180deg,rgba(255,255,255,.07),transparent 34%,rgba(27,9,1,.55));
}

.hero-card| after{
  content:"";
  position:absolute;
  width:390px;
  height:390px;
  border-radius:50%;
  right:50%;
  top:40px;
  translate:50% 0;
  z-index:-3;
  background:
    radial-gradient(circle,rgba(255,238,168,.30),rgba(255,238,168,.10) 45%,transparent 68%);
  animation:heroGlow 4.6s ease-in-out infinite;
}

@keyframes heroGlow{
  0%,100%{
    transform:scale(.94);
    opacity:.75;
  }
  50%{
    transform:scale(1.06);
    opacity:1;
  }
}

.hero-real-beans{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:-2;
}

.hero-real-beans span{
  position:absolute;
  width:54px;
  height:32px;
  border-radius:50%;
  background:
    linear-gradient(90deg,transparent 46%,rgba(255,229,172,.22) 48%,rgba(255,229,172,.22) 52%,transparent 54%),
    radial-gradient(circle at 32% 28%,#b67836,#4c2307 74%);
  box-shadow:
    inset -8px -6px 15px rgba(25,8,1,.44),
    inset 6px 4px 10px rgba(255,223,164,.10),
    0 16px 25px rgba(22,8,2,.24);
  opacity:.22;
  filter:blur(.15px);
  animation:beanDrift 6.5s ease-in-out infinite;
}

.hero-real-beans span:nth-child(1){
  right:7%;
  top:68px;
  rotate:-28deg;
}

.hero-real-beans span:nth-child(2){
  left:8%;
  top:126px;
  rotate:24deg;
  animation-delay:1s;
}

.hero-real-beans span:nth-child(3){
  right:14%;
  bottom:112px;
  rotate:18deg;
  opacity:.16;
  animation-delay:1.8s;
}

.hero-real-beans span:nth-child(4){
  left:16%;
  bottom:58px;
  rotate:-18deg;
  animation-delay:2.5s;
}

.hero-real-beans span:nth-child(5){
  right:46%;
  bottom:18px;
  width:42px;
  height:25px;
  opacity:.16;
  rotate:35deg;
  animation-delay:3s;
}

@keyframes beanDrift{
  0%,100%{
    transform:translateY(0) rotate(0);
  }
  50%{
    transform:translateY(-12px) rotate(5deg);
  }
}

.hero-content{
  position:relative;
  z-index:3;
  min-height:392px;
  padding:2px 0 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  text-align:center;
}

.coffee-scene{
  width:min(92%,300px);
  height:145px;
  margin:0 auto 2px;
  position:relative;
  display:grid;
  place-items:center;
}

.coffee-cup{
  position:absolute;
  bottom:28px;
  width:124px;
  height:72px;
  border-radius:0 0 42px 42px;
  background:
    linear-gradient(145deg,#fff3d1 0%,#c99039 40%,#6d3812 100%);
  box-shadow:
    inset 12px 0 20px rgba(255,255,255,.18),
    inset -13px -8px 22px rgba(50,19,4,.38),
    0 22px 35px rgba(20,7,2,.40);
  z-index:4;
}

.coffee-cup| before{
  content:"";
  position:absolute;
  right:50%;
  top:-11px;
  translate:50% 0;
  width:134px;
  height:27px;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 50% 46%,#3a1705 0 38%,#744116 39% 62%,#f3d487 63% 100%);
  box-shadow:
    inset 0 5px 10px rgba(255,255,255,.16),
    0 5px 12px rgba(24,8,2,.25);
}

.coffee-liquid{
  position:absolute;
  right:50%;
  top:-5px;
  translate:50% 0;
  width:86px;
  height:14px;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 45% 40%,#9c5d20 0%,#4a1e07 54%,#2a0f03 100%);
  box-shadow:inset 0 3px 8px rgba(255,216,132,.25);
  z-index:5;
}

.cup-handle{
  position:absolute;
  left:-34px;
  top:18px;
  width:44px;
  height:39px;
  border:9px solid #a66a27;
  border-right-color:transparent;
  border-radius:50%;
  filter:drop-shadow(0 8px 12px rgba(20,7,2,.24));
}

.coffee-saucer{
  position:absolute;
  bottom:18px;
  width:190px;
  height:31px;
  border-radius:50%;
  background:
    radial-gradient(ellipse at 50% 34%,rgba(255,246,217,.88),rgba(210,151,64,.82) 54%,rgba(78,33,8,.65) 100%);
  box-shadow:
    inset 0 5px 14px rgba(255,255,255,.28),
    0 20px 28px rgba(16,5,1,.32);
  z-index:2;
}

.hero-steam-v2{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:6;
}

.hero-steam-v2 span{
  position:absolute;
  bottom:84px;
  width:28px;
  height:90px;
  border-radius:50%;
  border-right:2px solid rgba(255,250,231,.54);
  filter:blur(2px);
  opacity:0;
  animation:visibleSteam 4.6s ease-in-out infinite;
}

.hero-steam-v2 span:nth-child(1){
  right:42%;
  animation-delay:0s;
}

.hero-steam-v2 span:nth-child(2){
  right:50%;
  height:112px;
  animation-delay:.75s;
}

.hero-steam-v2 span:nth-child(3){
  right:57%;
  animation-delay:1.35s;
}

.hero-steam-v2 span:nth-child(4){
  right:46%;
  height:100px;
  animation-delay:2.05s;
}

@keyframes visibleSteam{
  0%{
    transform:translateY(22px) scale(.72);
    opacity:0;
  }
  18%{
    opacity:.72;
  }
  55%{
    opacity:.44;
  }
  100%{
    transform:translateY(-78px) scale(1.15);
    opacity:0;
  }
}

.hero-logo-clean{
  width:min(78%,235px);
  padding:0;
  margin:2px auto 0;
  border-radius:0;
  background:transparent;
  border:0;
  box-shadow:none;
  position:relative;
  z-index:8;
}

.hero-logo-main{
  width:100%;
  position:relative;
  z-index:4;
  filter:
    drop-shadow(0 12px 18px rgba(18,7,2,.34))
    drop-shadow(0 0 18px rgba(247,225,129,.18));
  animation:heroLogoFloat 4s ease-in-out infinite;
}

@keyframes heroLogoFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-7px);}
}

.hero-label{
  margin:6px auto 0;
  width:max-content;
  max-width:100%;
  padding:7px 13px;
  border-radius:999px;
  color:#fff7d8;
  background:rgba(39,15,3,.56);
  border:1px solid rgba(247,225,129,.22);
  box-shadow:0 9px 18px rgba(20,7,2,.18);
  font-size:12px;
  font-weight:900;
}

.hero-actions{
  margin-top:10px;
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.hero-btn{
  min-height:56px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:14px;
  font-weight:900;
  position:relative;
  overflow:hidden;
  box-shadow:0 16px 28px rgba(22,8,2,.23);
}

.hero-btn| after{
  content:"";
  position:absolute;
  inset:-70% auto -70% -50%;
  width:42%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);
  transform:rotate(25deg);
  animation:btnShine 4.3s ease-in-out infinite;
}

@keyframes btnShine{
  0%,55%{left:-50%;}
  78%,100%{left:125%;}
}

.hero-btn.nearest{
  color:#fff9df;
  background:linear-gradient(145deg,#744216,#2f1304);
  border:1px solid rgba(255,239,183,.20);
}

.hero-btn.branches{
  color:#4b2509;
  background:linear-gradient(145deg,#fff2a8,#d9a748);
  border:1px solid rgba(255,255,255,.22);
}

.hero-btn:active{
  transform:scale(.97);
}
/* =========================================================
   End Hero
========================================================= */


/* =========================================================
   Start Common Sections
========================================================= */
.section{
  padding:16px 0;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:10px;
  margin-bottom:11px;
}

.section-title{
  margin:0;
  color:var(--brown);
  font-weight:900;
  font-size:19px;
  line-height:1.35;
}

.section-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:6px 11px;
  border-radius:999px;
  color:#754716;
  background:rgba(217,167,72,.18);
  border:1px solid rgba(217,167,72,.18);
  font-size:11.5px;
  font-weight:900;
  white-space:nowrap;
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:.7s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}
/* =========================================================
   End Common Sections
========================================================= */


/* =========================================================
   Start Contact Tools
========================================================= */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:clamp(6px, 1.6vw, 12px);
  align-items:stretch;
}

.contact-card{
  aspect-ratio:1 / 1;
  width:100%;
  min-width:0;
  min-height:0;
  height:auto;
  padding:clamp(7px, 1.7vw, 13px) 4px;
  border-radius:clamp(16px, 3.3vw, 28px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:clamp(6px, 1.3vw, 10px);
  background:
    radial-gradient(circle at 50% 0%,rgba(247,225,129,.36),transparent 42%),
    linear-gradient(145deg,rgba(255,255,255,.92),rgba(255,248,226,.88));
  border:1px solid rgba(97,57,22,.10);
  box-shadow:
    0 12px 26px rgba(97,57,22,.10),
    inset 0 1px 0 rgba(255,255,255,.65);
  text-align:center;
  transition:.25s ease;
}

.contact-card:active{
  transform:scale(.96);
}

.contact-icon{
  width:clamp(30px, 7vw, 48px);
  height:clamp(30px, 7vw, 48px);
  border-radius:clamp(12px, 2.5vw, 18px);
  display:grid;
  place-items:center;
  color:var(--brown);
  background:linear-gradient(145deg,#fff1aa,#d9a748);
  box-shadow:0 10px 17px rgba(217,167,72,.24);
  font-size:clamp(13px, 3.1vw, 20px);
  flex:0 0 auto;
}

.contact-card strong{
  max-width:100%;
  color:var(--brown);
  font-size:clamp(8px, 2vw, 12px);
  line-height:1.15;
  font-weight:900;
  text-align:center;
  white-space:normal;
  overflow-wrap:break-word;
}

/* للموبايلات الصغيرة جدا */
@media (max-width:360px){
  .contact-grid{
    gap:5px;
  }

  .contact-card{
    border-radius:15px;
    padding:7px 3px;
  }

  .contact-icon{
    width:29px;
    height:29px;
    font-size:13px;
    border-radius:11px;
  }

  .contact-card strong{
    font-size:7.5px;
  }
}
/* =========================================================
   End Contact Tools
========================================================= */


/* =========================================================
   Start Online Store Section
========================================================= */
.store-refined-card{
  position:relative;
  min-height:220px;
  border-radius:34px;
  padding:18px;
  display:grid;
  grid-template-columns:104px 1fr;
  gap:16px;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,.82), transparent 31%),
    radial-gradient(circle at 92% 92%, rgba(97,57,22,.15), transparent 36%),
    linear-gradient(145deg,#fffaf0 0%,#fff0c9 45%,#d9a748 100%);
  border:1px solid rgba(97,57,22,.12);
  box-shadow:
    0 18px 40px rgba(63,34,9,.14),
    inset 0 1px 0 rgba(255,255,255,.58);
}

.store-refined-card| before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.52);
  pointer-events:none;
  z-index:1;
}

.store-refined-card| after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  left:-110px;
  bottom:-126px;
  border-radius:50%;
  background:rgba(97,57,22,.09);
  box-shadow:0 0 0 18px rgba(255,255,255,.17);
  z-index:-1;
}

.store-refined-shine{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(110deg,transparent 0%,rgba(255,255,255,.32) 45%,transparent 58%);
  transform:translateX(100%);
  animation:storeRefinedShine 6s ease-in-out infinite;
  z-index:0;
}

@keyframes storeRefinedShine{
  0%,64%{transform:translateX(100%);}
  84%,100%{transform:translateX(-100%);}
}

.store-refined-visual{
  width:104px;
  height:146px;
  border-radius:28px;
  position:relative;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 14%,rgba(255,255,255,.84),transparent 38%),
    linear-gradient(160deg,#fff7df,#efc66a);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.66),
    0 14px 26px rgba(97,57,22,.15);
  z-index:2;
}

.store-refined-device{
  position:relative;
  width:74px;
  height:112px;
  border-radius:22px;
  background:linear-gradient(180deg,#fffaf0,#fff1d2);
  border:2px solid rgba(97,57,22,.55);
  box-shadow:0 12px 22px rgba(63,34,9,.14);
  overflow:hidden;
  animation:storeRefinedFloat 3.8s ease-in-out infinite;
}

@keyframes storeRefinedFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-5px);}
}

.store-refined-topbar{
  position:absolute;
  top:8px;
  right:50%;
  translate:50% 0;
  width:28px;
  height:4px;
  border-radius:999px;
  background:rgba(97,57,22,.35);
}

.store-refined-grid{
  position:absolute;
  top:22px;
  right:8px;
  left:8px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:7px;
}

.store-refined-grid i{
  height:22px;
  border-radius:9px;
  display:grid;
  place-items:center;
  color:var(--brown);
  font-size:11px;
  background:rgba(217,167,72,.18);
  box-shadow:inset 0 0 0 1px rgba(97,57,22,.06);
}

.store-refined-mini-cart{
  position:absolute;
  right:50%;
  bottom:10px;
  translate:50% 0;
  width:34px;
  height:28px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#fff8df;
  background:linear-gradient(145deg,var(--brown),#301505);
  box-shadow:0 8px 14px rgba(49,21,5,.20);
}

.store-refined-mini-cart i{
  font-size:14px;
}

.store-refined-content{
  position:relative;
  z-index:2;
  min-width:0;
  display:block;
}

.store-refined-badge{
  width:max-content;
  max-width:100%;
  margin-bottom:8px;
  padding:6px 11px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#6f4418;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(97,57,22,.10);
  font-size:12px;
  font-weight:900;
}

.store-refined-content strong{
  display:block;
  margin:0 0 6px;
  color:var(--brown);
  font-size:21px;
  line-height:1.45;
  font-weight:900;
}

.store-refined-content small{
  display:block;
  color:#76502a;
  font-size:13px;
  line-height:1.75;
  font-weight:800;
  max-width:95%;
}

.store-refined-btn{
  width:max-content;
  max-width:100%;
  min-height:46px;
  margin-top:14px;
  padding:0 18px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff8df;
  background:linear-gradient(145deg,var(--brown),#301505);
  box-shadow:0 13px 24px rgba(49,21,5,.23);
  font-size:14px;
  font-weight:900;
}

.store-refined-card:active{
  transform:scale(.985);
}
/* =========================================================
   End Online Store Section
========================================================= */


/* =========================================================
   Start Nearest Branch Smart Locator
========================================================= */
.nearest-locator-card{
  position:relative;
  min-height:218px;
  border-radius:32px;
  padding:16px;
  display:grid;
  grid-template-columns:96px 1fr;
  gap:13px;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  background:
    radial-gradient(circle at 14% 18%,rgba(255,255,255,.75),transparent 30%),
    radial-gradient(circle at 100% 100%,rgba(97,57,22,.14),transparent 36%),
    linear-gradient(145deg,#fffaf0 0%,#fff0c7 48%,#d9a748 100%);
  border:1px solid rgba(97,57,22,.13);
  box-shadow:
    0 18px 42px rgba(63,34,9,.15),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.nearest-locator-card| before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:25px;
  border:1px solid rgba(255,255,255,.50);
  pointer-events:none;
  z-index:1;
}

.nearest-locator-card| after{
  content:"";
  position:absolute;
  width:210px;
  height:210px;
  left:-98px;
  bottom:-118px;
  border-radius:50%;
  background:rgba(97,57,22,.10);
  box-shadow:0 0 0 17px rgba(255,255,255,.17);
  z-index:-1;
}

.nearest-locator-glow{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(110deg,transparent 0%,rgba(255,255,255,.30) 46%,transparent 58%);
  transform:translateX(100%);
  animation:nearestLocatorShine 5.8s ease-in-out infinite;
  z-index:0;
}

@keyframes nearestLocatorShine{
  0%,60%{transform:translateX(100%);}
  82%,100%{transform:translateX(-100%);}
}

.nearest-locator-visual{
  width:96px;
  height:132px;
  border-radius:29px;
  position:relative;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 50% 15%,rgba(255,255,255,.80),transparent 38%),
    linear-gradient(160deg,#fff7df,#efc66a);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 15px 27px rgba(97,57,22,.15);
  z-index:2;
  overflow:hidden;
}

.locator-rings{
  position:absolute;
  width:78px;
  height:78px;
  border-radius:50%;
  border:2px dashed rgba(97,57,22,.30);
  animation:locatorRotate 10s linear infinite;
}

.locator-rings| before,
.locator-rings| after{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:50%;
  border:1px solid rgba(97,57,22,.18);
}

.locator-rings| after{
  inset:25px;
}

@keyframes locatorRotate{
  to{transform:rotate(360deg);}
}

.locator-pin{
  width:52px;
  height:52px;
  border-radius:19px;
  display:grid;
  place-items:center;
  color:#fff8df;
  background:linear-gradient(145deg,var(--brown),#301505);
  box-shadow:0 13px 22px rgba(63,34,9,.24);
  position:relative;
  z-index:3;
  animation:locatorPinFloat 2.2s ease-in-out infinite;
}

.locator-pin i{
  font-size:23px;
}

@keyframes locatorPinFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-6px);}
}

.locator-scan{
  position:absolute;
  width:80px;
  height:80px;
  border-radius:50%;
  border:1px solid rgba(97,57,22,.20);
  animation:locatorPulse 2.3s ease-out infinite;
}

@keyframes locatorPulse{
  0%{
    transform:scale(.65);
    opacity:.70;
  }
  100%{
    transform:scale(1.35);
    opacity:0;
  }
}

.nearest-locator-content{
  position:relative;
  z-index:2;
  min-width:0;
}

.nearest-mini-title{
  width:max-content;
  max-width:100%;
  margin-bottom:6px;
  padding:5px 10px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#6f4418;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(97,57,22,.10);
  font-size:12px;
  font-weight:900;
}

.nearest-locator-content strong{
  display:block;
  color:var(--brown);
  font-size:21px;
  font-weight:900;
  line-height:1.35;
  margin:0 0 5px;
}

.nearest-locator-content small{
  display:block;
  color:#76502a;
  font-size:13px;
  line-height:1.65;
  font-weight:800;
}

.nearest-locator-actions{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}

.nearest-locate-btn,
.nearest-main-btn{
  min-height:46px;
  border-radius:17px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  transition:.22s ease;
}

.nearest-locate-btn{
  border:0;
  color:var(--brown);
  background:rgba(255,255,255,.75);
  box-shadow:
    inset 0 0 0 1px rgba(97,57,22,.10),
    0 9px 17px rgba(97,57,22,.08);
}

.nearest-main-btn{
  color:#fff8df;
  background:linear-gradient(145deg,var(--brown),#301505);
  box-shadow:0 12px 22px rgba(49,21,5,.23);
}

.nearest-locate-btn:active,
.nearest-main-btn:active{
  transform:scale(.97);
}

.nearest-smart-result{
  display:none;
  margin-top:11px;
}

.nearest-smart-result.show{
  display:block;
  animation:nearestResultIn .32s ease both;
}

@keyframes nearestResultIn{
  from{
    opacity:0;
    transform:translateY(8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.nearest-result-card{
  display:grid;
  grid-template-columns:42px 1fr auto;
  gap:10px;
  align-items:center;
  padding:10px;
  border-radius:20px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(97,57,22,.10);
  box-shadow:0 10px 20px rgba(97,57,22,.10);
}

.nearest-result-icon{
  width:42px;
  height:42px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:#fff8df;
  background:linear-gradient(145deg,var(--brown),#301505);
}

.nearest-result-copy{
  min-width:0;
}

.nearest-result-copy strong{
  display:block;
  margin:0;
  color:var(--brown);
  font-size:14px;
  font-weight:900;
  line-height:1.3;
}

.nearest-result-copy small{
  display:block;
  color:#76502a;
  font-size:11.5px;
  font-weight:800;
  line-height:1.45;
  margin-top:2px;
}

.nearest-result-arrow{
  width:34px;
  height:34px;
  border-radius:13px;
  display:grid;
  place-items:center;
  color:var(--brown);
  background:#fff0c7;
}

.nearest-result-message{
  padding:11px 12px;
  border-radius:18px;
  color:#704719;
  background:rgba(255,255,255,.70);
  border:1px solid rgba(97,57,22,.10);
  font-size:12.5px;
  font-weight:900;
  line-height:1.7;
}
/* =========================================================
   End Nearest Branch Smart Locator
========================================================= */


/* =========================================================
   Start Branches Tabs
========================================================= */
.branches-tabs{
  border-radius:32px;
  padding:13px;
  background:
    radial-gradient(circle at 88% 8%,rgba(247,225,129,.42),transparent 28%),
    linear-gradient(145deg,rgba(255,255,255,.90),rgba(255,244,213,.88));
  border:1px solid rgba(97,57,22,.10);
  box-shadow:var(--shadow-soft);
}

.branch-tabs-nav{
  display:flex;
  gap:8px;
  overflow-x:auto;
  padding-bottom:10px;
  scrollbar-width:none;
}

.branch-tabs-nav| -webkit-scrollbar{
  display:none;
}

.branch-tab{
  flex:0 0 auto;
  min-height:43px;
  border:0;
  border-radius:999px;
  padding:0 15px;
  color:#71491e;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(97,57,22,.10);
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 17px rgba(97,57,22,.08);
  transition:.25s ease;
}

.branch-tab.active{
  color:#fff8df;
  background:linear-gradient(145deg,var(--brown),#351606);
  box-shadow:0 12px 22px rgba(63,34,9,.22);
}

.branch-tab-panels{
  position:relative;
}

.branch-panel{
  display:none;
  grid-template-columns:70px 1fr;
  gap:13px;
  align-items:center;
  min-height:170px;
  border-radius:26px;
  padding:15px;
  background:
    radial-gradient(circle at 12% 12%,rgba(255,255,255,.58),transparent 28%),
    linear-gradient(145deg,#fffaf0,#fff1cf);
  border:1px solid rgba(97,57,22,.10);
  overflow:hidden;
  position:relative;
}

.branch-panel.active{
  display:grid;
  animation:tabPanelIn .35s ease both;
}

@keyframes tabPanelIn{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.branch-panel| after{
  content:"";
  position:absolute;
  width:155px;
  height:155px;
  border-radius:50%;
  left:-75px;
  bottom:-82px;
  background:rgba(97,57,22,.08);
}

.branch-panel-icon{
  width:66px;
  height:66px;
  border-radius:24px;
  display:grid;
  place-items:center;
  color:var(--brown);
  background:linear-gradient(145deg,#fff1a5,#d9a748);
  box-shadow:0 13px 22px rgba(217,167,72,.25);
  position:relative;
  z-index:2;
}

.branch-panel-icon i{
  font-size:25px;
}

.branch-panel-copy{
  position:relative;
  z-index:2;
}

.branch-panel-copy h3{
  margin:0 0 6px;
  color:var(--brown);
  font-size:19px;
  font-weight:900;
}

.branch-address{
  display:flex;
  align-items:flex-start;
  gap:7px;
  margin:0;
  color:#76502a;
  font-size:13px;
  line-height:1.85;
  font-weight:800;
}

.branch-address i{
  margin-top:6px;
  color:var(--orange);
  font-size:13px;
  flex:0 0 auto;
}

.branch-panel-copy a{
  width:max-content;
  max-width:100%;
  min-height:42px;
  padding:0 14px;
  margin-top:14px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff8df;
  background:linear-gradient(145deg,var(--brown),#351606);
  box-shadow:0 10px 18px rgba(63,34,9,.20);
  font-size:13px;
  font-weight:900;
}
/* =========================================================
   End Branches Tabs
========================================================= */


/* =========================================================
   Start Social
========================================================= */
.social-card{
  padding:16px;
  border-radius:30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(217,167,72,.28), transparent 30%),
    linear-gradient(145deg,rgba(255,255,255,.88),rgba(255,248,227,.86));
  border:1px solid rgba(97,57,22,.10);
  box-shadow:var(--shadow-soft);
}

.social-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.social-link{
  min-height:62px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
  color:#fff;
  box-shadow:0 13px 24px rgba(97,57,22,.13);
}

.facebook{
  background:linear-gradient(145deg,#1877f2,#0b4fb3);
}

.instagram{
  background:linear-gradient(145deg,#f9ce34,#ee2a7b,#6228d7);
}

.share-box{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
  padding:13px;
  border-radius:22px;
  background:
    radial-gradient(circle at 88% 18%,rgba(247,225,129,.32),transparent 30%),
    linear-gradient(145deg,#fffaf0,#fff1cf);
  border:1px solid rgba(97,57,22,.09);
  cursor:default;
}

.follow-note-copy{
  display:block;
}

.follow-note-copy strong,
.share-box strong{
  display:block;
  color:var(--brown);
  font-size:14px;
  line-height:1.5;
  font-weight:900;
}

.follow-note-copy small,
.share-box small{
  display:block;
  margin-top:3px;
  color:#77522a;
  font-size:12px;
  line-height:1.65;
  font-weight:700;
}

.share-btn{
  width:46px;
  height:46px;
  border:none;
  border-radius:17px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,var(--yellow),var(--orange));
  color:var(--brown);
  font-size:17px;
  box-shadow:0 9px 18px rgba(217,167,72,.24);
  cursor:pointer;
}

.fb-embed{
  margin-top:13px;
  padding:10px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(97,57,22,.10);
  box-shadow:0 10px 22px rgba(63,34,9,.08);
  overflow:hidden;
}

.fb-embed iframe{
  width:100% !important;
  border-radius:17px;
  display:block;
  background:#fff;
}
/* =========================================================
   End Social
========================================================= */


/* =========================================================
   Start Back To Top
========================================================= */
.back-top{
  position:fixed;
  right:16px;
  bottom:calc(var(--footer-h) + 22px + env(safe-area-inset-bottom));
  z-index:75;
  width:52px;
  height:52px;
  border:0;
  border-radius:19px;
  display:grid;
  place-items:center;
  color:#fff8df;
  background:linear-gradient(145deg,var(--brown),#2f1405);
  box-shadow:0 14px 28px rgba(49,21,5,.28);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px);
  transition:.25s ease;
}

.back-top.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
/* =========================================================
   End Back To Top
========================================================= */


/* =========================================================
   Start Fixed eHotline Footer
========================================================= */
.footer{
  position:fixed;
  right:0;
  left:0;
  bottom:0;
  bottom:env(safe-area-inset-bottom);
  z-index:90;
  min-height:var(--footer-h);
  padding:7px 8px 9px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:4px;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 0%,rgba(255,255,255,.82),transparent 34%),
    radial-gradient(circle at 86% 0%,rgba(247,225,129,.42),transparent 34%),
    linear-gradient(180deg,rgba(255,250,232,.98),rgba(255,239,199,.97));
  border-top:1px solid rgba(97,57,22,.18);
  box-shadow:
    0 -18px 38px rgba(63,34,9,.17),
    inset 0 1px 0 rgba(255,255,255,.70);
  backdrop-filter:blur(20px) saturate(1.18);
  -webkit-backdrop-filter:blur(20px) saturate(1.18);
}

.footer| before{
  content:"";
  position:absolute;
  inset:7px 12px;
  border-radius:26px;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.58);
  box-shadow:
    inset 0 0 22px rgba(255,255,255,.28),
    0 8px 22px rgba(97,57,22,.06);
}

.footer| after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(110deg,transparent 0%,rgba(255,255,255,.34) 44%,transparent 58%);
  transform:translateX(100%);
  animation:madinaFooterShine 6.5s ease-in-out infinite;
}

@keyframes madinaFooterShine{
  0%,64%{
    transform:translateX(100%);
  }
  84%,100%{
    transform:translateX(-100%);
  }
}

.fitem{
  position:relative;
  z-index:2;
  min-width:0;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  color:var(--brown);
  text-align:center;
  border-radius:18px;
  font-weight:900;
  transition:
    transform .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.fitem| before{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:15px;
  background:
    radial-gradient(circle at 50% 0%,rgba(247,225,129,.34),transparent 44%),
    rgba(255,255,255,.28);
  opacity:0;
  transform:scale(.92);
  transition:.22s ease;
  z-index:-1;
}

.fitem:active{
  transform:scale(.95);
}

.fitem:active| before{
  opacity:1;
  transform:scale(1);
}

.f-ico{
  width:25px;
  height:25px;
  object-fit:contain;
  filter:
    brightness(0)
    saturate(100%)
    invert(23%)
    sepia(54%)
    saturate(792%)
    hue-rotate(350deg)
    brightness(88%)
    contrast(93%)
    drop-shadow(0 4px 7px rgba(97,57,22,.18));
  transition:
    filter .22s ease,
    transform .22s ease;
}

.fitem:active .f-ico{
  transform:translateY(-2px) scale(1.06);
  filter:
    brightness(0)
    saturate(100%)
    invert(49%)
    sepia(48%)
    saturate(620%)
    hue-rotate(2deg)
    brightness(96%)
    contrast(91%)
    drop-shadow(0 5px 9px rgba(217,167,72,.26));
}

.fitem small{
  display:block;
  max-width:100%;
  color:#5f3715;
  font-size:9px;
  line-height:1.05;
  font-weight:900;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-shadow:0 1px 0 rgba(255,255,255,.58);
}
/* =========================================================
   End Fixed eHotline Footer
========================================================= */


/* =========================================================
   Start Tablet
========================================================= */
@media (min-width:700px){
  :root{
    --footer-h:86px;
  }

  .container{
    width:min(100% - 48px, 900px);
  }

  .head-shell{
    min-height:90px;
    padding:12px 15px;
  }

  .head-logo{
    width:132px;
    min-width:132px;
  }

  .head-brand-text strong{
    font-size:21px;
  }

  .head-brand-text small{
    font-size:12px;
  }

  .head-bar{
    width:210px;
  }

  .hero-card{
    min-height:500px;
    padding:22px 24px;
    border-radius:46px;
  }

  .hero-content{
    min-height:455px;
  }

  .coffee-scene{
    width:360px;
    height:170px;
  }

  .coffee-cup{
    width:145px;
    height:84px;
  }

  .coffee-cup| before{
    width:156px;
  }

  .coffee-saucer{
    width:225px;
  }

  .hero-logo-clean{
    width:285px;
  }

  .hero-actions{
    width:560px;
    margin-inline:auto;
  }

  .section-title{
    font-size:20px;
  }

  .section-badge{
    font-size:12px;
  }

  .contact-grid{
    max-width:760px;
    margin-inline:auto;
    gap:16px;
  }

  .contact-card{
    max-height:164px;
  }

  .contact-icon{
    width:54px;
    height:54px;
    font-size:22px;
  }

  .contact-card strong{
    font-size:13.5px;
  }

  .store-refined-card{
    min-height:245px;
    grid-template-columns:130px 1fr;
    gap:20px;
    padding:24px;
  }

  .store-refined-visual{
    width:130px;
    height:170px;
    border-radius:32px;
  }

  .store-refined-device{
    width:88px;
    height:128px;
    border-radius:24px;
  }

  .store-refined-grid{
    top:24px;
    gap:8px;
  }

  .store-refined-grid i{
    height:24px;
    font-size:12px;
  }

  .store-refined-mini-cart{
    width:38px;
    height:30px;
  }

  .store-refined-content strong{
    font-size:23px;
  }

  .store-refined-content small{
    font-size:14px;
    max-width:100%;
  }

  .store-refined-btn{
    min-height:48px;
    font-size:14px;
  }

  .nearest-locator-card{
    min-height:230px;
    grid-template-columns:125px 1fr;
    padding:20px;
  }

  .nearest-locator-visual{
    width:125px;
    height:150px;
  }

  .nearest-locator-content strong{
    font-size:22px;
  }

  .nearest-locator-content small{
    font-size:14px;
  }

  .branch-panel{
    min-height:190px;
  }

  .footer{
    width:min(740px, calc(100% - 30px));
    right:50%;
    left:auto;
    transform:translateX(50%);
    bottom:10px;
    bottom:calc(10px + env(safe-area-inset-bottom));
    padding:8px 12px 10px;
    border-radius:30px;
    border:1px solid rgba(97,57,22,.17);
    box-shadow:
      0 18px 40px rgba(63,34,9,.14),
      0 -12px 30px rgba(63,34,9,.12),
      inset 0 1px 0 rgba(255,255,255,.72);
  }

  .footer| before{
    inset:8px 14px;
    border-radius:24px;
  }

  .fitem{
    border-radius:20px;
    gap:5px;
  }

  .f-ico{
    width:30px;
    height:30px;
  }

  .fitem small{
    font-size:10px;
  }

  .back-top{
    right:calc((100% - min(740px, calc(100% - 30px))) / 2 + 10px);
    bottom:calc(var(--footer-h) + 34px + env(safe-area-inset-bottom));
  }
}
/* =========================================================
   End Tablet
========================================================= */


/* =========================================================
   Start Large Tablet
========================================================= */
@media (min-width:900px){
  .footer{
    width:760px;
  }

  .f-ico{
    width:31px;
    height:31px;
  }

  .fitem small{
    font-size:10.5px;
  }
}
/* =========================================================
   End Large Tablet
========================================================= */


/* =========================================================
   Start Small Mobile
========================================================= */
@media (max-width:390px){
  .container{
    width:min(100% - 24px, 840px);
  }

  .head-shell{
    min-height:74px;
    padding:8px;
    gap:8px;
  }

  .head-logo{
    width:86px;
    min-width:86px;
  }

  .head-brand{
    gap:7px;
  }

  .head-brand-text strong{
    font-size:14px;
  }

  .head-brand-text small{
    font-size:9px;
  }

  .head-bar{
    width:30vw;
    min-width:98px;
    padding:3px;
  }

  .hero-card{
    min-height:405px;
    padding:14px 12px 16px;
  }

  .hero-content{
    min-height:370px;
  }

  .coffee-scene{
    height:132px;
  }

  .hero-logo-clean{
    width:min(76%,215px);
  }

  .hero-btn{
    min-height:52px;
    font-size:13px;
  }

  .section-title{
    font-size:18px;
  }

  .section-badge{
    font-size:11px;
    padding:5px 10px;
  }

  .contact-grid{
    gap:7px;
  }

  .contact-card{
    border-radius:20px;
    padding:7px 4px;
  }

  .contact-icon{
    width:36px;
    height:36px;
    border-radius:14px;
    font-size:15px;
  }

  .contact-card strong{
    font-size:8.8px;
    line-height:1.18;
  }

  .store-refined-card{
    min-height:200px;
    grid-template-columns:90px 1fr;
    gap:11px;
    padding:14px;
    border-radius:28px;
  }

  .store-refined-visual{
    width:90px;
    height:126px;
    border-radius:24px;
  }

  .store-refined-device{
    width:62px;
    height:98px;
    border-radius:19px;
  }

  .store-refined-grid{
    top:19px;
    right:6px;
    left:6px;
    gap:6px;
  }

  .store-refined-grid i{
    height:20px;
    font-size:10px;
    border-radius:8px;
  }

  .store-refined-mini-cart{
    width:28px;
    height:24px;
    border-radius:10px;
    bottom:8px;
  }

  .store-refined-mini-cart i{
    font-size:12px;
  }

  .store-refined-badge{
    font-size:11px;
    padding:5px 9px;
  }

  .store-refined-content strong{
    font-size:18px;
    line-height:1.35;
  }

  .store-refined-content small{
    font-size:12px;
    line-height:1.55;
    max-width:100%;
  }

  .store-refined-btn{
    min-height:42px;
    margin-top:10px;
    padding:0 14px;
    font-size:13px;
  }

  .nearest-locator-card{
    grid-template-columns:82px 1fr;
    gap:10px;
    min-height:205px;
    padding:14px;
    border-radius:28px;
  }

  .nearest-locator-visual{
    width:82px;
    height:120px;
    border-radius:25px;
  }

  .locator-rings{
    width:66px;
    height:66px;
  }

  .locator-pin{
    width:46px;
    height:46px;
    border-radius:17px;
  }

  .nearest-locator-content strong{
    font-size:18px;
  }

  .nearest-locator-content small{
    font-size:12px;
    line-height:1.55;
  }

  .nearest-locator-actions{
    grid-template-columns:1fr;
    gap:7px;
  }

  .nearest-locate-btn,
  .nearest-main-btn{
    min-height:42px;
  }

  .branch-panel{
    grid-template-columns:1fr;
    text-align:center;
  }

  .branch-panel-icon{
    margin-inline:auto;
  }

  .branch-address{
    justify-content:center;
    text-align:center;
  }

  .branch-panel-copy a{
    margin-inline:auto;
  }

  .footer{
    min-height:72px;
    padding:6px 5px 8px;
    gap:2px;
  }

  .footer| before{
    inset:6px 8px;
    border-radius:22px;
  }

  .fitem{
    gap:3px;
    border-radius:14px;
  }

  .f-ico{
    width:22px;
    height:22px;
  }

  .fitem small{
    font-size:7.8px;
    letter-spacing:-.1px;
  }
}
/* =========================================================
   End Small Mobile
========================================================= */


/* =========================================================
   Start Very Small Mobile
========================================================= */
@media (max-width:340px){
  .head-brand-text{
    display:none;
  }

  .head-bar{
    min-width:96px;
  }

  .contact-grid{
    gap:5px;
  }

  .contact-icon{
    width:32px;
    height:32px;
    font-size:14px;
  }

  .contact-card strong{
    font-size:8px;
  }

  .store-refined-card{
    grid-template-columns:1fr;
    text-align:center;
  }

  .store-refined-visual{
    margin-inline:auto;
    order:-1;
  }

  .store-refined-badge,
  .store-refined-btn{
    margin-inline:auto;
  }

  .store-refined-content small{
    margin-inline:auto;
  }

  .footer{
    min-height:68px;
    padding-inline:3px;
  }

  .f-ico{
    width:20px;
    height:20px;
  }

  .fitem small{
    font-size:7px;
  }
}
/* =========================================================
   End Very Small Mobile
========================================================= */


/* =========================================================
   Start Reduced Motion
========================================================= */
@media (prefers-reduced-motion:reduce){
  *,
  *| before,
  *| after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }
}
/* =========================================================
   End Reduced Motion
========================================================= */


/* =========================================================
   End El-Madina Blend Mobile eHotline CSS
========================================================= */
/* =========================================================
   Start Hero Logo First Order Fix
========================================================= */

.hero-content-v2{
  justify-content:flex-start !important;
  gap:8px !important;
}

.hero-logo-clean{
  margin:0 auto 2px !important;
}

.coffee-scene{
  margin:0 auto 0 !important;
}

.hero-label-v2{
  margin:2px auto 0 !important;
}

.hero-actions{
  margin-top:9px !important;
}

/* Small Mobile */
@media (max-width:390px){
  .hero-content-v2{
    gap:7px !important;
  }

  .hero-logo-clean{
    width:min(74%,205px) !important;
  }

  .coffee-scene{
    height:122px !important;
  }
}

/* Tablet */
@media (min-width:700px){
  .hero-logo-clean{
    width:270px !important;
  }

  .coffee-scene{
    height:158px !important;
  }
}

/* =========================================================
   End Hero Logo First Order Fix
========================================================= */


/* =========================================================
   Start Main Card Titles Size Fix
   تصغير عناوين كروت المتجر وأقرب فرع
========================================================= */

.store-refined-content strong,
.nearest-locator-content strong{
  font-size:15px !important;
  line-height:1.45 !important;
  font-weight:900 !important;
  letter-spacing:-.2px !important;
}

/* Tablet */
@media (min-width:700px){
  .store-refined-content strong,
  .nearest-locator-content strong{
    font-size:18px !important;
    line-height:1.45 !important;
  }
}

/* Small Mobile */
@media (max-width:390px){
  .store-refined-content strong,
  .nearest-locator-content strong{
    font-size:15px !important;
    line-height:1.45 !important;
  }
}

/* Very Small Mobile */
@media (max-width:340px){
  .store-refined-content strong,
  .nearest-locator-content strong{
    font-size:15px !important;
    line-height:1.45 !important;
  }
}

/* =========================================================
   End Main Card Titles Size Fix
========================================================= */


/* =========================================================
   Start Hero Real Coffee Background Upgrade
========================================================= */
.hero-card-v2{
  background:
    linear-gradient(180deg, rgba(28,10,2,.48), rgba(25,8,1,.78)),
    radial-gradient(circle at 50% 30%, rgba(247,225,129,.20), transparent 42%),
    url("../logo/coffee-beans-hero.webp") center / cover no-repeat !important;
}

/* طبقة إضافية دافئة وناعمة فوق الصورة */
.hero-card-v2| before{
  background:
    radial-gradient(circle at 50% 18%, rgba(247,225,129,.24), transparent 34%),
    radial-gradient(circle at 50% 55%, rgba(97,57,22,.18), transparent 48%),
    linear-gradient(180deg, rgba(20,7,1,.18), rgba(18,6,1,.68)) !important;
}
/* تقليل الجلو القديم لأنه مع الصورة هيبقى تقيل */
.hero-card-v2| after{
  opacity:.55 !important;
}

/* إخفاء حبوب البن المصنوعة بالـ CSS لتجنب التكرار */
.hero-real-beans{
  display:none !important;
}

/* تقوية ظهور اللوجو فوق الخلفية الواقعية */
.hero-logo-clean{
  width:min(76%,220px) !important;
  margin:0 auto 2px !important;
}

.hero-logo-main{
  filter:
    drop-shadow(0 14px 22px rgba(0,0,0,.46))
    drop-shadow(0 0 18px rgba(247,225,129,.20)) !important;
}

/* جعل الفنجان جزء ناعم من المشهد مش مزاحم للصورة */
.coffee-scene{
  opacity:.92 !important;
  filter:drop-shadow(0 16px 24px rgba(0,0,0,.32));
}

.hero-label-v2{
  background:rgba(36,13,3,.62) !important;
  border:1px solid rgba(247,225,129,.25) !important;
  color:#fff5d0 !important;
}

/* تحسين الأزرار فوق الخلفية */
.hero-btn.nearest{
  background:linear-gradient(145deg,#6b3813,#2a0f03) !important;
  box-shadow:0 15px 25px rgba(0,0,0,.28) !important;
}

.hero-btn.branches{
  background:linear-gradient(145deg,#fff0a6,#d9a748) !important;
  box-shadow:0 15px 25px rgba(0,0,0,.18) !important;
}

/* Small Mobile */
@media (max-width:390px){
  .hero-card-v2{
    background-position:center top !important;
  }

  .hero-logo-clean{
    width:min(74%,205px) !important;
  }
}

/* Tablet */
@media (min-width:700px){
  .hero-card-v2{
    background-position:center center !important;
  }

  .hero-logo-clean{
    width:260px !important;
  }
}

/* =========================================================
   End Hero Real Coffee Background Upgrade
========================================================= */

/* =========================================================
   Start English Arrows Direction Fix
========================================================= */

html[dir="ltr"] .fa-arrow-left{
  transform:scaleX(-1);
}

/* =========================================================
   End English Arrows Direction Fix
========================================================= */

/* =========================================================
   Start Interna pages style
========================================================= */
:root{
  --mb-brown:#613916;
  --mb-brown-dark:#321704;
  --mb-orange:#d9a748;
  --mb-yellow:#f7e181;
  --mb-cream:#fff8e6;
  --mb-soft:#fff1cf;
  --mb-ink:#2b1606;
  --mb-muted:#7b5932;
  --mb-line:rgba(97,57,22,.14);
  --mb-shadow:0 18px 42px rgba(63,34,9,.15);
  --mb-footer-h:74px;
}

*{
  box-sizing:border-box;
  -webkit-tap-highlight-color:transparent;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  direction:rtl;
  font-family:'Cairo','Tahoma',Arial,sans-serif;
  color:var(--mb-ink);
  background:
    radial-gradient(circle at 15% 0%,rgba(247,225,129,.62),transparent 30%),
    radial-gradient(circle at 95% 15%,rgba(217,167,72,.22),transparent 34%),
    linear-gradient(180deg,#fffaf0 0%,#fff1cf 45%,#fffaf0 100%);
  min-height:100vh;
  overflow-x:hidden;
  padding-bottom:calc(var(--mb-footer-h) + 34px + env(safe-area-inset-bottom));
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.mb-shell{
  width:min(100% - 28px,840px);
  margin-inline:auto;
}

/* Start Internal Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  padding:9px 0;
  background:linear-gradient(180deg,rgba(255,248,225,.96),rgba(255,244,211,.88));
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid var(--mb-line);
  box-shadow:0 12px 28px rgba(65,34,10,.10);
}

.header-in{
  width:min(100% - 28px,840px);
  margin-inline:auto;
  min-height:78px;
  border-radius:27px;
  padding:9px 11px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(circle at 20% 20%,rgba(247,225,129,.55),transparent 32%),
    radial-gradient(circle at 85% 70%,rgba(97,57,22,.12),transparent 35%),
    linear-gradient(135deg,rgba(255,255,255,.78),rgba(255,242,204,.56));
  border:1px solid rgba(97,57,22,.10);
}

.brand-right{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  position:relative;
  z-index:2;
}

.logo{
  width:104px;
  min-width:104px;
  padding:5px;
  border-radius:20px;
  background:rgba(255,255,255,.62);
  box-shadow:0 12px 22px rgba(65,34,10,.14);
}

.brand-text{
  min-width:0;
}

.brand-name{
  margin:0;
  color:var(--mb-brown);
  font-size:18px;
  line-height:1.15;
  font-weight:900;
  white-space:nowrap;
}

.brand-slogan{
  margin:3px 0 0;
  color:#7d5529;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
}

.hotline-left{
  position:relative;
  z-index:2;
  width:min(35vw,170px);
  padding:5px;
  border-radius:16px;
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 20px rgba(65,34,10,.12);
}
/* End Internal Header */

/* Start Breadcrumb */
.crumbs{
  padding:12px 0 2px;
}

.crumbs-in{
  width:min(100% - 28px,840px);
  margin-inline:auto;
  display:flex;
  align-items:center;
  gap:7px;
  flex-wrap:wrap;
}

.crumb{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.70);
  color:var(--mb-brown);
  border:1px solid rgba(97,57,22,.10);
  font-weight:900;
  font-size:12px;
}

.crumb.current{
  background:linear-gradient(145deg,var(--mb-yellow),var(--mb-orange));
}

.sep{
  color:rgba(97,57,22,.45);
  font-weight:900;
}
/* End Breadcrumb */

/* Start Page Cards */
.page-section{
  width:min(100% - 28px,840px);
  margin:18px auto;
}

.page-title{
  margin:0 0 14px;
  color:var(--mb-brown);
  font-size:20px;
  line-height:1.35;
  font-weight:900;
}

.page-card{
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.90),rgba(255,244,213,.90));
  border:1px solid rgba(97,57,22,.11);
  box-shadow:var(--mb-shadow);
  padding:16px;
  position:relative;
  overflow:hidden;
}

.page-card| before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:23px;
  border:1px solid rgba(255,255,255,.50);
  pointer-events:none;
}
/* End Page Cards */

/* Start Quick Contact Items */
.qc-wrap{
  display:grid;
  gap:12px;
}

.qc-item{
  position:relative;
  display:grid;
  grid-template-columns:54px 1fr auto;
  align-items:center;
  gap:11px;
  min-height:78px;
  padding:12px;
  border-radius:25px;
  background:linear-gradient(145deg,#fffdf4,#fff0c9);
  border:1px solid rgba(97,57,22,.10);
  box-shadow:0 12px 24px rgba(97,57,22,.10);
  overflow:hidden;
}

.qc-item| after{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  border-radius:50%;
  left:-64px;
  bottom:-70px;
  background:rgba(217,167,72,.12);
}

.qc-ico{
  width:54px;
  height:54px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,var(--mb-yellow),var(--mb-orange));
  box-shadow:0 10px 18px rgba(217,167,72,.22);
  position:relative;
  z-index:2;
}

.qc-ico img{
  width:28px;
  height:28px;
  object-fit:contain;
  filter:brightness(0) saturate(100%) invert(23%) sepia(54%) saturate(792%) hue-rotate(350deg) brightness(88%) contrast(93%);
}

.qc-ico i{
  font-size:24px;
  color:var(--mb-brown);
}

.qc-text{
  position:relative;
  z-index:2;
  min-width:0;
}

.qc-label{
  display:block;
  color:#7b542a;
  font-size:12px;
  font-weight:800;
  line-height:1.3;
}

.qc-value{
  display:block;
  color:var(--mb-brown);
  font-size:15px;
  font-weight:900;
  line-height:1.35;
  overflow-wrap:anywhere;
}

.qc-arrow{
  position:relative;
  z-index:2;
  width:34px;
  height:34px;
  border-radius:13px;
  display:grid;
  place-items:center;
  background:var(--mb-brown);
  color:#fff8df;
  font-size:22px;
  line-height:1;
}
/* End Quick Contact Items */

/* Start Chips And Address */
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.chip{
  min-height:42px;
  padding:0 14px;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(145deg,var(--mb-brown),var(--mb-brown-dark));
  color:#fff8df;
  font-size:13px;
  font-weight:900;
  border:0;
}

.chip.ghost{
  background:rgba(255,255,255,.72);
  color:var(--mb-brown);
  border:1px solid rgba(97,57,22,.12);
}

.address-card{
  margin-top:14px;
}

.card-head{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--mb-brown);
  font-weight:900;
  margin-bottom:9px;
}

.card-head svg{
  fill:var(--mb-orange);
  color:var(--mb-brown);
}

.address-card p{
  margin:5px 0;
  color:#71502b;
  font-size:14px;
  line-height:1.8;
  font-weight:800;
}

.map-wrap{
  margin-top:12px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(97,57,22,.12);
  box-shadow:0 10px 20px rgba(97,57,22,.10);
}

.map-wrap iframe{
  display:block;
  width:100%;
  height:260px;
  border:0;
}
/* End Chips And Address */

/* Start Steps Pages */
.steps{
  width:min(100% - 28px,840px);
  margin:18px auto;
  display:grid;
  gap:14px;
}

.steps img{
  width:100%;
  border-radius:24px;
  border:1px solid rgba(97,57,22,.12);
  box-shadow:0 12px 28px rgba(97,57,22,.12);
}
/* End Steps Pages */

/* Start Share GPS Follow Panels */
.share-grid,
.gps-guide,
.follow-panel{
  width:min(100% - 28px,840px);
  margin:18px auto;
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.90),rgba(255,244,213,.90));
  border:1px solid rgba(97,57,22,.11);
  box-shadow:var(--mb-shadow);
  padding:16px;
}

.share-grid h2,
.gps-title,
.follow-title{
  margin:0 0 14px;
  color:var(--mb-brown);
  text-align:center;
  font-size:19px;
  font-weight:900;
}

.share-icons{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(88px,1fr));
  gap:12px;
}

.share-icons a{
  min-height:96px;
  border-radius:22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#fffaf0;
  border:1px solid rgba(97,57,22,.10);
  box-shadow:0 9px 18px rgba(97,57,22,.08);
  font-size:12px;
  font-weight:900;
  color:var(--mb-brown);
}

.share-icons img{
  width:36px;
  height:36px;
  object-fit:contain;
}

.gps-links{
  display:grid;
  gap:12px;
}

.gps-item{
  min-height:96px;
  border-radius:24px;
  display:grid;
  grid-template-columns:60px 1fr auto;
  align-items:center;
  gap:12px;
  padding:14px;
  background:#fffaf0;
  border:1px solid rgba(97,57,22,.10);
  box-shadow:0 10px 18px rgba(97,57,22,.08);
}

.gps-item .icon{
  width:60px;
  height:60px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,var(--mb-yellow),var(--mb-orange));
}

.gps-item .icon img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.gps-item b{
  color:var(--mb-brown);
  font-size:16px;
}

.gps-item small{
  display:block;
  color:#76502a;
  font-weight:800;
}
/* End Share GPS Follow Panels */

/* Start Facebook And Social */
.fb-like-box{
  border-radius:26px;
  padding:18px;
  text-align:center;
  background:linear-gradient(145deg,var(--mb-brown),#321704);
  color:#fff8df;
  box-shadow:0 14px 30px rgba(49,21,5,.20);
}

.social-mini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:12px;
}

.social-mini a{
  min-height:58px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  color:#fff;
  font-weight:900;
}

.social-mini .fb{
  background:linear-gradient(145deg,#1877f2,#0b4fb3);
}

.social-mini .ig{
  background:linear-gradient(145deg,#f9ce34,#ee2a7b,#6228d7);
}
/* End Facebook And Social */

/* Start Back To Top */
.backtop{
  position:fixed;
  right:16px;
  bottom:calc(var(--mb-footer-h) + 22px + env(safe-area-inset-bottom));
  z-index:70;
  width:50px;
  height:50px;
  border:0;
  border-radius:18px;
  background:linear-gradient(145deg,var(--mb-brown),var(--mb-brown-dark));
  color:#fff8df;
  display:grid;
  place-items:center;
  box-shadow:0 14px 28px rgba(49,21,5,.28);
  opacity:0;
  visibility:hidden;
  transform:translateY(14px);
  transition:.25s ease;
}

.backtop.show{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
/* End Back To Top */

/* Start Internal Fixed Footer */
.af-foot{
  position:fixed;
  right:0;
  left:0;
  bottom:0;
  bottom:env(safe-area-inset-bottom);
  z-index:80;
  min-height:var(--mb-footer-h);
  padding:7px 8px;
  background:
    radial-gradient(circle at 12% 0%,rgba(255,255,255,.82),transparent 34%),
    linear-gradient(180deg,rgba(255,250,232,.98),rgba(255,239,199,.97));
  border-top:1px solid rgba(97,57,22,.18);
  box-shadow:0 -18px 38px rgba(63,34,9,.17);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}

.af-tray{
  height:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}

.af-act{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  color:var(--mb-brown);
  font-weight:900;
  border-radius:17px;
}

.af-act svg{
  width:24px;
  height:24px;
}

.af-act small{
  font-size:10px;
}

.af-act:active{
  background:rgba(217,167,72,.18);
  transform:scale(.96);
}
/* End Internal Fixed Footer */

/* Start Tablet */
@media (min-width:700px){
  :root{
    --mb-footer-h:84px;
  }

  .header-in{
    width:min(100% - 48px,900px);
    min-height:90px;
  }

  .logo{
    width:132px;
    min-width:132px;
  }

  .brand-name{
    font-size:23px;
  }

  .brand-slogan{
    font-size:13px;
  }

  .hotline-left{
    width:245px;
  }

  .page-title{
    font-size:22px;
  }

  .qc-wrap{
    grid-template-columns:1fr 1fr;
  }

  .map-wrap iframe{
    height:340px;
  }

  .share-icons{
    grid-template-columns:repeat(auto-fit,minmax(110px,1fr));
  }

  .af-foot{
    width:min(720px,calc(100% - 30px));
    right:50%;
    left:auto;
    transform:translateX(50%);
    bottom:10px;
    border-radius:30px;
    border:1px solid rgba(97,57,22,.17);
  }

  .backtop{
    right:calc((100% - min(720px,calc(100% - 30px))) / 2 + 10px);
    bottom:calc(var(--mb-footer-h) + 34px + env(safe-area-inset-bottom));
  }
}
/* End Tablet */

/* Start Small Mobile */
@media (max-width:390px){
  .header-in{
    min-height:72px;
    padding:8px;
  }

  .logo{
    width:84px;
    min-width:84px;
  }

  .brand-right{
    gap:7px;
  }

  .brand-name{
    font-size:14px;
  }

  .brand-slogan{
    font-size:9px;
  }

  .hotline-left{
    width:112px;
  }

  .page-title{
    font-size:18px;
  }

  .qc-item{
    grid-template-columns:46px 1fr auto;
    padding:10px;
  }

  .qc-ico{
    width:46px;
    height:46px;
    border-radius:17px;
  }

  .qc-value{
    font-size:13px;
  }

  .map-wrap iframe{
    height:220px;
  }

  .share-icons{
    grid-template-columns:repeat(auto-fit,minmax(76px,1fr));
    gap:9px;
  }

  .share-icons a{
    min-height:84px;
    font-size:10px;
  }

  .af-act small{
    font-size:9px;
  }
}
/* End Small Mobile */

/* =========================================================
   End Interna pages style
========================================================= */


/* =========================================================
   Start Breadcrumb Premium Badge Style
========================================================= */

.crumbs{
  padding:12px 0 4px;
}

.crumbs-in{
  align-items:center;
  gap:7px;
}

.crumb{
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  color:var(--mb-brown);
  border:1px solid rgba(97,57,22,.11);
  box-shadow:0 8px 18px rgba(97,57,22,.07);
  font-size:12px;
  font-weight:900;
  transition:.22s ease;
}

a.crumb:active{
  transform:scale(.96);
  background:rgba(247,225,129,.26);
}

/* الصفحة الحالية كبادج مش زر */
.crumb.current{
  min-height:40px;
  padding:0 18px;
  background:linear-gradient(145deg,var(--mb-yellow),var(--mb-orange));
  color:var(--mb-brown);
  border:1px solid rgba(97,57,22,.16);
  box-shadow:
    0 10px 20px rgba(217,167,72,.22),
    inset 0 1px 0 rgba(255,255,255,.55);
  cursor:default;
}

/* الفواصل */
.sep{
  color:rgba(97,57,22,.42);
  font-size:17px;
  font-weight:900;
}

/* Small Mobile */
@media (max-width:390px){
  .crumb{
    min-height:34px;
    padding:0 11px;
    font-size:11px;
  }

  .crumb.current{
    min-height:36px;
    padding:0 14px;
  }

  .sep{
    font-size:15px;
  }
}

/* =========================================================
   End Breadcrumb Premium Badge Style
========================================================= */


/* =========================================================
   Start Internal Footer Premium Like Home
========================================================= */

.af-foot{
  min-height:76px;
  padding:8px 8px 10px;
  background:
    radial-gradient(circle at 12% 0%,rgba(255,255,255,.82),transparent 34%),
    radial-gradient(circle at 86% 0%,rgba(247,225,129,.42),transparent 34%),
    linear-gradient(180deg,rgba(255,250,232,.98),rgba(255,239,199,.97));
  border-top:1px solid rgba(97,57,22,.18);
  box-shadow:
    0 -18px 38px rgba(63,34,9,.17),
    inset 0 1px 0 rgba(255,255,255,.70);
  backdrop-filter:blur(20px) saturate(1.18);
  -webkit-backdrop-filter:blur(20px) saturate(1.18);
  overflow:hidden;
}

.af-foot::before{
  content:"";
  position:absolute;
  inset:7px 12px;
  border-radius:26px;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.58);
  box-shadow:
    inset 0 0 22px rgba(255,255,255,.28),
    0 8px 22px rgba(97,57,22,.06);
}

.af-foot::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(110deg,transparent 0%,rgba(255,255,255,.34) 44%,transparent 58%);
  transform:translateX(100%);
  animation:internalFooterShine 6.5s ease-in-out infinite;
}

@keyframes internalFooterShine{
  0%,64%{
    transform:translateX(100%);
  }
  84%,100%{
    transform:translateX(-100%);
  }
}

.af-tray{
  position:relative;
  z-index:2;
  height:100%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:5px;
  align-items:center;
}

.af-act{
  min-height:58px;
  padding-top:7px;
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;
  color:var(--mb-brown,#613916);
  font-weight:900;
  transform:translateY(3px);
  transition:
    transform .22s ease,
    background .22s ease;
}

.af-act::before{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:15px;
  background:
    radial-gradient(circle at 50% 0%,rgba(247,225,129,.34),transparent 44%),
    rgba(255,255,255,.28);
  opacity:0;
  transform:scale(.92);
  transition:.22s ease;
  z-index:-1;
}

.af-act i{
  width:30px;
  height:30px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:var(--mb-brown,#613916);
  background:linear-gradient(145deg,rgba(247,225,129,.55),rgba(217,167,72,.22));
  box-shadow:
    0 7px 14px rgba(97,57,22,.12),
    inset 0 1px 0 rgba(255,255,255,.60);
  font-size:17px;
  line-height:1;
}

.af-act small{
  display:block;
  color:#5f3715;
  font-size:10px;
  line-height:1.05;
  font-weight:900;
  white-space:nowrap;
  text-shadow:0 1px 0 rgba(255,255,255,.58);
}

.af-act:active{
  transform:translateY(3px) scale(.95);
}

.af-act:active::before{
  opacity:1;
  transform:scale(1);
}

.af-act:active i{
  background:linear-gradient(145deg,var(--mb-yellow,#f7e181),var(--mb-orange,#d9a748));
  transform:translateY(-1px) scale(1.04);
}

/* Tablet */
@media (min-width:700px){
  .af-foot{
    width:min(740px,calc(100% - 30px));
    right:50%;
    left:auto;
    transform:translateX(50%);
    bottom:10px;
    bottom:calc(10px + env(safe-area-inset-bottom));
    min-height:86px;
    padding:9px 12px 11px;
    border-radius:30px;
    border:1px solid rgba(97,57,22,.17);
    box-shadow:
      0 18px 40px rgba(63,34,9,.14),
      0 -12px 30px rgba(63,34,9,.12),
      inset 0 1px 0 rgba(255,255,255,.72);
  }

  .af-foot::before{
    inset:8px 14px;
    border-radius:24px;
  }

  .af-act{
    min-height:64px;
    transform:translateY(4px);
  }

  .af-act i{
    width:34px;
    height:34px;
    border-radius:14px;
    font-size:18px;
  }

  .af-act small{
    font-size:10.5px;
  }

  .af-act:active{
    transform:translateY(4px) scale(.96);
  }
}

/* Small Mobile */
@media (max-width:390px){
  .af-foot{
    min-height:72px;
    padding:7px 6px 9px;
  }

  .af-foot::before{
    inset:6px 8px;
    border-radius:22px;
  }

  .af-act{
    min-height:55px;
    gap:4px;
    padding-top:6px;
    transform:translateY(3px);
  }

  .af-act i{
    width:28px;
    height:28px;
    border-radius:11px;
    font-size:16px;
  }

  .af-act small{
    font-size:9px;
  }
}

/* =========================================================
   End Internal Footer Premium Like Home
========================================================= */


/* =========================================================
   Start Mobile Fixed Header With Scroll
========================================================= */

:root{
  --mb-fixed-header-space:104px;
}

/* Homepage Header + Internal Pages Header */
.mb-header,
.header{
  position:fixed !important;
  top:0 !important;
  right:0 !important;
  left:0 !important;
  width:100% !important;
  z-index:999 !important;
}

/* تعويض مساحة الهيدر حتى لا يدخل المحتوى تحته */
body{
  padding-top:var(--mb-fixed-header-space) !important;
}

/* تحسين النزول للأنكور مع الهيدر الثابت */
html{
  scroll-padding-top:var(--mb-fixed-header-space);
}

/* Tablet */
@media (min-width:700px){
  :root{
    --mb-fixed-header-space:116px;
  }
}

/* Small Mobile */
@media (max-width:390px){
  :root{
    --mb-fixed-header-space:92px;
  }
}

/* Very Small Mobile */
@media (max-width:340px){
  :root{
    --mb-fixed-header-space:88px;
  }
}

/* =========================================================
   End Mobile Fixed Header With Scroll
========================================================= */


/* =========================================================
   Start Madina Mobile Nearest Results Final Style
========================================================= */

.nearest-search-page .page-card{
  padding:16px !important;
  overflow:visible !important;
}

.nearest-search-page #result{
  width:100% !important;
  margin:18px auto 0 !important;
  direction:rtl !important;
  text-align:right !important;
  font-family:"Cairo", sans-serif !important;
}

.nearest-search-page #result .mb-nearest-results-list{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:14px !important;
  width:100% !important;
}

/* Result card */
.nearest-search-page #result .mb-nearest-result-card{
  position:relative !important;
  width:100% !important;
  min-height:172px !important;
  padding:15px !important;
  border-radius:30px !important;
  display:grid !important;
  grid-template-columns:58px 1fr !important;
  gap:13px !important;
  align-items:flex-start !important;
  overflow:hidden !important;
  color:#613916 !important;
  background:
    radial-gradient(circle at 92% 8%, rgba(247,225,129,.42), transparent 34%),
    radial-gradient(circle at 8% 94%, rgba(217,167,72,.14), transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.96),rgba(255,242,204,.92)) !important;
  border:1px solid rgba(97,57,22,.12) !important;
  box-shadow:
    0 15px 34px rgba(63,34,9,.13),
    inset 0 1px 0 rgba(255,255,255,.68) !important;
  text-decoration:none !important;
  transform:none !important;
}

.nearest-search-page #result .mb-nearest-result-card::before{
  content:"";
  position:absolute;
  inset:9px;
  border-radius:23px;
  border:1px solid rgba(255,255,255,.58);
  pointer-events:none;
  z-index:1;
}

.nearest-search-page #result .mb-nearest-result-card::after{
  content:"";
  position:absolute;
  width:145px;
  height:145px;
  left:-74px;
  bottom:-82px;
  border-radius:50%;
  background:rgba(217,167,72,.12);
  pointer-events:none;
  z-index:0;
}

/* First result highlight */
.nearest-search-page #result .mb-nearest-result-card:first-child{
  background:
    radial-gradient(circle at 92% 8%, rgba(247,225,129,.55), transparent 34%),
    radial-gradient(circle at 8% 94%, rgba(97,57,22,.12), transparent 34%),
    linear-gradient(145deg,#fffdf5,#fff0bd) !important;
  border-color:rgba(217,167,72,.38) !important;
  box-shadow:
    0 18px 38px rgba(63,34,9,.15),
    inset 0 1px 0 rgba(255,255,255,.72) !important;
}

/* Icon */
.nearest-search-page #result .mb-nearest-icon{
  position:relative;
  z-index:2;
  width:58px;
  height:58px;
  border-radius:20px;
  display:grid;
  place-items:center;
  color:#4b2509;
  background:linear-gradient(145deg,#fff1a7,#d9a748);
  box-shadow:0 12px 22px rgba(217,167,72,.24);
  font-size:24px;
}

/* Body */
.nearest-search-page #result .mb-nearest-body{
  position:relative;
  z-index:2;
  min-width:0;
  display:block;
}

.nearest-search-page #result .mb-nearest-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

/* Branch name */
.nearest-search-page #result .mb-nearest-name{
  display:block;
  color:#613916;
  font-size:19px;
  line-height:1.45;
  font-weight:900;
}

/* Distance badge */
.nearest-search-page #result .mb-nearest-distance{
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:#4b2509;
  background:linear-gradient(145deg,#fff1a7,#d9a748);
  border:1px solid rgba(97,57,22,.12);
  box-shadow:
    0 8px 16px rgba(217,167,72,.23),
    inset 0 1px 0 rgba(255,255,255,.58);
  font-size:12px;
  line-height:1;
  font-weight:900;
  white-space:nowrap;
  font-style:normal;
}

.nearest-search-page #result .mb-nearest-distance i{
  font-size:11px;
  color:#613916;
}

/* Nearest label */
.nearest-search-page #result .mb-nearest-rank{
  width:max-content;
  max-width:100%;
  min-height:30px;
  margin:0 0 9px;
  padding:0 11px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  color:#fff8df;
  background:linear-gradient(145deg,#6b3813,#2b1003);
  box-shadow:0 8px 15px rgba(49,21,5,.15);
  font-size:11.5px;
  line-height:1;
  font-weight:900;
}

/* Address */
.nearest-search-page #result .mb-nearest-address{
  display:block;
  margin:0;
}

.nearest-search-page #result .mb-nearest-address-ar{
  color:#76502a;
  font-size:14px;
  line-height:1.9;
  font-weight:800;
}

.nearest-search-page #result .mb-nearest-address-en{
  margin-top:6px;
  color:#8a6238;
  font-family:"Poppins", sans-serif !important;
  font-size:12.5px;
  line-height:1.7;
  font-weight:700;
  direction:ltr;
  text-align:left;
}

.nearest-search-page #result .mb-nearest-card-foot{
  display:block;
  margin-top:12px;
}

.nearest-search-page #result .mb-nearest-action{
  width:max-content;
  max-width:100%;
  min-height:40px;
  padding:0 14px;
  border-radius:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#fff8df;
  background:linear-gradient(145deg,#6b3813,#2b1003);
  box-shadow:0 10px 18px rgba(49,21,5,.18);
  font-size:12.5px;
  font-weight:900;
}

/* Click effect */
.nearest-search-page #result .mb-nearest-result-card:active{
  transform:scale(.985) !important;
}

/* Loader spacing */
.nearest-search-page #loadingImg{
  margin:18px auto !important;
}

/* GPS error */
.nearest-search-page #locationResult{
  width:100%;
  margin:14px auto 0 !important;
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  text-align:center !important;
}

.mb-gps-error-link{
  width:100%;
  padding:16px;
  border-radius:24px;
  display:block;
  color:#613916 !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(247,225,129,.32), transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.92),rgba(255,242,204,.90));
  border:1px solid rgba(97,57,22,.12);
  box-shadow:0 12px 26px rgba(63,34,9,.11);
}

.mb-gps-error-link strong{
  display:block;
  color:#613916;
  font-size:16px;
  line-height:1.6;
  font-weight:900;
}

.mb-gps-error-link span{
  display:block;
  margin-top:4px;
  color:#7b5932;
  font-size:13px;
  line-height:1.8;
  font-weight:800;
}

/* Small Mobile */
@media (max-width:390px){
  .nearest-search-page #result .mb-nearest-result-card{
    min-height:150px !important;
    padding:13px !important;
    grid-template-columns:50px 1fr !important;
    gap:11px !important;
    border-radius:26px !important;
  }

  .nearest-search-page #result .mb-nearest-icon{
    width:50px;
    height:50px;
    border-radius:17px;
    font-size:21px;
  }

  .nearest-search-page #result .mb-nearest-top{
    flex-direction:column;
    align-items:flex-start;
    gap:6px;
  }

  .nearest-search-page #result .mb-nearest-name{
    font-size:17px;
  }

  .nearest-search-page #result .mb-nearest-address-ar{
    font-size:13px;
    line-height:1.85;
  }

  .nearest-search-page #result .mb-nearest-address-en{
    font-size:12px;
  }

  .nearest-search-page #result .mb-nearest-distance{
    min-height:30px;
    padding:0 10px;
    font-size:11.5px;
  }
}

/* =========================================================
   End Madina Mobile Nearest Results Final Style
========================================================= */


/* =========================================================
   Start Follow Platforms Buttons
========================================================= */

.follow-platforms{
  display:grid;
  gap:12px;
}

.follow-platform-card{
  position:relative;
  min-height:132px;
  padding:15px;
  border-radius:26px;
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 10%,rgba(247,225,129,.28),transparent 34%),
    linear-gradient(145deg,#fffdf4,#fff0c9);
  border:1px solid rgba(97,57,22,.10);
  box-shadow:0 12px 24px rgba(97,57,22,.10);
}

.follow-platform-card::after{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  border-radius:50%;
  left:-64px;
  bottom:-70px;
  background:rgba(217,167,72,.12);
  pointer-events:none;
}

.follow-platform-head{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:11px;
  align-items:center;
  margin-bottom:14px;
}

.follow-platform-icon{
  width:54px;
  height:54px;
  border-radius:20px;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:23px;
  box-shadow:0 10px 18px rgba(97,57,22,.14);
}

.facebook-follow-card .follow-platform-icon{
  background:linear-gradient(145deg,#1877f2,#0b4fb3);
}

.instagram-follow-card .follow-platform-icon{
  background:linear-gradient(145deg,#f9ce34,#ee2a7b,#6228d7);
}

.follow-platform-head strong{
  display:block;
  color:var(--mb-brown,#613916);
  font-size:17px;
  line-height:1.35;
  font-family:"Poppins",sans-serif;
  font-weight:900;
}

.follow-platform-head small{
  display:block;
  margin-top:3px;
  color:#76502a;
  font-size:12.5px;
  line-height:1.65;
  font-weight:800;
}

.follow-widget-box{
  position:relative;
  z-index:2;
  min-height:54px;
  padding:8px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(97,57,22,.08);
}

.instagram-follow-btn{
  position:relative;
  z-index:2;
  width:100%;
  min-height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#fff;
  background:linear-gradient(145deg,#f9ce34,#ee2a7b,#6228d7);
  box-shadow:0 12px 24px rgba(98,40,215,.18);
  font-family:"Poppins",sans-serif;
  font-size:16px;
  font-weight:900;
}

.instagram-follow-btn i{
  font-size:22px;
}

.instagram-follow-btn:active{
  transform:scale(.97);
}

@media (min-width:700px){
  .follow-platforms{
    grid-template-columns:1fr 1fr;
  }

  .follow-platform-card{
    min-height:150px;
  }
}

/* Facebook Follow Button */
.facebook-follow-btn{
  position:relative;
  z-index:2;
  width:100%;
  min-height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:#fff !important;
  background:linear-gradient(145deg,#1877f2,#0b4fb3);
  box-shadow:0 12px 24px rgba(24,119,242,.20);
  font-family:"Poppins",sans-serif;
  font-size:16px;
  font-weight:900;
}

.facebook-follow-btn i{
  font-size:21px;
}

.facebook-follow-btn:active{
  transform:scale(.97);
}
/* =========================================================
   End Follow Platforms Buttons
========================================================= */


