/* ==== Modern parapharmacy theme additions ==== */
:root{
  --pharma-primary:#0abf8a;
  --pharma-dark:#0a2c3a;
  --pharma-light:#f6fbf8;
}

.btn-primary{
  background:var(--pharma-primary);
  border-color:var(--pharma-primary);
}

.btn-outline-primary{
  color:var(--pharma-primary);
  border-color:var(--pharma-primary);
}

.btn-primary:hover,
.btn-outline-primary:hover{
  filter:brightness(.92);
}
/* =========================
   HEADER TOP BAND
   ========================= */
#topBand{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #fff;
}

.topband-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.topband-item{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

#header-userbox{
  display:flex;
  align-items:center;
  gap:8px;
}

#topBand .topband-text{
  display:inline-block;
  max-width:220px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  vertical-align:bottom;
}

.ltr-num{
  unicode-bidi:isolate;
  display:inline-block;
}

.dropdown-menu{
  border-radius:10px;
}

#userDropdown{
  cursor:pointer;
  font-weight:500;
}

#userDropdown:hover{
  color:#0d6efd !important;
}

/* =========================
   MOBILE TOP BAND
   ========================= */
@media (max-width: 767.98px){
  .topband-row{
    width:100%;
    flex-wrap:nowrap !important;
    justify-content:space-evenly !important;
    align-items:center !important;
    gap:0 !important;
  }

  .topband-item,
  #header-userbox,
  .lang-dropdown,
  .cart-dropdown{
    flex:1 1 0;
    display:flex !important;
    justify-content:center;
    align-items:center;
    min-width:0;
  }

  #topBand .topband-text,
  #header-username,
  #guest-box a,
  #guest-box .mx-1,
  #header-cart-total{
    display:none !important;
  }

  #header-email,
  #header-whatsapp{
    display:none !important;
  }

  #guest-box,
  #userDropdown{
    display:flex !important;
    align-items:center;
    justify-content:center;
    margin:0;
    padding:0;
  }

  #header-userbox{
    gap:0 !important;
    flex-wrap:nowrap !important;
    width:auto !important;
  }

  #languageDropdown{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    border:0 !important;
    background:transparent !important;
    padding:0 !important;
    box-shadow:none !important;
    font-size:0 !important;
  }

  #languageDropdown .fi{
    font-size:20px !important;
    margin:0 !important;
  }

  #topBand i{
    font-size:20px !important;
    margin:0 !important;
  }

  #topBand .container{
    padding-left:6px;
    padding-right:6px;
  }

  #topBand{
    padding-top:6px;
    padding-bottom:6px;
  }

  #header-cart-count{
    top:-5px !important;
    right:-8px !important;
    font-size:10px !important;
  }
}
.hero-modern{
  padding:48px 0 24px;
  background:radial-gradient(circle at 10% 20%, rgba(10,191,138,.16), transparent 32%), #f9fbfd;
}

.hero-visual{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(10,44,58,.16);
}

.floating-card{
  position:absolute;
  right:18px;
  bottom:18px;
  background:#fff;
  padding:14px 16px;
  border-radius:14px;
}

.eyebrow{
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  font-weight:700;
}

.hero-pillbar .pill-badge{
  background:#fff;
  color:#0a2c3a;
  padding:8px 12px;
  border-radius:50px;
  border:1px solid #e5f2ec;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.04);
}

.category-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.category-pills a{
  padding:10px 14px;
  border:1px solid #e5f2ec;
  background:#fff;
  border-radius:14px;
  text-decoration:none;
  color:#0a2c3a;
  transition:.2s;
}

.category-pills a:hover{
  background:var(--pharma-primary);
  color:#fff;
  border-color:var(--pharma-primary);
}

.catalog-hero{
  background:linear-gradient(135deg, rgba(10,191,138,.08), rgba(10,44,58,.06));
  padding:38px 0;
  border-bottom:1px solid #eaf4ef;
}

.catalog-actions .catalog-search{
  min-width:240px;
}

.trust-bar{
  background:#0a2c3a;
  color:#e9f5f0;
  padding:56px 0;
  text-align:center;
}

.trust-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:18px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  font-weight:700;
  text-align:center;
  min-height:140px;
}

.trust-card i{
  color:var(--pharma-primary);
  background:rgba(10,191,138,.14);
  width:56px;
  height:56px;
  border-radius:14px;
  display:grid;
  place-items:center;
  font-size:24px;
}

/* PRODUCT CARD */
.product-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s ease;
  height:100%;
  display:flex;
  flex-direction:column;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.product-card:hover{
  transform:translateY(-5px);
}

/* IMAGE WRAPPER (SAME SIZE EVERYWHERE) */
.product-img{
  position:relative;
  width:100%;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:#f8f9fa;
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.3s;
}

.product-card:hover .product-img img{
  transform:scale(1.05);
}

/* PROMO BADGE */
.promo-badge{
  position:absolute;
  top:10px;
  left:10px;
  background:#dc3545;
  color:#fff;
  padding:6px 10px;
  border-radius:8px;
  font-weight:bold;
  font-size:13px;
}

/* PRODUCT BODY */
.product-body{
  padding:15px;
  text-align:center;
  flex-grow:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

/* PRICE */
.product-price-old{
  text-decoration:line-through;
  opacity:0.6;
  font-size:14px;
}

.product-price-new{
  color:#198754;
  font-weight:700;
  font-size:18px;
}

.product-price-normal{
  color:#0d6efd;
  font-weight:700;
  font-size:18px;
}

/* Responsive grid improvement */
@media (max-width: 768px){
  .product-img{
    aspect-ratio:1 / 1;
  }
}

/* ===== HERO CAROUSEL IMAGE FIX ===== */
.hero-slide-img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

@media (max-width: 768px){
  .hero-slide-img{
    height:320px;
  }
}
.store-card{
  background:#ffffff;
  border-radius:16px;
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
  border:1px solid #e6ecf3;
  box-shadow:0 14px 38px rgba(10,44,58,.08);
  transition:transform .22s ease, box-shadow .22s ease, background .3s ease;
}

.store-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 46px rgba(10,44,58,.12);
}

.store-img{
  position: relative;
  width: 100%;
  height: 260px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background .3s ease;
}

.store-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .3s ease;
}

.store-card:hover .store-img img{
  transform: scale(1.04);
}
.store-badge{
  position:absolute;
  top:10px;
  inset-inline-start:10px;
  background:#dc3545;
  color:#fff;
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.store-body{
  padding:14px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.store-title{
  font-weight:700;
  margin:0 0 6px 0;
  font-size:15px;
  min-height:38px;
}

.store-summary{
  color:#6c757d;
  font-size:13px;
  margin:0;
  min-height:34px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.store-price{
  margin-top:10px;
  font-weight:800;
  font-size:16px;
}

.store-price-old{
  text-decoration:line-through;
  opacity:.55;
  font-size:13px;
}

.store-actions{
  margin-top:auto;
  display:flex;
  gap:8px;
  align-items:center;
}

.store-actions .btn{
  flex:1;
  border-radius:10px;
}

/* small filter buttons */
.store-filter-btn{
  border-radius:999px;
}

.mini-cart-item{
  display:flex;
  gap:10px;
  padding:10px 12px;
  border-bottom:1px solid #f0f0f0;
}

.mini-cart-item:last-child{
  border-bottom:0;
}

.mini-cart-thumb{
  width:52px;
  height:52px;
  border-radius:10px;
  object-fit:cover;
  background:#f6f7f8;
  flex:0 0 auto;
}

.mini-cart-title{
  font-weight:700;
  font-size:13px;
  margin:0;
  line-height:1.2;
}

.mini-cart-meta{
  font-size:12px;
  color:#6c757d;
}

.mini-cart-remove{
  font-size:12px;
  text-decoration:none;
}

.flag-icon{
  font-size:1.5rem;
}

.dropdown{
  position:relative;
  /*z-index:1050;*/
}

.dropdown-menu{
  position:absolute;
}

@media (max-width: 767px){
  .position-absolute{
    position:relative;
  }
  .top-0,
  .start-0{
    top:auto;
    start:auto;
  }
}

.logo{
  height:100%;
  max-height:60px;
  width:auto;
}

.logo2{
  width:200px;
  height:auto;
}

/* ===== button feedback ===== */
.js-add-cart.is-loading{
  opacity:.75;
  pointer-events:none;
}

.js-add-cart.is-loading i{
  animation:cartSpin .8s linear infinite;
}

@keyframes cartSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

/* ===== cart icon shake ===== */
#cartDropdown.cart-bounce i{
  animation:cartBounce .55s ease;
}

@keyframes cartBounce{
  0%{ transform:translateY(0) rotate(0); }
  25%{ transform:translateY(-3px) rotate(-8deg); }
  50%{ transform:translateY(0) rotate(8deg); }
  75%{ transform:translateY(-2px) rotate(-6deg); }
  100%{ transform:translateY(0) rotate(0); }
}

/* ===== badge pop ===== */
#header-cart-count.badge-pop{
  animation:badgePop .45s ease;
}

@keyframes badgePop{
  0%{ transform:scale(1); }
  35%{ transform:scale(1.35); }
  100%{ transform:scale(1); }
}

/* ===== toast ===== */
.cart-toast{
  position:fixed;
  inset-inline-end:16px;
  top:calc(var(--topBandH, 0px) + 16px);
  z-index:9999;
  background:rgba(25,135,84,.95);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  font-size:14px;
  display:flex;
  gap:10px;
  align-items:center;
  transform:translateY(-10px);
  opacity:0;
  pointer-events:none;
}

.cart-toast.show{
  animation:toastInOut 2.2s ease forwards;
}

@keyframes toastInOut{
  0%{ opacity:0; transform:translateY(-10px); }
  12%{ opacity:1; transform:translateY(0); }
  85%{ opacity:1; transform:translateY(0); }
  100%{ opacity:0; transform:translateY(-10px); }
}

/* ===== optional: fly to cart ===== */
.fly-img{
  position:fixed;
  z-index:99999;
  pointer-events:none;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  transform:translate3d(0,0,0);
  transition:transform .75s cubic-bezier(.2,.8,.2,1), opacity .75s;
}

/* ================================
   FIX SUGGESTED PRODUCTS SIZE (Owl)
   ================================ */

/* Owl item spacing */
#products-carousel2 .owl-item{
  padding:0 8px;
}

/* Important: card must fill Owl width */
#products-carousel2 .store-card{
  background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
  border-radius:16px;
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
  border:1px solid #e6ecf3;
  box-shadow:0 14px 38px rgba(10,44,58,.08);
  transition:transform .22s ease, box-shadow .22s ease;
}

/* =========================
   FIX: suggested carousel cards too tall
   Only affects #products-carousel2
   ========================= */
#products-carousel2 .store-img{
  aspect-ratio:auto !important;
  height:220px !important;
}

@media (max-width: 768px){
  #products-carousel2 .store-img{
    height:180px !important;
  }
}

@media (max-width: 480px){
  #products-carousel2 .store-img{
    height:160px !important;
  }
}

/* Optional: reduce text blocks so card stays compact */
#products-carousel2 .store-title{
  min-height:0 !important;
}

#products-carousel2 .store-summary{
  min-height:0 !important;
}

/* ==== FIX OwlCarousel inside RTL pages ==== */
#products-carousel2{
  direction:ltr !important;
}

#products-carousel2 .owl-stage{
  display:flex !important;
}

#products-carousel2 .owl-item{
  display:flex !important;
}

#products-carousel2 .item{
  width:100%;
  display:flex;
}

#products-carousel2 .store-card{
  background:linear-gradient(180deg,#ffffff 0%,#f7fbff 100%);
  border-radius:16px;
  overflow:hidden;
  height:100%;
  display:flex;
  flex-direction:column;
  border:1px solid #e6ecf3;
  box-shadow:0 14px 38px rgba(10,44,58,.08);
  transition:transform .22s ease, box-shadow .22s ease;
}

.footer-end{
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.12);
}

.footer-menu{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

[dir="rtl"] .footer-menu{
  justify-content:flex-start;
}

[dir="ltr"] .footer-menu{
  justify-content:flex-end;
}

.footer-menu a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  border-bottom:1px solid transparent;
  padding-bottom:2px;
}

.footer-menu a:hover{
  color:#fff;
  border-bottom-color:rgba(255,255,255,.6);
}

/* pills for product filters */
.store-filter-btn{
  border-radius:12px !important;
}

.store-filter-btn.active{
  background:var(--pharma-primary) !important;
  color:#fff !important;
  border-color:var(--pharma-primary) !important;
}

.catalog-search .form-control:focus{
  box-shadow:none;
  border-color:var(--pharma-primary);
}

/* navbar polish */
#mainNavbar{
  box-shadow:0 6px 24px rgba(10,44,58,.08);
  border:0;
}

#mainNavbar .nav-link:hover{
  color:var(--pharma-primary) !important;
}

.logo{
  max-height:52px;
}

/* brands */
.brands-section{
  background:#f9fbfd;
}

.brand-logo-card{
  background:#fff;
  border:1px solid #e9ecef;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  width:90px;
  height:90px;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.brand-logo-card img{
  max-width:70%;
  max-height:70%;
  object-fit:contain;
  filter:grayscale(.1);
}

.brand-logo-card:hover img{
  filter:grayscale(0);
  transform:scale(1.05);
  transition:.3s;
}

.brand-card-fixed{
  width:90px;
  height:90px;
  background:#fff;
  border:1px solid #e9ecef;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.brand-logo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.brand-placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:700;
  border-radius:12px;
  background:#f3f6f9;
}

.trust-bar .row{
  justify-content:center;
  text-align:center;
}

.trust-bar .col-6,
.trust-bar .col-md-3{
  display:flex;
  justify-content:center;
}

.trust-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  font-weight:700;
  text-align:center;
  min-height:160px;
  max-width:220px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.trust-card i{
  color:var(--pharma-primary);
  background:rgba(10,191,138,.16);
  width:64px;
  height:64px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-size:26px;
}

@media (max-width: 576px){
  .trust-card{
    max-width:100%;
    width:100%;
  }
}

/* Brands grid */
.brand-card,
.brand-card-fixed{
  background:#fff;
  border:1px solid #e8eef3;
  border-radius:16px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  height:140px;
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.brand-card img,
.brand-card .brand-logo,
.brand-card-fixed .brand-logo{
  width:120px;
  height:80px;
  max-width:100%;
  object-fit:contain;
  display:block;
  margin:0 auto;
  filter:grayscale(.05);
  mix-blend-mode:multiply;
}

.brand-placeholder{
  width:120px;
  height:80px;
  border-radius:14px;
  background:linear-gradient(135deg,#f4f7fb 0%,#eef2f7 100%);
  color:#0a2c3a;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:22px;
  margin:0 auto;
  letter-spacing:.5px;
}

.brands-carousel .owl-item{
  display:flex;
  justify-content:center;
}

.store-actions .btn{
  border-radius:12px;
  font-weight:700;
  border:1px solid transparent;
  min-width:40px;
}

.store-btn{
  background:linear-gradient(135deg,var(--pharma-primary) 0%,#079f73 100%);
  color:#fff !important;
  border-color:transparent;
  box-shadow:0 10px 24px rgba(10,191,138,.25);
}

.store-btn:hover{
  filter:brightness(.93);
  color:#fff !important;
}

.store-btn-primary{
  background:linear-gradient(135deg,#198754 0%,#0f6b43 100%);
  color:#fff !important;
  border-color:transparent;
  box-shadow:0 10px 24px rgba(25,135,84,.28);
}

.store-btn-primary:hover{
  filter:brightness(.94);
  color:#fff !important;
}

.offers-row-full{
  max-width: 1150px;
  margin: auto;
  padding: 0 16px;
}

#offersRow .offer-feature-card{
  position: relative;
  display: block;
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(10,44,58,.16);
  background: #eef3f7;
}

#offersRow .offer-feature-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
}

#offersRow .offer-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(8,22,31,.78) 0%, rgba(8,22,31,.52) 38%, rgba(8,22,31,.16) 70%, rgba(8,22,31,.06) 100%);
}

#offersRow .offer-content{
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 420px;
  color: #fff;
}

#offersRow .offer-badge{
  display: inline-block;
  background: #ff4d4f;
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

#offersRow .offer-kicker{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .92;
  margin-bottom: 8px;
}

#offersRow .offer-title{
  margin: 0 0 12px 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

#offersRow .offer-desc{
  margin: 0 0 18px 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.95);
  text-shadow: 0 2px 8px rgba(0,0,0,.22);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#offersRow .offer-price{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

#offersRow .offer-price .old{
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  text-decoration: line-through;
}

#offersRow .offer-price .new{
  font-size: 28px;
  font-weight: 800;
  color: #7CFFB2;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
}

#offersRow .offer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pharma-primary) 0%, #079f73 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(10,191,138,.28);
}

#offersRow .owl-dots{
  margin-top: 14px;
  text-align: center;
}

#offersRow .owl-dots .owl-dot span{
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #d4dce5;
}

#offersRow .owl-dots .owl-dot.active span{
  background: var(--pharma-primary);
}

@media (max-width: 768px){
  #offersRow .offer-feature-card{
    height: 300px;
    border-radius: 18px;
  }

  #offersRow .offer-content{
    left: 20px;
    right: 20px;
    max-width: none;
  }

  #offersRow .offer-title{
    font-size: 21px;
  }

  #offersRow .offer-desc{
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  #offersRow .offer-price .new{
    font-size: 22px;
  }
}


.ribbon-wrapper{
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.ribbon-wrapper.ribbon-lg{
  width: 140px;
  height: 140px;
}

.ribbon{
  position: absolute;
  top: 26px;
  right: -38px;
  width: 170px;              /* make ribbon longer */
  padding: 8px 12px;
  text-align: center;
  font-size: 11px;           /* smaller text helps */
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;       /* keep on one line */
  transform: rotate(45deg);
  box-shadow: 0 0 3px rgba(0,0,0,.3);
  text-shadow: 0 -1px 0 rgba(0,0,0,.4);
}

.ribbon-lg .ribbon{
  top: 30px;
  right: -42px;
  width: 190px;
}

.bg-danger{
  background-color: #dc3545 !important;
}


.footer-email {
  font-size: 15px;
}

.header-email {
  font-size: 13px;
}
/* =========================
   RTL FIX FOR ARABIC HEADER
   ========================= */
html[lang="ar"] #topBand,
html[lang="ar"] #mainNavbar{
  direction: rtl;
}

html[lang="ar"] .topband-row{
  flex-direction: row;
}

html[lang="ar"] #header-userbox{
  flex-direction: row;
}

html[lang="ar"] #cartDropdown .badge,
html[lang="ar"] #header-cart-count{
  right: auto !important;
  left: -8px !important;
}

html[lang="ar"] .me-1{
  margin-right: 0 !important;
  margin-left: .25rem !important;
}

html[lang="ar"] .me-2{
  margin-right: 0 !important;
  margin-left: .5rem !important;
}

html[lang="ar"] .ms-auto{
  margin-left: 0 !important;
  margin-right: auto !important;
}

html[lang="ar"] .dropdown-menu-end{
  right: auto !important;
  left: 0 !important;
}

html[lang="ar"] .ltr-num{
  direction: ltr !important;
  unicode-bidi: isolate !important;
}




/* ===== FORCE TOPBAND DROPDOWNS TO OPEN DOWN ===== */
#topBand{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #fff;
  overflow: visible !important;
}

#topBand .dropdown,
#topBand .dropup,
#topBand .dropend,
#topBand .dropstart{
  position: relative;
}

#topBand .dropdown-menu{
  inset: auto auto auto auto !important;
  top: 100% !important;
  bottom: auto !important;
  left: auto;
  right: 0;
  margin-top: 6px !important;
  transform: none !important;
  z-index: 99999 !important;
}


.store-brand{
  font-size:12px;
  color:#888;
  font-weight:600;
  margin-bottom:4px;
  text-transform:uppercase;
}

