/* ==============================
   NAVBAR — white like Lay's
============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(216,90,48,0.10);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent2); }

.nav-links { display: flex; align-items: center; gap: 24px; flex-wrap: nowrap; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  padding: 16px 0;
  z-index: 999;
  border-top: 2px solid var(--accent-pale);
  box-shadow: 0 8px 24px rgba(216,90,48,0.12);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-menu a {
  display: block;
  padding: 13px clamp(20px,5vw,80px);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-body);
  border-bottom: 1px solid var(--accent-pale);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover { color: var(--accent); background: var(--bg-warm); }
.mobile-menu .btn { margin: 16px clamp(20px,5vw,80px) 4px; display: inline-flex; }

/* ==============================
   HERO — Like Lay's structure
============================== */
.hero {
  min-height: 100vh;
  background: var(--bg-warm);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Lay's-style radial sun rays background */
.hero-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 100% at 65% 50%,
    rgba(242,145,74,0.22) 0%,
    rgba(255,220,170,0.14) 35%,
    transparent 70%
  );
  pointer-events: none;
}

/* Decorative wave at bottom like Lay's */
.hero-wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 20px;
  align-items: center;
  padding: 72px 0 100px;
  position: relative;
  z-index: 1;
}
.hero-content { display: flex; flex-direction: column; gap: 22px; }

.hero-title { color: var(--text-heading); }
.hero-title .highlight  { color: var(--accent); }
.hero-title .highlight2 { color: var(--accent2); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Value pills — like Lay's bottom strip */
.hero-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-value {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid rgba(216,90,48,0.2);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-body);
  box-shadow: 0 2px 8px rgba(216,90,48,0.08);
}
.hero-value-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Hero image */
.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-bg {
  position: absolute;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(242,145,74,0.28) 0%, rgba(255,200,120,0.10) 55%, transparent 72%);
  border-radius: 50%;
  z-index: 0;
}
.hero-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  animation: floatY 5s ease-in-out infinite;
  filter: drop-shadow(0 24px 40px rgba(216,90,48,0.25));
}

/* ==============================
   FEATURED FLAVORS — like Lay's cards
============================== */
.flavors-section { background: var(--bg-white); }

.flavors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.flavor-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--accent-pale);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.flavor-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent2);
}
.flavor-card-top {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
/* Each flavor gets its own bg color — like Lay's */
.fc--salt   .flavor-card-top { background: #FFF3E0; }
.fc--chili  .flavor-card-top { background: #FFF0EE; }
.fc--zaatar .flavor-card-top { background: #F0FAF0; }
.fc--cheese .flavor-card-top { background: #FFF9E6; }

.flavor-card-top img {
  height: 175px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease-out);
  /* Fix: ensure images always show */
  display: block;
  max-width: 100%;
}
.flavor-card:hover .flavor-card-top img { transform: scale(1.1) rotate(-3deg); }

.flavor-card-body { padding: 18px 20px 22px; }
.flavor-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-heading);
  margin-bottom: 4px;
}
.flavor-desc { font-size: 0.84rem; color: var(--text-light); margin-bottom: 14px; font-weight: 500; }
.flavor-cta {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s, color 0.2s;
}
.flavor-cta svg { width: 14px; height: 14px; flex-shrink: 0; }
.flavor-card:hover .flavor-cta { gap: 10px; color: var(--accent2); }

/* ==============================
   WHY QPOP
============================== */
.why-section { background: var(--bg-section); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.why-feat {
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1.5px solid var(--accent-pale);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-feat-icon { margin-bottom: 10px; width:52px; height:52px; border-radius:14px; background:var(--accent-pale); display:flex; align-items:center; justify-content:center; }
.why-feat-title { font-weight: 800; font-size: 0.95rem; color: var(--text-heading); margin-bottom: 3px; }
.why-feat-desc  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.why-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.why-img-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--text-body);
  box-shadow: var(--shadow-md);
}
.why-img-badge span { color: var(--accent); }

/* ==============================
   QUALITY / CERTS
============================== */
.quality-section { background: var(--accent); }

.quality-inner { position: relative; }
.quality-certs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.cert-card {
  padding: 24px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.2);
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}
.cert-card:hover { background: rgba(255,255,255,0.22); transform: translateY(-5px); }
.cert-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.6rem;
}
.cert-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cert-desc { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.55; }

/* ==============================
   B2B SECTION
============================== */
.b2b-section { background: var(--bg-light); }

.b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.b2b-content {
  background: var(--bg-warm);
  padding: 56px 44px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 22px;
  border: 2px solid var(--accent-pale);
  border-right: none;
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.b2b-img-side { position: relative; overflow: hidden; min-height: 340px; background: #f7efe6; }
.b2b-img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 54%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.b2b-img-home img {
  object-position: center 54%;
}
.b2b-inner:hover .b2b-img-side img { transform: scale(1.02); }

.b2b-fixed-en,
.b2b-fixed-en * {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
  align-self: flex-start;
}

.b2b-stats { display: flex; gap: 28px; flex-wrap: wrap; justify-content: flex-start; }
.b2b-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--accent); line-height: 1;
}
.b2b-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 3px; font-weight: 600; }
.b2b-stat-label.b2b-fixed-en { min-width: 118px; }

/* ==============================
   WHERE TO BUY
============================== */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}
.store-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--accent-pale);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.store-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.store-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.store-card-body { padding: 22px 20px; }
.store-card-name { font-weight: 800; font-size: 1rem; color: var(--text-heading); margin-bottom: 4px; }
.store-card-sub  { font-size: 0.83rem; color: var(--text-muted); font-weight: 500; }

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--text-heading);
  color: #fff;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: #fff;
}
.footer-logo span { color: var(--accent2); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-top: 8px; max-width: 260px; line-height: 1.65; font-weight: 500; }
.footer-heading { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  margin-bottom: 11px; font-weight: 500;
}
.footer-contact-row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent2); }
.footer-contact-row a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-row a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1200px) {
  .flavors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1023px) {
  .nav-links, .nav-cta-wrap { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img-wrap img { height: 340px; }
  .b2b-inner { grid-template-columns: 1fr; }
  .b2b-img-side { min-height: 280px; }
  .b2b-content { padding: 40px 28px; border-radius: var(--radius-xl); border-right: 2px solid var(--accent-pale); }
  .quality-certs { grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 28px; }
  .flavors-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stores-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 80px; text-align: center; }
  .hero-sub { margin-inline: 0; }
  .hero-actions { justify-content: center; }
  .hero-values  { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-main-img { max-width: 280px; }
  .flavors-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-features { grid-template-columns: 1fr; }
  .quality-certs { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
  .cert-card { padding: 20px 14px; }
  .b2b-content { padding: 32px 22px; }
  .b2b-img-side { min-height: 240px; }
  .b2b-img-side img { object-position: center 50%; }
  .store-card-body { padding: 18px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stores-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .flavors-grid { grid-template-columns: 1fr; }
}

/* ==============================
   LOGO IMAGE (Real SVG logo)
============================== */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
}

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Invert to white for dark footer background */
  filter: brightness(0) invert(1);
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .nav-logo-img  { height: 40px; }
  .footer-logo-img { height: 44px; }
}

/* ══════════════════════════════════════════════════════════════
   RTL GLOBAL OVERRIDES (Arabic mode)
══════════════════════════════════════════════════════════════ */
[dir="rtl"] .navbar .container      { flex-direction: row-reverse; }
[dir="rtl"] .nav-links              { flex-direction: row; direction: rtl; justify-content: flex-start; }
[dir="rtl"] .nav-links li,
[dir="rtl"] .nav-links a           { text-align: right; }
[dir="rtl"] .nav-links a::after     { transform-origin: right; }
[dir="rtl"] .mobile-menu a          { text-align: right; }

[dir="rtl"] .hero-text-grid         { direction: rtl; }
[dir="rtl"] .hero-text-left         { align-items: flex-end; }
[dir="rtl"] .hero-badge-pill        { flex-direction: row-reverse; }
[dir="rtl"] .hero-cta-row           { flex-direction: row-reverse; }
[dir="rtl"] .hero-pills             { flex-direction: row-reverse; }
[dir="rtl"] .hero-pill              { flex-direction: row-reverse; }
[dir="rtl"] .hero-strip-inner       { flex-direction: row-reverse; }
[dir="rtl"] .hero-main-title        { text-align: right; }
[dir="rtl"] .hero-main-desc         { text-align: right; }
[dir="rtl"] .divider-line           { margin-left: auto; margin-right: 0; }

[dir="rtl"] .section-label          { text-align: right; display: block; }
[dir="rtl"] h1, [dir="rtl"] h2,
[dir="rtl"] h3, [dir="rtl"] h4      { text-align: right; }
[dir="rtl"] p                       { text-align: right; }

[dir="rtl"] .flavors-grid           { direction: rtl; }
[dir="rtl"] .flavor-card-body       { text-align: right; }
[dir="rtl"] .flavor-cta             { flex-direction: row-reverse; }
[dir="rtl"] .flavor-cta svg         { transform: scaleX(-1); }

[dir="rtl"] .why-grid               { direction: rtl; }
[dir="rtl"] .why-features           { direction: rtl; }
[dir="rtl"] .why-feat               { text-align: right; }
[dir="rtl"] .why-feat-icon          { margin-left: 0; }
[dir="rtl"] .why-img-badge          { right: auto; left: 22px; text-align: right; }

[dir="rtl"] .quality-certs          { direction: rtl; }
[dir="rtl"] .cert-card              { text-align: right; }

[dir="rtl"] .stores-grid            { direction: rtl; }
[dir="rtl"] .store-card-body        { text-align: right; }

[dir="rtl"] .b2b-inner              { direction: rtl; }
[dir="rtl"] .b2b-content            { text-align: right; border-radius: 0 var(--radius-xl) var(--radius-xl) 0; border-left: none; border-right: 2px solid var(--accent-pale); }
[dir="rtl"] .b2b-img-side          { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }
[dir="rtl"] .b2b-stats             { flex-direction: row; justify-content: flex-start; }
[dir="rtl"] .b2b-fixed-en,
[dir="rtl"] .b2b-fixed-en *        { direction: ltr; text-align: left; unicode-bidi: isolate; }

[dir="rtl"] .footer-grid            { direction: rtl; text-align: right; justify-items: start; }
[dir="rtl"] .footer-links           { text-align: right; }
[dir="rtl"] .footer-contact-row     { flex-direction: row-reverse; justify-content: flex-start; text-align: right; }
[dir="rtl"] .footer-bottom          { flex-direction: row-reverse; }

[dir="rtl"] .btn svg                { transform: scaleX(-1); }
[dir="rtl"] .btn                    { flex-direction: row-reverse; }

/* Page-specific RTL */
[dir="rtl"] .page-hero .container   { text-align: right; }
[dir="rtl"] .contact-grid          { direction: rtl; }
[dir="rtl"] .cmethod               { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .prod-detail           { direction: rtl; }
[dir="rtl"] .ingr-list             { flex-direction: row-reverse; }
[dir="rtl"] .cat-title             { flex-direction: row-reverse; }
[dir="rtl"] .cat-title::before     { margin-right: 0; margin-left: 10px; }
[dir="rtl"] .logo-grid             { direction: rtl; }
[dir="rtl"] .step-row              { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .policy-tabs           { flex-direction: row-reverse; }
[dir="rtl"] .pdoc-meta             { flex-direction: row-reverse; }



/* RTL HARDENING V6 */
.divider-line {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

.back-home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

[dir="rtl"] body {
  font-size: 17px;
  line-height: 1.8;
}
[dir="rtl"] h1 { line-height: 1.2; }
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4 { line-height: 1.32; }
[dir="rtl"] p,
[dir="rtl"] li,
[dir="rtl"] label,
[dir="rtl"] .btn,
[dir="rtl"] .send-btn,
[dir="rtl"] .section-label,
[dir="rtl"] .clabel,
[dir="rtl"] .cval {
  letter-spacing: 0;
}

[dir="rtl"] .divider-line {
  margin-inline-start: auto;
  margin-inline-end: 0;
}

[dir="rtl"] .why-img-badge {
  inset-inline-end: auto;
  inset-inline-start: 22px;
  text-align: right;
}

[dir="rtl"] .cat-title::before {
  margin-inline-end: 0;
  margin-inline-start: 10px;
}

[dir="rtl"] footer .container {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .finput,
[dir="rtl"] textarea,
[dir="rtl"] select {
  min-height: 48px;
}

[dir="rtl"] textarea.finput {
  min-height: 120px;
}

[dir="rtl"] input:not([type="email"]):not([type="tel"]),
[dir="rtl"] textarea,
[dir="rtl"] select,
[dir="rtl"] option {
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}

[dir="rtl"] input[type="email"],
[dir="rtl"] input[type="tel"],
[dir="rtl"] a[href^="mailto:"],
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] a[href*="wa.me"],
[dir="rtl"] .ltr-field {
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

[dir="rtl"] .stores-callout,
[dir="rtl"] .pizza-status-callout,
[dir="rtl"] .bulk-direct-line,
[dir="rtl"] .contact-direct-line {
  unicode-bidi: plaintext;
}

[dir="rtl"] .stores-callout,
[dir="rtl"] .pizza-status-callout {
  text-align: right;
}

[dir="rtl"] .btn svg.no-flip-icon {
  transform: none !important;
}

@media (max-width: 991px) {
  .bulk-split,
  .facility-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

[dir="rtl"] .footer-grid,
[dir="rtl"] .footer-links{ text-align: right; }
