/*
Theme Name: Alo Ghalyoon Emerald Luxury
Theme URI: https://aloqelyoon.net/
Author: Alo Ghalyoon
Description: Luxury Hookah Delivery - Emerald & Gold Premium Theme
Version: 4.0.0
Text Domain: alo-ghalyoon
*/

:root {
  --alo-bg: #0A2E23;
  --alo-bg-2: #0F3D2E;
  --alo-bg-3: #164838;
  --alo-bg-card: #133D2E;
  --alo-bg-elevated: #1A5341;
  --alo-bg-topbar: #051A13;
  --alo-gold: #D4AF37;
  --alo-gold-light: #F4E4A1;
  --alo-gold-dark: #8B7332;
  --alo-gold-glow: rgba(212, 175, 55, 0.4);
  --alo-green-accent: #2D8B6F;
  --alo-green-light: #4CAF8F;
  --alo-white: #FFFFFF;
  --alo-text: #E8E8E8;
  --alo-text-muted: #B8C8C0;
  --alo-text-dim: #7A9088;
  --alo-border: rgba(212, 175, 55, 0.18);
  --alo-border-light: rgba(212, 175, 55, 0.35);
  --alo-border-strong: rgba(212, 175, 55, 0.55);
  --alo-whatsapp: #25D366;
  --alo-call: #007BFF;
  --alo-error: #E74C3C;
  --alo-success: #27AE60;
  --alo-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --alo-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --alo-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --alo-shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.3);
  --alo-radius-sm: 8px;
  --alo-radius: 12px;
  --alo-radius-lg: 20px;
  --alo-radius-xl: 28px;
  --alo-radius-full: 999px;
  --alo-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Vazirmatn', 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--alo-text);
  background: var(--alo-bg);
  direction: rtl;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--alo-transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.4;
  color: var(--alo-white);
}

.alo-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.alo-main {
  min-height: 60vh;
}

.alo-hide-mobile {
  display: inline-flex;
}

@media (max-width: 768px) {
  .alo-hide-mobile {
    display: none !important;
  }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--alo-bg-2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--alo-gold-dark), var(--alo-gold));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--alo-gold);
}

::selection {
  background: var(--alo-gold);
  color: var(--alo-bg);
}

/* TOP BAR */
.alo-topbar {
  position: relative;
  z-index: 1000;
  background: linear-gradient(90deg, #051A13 0%, #0A2E23 50%, #051A13 100%);
  border-bottom: 1px solid var(--alo-border);
  padding: 10px 0;
}

.alo-topbar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.alo-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--alo-gold-light);
  font-size: 13px;
  font-weight: 600;
  transition: var(--alo-transition);
}

.alo-topbar-item:hover {
  color: var(--alo-gold);
}

.alo-topbar-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--alo-gold);
  flex-shrink: 0;
}

.alo-topbar-divider {
  width: 1px;
  height: 16px;
  background: var(--alo-border-light);
}

/* HEADER */
.alo-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 46, 35, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--alo-border);
  transition: var(--alo-transition);
}

.alo-header.alo-scrolled {
  background: rgba(10, 46, 35, 0.98);
  box-shadow: var(--alo-shadow-md);
  border-bottom-color: var(--alo-border-light);
}

.alo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.alo-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.alo-logo-svg {
  display: flex;
  align-items: center;
  gap: 12px;
}

.alo-logo-svg-icon {
  width: 52px;
  height: 52px;
  transition: var(--alo-transition);
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.4));
}

.alo-logo:hover .alo-logo-svg-icon {
  transform: rotate(-5deg) scale(1.05);
}

.alo-logo-content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.alo-logo-title {
  color: var(--alo-white);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.alo-logo-sub {
  color: var(--alo-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-top: 3px;
}

.alo-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.alo-nav a {
  position: relative;
  padding: 10px 18px;
  color: var(--alo-text);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--alo-radius-full);
  transition: var(--alo-transition);
  z-index: 1;
}

.alo-nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border-radius: var(--alo-radius-full);
  opacity: 0;
  transition: var(--alo-transition);
  z-index: -1;
}

.alo-nav a:hover {
  color: var(--alo-gold);
}

.alo-nav a:hover::before {
  opacity: 1;
}

.alo-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg) !important;
  font-size: 14px;
  font-weight: 800;
  border-radius: var(--alo-radius-full);
  box-shadow: var(--alo-shadow-gold);
  transition: var(--alo-transition);
  white-space: nowrap;
}

.alo-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.alo-header-cta svg {
  width: 18px;
  height: 18px;
}

.alo-hamburger {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--alo-border-light);
  border-radius: var(--alo-radius);
  cursor: pointer;
  transition: var(--alo-transition);
  padding: 0;
  z-index: 100;
}

.alo-hamburger:hover {
  background: rgba(212, 175, 55, 0.22);
}

.alo-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--alo-gold);
  border-radius: 2px;
  transition: var(--alo-transition);
  display: block;
}

.alo-hamburger.alo-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.alo-hamburger.alo-active span:nth-child(2) {
  opacity: 0;
}

.alo-hamburger.alo-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE NAV */
.alo-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #0A2E23 0%, #164838 100%);
  border-left: 1px solid var(--alo-border);
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
}

.alo-mobile-nav.alo-open {
  right: 0;
}

.alo-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 26, 19, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--alo-transition);
}

.alo-mobile-overlay.alo-open {
  opacity: 1;
  visibility: visible;
}

.alo-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--alo-border);
}

.alo-mobile-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.alo-mobile-close {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--alo-border-light);
  color: var(--alo-gold);
  border-radius: var(--alo-radius);
  transition: var(--alo-transition);
  cursor: pointer;
}

.alo-mobile-close:hover {
  background: var(--alo-gold);
  color: var(--alo-bg);
}

.alo-mobile-close svg {
  width: 20px;
  height: 20px;
}

.alo-mobile-links {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.alo-mobile-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  color: var(--alo-text);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--alo-radius);
  transition: var(--alo-transition);
}

.alo-mobile-links a:hover,
.alo-mobile-links a:focus {
  background: rgba(212, 175, 55, 0.12);
  color: var(--alo-gold);
  padding-right: 24px;
}

.alo-mobile-links a svg {
  width: 20px;
  height: 20px;
  stroke: var(--alo-gold);
  flex-shrink: 0;
}

.alo-mobile-cta {
  padding: 20px;
  border-top: 1px solid var(--alo-border);
}

.alo-mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg) !important;
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--alo-radius);
  transition: var(--alo-transition);
}

.alo-mobile-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--alo-shadow-gold);
}

/* FLOATING BUTTONS */
.alo-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.alo-float {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--alo-shadow-md);
  transition: var(--alo-transition);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  animation: aloFloatIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.alo-float:nth-child(1) { animation-delay: 0.6s; }
.alo-float:nth-child(2) { animation-delay: 0.75s; }
.alo-float:nth-child(3) { animation-delay: 0.9s; }

@keyframes aloFloatIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.alo-float svg {
  width: 26px;
  height: 26px;
  transition: var(--alo-transition);
}

.alo-float:hover {
  transform: translateY(-4px) scale(1.08);
}

.alo-float:hover svg {
  transform: scale(1.15);
}

.alo-float-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.alo-float-order {
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.alo-float-call {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.4);
}

.alo-float-call::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 123, 255, 0.6);
  animation: aloPulseCall 2s infinite;
}

@keyframes aloPulseCall {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.alo-float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  padding: 8px 14px;
  background: var(--alo-bg-2);
  color: var(--alo-gold);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: var(--alo-radius-sm);
  border: 1px solid var(--alo-border-light);
  box-shadow: var(--alo-shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--alo-transition);
  pointer-events: none;
}

.alo-float:hover .alo-float-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* FOOTER */
.alo-footer {
  background: var(--alo-bg-2);
  border-top: 1px solid var(--alo-border);
  margin-top: 80px;
}

.alo-footer-cta {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #164838 0%, #0F3D2E 100%);
  border-bottom: 1px solid var(--alo-border);
  overflow: hidden;
}

.alo-footer-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.alo-footer-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.alo-footer-cta-text {
  flex: 1;
  min-width: 300px;
}

.alo-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--alo-border-light);
  color: var(--alo-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: var(--alo-radius-full);
  margin-bottom: 16px;
}

.alo-footer-cta-text h2 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--alo-white), var(--alo-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.alo-footer-cta-text p {
  color: var(--alo-text-muted);
  font-size: 16px;
}

.alo-footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.alo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--alo-radius-full);
  transition: var(--alo-transition);
  white-space: nowrap;
}

.alo-btn svg {
  width: 20px;
  height: 20px;
}

.alo-btn-gold {
  background: linear-gradient(135deg, var(--alo-gold), var(--alo-gold-dark));
  color: var(--alo-bg);
  box-shadow: var(--alo-shadow-gold);
}

.alo-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(212, 175, 55, 0.5);
}

.alo-btn-outline {
  background: transparent;
  color: var(--alo-gold);
  border: 2px solid var(--alo-gold);
}

.alo-btn-outline:hover {
  background: var(--alo-gold);
  color: var(--alo-bg);
  transform: translateY(-3px);
}

.alo-footer-main {
  padding: 70px 0 40px;
}

.alo-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1fr;
  gap: 50px;
}

.alo-footer-col h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--alo-gold);
  position: relative;
  padding-bottom: 12px;
}

.alo-footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--alo-gold), transparent);
}

.alo-footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.alo-footer-desc {
  color: var(--alo-text-muted);
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
}

.alo-social {
  display: flex;
  gap: 10px;
}

.alo-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--alo-bg-3);
  color: var(--alo-gold);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius);
  transition: var(--alo-transition);
}

.alo-social a:hover {
  background: var(--alo-gold);
  color: var(--alo-bg);
  transform: translateY(-3px);
  box-shadow: var(--alo-shadow-gold);
}

.alo-social svg {
  width: 20px;
  height: 20px;
}

.alo-footer-links li {
  margin-bottom: 12px;
}

.alo-footer-links a {
  color: var(--alo-text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--alo-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.alo-footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--alo-gold-dark);
  border-radius: 50%;
  transition: var(--alo-transition);
}

.alo-footer-links a:hover {
  color: var(--alo-gold);
  padding-right: 8px;
}

.alo-footer-links a:hover::before {
  background: var(--alo-gold);
  box-shadow: 0 0 8px var(--alo-gold);
}

.alo-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.alo-contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--alo-border);
  color: var(--alo-gold);
  border-radius: var(--alo-radius);
}

.alo-contact-icon svg {
  width: 20px;
  height: 20px;
}

.alo-footer-contact li > div:last-child {
  flex: 1;
}

.alo-footer-contact span {
  display: block;
  font-size: 12px;
  color: var(--alo-text-dim);
  margin-bottom: 4px;
}

.alo-footer-contact a,
.alo-footer-contact p {
  color: var(--alo-text);
  font-size: 14px;
  font-weight: 700;
  transition: var(--alo-transition);
}

.alo-footer-contact a:hover {
  color: var(--alo-gold);
}

.alo-footer-trust-text {
  color: var(--alo-text-muted);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.alo-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alo-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--alo-bg-3);
  border: 1px solid var(--alo-border);
  border-radius: var(--alo-radius);
  color: var(--alo-text);
  font-size: 13px;
  font-weight: 700;
  transition: var(--alo-transition);
}

.alo-trust-badge:hover {
  border-color: var(--alo-border-strong);
}

.alo-trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--alo-gold);
  flex-shrink: 0;
}

.alo-footer-bottom {
  background: #051A13;
  border-top: 1px solid var(--alo-border);
  padding: 20px 0;
}

.alo-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.alo-footer-bottom p {
  color: var(--alo-text-muted);
  font-size: 13px;
  margin: 0;
}

.alo-footer-bottom span {
  color: var(--alo-gold);
  font-weight: 800;
}

.alo-footer-credit {
  color: var(--alo-text-dim) !important;
}

.alo-heart {
  color: #E74C3C !important;
  animation: aloHeartbeat 1.5s ease-in-out infinite;
}

@keyframes aloHeartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .alo-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .alo-nav {
    display: none;
  }
  
  .alo-hamburger {
    display: flex;
  }
  
  .alo-header-cta {
    display: none;
  }
  
  .alo-logo-title {
    font-size: 18px;
  }
  
  .alo-logo-sub {
    font-size: 9px;
    letter-spacing: 2px;
  }
  
  .alo-logo-svg-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 768px) {
  .alo-container {
    padding: 0 16px;
  }
  
  .alo-topbar {
    padding: 8px 0;
  }
  
  .alo-topbar-item {
    font-size: 12px;
  }
  
  .alo-topbar-item svg {
    width: 14px;
    height: 14px;
  }
  
  .alo-topbar-content {
    gap: 14px;
  }
  
  .alo-header-inner {
    padding: 12px 0;
  }
  
  .alo-floating {
    bottom: 16px;
    right: 16px;
    gap: 12px;
  }
  
  .alo-float {
    width: 50px;
    height: 50px;
  }
  
  .alo-float svg {
    width: 22px;
    height: 22px;
  }
  
  .alo-float-tooltip {
    display: none;
  }
  
  .alo-footer-cta-text h2 {
    font-size: 24px;
  }
  
  .alo-footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .alo-footer-cta-actions {
    justify-content: center;
  }
  
  .alo-footer-main {
    padding: 50px 0 30px;
  }
  
  .alo-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .alo-footer-col {
    text-align: center;
  }
  
  .alo-footer-col h3::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .alo-footer-logo {
    justify-content: center;
  }
  
  .alo-social {
    justify-content: center;
  }
  
  .alo-footer-contact li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .alo-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .alo-topbar-divider {
    display: none;
  }
  
  .alo-topbar-content {
    gap: 10px;
  }
  
  .alo-topbar-item {
    font-size: 11px;
  }
  
  .alo-footer-cta-actions .alo-btn {
    width: 100%;
    justify-content: center;
  }
}