/* ═══════════════════════════════════════════════
   GRAPHIK ARABIC FONT FACES
═══════════════════════════════════════════════ */
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Thin.woff2')       format('woff2'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Extralight.woff2') format('woff2'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Light.woff2')      format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Regular.woff2')    format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Medium.woff2')     format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Semibold.woff2')   format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Bold.woff2')       format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Black.woff2')      format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'GraphikArabic'; src: url('fonts/GraphikArabic-Super.woff2')      format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }

/* ═══════════════════════════════════════════════
   BRAND COLOR TOKENS
═══════════════════════════════════════════════ */
:root {
  --grad-start  : #FF275C;
  --grad-end    : #FF3100;
  --teal        : #2EC4B6;
  --yellow      : #E8900A;          /* darkened for light-bg legibility */

  --bg-dark     : #FFFFFF;          /* primary section bg  */
  --bg-alt      : #F6F6F6;          /* alternate section bg */
  --bg-card     : #EEEEEE;          /* card / elevated bg  */
  --bg-card-2   : #E5E5E5;          /* deeper card bg      */

  --text        : #0D0D0D;
  --text-sub    : rgba(0, 0, 0, 0.58);
  --text-muted  : rgba(0, 0, 0, 0.32);
  --border      : rgba(0, 0, 0, 0.09);

  --font-head   : 'Gilroy',  sans-serif;
  --font-body   : 'Akshar',  sans-serif;
  --font-ar     : 'GraphikArabic', sans-serif;

  --grad        : linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  --grad-180    : linear-gradient(180deg, var(--grad-start) 0%, var(--grad-end) 100%);

  --radius-pill : 100px;
  --radius-lg   : 1.5rem;
  --radius-xl   : 2rem;
}


/* ═══════════════════════════════════════════════
   FONT FACES
═══════════════════════════════════════════════ */
@font-face {
  font-family : 'Gilroy';
  src         : url('fonts/Gilroy-Black.woff2') format('woff2');
  font-weight : 900;
  font-style  : normal;
  font-display: swap;
}

@font-face {
  font-family : 'Akshar';
  src         : url('fonts/Akshar-Bold.woff2') format('woff2');
  font-weight : 700;
  font-style  : normal;
  font-display: swap;
}

@font-face {
  font-family : 'Akshar';
  src         : url('fonts/Akshar-Light.woff2') format('woff2');
  font-weight : 300;
  font-style  : normal;
  font-display: swap;
}


/* ═══════════════════════════════════════════════
   RESET + BASE
═══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing : border-box;
  margin     : 0;
  padding    : 0;
}

.skip-to-content {
  position      : absolute;
  top           : 0;
  left          : 0;
  width         : 1px;
  height        : 1px;
  padding       : 0;
  margin        : 0;
  overflow      : hidden;
  white-space   : nowrap;
  border        : 0;
  clip          : rect(0 0 0 0);
  clip-path     : inset(50%);
  z-index       : 9999;
  background    : var(--teal);
  color         : #fff;
  border-radius : 4px;
  font-weight   : 600;
  text-decoration: none;
}
.skip-to-content:focus {
  position      : absolute;
  top           : 0.5rem;
  left          : 0.5rem;
  width         : auto;
  height        : auto;
  padding       : 0.5rem 1rem;
  clip          : auto;
  clip-path     : none;
  overflow      : visible;
  white-space   : normal;
}

html, body {
  width        : 100%;
  min-height   : 100%;
  scroll-behavior : smooth;
  overflow-x   : hidden;
}

body {
  font-family  : var(--font-body);
  color        : var(--text);
  background   : var(--bg-dark);
}


/* ═══════════════════════════════════════════════
   BILINGUAL TOGGLE
═══════════════════════════════════════════════ */
.lang-ar { display: none !important; }

html.ar-mode .lang-en              { display: none       !important; }
html.ar-mode span.lang-ar          { display: inline     !important; }
html.ar-mode div.lang-ar,
html.ar-mode p.lang-ar,
html.ar-mode li.lang-ar,
html.ar-mode ul.lang-ar            { display: block      !important; }
html.ar-mode a.lang-ar,
html.ar-mode button.lang-ar        { display: inline-flex !important; }
html.ar-mode img.lang-ar           { display: block       !important; }
html.ar-mode .phone-img            { transform: rotate(5deg); }

/* Arabic font override */
html.ar-mode,
html.ar-mode *                     { font-family: var(--font-ar) !important; }
html.ar-mode h1, html.ar-mode h2,
html.ar-mode h3, html.ar-mode h4,
html.ar-mode .section-headline,
html.ar-mode .hero-headline        { font-weight: 900 !important; }

/* ── Arabic typography enhancements ── */

/* Reset English letter-spacing — breaks Arabic ligatures */
html.ar-mode .section-badge,
html.ar-mode .section-eyebrow,
html.ar-mode .section-subtext,
html.ar-mode .form-label,
html.ar-mode .footer-col-title,
html.ar-mode .free-delivery-sub,
html.ar-mode .store-badge-small    { letter-spacing: 0 !important; }

/* Headlines — gentle spacing + open line-height */
html.ar-mode .hero-headline,
html.ar-mode .section-headline     {
  letter-spacing : 0.02em;
  word-spacing   : 0.1em;
  line-height    : 1.3;
}

/* Body text — generous line-height, slight word spacing */
html.ar-mode .section-body         {
  font-size     : clamp(1.05rem, 1.9vw, 1.2rem);
  line-height   : 2.1;
  word-spacing  : 0.12em;
  letter-spacing: 0.01em;
}

/* Supporting text */
html.ar-mode .footer-tagline,
html.ar-mode .footer-links a,
html.ar-mode .footer-contact-item  {
  line-height  : 1.9;
  word-spacing : 0.1em;
}

/* Buttons & nav */
html.ar-mode .hero-btn,
html.ar-mode .btn-primary,
html.ar-mode .nav-link,
html.ar-mode .mobile-nav-link,
html.ar-mode .nav-cta,
html.ar-mode .mobile-cta           {
  letter-spacing: 0.03em;
  word-spacing  : 0.06em;
}

/* Free delivery hero callout */
html.ar-mode .free-delivery-label  {
  letter-spacing: 0.01em;
  word-spacing  : 0.08em;
}

/* Flip the decorative arrow for RTL — see AR Mirror Layout section below */

/* Badge text — readable size */
html.ar-mode .section-badge,
html.ar-mode .section-eyebrow      {
  font-size   : 0.85rem;
  word-spacing: 0.08em;
}

/* Feature pills */
html.ar-mode .feature-pill         {
  letter-spacing: 0;
  word-spacing  : 0.06em;
}

/* Partner form right-align inputs */
html.ar-mode .form-input           { text-align: right; }
html.ar-mode .partner-form-wrap    { direction: rtl; }

/* Footer alignment — RTL inherited from html[dir="rtl"], no overrides needed */
html.ar-mode .footer-col-title     { text-transform: none; }
html.ar-mode .footer-bottom        { text-align: start; }

/* ── AR Mirror Layout ── */

/* Hero: swap panel padding since grid columns reverse in RTL */
html.ar-mode .hero-left            { padding: 4rem 4rem 4rem 2rem; }
html.ar-mode .hero-right           { padding: calc(4rem - 50px) 2rem 4rem 4rem; }

/* Badge: flip to right side */
html.ar-mode .badge                { left: auto; right: -55px; }

/* Arrow flips horizontally in AR */
html.ar-mode .arrow-img            { transform: rotate(-50deg); }

/* Arrow: flip both axes in AR */
html.ar-mode .arrow-img            {
  transform    : rotate(90deg);
  margin-left  : 0;
  margin-right : 1.5rem;
}

/* Carousel: same direction in both languages */


/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position    : fixed;
  top         : 0;
  inset-inline: 0;
  z-index     : 100;
  transition  : background 0.3s ease, box-shadow 0.3s ease;
}

/* ── default (transparent, over gradient hero) ── */
.nav-link {
  color       : rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-family : var(--font-body);
  font-weight : 700;
  font-size   : 0.9rem;
  letter-spacing: 0.02em;
  transition  : color 0.2s;
}
.nav-link:hover { color: #FFFFFF; }

.lang-toggle-btn {
  background    : transparent;
  border        : 1.5px solid rgba(255, 255, 255, 0.35);
  color         : rgba(255, 255, 255, 0.8);
  font-family   : var(--font-body);
  font-weight   : 700;
  font-size     : 0.8rem;
  padding       : 0.35rem 0.85rem;
  border-radius : 8px;
  cursor        : pointer;
  transition    : all 0.2s;
  letter-spacing: 0.06em;
}
.lang-toggle-btn:hover { border-color: rgba(255,255,255,0.65); color: #FFFFFF; }

.hamburger-btn span { background: #FFFFFF; }

.nav-cta {
  background    : #FFFFFF;
  color         : var(--grad-start);
  font-family   : var(--font-head);
  font-weight   : 900;
  font-size     : 0.9rem;
  padding       : 0.65rem 1.6rem;
  border-radius : var(--radius-pill);
  text-decoration: none;
  transition    : transform 0.2s, box-shadow 0.2s;
  box-shadow    : 0 4px 20px rgba(0, 0, 0, 0.18);
  white-space   : nowrap;
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

/* ── scrolled (white bg, dark text) ── */
.navbar.scrolled {
  background    : rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow    : 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
}

.navbar.scrolled .nav-link          { color: rgba(0,0,0,0.55); }
.navbar.scrolled .nav-link:hover    { color: #0D0D0D; }

.navbar.scrolled .lang-toggle-btn {
  border-color: rgba(0,0,0,0.2);
  color       : rgba(0,0,0,0.55);
}
.navbar.scrolled .lang-toggle-btn:hover { border-color: rgba(0,0,0,0.45); color: #0D0D0D; }

.navbar.scrolled .hamburger-btn span { background: #0D0D0D; }

.navbar.scrolled .nav-cta {
  background : var(--grad);
  color      : #FFFFFF;
  box-shadow : 0 4px 20px rgba(255,39,92,0.28);
}
.navbar.scrolled .nav-cta:hover { box-shadow: 0 8px 28px rgba(255,39,92,0.42); }


/* ── shared navbar layout ── */
.navbar-inner {
  max-width      : 1280px;
  margin         : 0 auto;
  padding        : 0 2rem;
  height         : 68px;
  display        : flex;
  align-items    : center;
  justify-content: space-between;
  gap            : 2rem;
}

.nav-logo {
  text-decoration: none;
  flex-shrink    : 0;
  display        : flex;
  align-items    : center;
}

.nav-logo-img {
  height  : 32px;
  width   : auto;
  display : block;
  opacity : 0;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

/* Logo appears + coloured when scrolled */
.navbar.scrolled .nav-logo-img {
  opacity : 1;
  filter  : none;
}

.nav-links {
  display    : flex;
  align-items: center;
  gap        : 2.2rem;
  list-style : none;
}

.nav-actions {
  display    : flex;
  align-items: center;
  gap        : 0.75rem;
}

/* Hamburger */
.hamburger-btn {
  display       : none;
  background    : none;
  border        : none;
  cursor        : pointer;
  padding       : 0.4rem;
  flex-direction: column;
  gap           : 5px;
}

.hamburger-btn span {
  display      : block;
  width        : 22px;
  height       : 2px;
  border-radius: 2px;
  transition   : transform 0.25s, opacity 0.25s;
}

.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display    : none;
  overflow   : hidden;
  max-height : 0;
  transition : max-height 0.35s ease;
  background : rgba(255, 255, 255, 0.97);
  border-top : 1px solid rgba(0,0,0,0.08);
}

.mobile-menu.open { max-height: 480px; }

.mobile-menu-inner {
  padding       : 1rem 1.5rem 1.5rem;
  display       : flex;
  flex-direction: column;
  gap           : 0.25rem;
}

.mobile-nav-link {
  color          : rgba(0,0,0,0.6);
  text-decoration: none;
  font-family    : var(--font-body);
  font-weight    : 700;
  font-size      : 1rem;
  padding        : 0.75rem 0;
  border-bottom  : 1px solid rgba(0,0,0,0.07);
  transition     : color 0.2s;
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover { color: #0D0D0D; }

.mobile-cta {
  display        : inline-block;
  margin-top     : 1rem;
  background     : var(--grad);
  color          : #FFFFFF;
  font-family    : var(--font-head);
  font-weight    : 900;
  text-align     : center;
  padding        : 0.85rem 2rem;
  border-radius  : var(--radius-pill);
  text-decoration: none;
}


/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  position   : relative;
  min-height : 100vh;
  width      : 100%;
  overflow   : hidden;
  background : var(--grad);
}

.texture-overlay {
  position       : absolute;
  inset          : 0;
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  mix-blend-mode : overlay;
  opacity        : 0.14;
  pointer-events : none;
  z-index        : 0;
  user-select    : none;
}

.hero-container {
  position              : relative;
  z-index               : 1;
  display               : grid;
  grid-template-columns : 1fr 1fr;
  min-height            : 100vh;
  align-items           : center;
}

/* ─── Left panel ─── */
.hero-left {
  position        : relative;
  display         : flex;
  justify-content : center;
  align-items     : center;
  padding         : 4rem 2rem 4rem 4rem;
  min-height      : 100vh;
}

.phone-wrap {
  position  : relative;
  display   : inline-block;
  animation : slideInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.phone-img {
  display      : block;
  max-height   : 78vh;
  width        : auto;
  max-width    : 100%;
  transform    : rotate(-5deg);
  filter       : drop-shadow(0 30px 80px rgba(0, 0, 0, 0.45));
  position     : relative;
  z-index      : 1;
}

.badge {
  position : absolute;
  top      : -35px;
  left     : -55px;
  z-index  : 2;
  width    : 150px;
  height   : auto;
  display  : block;
}

/* ─── Right panel ─── */
.hero-right {
  display        : flex;
  flex-direction : column;
  align-items    : center;
  text-align     : center;
  gap            : 1.8rem;
  padding        : calc(4rem - 50px) 4rem 4rem 2rem;
}

.hero-logo {
  display   : block;
  max-width : 486px;
  width     : 100%;
  height    : auto;
}

.hero-logo-wrap {
  position  : relative;
  display   : block;
  max-width : 486px;
  width     : 100%;
}

.hero-logo-gif,
.hero-logo-static {
  display : block;
  width   : 100%;
  height  : auto;
}

.hero-logo-static {
  position : absolute;
  inset    : 0;
  width    : 100%;
  height   : 100%;
  object-fit: contain;
  display  : none;
}

.hero-logo-wrap.logo-done .hero-logo-gif    { visibility: hidden; }
.hero-logo-wrap.logo-done .hero-logo-static { display: block; }

.hero-headline {
  font-family    : var(--font-head);
  font-weight    : 900;
  font-size      : clamp(3rem, 5.5vw, 5.8rem);
  line-height    : 1.0;
  color          : #FFFFFF;
  letter-spacing : -0.02em;
  text-transform : uppercase;
}

.hero-btn {
  display         : inline-flex;
  align-items     : center;
  justify-content : center;
  background      : #FFFFFF;
  color           : var(--grad-start);
  font-family     : var(--font-head);
  font-weight     : 900;
  font-size       : 1.05rem;
  letter-spacing  : 0.02em;
  text-decoration : none;
  white-space     : nowrap;
  padding         : 1rem 2.6rem;
  border-radius   : var(--radius-pill);
  box-shadow      : 0 8px 32px rgba(0, 0, 0, 0.18);
  transition      : transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.hero-btn:hover  { transform: scale(1.07); box-shadow: 0 14px 45px rgba(0,0,0,0.28); }
.hero-btn:active { transform: scale(0.98); }

/* Delivery callout */
.delivery-callout {
  display         : flex;
  justify-content : center;
  margin-top      : -0.4rem;
  width           : 100%;
}

.free-delivery-row {
  display     : flex;
  align-items : center;
  gap         : 0.5rem;
}

.arrow-img {
  width       : 50px;
  height      : auto;
  flex-shrink : 0;
  transform   : rotate(-50deg) scaleX(-1);
}

.delivery-text {
  display        : flex;
  flex-direction : column;
  align-items    : center;
  gap            : 0.1rem;
}

.free-delivery-label {
  font-family    : var(--font-head);
  font-weight    : 900;
  font-size      : clamp(1.8rem, 3.5vw, 3.2rem);
  color          : #FFFFFF;
  line-height    : 1;
  letter-spacing : 0.01em;
  text-transform : uppercase;
}

.free-delivery-sub {
  font-family    : var(--font-body);
  font-weight    : 300;
  font-size      : clamp(0.75rem, 1.4vw, 1.05rem);
  color          : #FFFFFF;
  text-transform : uppercase;
  letter-spacing : 0.04em;
  line-height    : 1.4;
}

.mobile-br        { display: none; }
.hero-mobile-image { display: none; }


/* ═══════════════════════════════════════════════
   HERO ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0);      }
}

.anim {
  opacity         : 0;
  animation       : fadeInUp 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay : calc(var(--i, 0) * 0.18s + 0.25s);
}


/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity   : 0;
  transform : translateY(26px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.revealed { opacity: 1; transform: translateY(0); }


/* ═══════════════════════════════════════════════
   SECTIONS — BASE LAYOUT
═══════════════════════════════════════════════ */
.bite-section {
  padding  : 7rem 0;
  overflow : hidden;
}

.bite-section.section-dark     { background: var(--bg-dark); }
.bite-section.section-alt      { background: var(--bg-alt);  }
.bite-section.section-gradient {
  background : var(--grad);
  position   : relative;
}

/* Texture for gradient sections */
.section-texture {
  position       : absolute;
  inset          : 0;
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  mix-blend-mode : overlay;
  opacity        : 0.1;
  pointer-events : none;
  z-index        : 0;
}
.section-gradient > *:not(.section-texture) { position: relative; z-index: 1; }

.section-container {
  max-width : 1280px;
  margin    : 0 auto;
  padding   : 0 2rem;
}

.section-grid {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 5rem;
  align-items           : center;
}

.section-text {
  display        : flex;
  flex-direction : column;
  gap            : 1.6rem;
}

.section-visual {
  display         : flex;
  justify-content : center;
  align-items     : center;
}

.section-center {
  text-align     : center;
  max-width      : 800px;
  margin         : 0 auto;
  display        : flex;
  flex-direction : column;
  align-items    : center;
  gap            : 1.5rem;
}


/* ═══════════════════════════════════════════════
   TYPOGRAPHY — SECTIONS
═══════════════════════════════════════════════ */
.section-badge {
  display        : inline-flex;
  align-items    : center;
  gap            : 0.4rem;
  font-family    : var(--font-body);
  font-weight    : 700;
  font-size      : 0.7rem;
  letter-spacing : 0.18em;
  text-transform : uppercase;
  color          : var(--teal);
  background     : rgba(46, 196, 182, 0.1);
  border         : 1.5px solid rgba(46, 196, 182, 0.35);
  padding        : 0.4rem 1rem;
  border-radius  : var(--radius-pill);
  width          : fit-content;
}

.section-eyebrow {
  font-family    : var(--font-body);
  font-weight    : 700;
  font-size      : 0.7rem;
  letter-spacing : 0.2em;
  text-transform : uppercase;
  color          : var(--grad-start);
}

#blog .section-eyebrow {
  font-size      : 4.2rem;
  letter-spacing : 0.08em;
}

.section-headline {
  font-family    : var(--font-head);
  font-weight    : 900;
  font-size      : clamp(2.4rem, 4.5vw, 4.2rem);
  line-height    : 1.05;
  letter-spacing : -0.02em;
  color          : var(--text);
  text-transform : uppercase;
}
.section-headline.large    { font-size: clamp(2.8rem, 5vw, 5rem); }
.section-headline.on-gradient { color: #FFFFFF; }

.section-body {
  font-family : var(--font-body);
  font-weight : 300;
  font-size   : clamp(1rem, 1.8vw, 1.15rem);
  line-height : 1.75;
  color       : var(--text-sub);
  max-width   : 560px;
}
.section-body.on-gradient { color: rgba(255,255,255,0.85); }

.section-subtext {
  font-family    : var(--font-body);
  font-weight    : 700;
  font-size      : clamp(0.8rem, 1.4vw, 0.95rem);
  letter-spacing : 0.08em;
  text-transform : uppercase;
  color          : rgba(255,255,255,0.78);
}


/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  display         : inline-flex;
  align-items     : center;
  justify-content : center;
  background      : var(--grad);
  color           : #FFFFFF;
  font-family     : var(--font-head);
  font-weight     : 900;
  font-size       : 1rem;
  letter-spacing  : 0.01em;
  text-decoration : none;
  padding         : 0.95rem 2.4rem;
  border-radius   : var(--radius-pill);
  border          : none;
  cursor          : pointer;
  box-shadow      : 0 6px 28px rgba(255,39,92,0.28);
  transition      : transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s;
  width           : fit-content;
  white-space     : nowrap;
}
.btn-primary:hover  { transform: scale(1.05); box-shadow: 0 10px 36px rgba(255,39,92,0.42); }
.btn-primary:active { transform: scale(0.97); }

/* Free Delivery section — inverted text + button */
#usp                       { padding: 0; }
#usp .section-container    { padding-top: 0; padding-bottom: 0; }
#usp .section-center       { padding: 14rem 2rem 2.5rem; gap: 1rem; }
#usp .section-headline     { color: #FFFFFF; white-space: nowrap; }
#usp .section-body         { color: #FFFFFF; }
#usp .section-badge        { color: var(--grad-start); background: rgba(255,39,92,0.12); border-color: rgba(255,39,92,0.3); }
#usp .btn-primary          { background: #FFFFFF; color: var(--grad-start); box-shadow: 0 6px 28px rgba(0,0,0,0.15); }

.btn-text-only {
  display         : inline-flex;
  align-items     : center;
  justify-content : center;
  background      : #FFFFFF;
  color           : var(--grad-start);
  font-family     : var(--font-head);
  font-weight     : 900;
  font-size       : 1rem;
  letter-spacing  : 0.08em;
  text-decoration : none;
  padding         : 0.95rem 2.4rem;
  border-radius   : 999px;
  transition      : transform 0.2s, box-shadow 0.2s;
  box-shadow      : 0 6px 28px rgba(0,0,0,0.15);
}
.btn-text-only:hover  { transform: scale(1.05); box-shadow: 0 10px 36px rgba(0,0,0,0.2); }
.btn-text-only:active { transform: scale(0.97); }
#usp .btn-primary:hover    { box-shadow: 0 10px 36px rgba(0,0,0,0.22); }

/* ── Lines SVG + scooter ── */
.usp-section  { overflow: hidden; position: relative; }

.usp-section .usp-road {
  position      : absolute;
  top           : 0;
  left          : 0;
  width         : 100%;
  height        : 200px;
  max-height    : 200px;
  z-index       : 2;
  pointer-events: none;
  direction     : ltr; /* keep SVG coords LTR so path geometry is identical in AR and EN */
}

.usp-section .usp-scooter {
  position        : absolute;
  top             : 0;
  left            : 0;
  width           : 80px;
  z-index         : 10;
  pointer-events  : none;
  transform-origin: center center;
  direction       : ltr; /* prevent RTL inheritance from flipping translate coordinates */
  will-change      : transform;
  backface-visibility: hidden;
}

.usp-section .usp-scooter img {
  width   : 100%;
  height  : auto;
  display : block;
  filter  : drop-shadow(0 4px 14px rgba(0,0,0,0.3));
  transform: translate3d(0,0,0);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media (max-width: 640px) {
  .usp-scooter { width: 54px; }
}

.btn-gradient { background: var(--grad); color: #FFFFFF; }

.btn-outline {
  background  : transparent;
  color       : var(--text);
  border      : 2px solid rgba(0,0,0,0.2);
  box-shadow  : none;
}
.btn-outline:hover { border-color: rgba(0,0,0,0.45); background: rgba(0,0,0,0.04); }

.btn-dark {
  background : var(--bg-card);
  color      : var(--text);
  border     : 1.5px solid var(--border);
  box-shadow : none;
}
.btn-dark:hover { background: var(--bg-card-2); }


/* ═══════════════════════════════════════════════
   PLACEHOLDERS
═══════════════════════════════════════════════ */
/* Phone mockup */
.phone-placeholder {
  width         : 100%;
  max-width     : 270px;
  aspect-ratio  : 9 / 19.5;
  background    : var(--bg-card);
  border-radius : 2.8rem;
  border        : 2.5px solid rgba(0,0,0,0.1);
  position      : relative;
  overflow      : hidden;
  margin        : 0 auto;
  box-shadow    : 0 24px 64px rgba(0,0,0,0.12);
}

.phone-notch {
  position     : absolute;
  top          : 10px;
  left         : 50%;
  transform    : translateX(-50%);
  width        : 72px;
  height       : 18px;
  background   : rgba(0,0,0,0.18);
  border-radius: var(--radius-pill);
  z-index      : 2;
}

.phone-screen {
  position       : absolute;
  inset          : 8px;
  top            : 36px;
  bottom         : 22px;
  border-radius  : 2.2rem;
  background     : #DCDCDC;
  border         : 1.5px dashed rgba(0,0,0,0.12);
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 1.2rem;
}

.phone-screen span {
  color       : rgba(0,0,0,0.3);
  font-size   : 0.65rem;
  text-align  : center;
  line-height : 1.6;
}

.phone-home-bar {
  position     : absolute;
  bottom       : 8px;
  left         : 50%;
  transform    : translateX(-50%);
  width        : 72px;
  height       : 4px;
  background   : rgba(0,0,0,0.18);
  border-radius: var(--radius-pill);
}

/* Image placeholder */
.img-placeholder {
  width          : 100%;
  aspect-ratio   : 4 / 3;
  background     : var(--bg-card);
  border-radius  : var(--radius-xl);
  border         : 1.5px dashed rgba(0,0,0,0.14);
  display        : flex;
  align-items    : center;
  justify-content: center;
  padding        : 2rem;
}
.img-placeholder span {
  color       : var(--text-muted);
  font-size   : 0.8rem;
  text-align  : center;
  line-height : 1.6;
}

/* Video placeholder */
.video-placeholder {
  width          : 100%;
  max-width      : 900px;
  margin         : 0 auto;
  aspect-ratio   : 16 / 9;
  background     : var(--bg-card);
  border-radius  : var(--radius-xl);
  border         : 1.5px dashed rgba(0,0,0,0.14);
  display        : flex;
  flex-direction : column;
  align-items    : center;
  justify-content: center;
  gap            : 1.2rem;
  box-shadow     : 0 24px 64px rgba(0,0,0,0.1);
}

.play-btn {
  width          : 5rem;
  height         : 5rem;
  background     : rgba(0,0,0,0.07);
  border-radius  : 50%;
  border         : 1.5px solid rgba(0,0,0,0.14);
  display        : flex;
  align-items    : center;
  justify-content: center;
  cursor         : pointer;
  transition     : background 0.2s, transform 0.2s;
}
.play-btn:hover { background: rgba(0,0,0,0.12); transform: scale(1.08); }

.play-btn-icon {
  width        : 0;
  height       : 0;
  border-style : solid;
  border-width : 0.65rem 0 0.65rem 1.3rem;
  border-color : transparent transparent transparent var(--grad-start);
  margin-inline-start: 4px;
}

.video-placeholder > span { color: var(--text-muted); font-size: 0.8rem; }


/* ═══════════════════════════════════════════════
   STAT BADGE
═══════════════════════════════════════════════ */
.stat-badge {
  display      : inline-flex;
  align-items  : center;
  gap          : 1rem;
  background   : var(--bg-card);
  border       : 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg);
  padding      : 1.2rem 1.8rem;
  width        : fit-content;
  box-shadow   : 0 4px 16px rgba(0,0,0,0.06);
}

.stat-number {
  font-family : var(--font-head);
  font-weight : 900;
  font-size   : 3.5rem;
  line-height : 1;
  color       : var(--grad-start);
}

.stat-label {
  font-family : var(--font-body);
  font-weight : 300;
  font-size   : 0.9rem;
  color       : var(--text-sub);
  line-height : 1.4;
  max-width   : 100px;
}


/* ═══════════════════════════════════════════════
   FEATURE PILLS
═══════════════════════════════════════════════ */
.pill-row {
  display  : flex;
  flex-wrap: wrap;
  gap      : 0.75rem;
}

.feature-pill {
  display      : inline-flex;
  align-items  : center;
  gap          : 0.5rem;
  background   : var(--bg-card);
  border       : 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-pill);
  padding      : 0.65rem 1.3rem;
  font-family  : var(--font-body);
  font-weight  : 700;
  font-size    : 0.88rem;
  color        : var(--text);
  box-shadow   : 0 2px 8px rgba(0,0,0,0.05);
}


/* ═══════════════════════════════════════════════
   SWIPE INDICATOR (Section 2)
═══════════════════════════════════════════════ */
.swipe-indicator {
  display        : flex;
  align-items    : center;
  gap            : 0.75rem;
  margin-top     : 1.5rem;
  justify-content: center;
}
.swipe-arrow { color: rgba(0,0,0,0.25); font-size: 1.2rem; }
.swipe-dots  { display: flex; gap: 0.4rem; }
.swipe-dot   { width: 7px; height: 7px; border-radius: 50%; background: rgba(0,0,0,0.15); }
.swipe-dot.active { background: var(--grad-start); width: 20px; border-radius: var(--radius-pill); }


/* ═══════════════════════════════════════════════
   KWYE — KNOW WHAT YOU EAT
═══════════════════════════════════════════════ */
.kwye-badge {
  background    : rgba(46, 196, 182, 0.1);
  border        : 1.5px solid rgba(46, 196, 182, 0.3);
  color         : var(--teal);
  font-family   : var(--font-head);
  font-weight   : 900;
  font-size     : 0.75rem;
  letter-spacing: 0.18em;
  padding       : 0.4rem 1.2rem;
  border-radius : var(--radius-pill);
  width         : fit-content;
  display       : inline-block;
}

.kwye-features {
  display        : flex;
  flex-direction : column;
  gap            : 1rem;
  margin-top     : 0.5rem;
}

.kwye-feature {
  display    : flex;
  align-items: flex-start;
  gap        : 1rem;
}

.kwye-feature-icon {
  flex-shrink    : 0;
  width          : 36px;
  height         : 36px;
  border-radius  : 50%;
  background     : rgba(46, 196, 182, 0.1);
  border         : 1px solid rgba(46, 196, 182, 0.2);
  display        : flex;
  align-items    : center;
  justify-content: center;
  font-size      : 1rem;
  margin-top     : 2px;
}

.kwye-feature-text {
  font-family : var(--font-body);
  font-weight : 300;
  font-size   : 0.95rem;
  color       : var(--text-sub);
  line-height : 1.6;
}
.kwye-feature-text strong {
  font-weight : 700;
  color       : var(--text);
  display     : block;
}


/* ═══════════════════════════════════════════════
   RESTAURANT CARDS
═══════════════════════════════════════════════ */
.logo-carousel {
  position  : relative;
  overflow  : hidden;
  width     : 100%;
  padding   : 1.5rem 0;
  min-height: 130px;
  direction : ltr;
}

.logo-track {
  position  : absolute;
  top       : 0;
  left      : 0;
  display   : flex;
  gap       : 1.2rem;
  width     : max-content;
  min-width : 100%;
  animation : logo-scroll 18s linear infinite;
  direction : ltr;
}

.logo-track:hover { animation-play-state: paused; }

@media (max-width: 640px) {
  .logo-carousel {
    padding: 1rem 0;
    min-width: 0;
    overflow: hidden;
  }

  .logo-track {
    position          : absolute;
    top               : 0;
    left              : 0;
    display           : flex;
    gap               : 0.75rem;
    width             : max-content;
    min-width         : 100%;
    animation         : logo-scroll 18s linear infinite;
    flex-wrap         : nowrap;
    direction         : ltr;
  }

  .restaurant-card {
    min-width  : 110px;
    flex       : 0 0 auto;
  }
}

@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.restaurant-card {
  flex-shrink    : 0;
  display        : flex;
  flex-direction : column;
  align-items    : center;
  gap            : 0.65rem;
  cursor         : pointer;
}

.restaurant-logo {
  width          : 130px;
  height         : 130px;
  background     : var(--bg-card);
  border         : 1.5px solid rgba(0,0,0,0.09);
  border-radius  : var(--radius-lg);
  overflow       : hidden;
  transition     : transform 0.25s, border-color 0.2s, box-shadow 0.2s;
  box-shadow     : 0 2px 8px rgba(0,0,0,0.05);
}
.restaurant-logo span {
  color       : rgba(0,0,0,0.22);
  font-size   : 0.6rem;
  text-align  : center;
  line-height : 1.5;
}

.restaurant-logo img {
  width      : 100%;
  height     : 100%;
  object-fit : cover;
  display    : block;
}

.restaurant-logo--dark {
  background : #111111;
  border-color: rgba(255,255,255,0.08);
}

.restaurant-logo--no-fill {
  background : transparent;
  border-color: transparent;
  box-shadow : none;
}
.restaurant-card:hover .restaurant-logo {
  transform   : translateY(-4px);
  border-color: rgba(255,39,92,0.35);
  box-shadow  : 0 8px 24px rgba(255,39,92,0.1);
}

.restaurant-name {
  font-family : var(--font-body);
  font-weight : 700;
  font-size   : 0.72rem;
  color       : var(--text-muted);
  text-align  : center;
  transition  : color 0.2s;
}
.restaurant-card:hover .restaurant-name { color: var(--text-sub); }


/* ═══════════════════════════════════════════════
   PARTNER FORM
═══════════════════════════════════════════════ */
.partner-form-wrap {
  background    : #FFFFFF;
  border        : 1.5px solid rgba(0,0,0,0.09);
  border-radius : var(--radius-xl);
  padding       : 2.5rem;
  box-shadow    : 0 8px 40px rgba(0,0,0,0.07);
}

.form-row {
  display               : grid;
  grid-template-columns : 1fr 1fr;
  gap                   : 1.2rem;
}

.form-field {
  display        : flex;
  flex-direction : column;
  gap            : 0.5rem;
  margin-bottom  : 1.2rem;
}

.form-label {
  font-family    : var(--font-body);
  font-weight    : 700;
  font-size      : 0.78rem;
  letter-spacing : 0.08em;
  text-transform : uppercase;
  color          : var(--text-sub);
}

.form-input {
  background    : #F9F9F9;
  border        : 1.5px solid rgba(0,0,0,0.12);
  border-radius : 0.75rem;
  padding       : 0.85rem 1.1rem;
  font-family   : var(--font-body);
  font-weight   : 300;
  font-size     : 0.95rem;
  color         : var(--text);
  outline       : none;
  transition    : border-color 0.2s, background 0.2s;
  width         : 100%;
}
.form-input::placeholder { color: rgba(0,0,0,0.28); }
.form-input:focus {
  border-color : rgba(255,39,92,0.45);
  background   : #FFFFFF;
}

html.ar-mode .form-input { text-align: right; }

.form-submit-btn {
  width         : 100%;
  background    : var(--grad);
  color         : #FFFFFF;
  font-family   : var(--font-head);
  font-weight   : 900;
  font-size     : 1rem;
  letter-spacing: 0.02em;
  padding       : 1rem 2rem;
  border        : none;
  border-radius : var(--radius-pill);
  cursor        : pointer;
  box-shadow    : 0 6px 28px rgba(255,39,92,0.28);
  transition    : transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  margin-top    : 0.5rem;
}
.form-submit-btn:hover    { transform: scale(1.03); box-shadow: 0 10px 36px rgba(255,39,92,0.42); }
.form-submit-btn:disabled { opacity: 0.6; cursor: default; transform: none; }

/* Web3Forms honeypot — visually removed, kept in the layout for bots */
.hp-field {
  position : absolute !important;
  width    : 1px;
  height   : 1px;
  margin   : -1px;
  padding  : 0;
  border   : 0;
  overflow : hidden;
  clip     : rect(0 0 0 0);
  white-space: nowrap;
}

/* Submission feedback */
.form-result {
  margin-top : 1rem;
  text-align : center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size  : 0.95rem;
  color      : var(--teal);
}
.form-result.error { color: var(--grad-start); }
html.ar-mode .form-result { font-family: var(--font-ar); }


/* ═══════════════════════════════════════════════
   APP STORE BADGES (on gradient sections)
═══════════════════════════════════════════════ */
.store-badges {
  display         : flex;
  flex-wrap       : wrap;
  justify-content : center;
  gap             : 1rem;
  margin-top      : 0.5rem;
}

.store-badge {
  display         : inline-flex;
  align-items     : center;
  gap             : 0.75rem;
  background      : rgba(255,255,255,0.15);
  border          : 1.5px solid rgba(255,255,255,0.25);
  border-radius   : var(--radius-lg);
  padding         : 0.75rem 1.5rem;
  color           : #FFFFFF;
  text-decoration : none;
  cursor          : pointer;
  transition      : background 0.2s, transform 0.2s;
  white-space     : nowrap;
}
.store-badge:hover { background: rgba(255,255,255,0.25); transform: scale(1.04); }
.store-badge-icon svg { width: 24px; height: 24px; fill: currentColor; }
.store-badge-text  { display: flex; flex-direction: column; text-align: start; gap: 1px; }
.store-badge-small { font-size: 0.68rem; opacity: 0.75; font-family: var(--font-body); font-weight: 300; }
.store-badge-name  { font-family: var(--font-head); font-weight: 900; font-size: 1rem; }


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.bite-footer {
  background    : var(--bg-alt);
  border-top    : 1px solid rgba(0,0,0,0.08);
  padding-top   : 5.95rem;
  padding-bottom: 2.38rem;
}

.footer-centered {
  max-width      : 571px;
  margin         : 0 auto 4.76rem;
  padding        : 0 2.38rem;
  display        : flex;
  flex-direction : column;
  align-items    : center;
  text-align     : center;
}

.footer-connect-title {
  font-family  : var(--font-heading);
  font-weight  : 700;
  font-size    : 1.54rem;
  color        : var(--text);
  margin-bottom: 2.1rem;
}

.footer-logo-img {
  height         : 48px;
  width          : auto;
  display        : block;
  margin-bottom  : 1.75rem;
}

.footer-tagline {
  font-family  : var(--font-body);
  font-weight  : 300;
  font-size    : 1.07rem;
  color        : var(--text-muted);
  line-height  : 1.6;
  margin-bottom: 1.75rem;
}

.social-row { display: flex; gap: 0.77rem; justify-content: center; }

.social-btn {
  width          : 45px;
  height         : 45px;
  background     : #FFFFFF;
  border         : 2px solid rgba(0,0,0,0.1);
  border-radius  : 12px;
  display        : flex;
  align-items    : center;
  justify-content: center;
  color          : var(--text-muted);
  cursor         : pointer;
  transition     : all 0.2s;
  box-shadow     : 0 2px 8px rgba(0,0,0,0.05);
}
.social-btn:hover { background: var(--bg-card); border-color: rgba(0,0,0,0.2); color: var(--text); }
.social-btn svg   { width: 21px; height: 21px; fill: currentColor; }

.footer-col-title {
  font-family    : var(--font-body);
  font-weight    : 700;
  font-size      : 0.56rem;
  letter-spacing : 0.12em;
  text-transform : uppercase;
  color          : var(--text-sub);
  margin-bottom  : 0.84rem;
}

.footer-links {
  list-style     : none;
  display        : flex;
  flex-direction : column;
  gap            : 0.49rem;
}
.footer-links a {
  color          : var(--text-muted);
  text-decoration: none;
  font-family    : var(--font-body);
  font-weight    : 300;
  font-size      : 0.63rem;
  transition     : color 0.2s;
}
.footer-links a:hover { color: var(--text-sub); }

.footer-contact {
  display        : flex;
  flex-direction : column;
  gap            : 1.07rem;
  margin-bottom  : 2.38rem;
}

.footer-contact-item {
  display        : flex;
  align-items    : center;
  justify-content: center;
  gap         : 0.7rem;
  font-family : var(--font-body);
  font-weight : 300;
  font-size   : 1.09rem;
  color       : var(--text-muted);
  line-height : 1.5;
}
.footer-contact-icon { flex-shrink: 0; opacity: 0.45; width: 19px; height: 19px; }
a.footer-contact-item { text-decoration: none; }
a.footer-contact-item:hover { color: var(--text); }

.footer-bottom {
  max-width      : 1280px;
  margin         : 0 auto;
  padding        : 1.79rem 2.38rem 0;
  border-top     : 1px solid rgba(0,0,0,0.08);
  display        : flex;
  justify-content: space-between;
  align-items    : center;
  flex-wrap      : wrap;
  gap            : 0.6rem;
}

.footer-copyright {
  font-family : var(--font-body);
  font-weight : 300;
  font-size   : 0.95rem;
  color       : var(--text-muted);
}
.footer-powered {
  font-family : var(--font-body);
  font-weight : 300;
  font-size   : 0.9rem;
  color       : rgba(0,0,0,0.2);
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section-grid { gap: 3.5rem; }
  .footer-centered { max-width: 280px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (769px–1024px) — hero scaling
═══════════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-left      { padding: 3rem 1.5rem 3rem 2.5rem; }
  .phone-img      { max-height: 68vh; }
  .hero-right     { padding: 3rem 2.5rem 3rem 1.5rem; gap: 1.4rem; }
  .hero-logo-wrap { max-width: 340px; }
  .hero-headline  { font-size: clamp(2.4rem, 4.5vw, 4rem); }
  .free-delivery-label { font-size: clamp(1.5rem, 3vw, 2.4rem); }

  /* AR mirror paddings (match specificity of the global ar-mode rules) */
  html.ar-mode .hero-left  { padding: 3rem 2.5rem 3rem 1.5rem; }
  html.ar-mode .hero-right { padding: 3rem 1.5rem 3rem 2.5rem; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .nav-links     { display: none; }
  .nav-cta       { display: none; }
  .hamburger-btn { display: flex; }
  .mobile-menu   { display: block; }

  /* Mobile navbar: lang toggle left | logo center | hamburger right */
  .navbar-inner {
    direction : ltr; /* keep positions consistent in AR and EN */
    position  : relative;
  }
  .nav-logo {
    position  : absolute;
    left      : 50%;
    transform : translateX(-50%);
  }

  /* ── Hero layout — content top-aligned, app image below ── */
  .hero { min-height: 100svh; }
  .hero-container {
    grid-template-columns : 1fr;
    grid-template-rows    : auto;
    min-height            : 0;
    align-items           : start;
  }

  /* Phone + badge hidden on mobile */
  .hero-left { display: none; }

  .hero-right {
    order       : 1;
    padding     : calc(68px + 1.2rem) 2rem 1.5rem;
    gap         : 1.4rem;
    align-items : center;
    text-align  : center;
  }
  html.ar-mode .hero-right { padding: calc(68px + 1.2rem) 2rem 1.5rem; align-items: center; }

  /* Mobile app screen image */
  .hero-mobile-image {
    display        : flex;
    justify-content: center;
    padding        : 0.5rem 1.5rem 3rem;
    width          : 100%;
  }
  .hero-mobile-image img {
    width         : auto;
    max-width     : 100%;
    height        : auto;
    border-radius : var(--radius-xl);
    display       : block;
    transform     : translateX(5%);
  }
  html.ar-mode .hero-mobile-image img {
    transform     : translateX(-5%);
  }

  .hero-logo-wrap { max-width: 384px; }
  .hero-headline  { font-size: clamp(2.6rem, 9vw, 3.4rem); }
  .hero-btn       { font-size: 1.1rem; padding: 1rem 2.4rem; }

  /* Delivery callout — shrink-wraps to its text; the arrow is an absolute
     decoration sitting just clear of the label, mirrored per language */
  .delivery-callout {
    position        : relative;
    margin-top      : 0;
    margin-left     : 0;
    margin-right    : 0;
    justify-content : center;
  }
  html.ar-mode .delivery-callout { justify-content: center; }

  .arrow-img {
    width    : 38px;
    transform: rotate(-50deg) scaleX(-1);
  }
  html.ar-mode .arrow-img {
    transform: rotate(-50deg);
  }

  .delivery-text { margin-left: 0; }
  html.ar-mode .delivery-text { margin-right: 0; }

  .free-delivery-label { font-size: clamp(2rem, 8vw, 2.8rem); }
  .free-delivery-sub   { font-size: clamp(1.15rem, 4.5vw, 1.37rem); }
  .mobile-br           { display: inline; }

  /* ── USP section ── */
  #usp .section-headline { white-space: normal; }
  #usp .section-center   { padding: 12rem 1.5rem 3rem; }

  /* ── Sections ── */
  .bite-section      { padding: 4.5rem 0; }
  .section-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-body      { max-width: none; }
  .section-container { padding: 0 1.25rem; }

  /* ── biteCOIN GIF ── */
  .bitecoin-gif { max-width: 320px; margin: 0 auto; }

  /* ── Community banner — fixed size, no resize ── */
  .community-img  { width: 600px; max-width: 600px; }
  .community-text { padding-top: 2rem; }

  /* ── Partner form ── */
  .form-row          { grid-template-columns: 1fr; }
  .partner-form-wrap { padding: 1.75rem 1.25rem; }

  /* ── Section eyebrow, body & subtext ── */
  .section-eyebrow { font-size: 1.1rem; }
  .section-body     { font-size: 1.25rem; }
  .section-subtext  { font-size: 1rem; }

  /* ── Download badges — stack vertically ── */
  .store-badges { flex-direction: column; align-items: center; }
  .store-badge  { width: 100%; max-width: 260px; justify-content: center; }

  /* ── Footer ── */
  .footer-bottom {
    padding         : 0.88rem 0.88rem 0;
    flex-direction  : column;
    align-items     : center;
    text-align      : center;
    gap             : 0.28rem;
  }
  html.ar-mode .footer-bottom { align-items: center; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-right         { padding: calc(68px + 0.8rem) 1.2rem 1.2rem; gap: 1rem; }
  html.ar-mode .hero-right { padding: calc(68px + 0.8rem) 1.2rem 1.2rem; }
  .hero-mobile-image  { padding: 0.5rem 1rem 2.5rem; }
  .hero-logo-wrap     { max-width: 324px; }
  .hero-headline      { font-size: 2.4rem; }
  .hero-btn           { font-size: 1rem; padding: 0.9rem 2rem; }
  .free-delivery-label{ font-size: 1.8rem; }
  .free-delivery-sub  { font-size: 1.17rem; }

  .bite-section       { padding: 3.5rem 0; }
  .section-container  { padding: 0 1rem; }
  .section-headline   { font-size: 1.9rem; }
  .section-headline.large { font-size: 2.3rem; }
  .stat-number        { font-size: 2.6rem; }

  .partner-form-wrap  { padding: 1.25rem 1rem; }
  .footer-centered    { padding: 0 0.7rem; }
  .footer-bottom      { padding: 0.88rem 0.7rem 0; }

  #usp .section-center { padding: 10rem 1rem 2.5rem; }
}

/* ════════════════════════════════════════
   COMMUNITY SECTION IMAGE
════════════════════════════════════════ */
#discovery {
  background: var(--grad);
}

#discovery .section-headline,
#discovery .section-body          { color: #FFFFFF; }


#community {
  padding-top    : 4rem;
  padding-bottom : 0;
}

.community-banner {
  width        : 100%;
  position     : relative;
  min-height   : 154px;
  line-height  : 0;
  background   : #46dc98;
  overflow     : hidden;
}

.community-text {
  padding-bottom: 3rem;
}

.community-img {
  width        : 600px;
  height       : 154px;
  min-width    : 600px;
  max-width    : 600px;
  object-fit   : cover;
  border-radius: 0;
  display      : block;
  margin       : 0;
  position     : absolute;
  top          : 0;
  left         : 50%;
  transform    : translateX(-50%);
}


/* ════════════════════════════════════════
   BITECOIN GIF
════════════════════════════════════════ */
.bitecoin-gif {
  width        : 100%;
  max-width    : 420px;
  height       : auto;
  border-radius: var(--radius-xl);
  display      : block;
}

/* ════════════════════════════════════════
   SWIPE CARD STACK — Discovery Section
════════════════════════════════════════ */
.swipe-stack-wrap {
  display        : flex;
  flex-direction : column;
  align-items    : center;
  gap            : 2rem;
}

.swipe-stack {
  position : relative;
  width    : 300px;
  height   : 400px;
}

.swipe-card {
  position      : absolute;
  inset         : 0;
  border-radius : var(--radius-xl);
  overflow      : hidden;
  cursor        : grab;
  user-select   : none;
  touch-action  : none;
  background    : transparent;
  box-shadow    : none;
  will-change   : transform;
}

.swipe-card img {
  border-radius : var(--radius-xl);
}

.swipe-card:active { cursor: grabbing; }

.swipe-card img {
  width          : 100%;
  height         : 100%;
  object-fit     : cover;
  pointer-events : none;
  display        : block;
}

/* LIKE / NOPE badge overlays */
.swipe-label {
  position      : absolute;
  top           : 40px;
  padding       : 6px 16px;
  border-radius : 8px;
  font-size     : 1rem;
  font-weight   : 900;
  letter-spacing: 2px;
  opacity       : 0;
  transition    : opacity 0.12s ease;
  pointer-events: none;
  border        : 2.5px solid;
}

.swipe-label-like {
  left         : 36px;
  color        : var(--teal);
  border-color : var(--teal);
  background   : rgba(46, 196, 182, 0.12);
}

.swipe-label-nope {
  right        : 36px;
  color        : var(--grad-start);
  border-color : var(--grad-start);
  background   : rgba(255, 39, 92, 0.12);
}

/* Swipe gesture hint */
.swipe-hint {
  position       : absolute;
  top            : 50%;
  left           : 52%;
  z-index        : 20;
  pointer-events : none;
  display        : flex;
  align-items    : center;
  gap            : 6px;
  animation      : swipe-hint-move 3s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

.swipe-hint-arrow {
  animation: swipe-hint-arrow-fade 3s cubic-bezier(0.4, 0, 0.2, 1) 2s forwards;
}

@keyframes swipe-hint-move {
  0%   { transform: translate(-50%, -50%);              opacity: 0; }
  12%  { transform: translate(-50%, -50%);              opacity: 1; }
  58%  { transform: translate(calc(-50% - 80px), -50%); opacity: 1; }
  78%  { transform: translate(calc(-50% - 80px), -50%); opacity: 0; }
  100% { transform: translate(calc(-50% - 80px), -50%); opacity: 0; }
}

@keyframes swipe-hint-arrow-fade {
  0%, 12% { opacity: 0; }
  30%     { opacity: 1; }
  58%     { opacity: 1; }
  78%     { opacity: 0; }
  100%    { opacity: 0; }
}

/* Like button — teal so it stands out on the red gradient background */
#discovery .swipe-btn-like {
  background : var(--teal);
  box-shadow : 0 4px 20px rgba(46, 196, 182, 0.45);
}

/* Action buttons below the stack */
.swipe-actions {
  display     : flex;
  gap         : 1.5rem;
  align-items : center;
}

.swipe-btn {
  width          : 72px;
  height         : 72px;
  border-radius  : 50%;
  border         : none;
  cursor         : pointer;
  display        : flex;
  align-items    : center;
  justify-content: center;
  transition     : transform 0.15s ease, box-shadow 0.15s ease;
}

.swipe-btn svg {
  width  : 28px;
  height : 28px;
}

.swipe-btn:hover  { transform: scale(1.1); }
.swipe-btn:active { transform: scale(0.95); }

.swipe-btn-nope {
  background : #FFFFFF;
  color      : var(--grad-start);
  box-shadow : 0 4px 16px rgba(255, 39, 92, 0.2);
}

.swipe-btn-like {
  background : var(--grad);
  color      : #FFFFFF;
  box-shadow : 0 4px 20px rgba(255, 39, 92, 0.35);
  font-size  : 1.3rem;
}

@media (max-width: 600px) {
  .swipe-stack { width: 260px; height: 340px; }
}
@media (max-width: 400px) {
  .swipe-stack { width: 230px; height: 305px; }
}
