:root {
  --deep-purple: #3E38A3;
  --violet: #9267FC;
  --cyan: #35E1EB;
  --navy: #232033;
  --white: #FFFFFF;
  --lavender: #F4F2FF;
  --muted-purple: #B0A8D0;
  --radius: 16px;
  --grad-primary: linear-gradient(135deg, var(--deep-purple), var(--violet));
  --grad-accent: linear-gradient(90deg, var(--cyan), var(--violet));
  --grad-bar: linear-gradient(90deg, var(--cyan), var(--violet), var(--deep-purple));
}

* { box-sizing: border-box; }

html { overflow-x: hidden; }

body {
  margin: 0;
  font-family: 'DM Sans', 'Poppins', Calibri, sans-serif;
  color: var(--navy);
  background: var(--white);
}

h1, h2, h3, .heading-font {
  font-family: 'Montserrat', 'Trebuchet MS', sans-serif;
  font-weight: 800;
  margin: 0;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.navbar-outer {
  background: var(--navy);
  padding: 18px 24px;
  position: sticky;
  top: 0;
  z-index: 500;
  transition: padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-outer.scrolled {
  padding: 10px 24px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 22px;
  background: var(--white);
  border-radius: 100px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-outer.scrolled .navbar {
  max-width: 760px;
  padding: 10px 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.22);
}

.navbar .brand,
.navbar .nav-actions {
  flex: 1;
}

.navbar .nav-actions {
  justify-content: flex-end;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 28px;
  width: auto;
  color: var(--navy);
}

.brand-logo.on-dark { color: var(--white); }

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--grad-primary);
  position: relative;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.brand-tag {
  font-size: 10px;
  color: var(--muted-purple);
  font-weight: 600;
  letter-spacing: 0.5px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  max-width: 880px;
  margin: 8px auto 0;
  background: var(--white);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 13px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

.mobile-menu a.btn {
  text-align: center;
  margin-top: 4px;
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

/* Hero */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(146,103,252,0.35), transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Montserrat', 'Trebuchet MS', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 8vw, 84px);
  line-height: 0.98;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  max-width: 980px;
  margin: 0 auto 28px;
  position: relative;
}

.hero p.sub {
  font-size: 18px;
  color: var(--muted-purple);
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 400;
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.hero-note {
  font-size: 13px;
  color: var(--muted-purple);
  position: relative;
}

/* Bento tile strip */
.bento-strip {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 110px;
  gap: 0;
}

.bento-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  padding: 8px;
  overflow: hidden;
}

.bento-tile.wide { grid-column: span 2; }

/* Stats strip */
.stats-strip {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0 64px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--muted-purple);
  font-size: 13px;
  font-weight: 600;
  margin-top: 4px;
}

/* Trusted merchants */
.trusted {
  padding: 56px 0;
  text-align: center;
  background: var(--lavender);
}

.trusted .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--deep-purple);
  margin-bottom: 28px;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.85;
}

.logo-chip {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.marquee {
  overflow: hidden;
  width: 100%;
  background: var(--navy);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  background: var(--navy);
  animation: marquee-scroll 26s linear infinite;
}

.marquee-track .logo-row {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-chip-card {
  height: 64px;
  width: 150px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  flex-shrink: 0;
}

.logo-chip-card.on-light { background: var(--white); }
.logo-chip-card.on-dark { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); }

.logo-chip-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.store-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  width: auto;
  min-width: 90px;
}

.store-tile .store-icon {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-tile .store-icon img {
  max-height: 100%;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1) brightness(1.3);
}

.store-tile .store-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}

.lang-toggle-float {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 600;
  background: var(--white);
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
}

[dir="rtl"] .lang-toggle-float {
  right: auto;
  left: 24px;
}

[dir="rtl"] #coming-soon-label,
[dir="rtl"] #platform-eyebrow {
  font-size: 17px;
}

[dir="rtl"] .tab {
  font-size: 18px;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  z-index: 999;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.logo-slot {
  width: 140px;
  height: 56px;
  border-radius: 10px;
  border: 1.5px dashed rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-purple);
}

/* Feature tabs section */
.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .eyebrow-dark {
  color: var(--violet);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 38px;
  letter-spacing: -0.5px;
  max-width: 700px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 36px 0 48px;
}

.tab {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  color: var(--muted-purple);
  background: transparent;
  flex: 1;
  text-align: center;
}

.tab.active {
  background: var(--white);
  color: var(--navy);
}

.tabs-wrap {
  background: var(--navy);
  display: flex;
  border-radius: 14px;
  padding: 6px;
  margin: 0 auto;
  max-width: 560px;
}

/* Testimonials */
.testimonial-card {
  background: var(--lavender);
  border-radius: 20px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: left;
}

.testimonial-card p.quote {
  font-size: 19px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 18px;
}

.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
}

.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.feature-panel {
  background: var(--lavender);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

.feature-panel h3 {
  font-size: 28px;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.feature-panel p {
  color: var(--navy);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 24px;
}

.mock-frame {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(62,56,163,0.18);
  overflow: hidden;
}

/* Case study / sell-with-us strip */
.cta-band {
  background: var(--grad-primary);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
  border-radius: 32px;
  margin: 0 24px;
}

.cta-band h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--muted-purple);
  padding: 50px 0 0;
  margin-top: 80px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 30px;
}

.gradient-bar {
  height: 4px;
  background: var(--grad-bar);
}

/* Form page */
.form-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 100px;
}

.form-card {
  background: var(--white);
  border: 1px solid #ECE9FB;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 20px 60px rgba(62,56,163,0.08);
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--navy);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #E2DEF7;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: var(--lavender);
  color: var(--navy);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: var(--white);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  margin-top: 8px;
}

.progress-steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.step-dot {
  width: 34px;
  height: 6px;
  border-radius: 4px;
  background: #E2DEF7;
}

.step-dot.done { background: var(--grad-accent); }

/* Dashboard */
.dash-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 16px;
  flex-shrink: 0;
}

.sidebar .brand {
  padding: 0 8px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.sidebar .brand-name, .sidebar .brand-tag { color: var(--white); }
.sidebar .brand-tag { color: var(--muted-purple); }

.nav-section-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted-purple);
  padding: 16px 12px 8px;
  font-weight: 700;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--muted-purple);
  margin-bottom: 2px;
  cursor: pointer;
}

.nav-item.active {
  background: var(--grad-primary);
  color: var(--white);
}

.nav-item .dot {
  width: 18px;
  text-align: center;
}

.nav-item.parent {
  justify-content: space-between;
  color: #cfc9ea;
}

.nav-item .chev { font-size: 11px; opacity: 0.7; }

.nav-sub {
  padding-left: 30px;
  margin-bottom: 4px;
}

.nav-sub-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted-purple);
  cursor: pointer;
  margin-bottom: 1px;
}

.nav-sub-item.active {
  background: var(--grad-primary);
  color: var(--white);
}

.topbar-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #E9E5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.avatar-blur {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad-primary);
  filter: blur(3px);
}

/* Data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.data-table th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.5;
  padding: 12px 14px;
  border-bottom: 1px solid #E9E5FA;
  white-space: nowrap;
}

.data-table td {
  padding: 14px 14px;
  border-bottom: 1px solid #F1EEFB;
  white-space: nowrap;
}

.blur-text {
  filter: blur(4px);
  user-select: none;
}

.status-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
}

.status-delivered { background: #E1F8E6; color: #1A8E3F; }
.status-pending { background: #FFF3CD; color: #946C00; }
.status-unpaid { background: #FFF3CD; color: #946C00; }
.status-active { background: #E1F8E6; color: #1A8E3F; }

.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
  border-radius: 8px;
}

.btn-refund { background: #E84C61; color: #fff; }
.btn-soft-dark { background: var(--lavender); color: var(--navy); }

.icon-action {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--lavender);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-size: 14px;
  cursor: pointer;
}

.filter-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-bar select, .search-input {
  padding: 11px 16px;
  border-radius: 10px;
  border: 1px solid #E2DEF7;
  font-size: 14px;
  background: var(--white);
  font-family: inherit;
  color: var(--navy);
}

.search-input { flex: 1; min-width: 280px; }

.table-wrap {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #E9E5FA;
  overflow-x: auto;
}

.table-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.7;
}

.kpi-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.toggle-pill {
  width: 42px;
  height: 24px;
  border-radius: 14px;
  background: var(--grad-primary);
  position: relative;
  flex-shrink: 0;
}

.toggle-pill::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  right: 3px;
}

.toggle-row .day-label {
  width: 90px;
  font-size: 14px;
  font-weight: 600;
}

.time-input {
  padding: 10px 14px;
  border: 1px solid #E2DEF7;
  border-radius: 8px;
  font-size: 13px;
  background: var(--lavender);
  color: var(--navy);
  width: 130px;
}

.map-placeholder {
  height: 220px;
  border-radius: 14px;
  background: var(--lavender);
  border: 1px solid #E2DEF7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
  font-weight: 700;
  margin-bottom: 18px;
}

.dash-main {
  flex: 1;
  background: var(--lavender);
  padding: 32px 40px;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.dash-topbar h1 {
  font-size: 26px;
}

.dash-topbar p {
  color: var(--navy);
  opacity: 0.6;
  margin-top: 4px;
  font-size: 14px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #E9E5FA;
}

.kpi-label {
  font-size: 13px;
  color: var(--navy);
  opacity: 0.6;
  margin-bottom: 8px;
}

.kpi-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--deep-purple);
}

.dash-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 18px;
}

.panel {
  background: var(--white);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid #E9E5FA;
  margin-bottom: 18px;
}

.panel h3 {
  font-size: 16px;
  margin-bottom: 14px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #F1EEFB;
}

.badge {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-warn { background: #FFF3CD; color: #946C00; }
.badge-ok { background: #E1F8E6; color: #1A8E3F; }

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .stats-grid, .form-grid-2 { grid-template-columns: 1fr; }
  .feature-panel, .dash-grid, .kpi-grid { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .grid-4-col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-head h2 { font-size: 26px; }
  .hero { padding: 70px 0 40px; }
  .hero p.sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .feature-panel { padding: 28px; }
  .tabs-wrap { max-width: 100%; flex-wrap: wrap; }
  .tab { flex: 1 1 45%; padding: 10px 12px; font-size: 13px; }
  [dir="rtl"] .tab { font-size: 15px; }
  .grid-2-col, .grid-4-col { grid-template-columns: 1fr; }
  .cta-band { margin: 0 12px; padding: 48px 20px; }
  .cta-band h2 { font-size: 26px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .lang-toggle-float { top: 14px; right: 14px; padding: 6px 12px; font-size: 12px; }
  [dir="rtl"] .lang-toggle-float { left: 14px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
}
