

/* Self-hosted fonts (Inter + Rubik for multi-language support) */

/* Inter font (English / LTR languages) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Inter-SemiBold.woff2') format('woff2');
}

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

/* Rubik font (Hebrew / RTL languages) */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Rubik-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Rubik-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Rubik-SemiBold.woff2') format('woff2');
}

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


/* Self-hosted fonts (Inter + Rubik for multi-language support) */

/* Inter font (English / LTR languages) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Inter-SemiBold.woff2') format('woff2');
}

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

/* Rubik font (Hebrew / RTL languages) */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Rubik-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Rubik-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/Rubik-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/Rubik-Bold.woff2') format('woff2');
}
:root {
  --primary: #FF7A00;
  --secondary: #00E5FF;
  --accent: #FFD166;
  --bg-light: #F4EFE8;
  --bg-dark: #121212;
  --text-dark: #171717;
  --text-light: #F5F2EC;
  --text-muted: #9C958B;
  --border-light: #DDD5C8;
  --border-dark: #2B2B2B;
  --nav-bg: transparent;
  --nav-text: #F5F2EC;
  --nav-text-hover: #00E5FF;

  --radius-sm: 4px;
  --radius-card: 6px;
  --radius-btn: 4px;
  --radius-img: 6px;
  --radius-badge: 4px;
  --radius-input: 4px;

  --shadow-subtle: 0 10px 30px rgba(0,0,0,0.22);
  --shadow-card: 0 18px 40px rgba(0,0,0,0.36);
  --shadow-elevated: 0 28px 70px rgba(0,0,0,0.52);
  --shadow-btn-hover: 0 0 28px rgba(255,106,0,0.42);

  --spacing-section: 96px;
  --spacing-section-mobile: 56px;
  --spacing-card-padding: 32px;
  --spacing-card-gap: 24px;
  --spacing-element-gap: 16px;

  --transition-default: all 0.25s ease;
  --transition-hover: all 0.2s ease;

  --gradient-primary: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  --gradient-secondary: linear-gradient(180deg, #28f0ff 0%, #0aa8d8 100%);
  --gradient-gold-shine: linear-gradient(180deg, #fff4c9 0%, #ffd36b 48%, #c7861f 100%);
  --gradient-gold-accent: linear-gradient(90deg, #ffe29a 0%, #ffb338 50%, #ff7a00 100%);
  --gradient-dark-section: linear-gradient(180deg, #06080b 0%, #0c1117 100%);
  --gradient-light-section: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-overlay-dark: linear-gradient(90deg, rgba(5,7,10,0.92) 0%, rgba(5,7,10,0.78) 40%, rgba(5,7,10,0.18) 72%, rgba(5,7,10,0.04) 100%);
  --gradient-overlay-light: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px !important;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  direction: rtl;
}

body {
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-family: 'Rubik', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
  color: inherit;
  font-weight: 700;
}

h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  font-family: 'Rubik', sans-serif;
}

h2 {
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  font-family: 'Rubik', sans-serif;
}

h3 {
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
  font-family: 'Rubik', sans-serif;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  font-family: 'Rubik', sans-serif;
}

h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  font-family: 'Rubik', sans-serif;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  font-family: 'Rubik', sans-serif;
}

p {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  margin-bottom: 1rem !important;
  font-family: 'Rubik', sans-serif;
}

small,
.small-text {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  font-family: 'Rubik', sans-serif;
}

span,
div,
li,
td,
th,
label,
figcaption,
blockquote,
cite,
address {
  font-family: 'Rubik', sans-serif;
}

a {
  color: var(--accent, var(--primary));
  text-decoration: none;
  transition: var(--transition-hover);
}

a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: inherit;
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 36px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  p {
    font-size: 15px !important;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 28px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

  h2 {
    font-size: 22px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

  h3 {
    font-size: 18px !important;
    margin-bottom: 1rem !important;
    margin-top: 0.5rem !important;
  }

  p {
    font-size: 14px !important;
  }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  padding: 14px 32px;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition-hover);
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.btn:hover {
  box-shadow: var(--shadow-btn-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-primary, var(--primary));
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff8c1a 0%, #ff6200 100%);
  color: #ffffff;
  box-shadow: var(--shadow-btn-hover);
}

.btn-secondary {
  background: var(--gradient-secondary, var(--secondary));
  color: var(--bg-dark);
  border: none;
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #45f3ff 0%, #1bbfe8 100%);
  color: var(--bg-dark);
  box-shadow: 0 0 28px rgba(0,229,255,0.42);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-btn-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--border-dark);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-btn-hover);
}

.section {
  padding-top: var(--spacing-section);
  padding-bottom: var(--spacing-section);
}

.section-dark {
  background: var(--gradient-dark-section);
  color: var(--text-light);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.card {
  border-radius: var(--radius-card);
  padding: var(--spacing-card-padding);
  box-shadow: var(--shadow-card);
  transition: var(--transition-default);
}

.card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-badge);
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.badge-primary {
  background: var(--primary);
  color: #ffffff;
}

.badge-secondary {
  background: var(--secondary);
  color: var(--bg-dark);
}

.badge-accent {
  background: var(--accent);
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select {
  border-radius: var(--radius-input);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  transition: var(--transition-default);
  outline: none;
  width: 100%;
  background: #ffffff;
  color: var(--text-dark);
  direction: rtl;
  text-align: right;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.15);
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-dark { color: var(--text-dark); }

.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }
.bg-accent { background-color: var(--accent); }
.bg-dark { background-color: var(--bg-dark); }
.bg-light { background-color: var(--bg-light); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--spacing-element-gap); }
.gap-card { gap: var(--spacing-card-gap); }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-card-gap); }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--spacing-card-gap); }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--spacing-card-gap); }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-card { border-radius: var(--radius-card); }
.rounded-img { border-radius: var(--radius-img); }
.rounded-full { border-radius: 9999px; }

.shadow-subtle { box-shadow: var(--shadow-subtle); }
.shadow-card { box-shadow: var(--shadow-card); }
.shadow-elevated { box-shadow: var(--shadow-elevated); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: white;
  text-decoration: none;
}

@media (min-width: 769px) {
  .whatsapp-float {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding-top: var(--spacing-section-mobile);
    padding-bottom: var(--spacing-section-mobile);
  }

  .container {
    padding: 0 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .card {
    padding: 20px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (min-width: 1025px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0 40px;
  }
}

/* Navbar Styles */
:root {
  --nav-bg: transparent;
  --nav-text: #F5F2EC;
  --nav-text-hover: #00E5FF;
  --primary: #FF7A00;
  --secondary: #00E5FF;
  --accent: #FFD166;
  --bg-light: #F4EFE8;
  --bg-dark: #121212;
  --text-dark: #171717;
  --text-light: #F5F2EC;
  --text-muted: #9C958B;
  --border-light: #DDD5C8;
  --border-dark: #2B2B2B;
}

.navbar {
  background: var(--nav-bg);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid rgba(255, 122, 0, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-sizing: border-box;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  width: 100%;
  box-sizing: border-box;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  max-height: 40px;
  height: auto;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  flex-direction: row-reverse;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  position: relative;
  transition: all 0.2s ease;
  font-family: 'Rubik', sans-serif;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--nav-text-hover);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.2s ease;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.nav-link:hover {
  color: var(--nav-text-hover);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: 'Rubik', sans-serif;
  line-height: 1;
  box-shadow: 0 0 0 rgba(255,106,0,0);
}

.nav-cta-btn:hover {
  background: #ff9124;
  color: #ffffff;
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.42);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  padding: 8px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.phone-header-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  padding: 8px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(18, 18, 18, 0.97);
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
  }

  .mobile-toggle {
    display: flex;
  }

  .phone-header-btn {
    display: flex;
  }

  .nav-container {
    padding: 0 64px;
    height: 64px;
    justify-content: center;
  }

  .nav-brand {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: rgba(18, 18, 18, 0.98);
    border-top: 1px solid rgba(255, 122, 0, 0.2);
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
    padding: 16px 0;
    gap: 0;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta-container {
    display: none;
  }
}

:root {
  --nav-bg: transparent;
  --nav-text: #F5F2EC;
  --nav-text-hover: #00E5FF;
  --primary: #FF7A00;
  --secondary: #00E5FF;
  --accent: #FFD166;
  --bg-light: #F4EFE8;
  --bg-dark: #121212;
  --text-dark: #171717;
  --text-light: #F5F2EC;
  --text-muted: #9C958B;
  --border-light: #DDD5C8;
  --border-dark: #2B2B2B;
}

.navbar {
  background: var(--nav-bg);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid rgba(255, 122, 0, 0.15);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-sizing: border-box;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  width: 100%;
  box-sizing: border-box;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  max-height: 40px;
  height: auto;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  flex-direction: row-reverse;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  color: var(--nav-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  position: relative;
  transition: all 0.2s ease;
  font-family: 'Rubik', sans-serif;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 16px;
  left: 16px;
  height: 2px;
  background: var(--nav-text-hover);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.2s ease;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.nav-link:hover {
  color: var(--nav-text-hover);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: 'Rubik', sans-serif;
  line-height: 1;
  box-shadow: 0 0 0 rgba(255,106,0,0);
}

.nav-cta-btn:hover {
  background: #ff9124;
  color: #ffffff;
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.42);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  padding: 8px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.phone-header-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--nav-text);
  padding: 8px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(18, 18, 18, 0.97);
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
  }

  .mobile-toggle {
    display: flex;
  }

  .phone-header-btn {
    display: flex;
  }

  .nav-container {
    padding: 0 64px;
    height: 64px;
    justify-content: center;
  }

  .nav-brand {
    justify-content: center;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: rgba(18, 18, 18, 0.98);
    border-top: 1px solid rgba(255, 122, 0, 0.2);
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
    padding: 16px 0;
    gap: 0;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta-container {
    display: none;
  }
}



/* ============================================
   NAVBAR LAYOUT - POST-GENERATION FIXES
   Structural layout only - colors from Claude
   ============================================ */

/* Base navbar styles - structural only, colors from AI */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* Background color is set by Claude's CSS - don't override */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ============================================
   DESKTOP LAYOUT (>768px)
   ============================================ */

/* Nav container - constrains max width and provides padding */
.nav-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
  min-height: 70px;
}

/* Logo styling (desktop) — mobile logo stays at 110px/35px, do not adjust */
.logo {
  max-height: 40px;
  max-width: 160px !important;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo-link:focus {
  outline: none;
}

/* Remove browser default dark focus box on mouse-click; preserve for keyboard (:focus-visible). */
.navbar a:focus:not(:focus-visible),
.navbar button:focus:not(:focus-visible),
.nav-menu a:focus:not(:focus-visible) {
  outline: none;
}
.navbar a:focus-visible,
.navbar button:focus-visible,
.nav-menu a:focus-visible {
  outline: 2px solid var(--primary-color, var(--primary, #FF7A00));
  outline-offset: 2px;
}

/* Nav brand container */
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
}

/* Navigation menu - positioned adjacent to logo */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu > li > a,
.nav-menu > .nav-item > a {
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.65rem;
  white-space: nowrap;
  color: var(--nav-text, var(--text-light)) !important;
}

.nav-menu > li > a:hover,
.nav-menu > .nav-item > a:hover {
  color: var(--nav-text-hover, var(--secondary)) !important;
}

/* CTA Container - pushed to end of navbar */
.nav-cta-container {
  margin-left: auto;
  display: flex;
  align-items: center;
  align-self: center;
  height: auto;
  max-height: none;
  padding-top: 0;
  padding-bottom: 0;
}

.nav-cta-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* CTA button - prevent stretching to fill navbar height.
   AI CSS provides colors/gradients/etc - we only constrain sizing.
   display: inline-flex + max-height: 44px keeps it as a compact pill. */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  align-self: center;
  height: auto;
  max-height: 44px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  white-space: nowrap;
  box-sizing: border-box;
  overflow: hidden;
}

/* ============================================
   LTR DESKTOP LAYOUT (English, Spanish, French)
   ============================================ */
html[dir="ltr"] .nav-container,
html[lang="en"] .nav-container,
html[lang="es"] .nav-container,
html[lang="fr"] .nav-container {
  justify-content: flex-start;
}

html[dir="ltr"] .nav-menu,
html[lang="en"] .nav-menu,
html[lang="es"] .nav-menu,
html[lang="fr"] .nav-menu {
  margin-left: 0;
  margin-right: 0;
}

html[dir="ltr"] .nav-cta-container,
html[lang="en"] .nav-cta-container,
html[lang="es"] .nav-cta-container,
html[lang="fr"] .nav-cta-container {
  margin-left: auto;
  margin-right: 0;
}

/* ============================================
   RTL DESKTOP LAYOUT (Hebrew, Arabic)
   ============================================ */
html[dir="rtl"] .nav-container,
html[lang="he"] .nav-container,
html[lang="ar"] .nav-container {
  flex-direction: row-reverse;
  justify-content: space-between;
}

/* CTA on the left in RTL */
html[dir="rtl"] .nav-cta-container,
html[lang="he"] .nav-cta-container,
html[lang="ar"] .nav-cta-container {
  order: -1;
  margin: 0;
}

/* Wrapper groups menu and logo together on the right */
html[dir="rtl"] .nav-right-group,
html[lang="he"] .nav-right-group,
html[lang="ar"] .nav-right-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  order: 1;
  flex: 1;
  min-width: 0;
  flex-direction: row-reverse;
}

/* Within wrapper: Logo on far right, menu to its left */
html[dir="rtl"] .nav-right-group .nav-brand,
html[lang="he"] .nav-right-group .nav-brand,
html[lang="ar"] .nav-right-group .nav-brand {
  order: 2;
}

html[dir="rtl"] .nav-right-group .nav-menu,
html[lang="he"] .nav-right-group .nav-menu,
html[lang="ar"] .nav-right-group .nav-menu {
  order: 1;
}

/* ============================================
   DROPDOWN MENUS (Desktop)
   ============================================ */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.65rem;
  color: var(--nav-text, var(--text-light)) !important;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.dropdown-toggle:hover {
  color: var(--nav-text-hover, var(--secondary)) !important;
}

.dropdown-arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown {
  overflow: visible !important;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  min-width: 220px;
  background: var(--bg-light, #ffffff);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 100001;
  list-style: none;
  margin: 0;
}

html[dir="rtl"] .dropdown-menu,
html[lang="he"] .dropdown-menu,
html[lang="ar"] .dropdown-menu {
  right: 0;
  left: auto;
}

html[dir="ltr"] .dropdown-menu,
html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .dropdown-menu {
  left: 0;
  right: auto;
}

@media (min-width: 769px) {
  .nav-dropdown:hover > .dropdown-menu {
    display: block;
  }
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 400;
  font-size: 0.9em;
  color: var(--text-dark, #1a1a1a) !important;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(128,128,128,0.1);
  color: var(--nav-text-hover, var(--accent, var(--primary))) !important;
}

/* Desktop: Hide mobile-only elements */
@media (min-width: 769px) {
  .mobile-toggle,
  .phone-header-btn {
    display: none !important;
  }
  
  /* Hide Contact in nav-menu on desktop (it shows in CTA container instead) */
  .nav-menu .mobile-contact-link {
    display: none !important;
  }
  
  /* When .nav-right-group wrapper is absent, the nav-container has 3 direct
     children (brand, menu, CTA) with space-between. flex:1 makes the menu
     fill the gap, and justify-content:flex-start pushes items toward the
     logo side instead of centering them in the available space. */
  .nav-menu {
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

/* ============================================
   MOBILE RESPONSIVE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  /* Reset nav-container for mobile */
  /* CRITICAL: Reset position properties to prevent conflict with AI-generated mobile CSS */
  /* Some AI generations set .nav-container to position:fixed for slide-out menus, */
  /* position:relative is needed so .nav-brand (position:absolute) centers within it */
  .nav-container {
    padding: 0.75rem 1rem;
    gap: 0;
    justify-content: center !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    height: auto !important;
    min-height: 70px !important; /* Ensure height for absolutely positioned mobile buttons */
    width: 100% !important;
  }
  
  /* Show mobile elements - positioned as direct children of navbar */
  .mobile-toggle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px; /* LTR default - hamburger on left */
    right: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    width: 36px !important;
    height: 36px !important;
    color: var(--nav-text, var(--text-light)) !important;
  }
  
  .phone-header-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px; /* LTR default - phone on right */
    left: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
    width: 36px !important;
    height: 36px !important;
    color: var(--nav-text, var(--text-light)) !important;
  }
  
  /* Ensure logo-link is centered */
  .logo-link, .nav-brand a {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }
  
  .mobile-toggle svg,
  .phone-header-btn svg {
    width: 24px !important;
    height: 24px !important;
    color: inherit !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2 !important;
    transition: opacity 0.3s ease;
  }
  
  .mobile-toggle svg path,
  .phone-header-btn svg path {
    stroke: currentColor !important;
  }
  
  .mobile-toggle img,
  .phone-header-btn img {
    width: 24px !important;
    height: 24px !important;
    /* Filter removed - preserve original image colors */
    /* ColorContrastService will handle contrast adjustments */
  }
  
  .mobile-toggle:hover svg,
  .phone-header-btn:hover svg {
    opacity: 0.8;
  }
  
  /* Remove default button styles */
  .mobile-toggle:focus,
  .mobile-toggle:active,
  .phone-header-btn:focus,
  .phone-header-btn:active {
    outline: none;
    border: none;
    box-shadow: none;
  }
  
  /* Center logo on mobile - applies to both LTR and RTL */
  /* RTL selectors added for higher specificity to override desktop RTL rules */
  /* IMPORTANT: Do NOT use margin shorthand (margin: 0 auto) — it resets margin-top
     which breaks AI centering hacks (top:50% + margin-top:-Npx).
     Use explicit left/right + transform for robust vertical centering. */
  .nav-brand,
  html[dir="rtl"] .nav-brand,
  html[lang="he"] .nav-brand,
  html[lang="ar"] .nav-brand,
  html[dir="rtl"] .nav-right-group .nav-brand,
  html[lang="he"] .nav-right-group .nav-brand,
  html[lang="ar"] .nav-right-group .nav-brand {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    text-align: center;
    order: 0 !important;
  }
  
  /* Mobile logo size: fixed at 35px/110px — do not adjust, especially for e-commerce/catalog sites */
  .logo {
    max-height: 35px !important;
    max-width: 110px !important;
  }
  
  /* Hide RTL wrapper on mobile */
  .nav-right-group {
    display: contents !important;
  }
  
  /* Hide CTA container on mobile - Contact will be in hamburger menu */
  .nav-cta-container {
    display: none !important;
  }
  
  /* Mobile menu - hidden by default */
  /* CRITICAL: flex-direction: column must have !important to override any desktop rules */
  .nav-menu {
    position: fixed;
    top: 70px;
    width: 50%;
    max-width: 300px;
    /* Mobile menu is position:fixed so it CANNOT inherit background from navbar.
       When --nav-bg is transparent (hero-overlay navbars), the menu would be invisible.
       Always use a solid background derived from the palette. */
    background-color: var(--bg-dark, #1a1a1a) !important;
    flex-direction: column !important;
    gap: 0;
    padding: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
    margin: 0 !important;
    /* Align menu items to top, not center */
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  
  .nav-menu.active {
    display: flex !important;
    flex-direction: column !important;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  /* Show mobile-contact-link in hamburger menu */
  .nav-menu .mobile-contact-link {
    display: block !important;
  }
  
  /* LTR mobile menu text alignment - left aligned */
  html[dir="ltr"] .nav-menu a,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .nav-menu a {
    text-align: left !important;
  }
  
  .nav-menu a {
    display: block;
    padding: 15px 30px;
    width: 100%;
    font-weight: 500;
  }
  
  /* Mobile dropdown menus */
  .nav-dropdown {
    position: static;
  }
  
  .dropdown-toggle {
    display: flex;
    width: 100%;
    padding: 15px 30px;
    font-weight: 500;
    justify-content: space-between;
  }
  
  .dropdown-menu {
    position: static !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    background: rgba(128,128,128,0.06) !important;
    min-width: auto !important;
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: max-height 0.3s ease !important;
  }
  
  .nav-dropdown .dropdown-menu {
    display: block;
    max-height: 0 !important;
    overflow: hidden !important;
  }
  
  .nav-dropdown.open > .dropdown-menu {
    display: block !important;
    max-height: 60vh !important;
    overflow-y: auto !important;
    padding: 0.5rem 0 !important;
  }
  
  .dropdown-menu li a {
    padding: 12px 30px 12px 50px !important;
    font-size: 0.9em;
  }
  
  html[dir="rtl"] .dropdown-menu li a,
  html[lang="he"] .dropdown-menu li a,
  html[lang="ar"] .dropdown-menu li a {
    padding: 12px 50px 12px 30px !important;
  }

  /* Mobile submenu links: use nav panel text color instead of desktop submenu color.
     Desktop submenu uses light bg + dark text, but mobile submenu is inline (transparent)
     within the nav panel which may be dark. Cannot use 'inherit' because the container
     chain (.sub-menu, li) has dark color — only nav <a> tags get light color explicitly. */
  .navbar .sub-menu li a,
  nav.navbar .sub-menu li a,
  .nav-menu .sub-menu a,
  .zappy-products-dropdown .sub-menu a,
  .sub-menu a {
    color: var(--nav-text, var(--text-light)) !important;
  }
  .mobile-submenu-toggle {
    color: var(--nav-text, var(--text-light)) !important;
  }

  /* Force sub-menu hidden by default on mobile */
  .navbar .zappy-products-dropdown .sub-menu,
  .navbar .zappy-products-dropdown > .sub-menu {
    display: none !important;
    position: static !important;
    max-height: 0 !important;
    overflow: hidden !important;
     !important;
    visibility: hidden !important;
    pointer-events: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    transform: none !important;
  }
  /* Disable hover-triggered dropdowns on mobile — only open via click (.open class) */
  .navbar .zappy-products-dropdown:hover .sub-menu,
  .navbar .zappy-products-dropdown:hover > .sub-menu,
  .navbar .zappy-products-dropdown:focus-within .sub-menu,
  .navbar .zappy-products-dropdown:focus-within > .sub-menu,
  .navbar .menu-item-has-children:hover > .sub-menu,
  .navbar .nav-dropdown:hover > .dropdown-menu {
    display: none !important;
     !important;
    visibility: hidden !important;
    max-height: 0 !important;
    pointer-events: none !important;
  }
  .navbar .zappy-products-dropdown.open .sub-menu,
  .navbar .zappy-products-dropdown.open > .sub-menu,
  .navbar .zappy-products-dropdown .sub-menu.mobile-expanded,
  .navbar .zappy-products-dropdown > .sub-menu.mobile-expanded,
  .navbar .menu-item-has-children.open > .sub-menu,
  .navbar .menu-item-has-children > .sub-menu.mobile-expanded,
  .navbar .nav-dropdown.open > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    max-height: 60vh !important;
    pointer-events: auto !important;
    position: static !important;
    overflow-y: auto !important;
    padding: 0.5rem 0 !important;
  }

  /* Prevent hero image fade gradient from bleeding over headline text below */
  /* The .image-fade-gradient has bottom: -30px which extends below parent; */
  /* on mobile stacked layout this overlaps the h1 text */
  .hero-image-column {
    overflow: hidden !important;
  }
  .image-fade-gradient {
    bottom: 0 !important;
  }
}

/* ============================================
   LTR POSITIONING (English, Spanish, French, etc.)
   For LTR mobile: hamburger on LEFT, phone on RIGHT
   Uses !important to override any inline styles
   ============================================ */
@media (max-width: 768px) {
  html[dir="ltr"] .mobile-toggle,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .mobile-toggle {
    left: 12px !important;
    right: auto !important;
  }
  
  html[dir="ltr"] .phone-header-btn,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .phone-header-btn {
    right: 12px !important;
    left: auto !important;
  }
  
  html[dir="ltr"] .nav-menu,
  html:not([dir="rtl"]):not([lang="he"]):not([lang="ar"]) .nav-menu {
    left: 0 !important;
    right: auto !important;
  }
}

/* ============================================
   RTL POSITIONING (Hebrew, Arabic)
   For RTL mobile: hamburger on RIGHT, phone on LEFT
   (natural mirror of LTR layout)
   Uses !important to override any inline styles
   ============================================ */
@media (max-width: 768px) {
  html[dir="rtl"] .mobile-toggle,
  html[lang="he"] .mobile-toggle,
  html[lang="ar"] .mobile-toggle {
    left: auto !important;
    right: 12px !important;
  }
  
  html[dir="rtl"] .phone-header-btn,
  html[lang="he"] .phone-header-btn,
  html[lang="ar"] .phone-header-btn {
    left: 12px !important;
    right: auto !important;
  }
  
  html[dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    right: 0 !important;
    left: auto !important;
  }
  
  html[dir="rtl"] .nav-menu a,
  html[lang="he"] .nav-menu a,
  html[lang="ar"] .nav-menu a {
    text-align: right !important;
  }
  
  /* Hide desktop language switcher on mobile - hamburger menu handles it */
  /* High specificity to override stored CSS */
  .lang-switcher,
  .nav-cta-container .lang-switcher,
  .nav-container .lang-switcher,
  .navbar .lang-switcher,
  .navbar .nav-cta-container .lang-switcher {
    display: none !important;
  }
}

/* ============================================
   CLONED SITE NAVBAR FIXES
   For sites without nav-right-group wrapper
   ============================================ */

/* Force navbar to be truly full width */
header {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

.navbar {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

nav.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw !important;
  max-width: none !important;
}

/* Constrained nav-container - content limited to 1200px and centered */
.nav-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 2rem !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* RTL layout for cloned sites (without nav-right-group) */
/* Base RTL styles - apply to all screens */
html[dir="rtl"] .nav-container,
html[lang="he"] .nav-container,
html[lang="ar"] .nav-container {
  justify-content: space-between !important;
}

/* Logo stays on right in RTL - DESKTOP ONLY */
/* On mobile, logo should be centered (handled by mobile media query) */
@media (min-width: 769px) {
  html[dir="rtl"] .nav-brand,
  html[dir="rtl"] .logo-link,
  html[lang="he"] .nav-brand,
  html[lang="he"] .logo-link,
  html[lang="ar"] .nav-brand,
  html[lang="ar"] .logo-link {
    order: 2 !important;
    margin-left: 1.5rem !important;
  }
}

/* Base RTL nav-menu styles - display:flex but NOT flex-direction (that's desktop-only) */
html[dir="rtl"] .nav-menu,
html[lang="he"] .nav-menu,
html[lang="ar"] .nav-menu {
  order: 1 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/* CTA button pushed to far left in RTL */
html[dir="rtl"] .cta-button,
html[dir="rtl"] a.cta-button,
html[dir="rtl"] .nav-cta-btn,
html[lang="he"] .cta-button,
html[lang="he"] a.cta-button,
html[lang="he"] .nav-cta-btn,
html[lang="ar"] .cta-button,
html[lang="ar"] a.cta-button,
html[lang="ar"] .nav-cta-btn {
  order: 0 !important;
  margin-right: auto !important;
  margin-left: 0 !important;
}

/* DESKTOP ONLY: Horizontal flex layout for RTL navbar - prevents breaking mobile vertical menu */
@media (min-width: 769px) {
  html[dir="rtl"] .nav-container,
  html[lang="he"] .nav-container,
  html[lang="ar"] .nav-container {
    flex-direction: row-reverse !important;
  }
  
  html[dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 1.5rem !important;
    /* flex:1 ensures menu fills space between brand and CTA so items
       stay adjacent to the logo instead of centering when the
       .nav-right-group wrapper is absent (cloned sites, etc.).
       justify-content: flex-start pushes items toward the logo
       (in RTL, flex-start = right side, adjacent to the brand). */
    flex: 1 !important;
    justify-content: flex-start !important;
  }
}

/* ============================================
   END NAVBAR FIXES
   ============================================ */

/* Post-generation fix: Remove main element margin-top and padding-top */
main { margin-top: 0 !important; padding-top: 0 !important; }


/* Footer Styles */
.site-footer {
  --primary: #FF7A00;
  --secondary: #00E5FF;
  --accent: #FFD166;
  --bg-dark: #121212;
  --bg-footer: #0D0D0D;
  --bg-footer-alt: #161616;
  --text-light: #F5F2EC;
  --text-muted: #9C958B;
  --border-dark: #2B2B2B;
  --radius-sm: 4px;
  --radius-md: 6px;
  --shadow: 0 10px 30px rgba(0,0,0,0.22);
  --transition: all 0.2s ease;

  position: relative;
  background-color: var(--bg-footer);
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  direction: rtl;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 15% 0%, rgba(255,122,0,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 85% 100%, rgba(0,229,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-neon-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary) 30%, var(--secondary) 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(255,122,0,0.6), 0 0 24px rgba(0,229,255,0.3);
}

.footer-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  z-index: 1;
}

/* ── TOP GRID ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

/* ── BRAND COLUMN ── */
.footer-brand .footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand .logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  max-width: 240px;
}

/* ── SOCIAL ICONS ── */
.footer-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-footer-alt);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,122,0,0.35);
}

.footer-social a[aria-label='Instagram']:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
}

.footer-social a[aria-label='WhatsApp']:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

/* ── COLUMN HEADINGS ── */
.footer-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-dark);
}

.heading-accent {
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(255,122,0,0.5);
}

/* ── QUICK LINKS ── */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links li a {
  font-size: 0.9rem;
  color: rgba(245,242,236,0.7);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  padding: 0.1rem 0;
}

.footer-links li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-dark);
  flex-shrink: 0;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--primary);
  padding-right: 4px;
}

.footer-links li a:hover::before {
  background: var(--primary);
  box-shadow: 0 0 6px rgba(255,122,0,0.6);
}

/* ── CONTACT LIST ── */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: rgba(255,122,0,0.1);
  border: 1px solid rgba(255,122,0,0.2);
  color: var(--primary);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-text {
  font-size: 0.875rem;
  color: rgba(245,242,236,0.7);
  line-height: 1.5;
}

.contact-text a {
  color: rgba(245,242,236,0.7);
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.contact-text a:hover {
  color: var(--secondary);
}

/* ── HOURS ── */
.footer-hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(43,43,43,0.7);
}

.footer-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-hours .day {
  color: rgba(245,242,236,0.65);
}

.footer-hours .time {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ── DIVIDER ── */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-dark) 20%, var(--border-dark) 80%, transparent);
  margin: 2.5rem 0 1.5rem;
}

/* ── BOTTOM BAR ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  border-radius: var(--radius-sm);
  padding: 0.1rem 0.2rem;
}

.footer-legal a:hover {
  color: var(--text-light);
}

.legal-sep {
  color: var(--border-dark);
  user-select: none;
}

.zappy-attribution {
  color: var(--text-muted) !important;
  font-size: 0.75rem;
  opacity: 0.7;
  transition: var(--transition);
}

.zappy-attribution:hover {
  color: var(--secondary) !important;
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .footer-inner {
    padding: 3rem 1.25rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer-legal {
    gap: 0.35rem;
  }

  .footer-hours li {
    font-size: 0.82rem;
  }
}

/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }
/* index-hero */
.index-hero-section {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: visible;
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding-bottom: 90px;
  direction: rtl;
}

/* Background Image Layer */
.index-hero-section .index-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.index-hero-section .index-hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
}

/* Scrim Overlay */
.index-hero-section .index-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(to top,
      rgba(5, 7, 10, 0.97) 0%,
      rgba(5, 7, 10, 0.88) 18%,
      rgba(5, 7, 10, 0.72) 36%,
      rgba(5, 7, 10, 0.38) 58%,
      rgba(5, 7, 10, 0.10) 78%,
      rgba(5, 7, 10, 0.04) 100%
    ),
    linear-gradient(to left,
      rgba(5, 7, 10, 0.60) 0%,
      rgba(5, 7, 10, 0.10) 55%,
      transparent 100%
    );
}

/* Content Wrap */
.index-hero-section .index-hero-content-wrap {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

/* Content Block — lower-third, start (right) side */
.index-hero-section .index-hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: right;
}

/* Label */
.index-hero-section .index-hero-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
}

/* H1 */
.index-hero-section .index-hero-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text-light);
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.45),
    0 6px 32px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(255, 106, 0, 0.12);
  margin: 0;
}

/* H3 Subtitle */
.index-hero-section .index-hero-h3 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Body Paragraph */
.index-hero-section .index-hero-body {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #f3e8d3;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
  max-width: 520px;
}

/* CTA Buttons Row */
.index-hero-section .index-hero-ctas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  align-items: center;
}

/* Primary Button */
.index-hero-section .btn-primary.index-hero-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 132, 0, 0.35),
    0 0 18px rgba(255, 94, 0, 0.55),
    inset 0 1px 0 rgba(255, 220, 170, 0.35);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.index-hero-section .btn-primary.index-hero-btn:hover {
  box-shadow:
    0 0 0 1px rgba(255, 132, 0, 0.5),
    0 0 28px rgba(255, 106, 0, 0.7),
    inset 0 1px 0 rgba(255, 220, 170, 0.45);
  transform: translateY(-2px);
}

/* Secondary Button */
.index-hero-section .btn-secondary.index-hero-btn {
  display: inline-block;
  background: linear-gradient(180deg, rgba(36, 239, 255, 0.18) 0%, rgba(10, 168, 216, 0.18) 100%);
  color: #8ff5ff;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #37eaff;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(31, 231, 255, 0.2),
    0 0 20px rgba(31, 231, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
  cursor: pointer;
}

.index-hero-section .btn-secondary.index-hero-btn:hover {
  box-shadow:
    0 0 0 1px rgba(31, 231, 255, 0.4),
    0 0 34px rgba(31, 231, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #d4fbff;
}

/* Bottom Divider */
.index-hero-section .index-hero-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.index-hero-section .index-hero-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── MOBILE STYLES ────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .index-hero-section {
    min-height: 100svh;
    padding-bottom: 70px;
    align-items: flex-end;
  }

  .index-hero-section .index-hero-bg img {
    object-position: 60% 25%;
  }

  .index-hero-section .index-hero-scrim {
    background-image:
      linear-gradient(to top,
        rgba(5, 7, 10, 0.98) 0%,
        rgba(5, 7, 10, 0.92) 22%,
        rgba(5, 7, 10, 0.75) 45%,
        rgba(5, 7, 10, 0.30) 68%,
        rgba(5, 7, 10, 0.08) 100%
      );
  }

  .index-hero-section .index-hero-content-wrap {
    padding: 0 16px 40px;
  }

  .index-hero-section .index-hero-content {
    max-width: 100%;
    gap: 12px;
  }

  .index-hero-section .index-hero-h1 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
    line-height: 1.0;
  }

  .index-hero-section .index-hero-h3 {
    font-size: 1.15rem;
  }

  .index-hero-section .index-hero-body {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .index-hero-section .index-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .index-hero-section .btn-primary.index-hero-btn,
  .index-hero-section .btn-secondary.index-hero-btn {
    text-align: center;
    width: 100%;
    padding: 14px 20px;
  }

  .index-hero-section .index-hero-divider-wrapper {
    height: 60px;
  }

  .index-hero-section {
    padding-bottom: 60px;
  }
}

/* ── DESKTOP STYLES ───────────────────────────────────────────────── */
@media (min-width: 768px) {
  .index-hero-section .index-hero-content-wrap {
    padding: 0 48px 72px;
  }

  .index-hero-section .index-hero-content {
    gap: 18px;
  }
}

@media (min-width: 1280px) {
  .index-hero-section .index-hero-content-wrap {
    padding: 0 64px 80px;
  }
}

/* index-showcase */
.index-showcase-section {
  background-color: var(--bg-light);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(244,239,232,1) 100%);
  color: var(--text-dark);
  padding: 96px 0 90px;
  position: relative;
  overflow: visible;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

/* ── Container ── */
.index-showcase-section .showcase-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
  direction: rtl;
}

/* ── Intro Block ── */
.index-showcase-section .showcase-intro {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: right;
}

.index-showcase-section .showcase-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  border-inline-start: 3px solid var(--primary);
  padding-inline-start: 10px;
  line-height: 1.2;
}

.index-showcase-section .showcase-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
}

.index-showcase-section .showcase-desc {
  color: var(--text-dark);
  line-height: 1.75;
  margin: 0;
  opacity: 0.82;
  max-width: 300px;
}

.index-showcase-section .showcase-cta {
  display: inline-block;
  margin-top: 8px;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.index-showcase-section .showcase-cta:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.62), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
}

/* ── Cards Layout ── */
.index-showcase-section .showcase-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  direction: rtl;
}

/* Hero Card */
.index-showcase-section .showcase-card--hero {
  grid-column: 1;
  grid-row: 1 / span 3;
}

/* Small Cards Column */
.index-showcase-section .showcase-small-cards {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 48px;
}

/* ── Card Base ── */
.index-showcase-section .showcase-card {
  background: rgba(255,255,255,0.72);
  border-radius: 6px;
  border: 1px solid var(--border-light);
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.index-showcase-section .showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

/* ── Card Image Wrap ── */
.index-showcase-section .showcase-card-img-wrap {
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  line-height: 0;
}

.index-showcase-section .showcase-card--hero .showcase-card-img-wrap {
  height: 480px;
}

.index-showcase-section .showcase-card--small .showcase-card-img-wrap {
  height: 180px;
}

.index-showcase-section .showcase-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  transition: transform 0.3s ease;
  box-shadow: none;
}

.index-showcase-section .showcase-card:hover .showcase-card-img-wrap img {
  transform: scale(1.04);
}

/* ── Card Label ── */
.index-showcase-section .showcase-card-label {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
  background: rgba(255,255,255,0.72);
}

.index-showcase-section .showcase-card--hero .showcase-card-label {
  padding: 24px 28px 28px;
}

.index-showcase-section .card-tag {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,122,0,0.1);
  border: 1px solid rgba(255,122,0,0.25);
  border-radius: 4px;
  padding: 3px 10px;
  align-self: flex-end;
  line-height: 1.4;
}

.index-showcase-section .card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.01em;
}

.index-showcase-section .showcase-card--hero .card-title {
  font-size: 1.75rem;
}

.index-showcase-section .card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Orange accent stroke on hero card top */
.index-showcase-section .showcase-card--hero::before {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  z-index: 2;
}

/* ── Bottom Divider ── */
.index-showcase-section .showcase-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.index-showcase-section .showcase-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE — Tablet ── */
@media (max-width: 1100px) {
  .index-showcase-section .showcase-container {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

  .index-showcase-section .showcase-card--hero .showcase-card-img-wrap {
    height: 380px;
  }
}

/* ── RESPONSIVE — Mobile ── */
@media (max-width: 768px) {
  .index-showcase-section {
    padding: 56px 0 90px;
  }

  .index-showcase-section .showcase-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px;
  }

  .index-showcase-section .showcase-intro {
    position: static;
    gap: 16px;
  }

  .index-showcase-section .showcase-heading {
    font-size: 2.2rem;
  }

  .index-showcase-section .showcase-desc {
    max-width: 100%;
  }

  .index-showcase-section .showcase-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .index-showcase-section .showcase-card--hero {
    grid-column: 1;
    grid-row: auto;
  }

  .index-showcase-section .showcase-small-cards {
    grid-column: 1;
    padding-top: 0;
    gap: 20px;
  }

  .index-showcase-section .showcase-card--hero .showcase-card-img-wrap {
    height: 260px;
  }

  .index-showcase-section .showcase-card--small .showcase-card-img-wrap {
    height: 160px;
  }

  .index-showcase-section .showcase-card--hero .card-title {
    font-size: 1.375rem;
  }
}

/* index-benefits */
.index-benefits-section {
  position: relative;
  overflow: visible;
  background-color: #06080b;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,106,0,0.13) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(31,231,255,0.07) 0%, transparent 35%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 96px 24px 110px;
  direction: rtl;
}

/* Noise texture overlay */
.index-benefits-section .index-benefits-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Main container */
.index-benefits-section .index-benefits-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* Intro block */
.index-benefits-section .index-benefits-intro {
  max-width: 700px;
  margin-inline-start: 0;
  margin-bottom: 52px;
  text-align: right;
}

.index-benefits-section .index-benefits-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  text-shadow: 0 0 14px rgba(31,231,255,0.55);
  margin-bottom: 14px;
}

.index-benefits-section .index-benefits-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff2dc;
  text-shadow: 0 2px 0 rgba(0,0,0,0.32);
  margin: 0 0 20px 0;
}

.index-benefits-section .index-benefits-heading em {
  font-style: normal;
  color: var(--primary);
  text-shadow: 0 0 28px rgba(255,106,0,0.5);
}

.index-benefits-section .index-benefits-subtext {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #f3e8d3;
  margin: 0 0 32px 0;
  max-width: 560px;
}

/* CTA Button */
.index-benefits-section .index-benefits-cta {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.index-benefits-section .index-benefits-cta:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.62), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
}

/* Panoramic grill image strip */
.index-benefits-section .index-benefits-image-strip {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.index-benefits-section .index-benefits-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: 6px;
  transition: transform 0.6s ease;
}

.index-benefits-section .index-benefits-image-strip:hover img {
  transform: scale(1.03);
}

.index-benefits-section .index-benefits-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,8,11,0.45) 0%,
    rgba(6,8,11,0.1) 40%,
    rgba(6,8,11,0.55) 100%
  );
  pointer-events: none;
}

/* Three value pillars grid */
.index-benefits-section .index-benefits-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
}

/* Individual pillar */
.index-benefits-section .index-benefits-pillar {
  background: linear-gradient(180deg, rgba(10,14,19,0.92) 0%, rgba(7,10,14,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.index-benefits-section .index-benefits-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

.index-benefits-section .index-benefits-pillar--featured {
  border-color: rgba(255,122,0,0.28);
  box-shadow: 0 18px 40px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,122,0,0.15), inset 0 0 30px rgba(255,106,0,0.04);
}

.index-benefits-section .index-benefits-pillar--featured:hover {
  box-shadow: 0 28px 70px rgba(0,0,0,0.52), 0 0 28px rgba(255,106,0,0.22);
}

.index-benefits-section .index-benefits-pillar-inner {
  padding: 32px;
  position: relative;
  text-align: right;
}

/* Large numeral */
.index-benefits-section .index-benefits-numeral {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  margin-bottom: -16px;
  user-select: none;
}

/* Accent line */
.index-benefits-section .index-benefits-pillar-accent {
  width: 36px;
  height: 2px;
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(31,231,255,0.6);
  margin-bottom: 20px;
  margin-inline-start: auto;
}

.index-benefits-section .index-benefits-pillar-accent--orange {
  background: var(--primary);
  box-shadow: 0 0 10px rgba(255,106,0,0.6);
}

/* Pillar icon */
.index-benefits-section .index-benefits-pillar-icon {
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  justify-content: flex-end;
}

.index-benefits-section .index-benefits-pillar--featured .index-benefits-pillar-icon {
  color: var(--primary);
}

/* Pillar title */
.index-benefits-section .index-benefits-pillar-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff2dc;
  margin: 0 0 12px 0;
}

/* Pillar paragraph */
.index-benefits-section .index-benefits-pillar-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #c8bfaf;
  margin: 0;
}

/* Bottom arc divider */
.index-benefits-section .index-benefits-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.index-benefits-section .index-benefits-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */

@media (max-width: 1024px) {
  .index-benefits-section .index-benefits-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .index-benefits-section .index-benefits-pillar:last-child {
    grid-column: span 2;
    max-width: 560px;
    margin-inline-start: auto;
    margin-inline-end: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .index-benefits-section {
    padding: 56px 16px 100px;
  }

  .index-benefits-section .index-benefits-intro {
    margin-bottom: 36px;
  }

  .index-benefits-section .index-benefits-heading {
    font-size: 2.2rem;
  }

  .index-benefits-section .index-benefits-subtext {
    max-width: 100%;
  }

  .index-benefits-section .index-benefits-image-strip {
    height: 200px;
    margin-bottom: 32px;
  }

  .index-benefits-section .index-benefits-pillars {
    grid-template-columns: 1fr !important;
  }

  .index-benefits-section .index-benefits-pillar:last-child {
    grid-column: span 1 !important;
    max-width: 100%;
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  .index-benefits-section .index-benefits-pillar-inner {
    padding: 24px 20px;
  }

  .index-benefits-section .index-benefits-numeral {
    font-size: 3rem;
  }

  .index-benefits-section .index-benefits-divider-wrapper {
    height: 60px;
  }

  .index-benefits-section {
    padding-bottom: 70px;
  }
}

/* index-gallery */
.index-gallery-section {
  position: relative;
  overflow: visible;
  background-color: var(--bg-light);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  color: var(--text-dark);
  padding: 96px 0 130px;
  direction: rtl;
}

/* Container */
.index-gallery-section .index-gallery-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Intro Block ─────────────────────────────────── */
.index-gallery-section .index-gallery-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.index-gallery-section .index-gallery-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  max-width: none !important;
}

.index-gallery-section .index-gallery-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  max-width: none !important;
}

/* ── Mosaic Layout ───────────────────────────────── */
.index-gallery-section .index-gallery-mosaic {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Dominant top tile */
.index-gallery-section .index-gallery-tile--dominant {
  width: 100%;
}

.index-gallery-section .index-gallery-tile--dominant .index-gallery-figure img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-img, 6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  display: block;
  transition: transform 0.25s ease;
}

.index-gallery-section .index-gallery-tile--dominant .index-gallery-figure img:hover {
  transform: scale(1.02);
}

/* Bottom row */
.index-gallery-section .index-gallery-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  direction: rtl;
}

/* Start pair (right side in RTL) */
.index-gallery-section .index-gallery-start-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.index-gallery-section .index-gallery-tile--medium .index-gallery-figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-img, 6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  display: block;
  transition: transform 0.25s ease;
}

.index-gallery-section .index-gallery-tile--medium .index-gallery-figure img:hover {
  transform: scale(1.03);
}

/* End stack (left side in RTL) */
.index-gallery-section .index-gallery-end-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.index-gallery-section .index-gallery-tile--small .index-gallery-figure img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: var(--radius-img, 6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  display: block;
  transition: transform 0.25s ease;
}

.index-gallery-section .index-gallery-tile--small .index-gallery-figure img:hover {
  transform: scale(1.03);
}

/* Figure reset */
.index-gallery-section .index-gallery-figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-img, 6px);
  display: block;
}

/* ── Bottom Divider ──────────────────────────────── */
.index-gallery-section .index-gallery-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.index-gallery-section .index-gallery-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Gold highlight line sits just above the diagonal edge */
.index-gallery-section .index-gallery-gold-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 6;
  background: linear-gradient(
    to top right,
    transparent 0%,
    transparent calc(50% - 1.5px),
    var(--accent) calc(50% - 1.5px),
    var(--accent) calc(50% + 0.5px),
    transparent calc(50% + 0.5px),
    transparent 100%
  );
  opacity: 0.55;
}

/* ── Responsive: Tablet ──────────────────────────── */
@media (max-width: 1024px) {
  .index-gallery-section .index-gallery-container {
    padding: 0 24px;
  }

  .index-gallery-section .index-gallery-tile--dominant .index-gallery-figure img {
    height: 360px;
  }

  .index-gallery-section .index-gallery-tile--medium .index-gallery-figure img {
    height: 280px;
  }

  .index-gallery-section .index-gallery-tile--small .index-gallery-figure img {
    height: 128px;
  }
}

/* ── Responsive: Mobile ──────────────────────────── */
@media (max-width: 768px) {
  .index-gallery-section {
    padding: 56px 0 110px;
  }

  .index-gallery-section .index-gallery-container {
    padding: 0 16px;
  }

  .index-gallery-section .index-gallery-intro {
    margin-bottom: 32px;
  }

  .index-gallery-section .index-gallery-title {
    font-size: 1.6rem;
  }

  .index-gallery-section .index-gallery-mosaic {
    gap: 14px;
  }

  /* Dominant tile */
  .index-gallery-section .index-gallery-tile--dominant .index-gallery-figure img {
    height: 240px;
  }

  /* Bottom row: stack vertically */
  .index-gallery-section .index-gallery-bottom-row {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* Start pair: stack vertically */
  .index-gallery-section .index-gallery-start-pair {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .index-gallery-section .index-gallery-tile--medium .index-gallery-figure img {
    height: 220px;
  }

  .index-gallery-section .index-gallery-tile--small .index-gallery-figure img {
    height: 180px;
  }

  .index-gallery-section .index-gallery-end-stack {
    gap: 14px;
  }
}

/* index-cta */
.index-cta-section {
  position: relative;
  overflow: hidden;
  background-color: #060a0e;
  background-image:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(255, 106, 0, 0.22) 0%, transparent 70%),
    linear-gradient(180deg, #060a0e 0%, #0b1016 100%);
  color: var(--text-light);
  padding: var(--spacing-section, 96px) 24px;
  text-align: center;
  direction: rtl;
}

/* Background ambient image */
.index-cta-section .index-cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.index-cta-section .index-cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0.22;
  border-radius: 0;
  filter: saturate(0.7) brightness(0.6);
}

/* Dark scrim overlay for readability */
.index-cta-section .index-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 55% at 50% 110%, rgba(255, 94, 0, 0.28) 0%, transparent 65%),
    linear-gradient(180deg, rgba(6,10,14,0.82) 0%, rgba(6,10,14,0.72) 50%, rgba(6,10,14,0.90) 100%);
}

/* Noise / smoke texture */
.index-cta-section .index-cta-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  background-repeat: repeat;
}

/* Content container */
.index-cta-section .index-cta-container {
  position: relative;
  z-index: 10;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* Badge */
.index-cta-section .index-cta-badge {
  display: inline-block;
  background: rgba(255, 122, 0, 0.15);
  border: 1px solid rgba(255, 122, 0, 0.45);
  color: var(--accent);
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(255, 106, 0, 0.25);
}

/* Heading */
.index-cta-section .index-cta-heading {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}

/* Accent underline on heading */
.index-cta-section .index-cta-heading::after {
  content: '';
  display: block;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 14px auto 0;
  box-shadow: 0 0 12px rgba(255, 106, 0, 0.55);
}

/* Body paragraph */
.index-cta-section .index-cta-body {
  color: var(--text-muted);
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

/* Buttons row */
.index-cta-section .index-cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

/* Shared button base */
.index-cta-section .index-cta-btn {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 34px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

/* Primary button */
.index-cta-section .btn-primary.index-cta-btn {
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  border: 2px solid #ff9b3d;
  box-shadow:
    0 0 0 1px rgba(255, 132, 0, 0.35),
    0 0 18px rgba(255, 94, 0, 0.55),
    inset 0 1px 0 rgba(255, 220, 170, 0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
}

.index-cta-section .btn-primary.index-cta-btn:hover {
  box-shadow:
    0 0 0 1px rgba(255, 132, 0, 0.5),
    0 0 28px rgba(255, 106, 0, 0.72),
    inset 0 1px 0 rgba(255, 220, 170, 0.35);
  transform: translateY(-2px);
}

/* Secondary button */
.index-cta-section .btn-secondary.index-cta-btn {
  background: linear-gradient(180deg, rgba(36, 239, 255, 0.18) 0%, rgba(10, 168, 216, 0.18) 100%);
  color: #8ff5ff;
  border: 2px solid #37eaff;
  box-shadow:
    0 0 0 1px rgba(31, 231, 255, 0.2),
    0 0 20px rgba(31, 231, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.index-cta-section .btn-secondary.index-cta-btn:hover {
  box-shadow:
    0 0 0 1px rgba(31, 231, 255, 0.4),
    0 0 30px rgba(31, 231, 255, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  color: #c8faff;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .index-cta-section {
    padding: var(--spacing-section-mobile, 56px) 16px;
  }

  .index-cta-section .index-cta-container {
    gap: 20px;
  }

  .index-cta-section .index-cta-heading {
    font-size: 2.25rem;
  }

  .index-cta-section .index-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .index-cta-section .index-cta-btn {
    width: 100%;
    text-align: center;
    padding: 15px 24px;
  }

  .index-cta-section .index-cta-body {
    font-size: 1rem;
  }
}

/* menu-intro */
.menu-intro-section {
  position: relative;
  overflow: visible;
  background-color: #06080b;
  background-image:
    radial-gradient(circle at 15% 60%, rgba(255,106,0,0.13) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(31,231,255,0.07) 0%, transparent 35%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 120px 0 72px;
  direction: rtl;
}

.menu-intro-section .menu-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  min-height: 420px;
}

/* ── Content Side (RIGHT in RTL) ── */
.menu-intro-section .menu-intro-content {
  flex: 1 1 0;
  padding-inline-end: 56px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 10;
}

.menu-intro-section .menu-intro-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.menu-intro-section .menu-intro-label-line {
  display: block;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  flex-shrink: 0;
}

.menu-intro-section .menu-intro-label-text {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
}

.menu-intro-section .menu-intro-heading {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-light);
  text-shadow: 0 2px 0 rgba(0,0,0,0.32);
  margin: 0;
  text-align: right;
}

.menu-intro-section .menu-intro-heading-accent {
  color: var(--primary);
  display: block;
  text-shadow: 0 0 28px rgba(255,106,0,0.42), 0 2px 0 rgba(0,0,0,0.32);
}

.menu-intro-section .menu-intro-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.82;
  max-width: 520px;
  margin: 0;
  text-align: right;
}

.menu-intro-section .menu-intro-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.menu-intro-section .menu-intro-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.menu-intro-section .menu-intro-btn:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.62), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
  color: #fff3df;
  text-decoration: none;
}

/* ── Image Strip (LEFT in RTL) ── */
.menu-intro-section .menu-intro-image-strip {
  flex: 0 0 320px;
  width: 320px;
  position: relative;
  display: flex;
  align-items: stretch;
  align-self: stretch;
}

.menu-intro-section .menu-intro-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.menu-intro-section .menu-intro-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.25s ease;
}

.menu-intro-section .menu-intro-image-frame:hover img {
  transform: scale(1.03);
}

.menu-intro-section .menu-intro-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,8,11,0.72) 0%,
    rgba(6,8,11,0.18) 40%,
    transparent 100%
  );
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}

.menu-intro-section .menu-intro-image-badge {
  position: absolute;
  bottom: 24px;
  inset-inline-end: -16px;
  background: linear-gradient(135deg, #ff7a00 0%, #ff2d00 100%);
  border-radius: 4px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 0 28px rgba(255,106,0,0.42), 0 8px 20px rgba(0,0,0,0.4);
  z-index: 20;
  min-width: 72px;
}

.menu-intro-section .menu-intro-badge-num {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff3df;
  line-height: 1;
  letter-spacing: -0.02em;
}

.menu-intro-section .menu-intro-badge-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,243,223,0.88);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
}

/* ── Bottom Divider ── */
.menu-intro-section .menu-intro-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.menu-intro-section .menu-intro-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .menu-intro-section {
    padding: 100px 0 72px;
  }

  .menu-intro-section .menu-intro-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
    min-height: unset;
  }

  .menu-intro-section .menu-intro-content {
    padding-inline-end: 0;
    width: 100%;
    align-items: flex-start;
    gap: 16px;
  }

  .menu-intro-section .menu-intro-heading {
    font-size: 2.6rem;
  }

  .menu-intro-section .menu-intro-desc {
    max-width: 100%;
  }

  .menu-intro-section .menu-intro-image-strip {
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    align-self: center;
  }

  .menu-intro-section .menu-intro-image-frame {
    min-height: 280px;
  }

  .menu-intro-section .menu-intro-image-frame img {
    min-height: 280px;
  }

  .menu-intro-section .menu-intro-image-badge {
    inset-inline-end: 12px;
    bottom: 16px;
  }

  .menu-intro-section .menu-intro-btn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* menu-menu-categories */
.menu-menu-categories-section {
  position: relative;
  overflow: visible;
  background-color: var(--bg-light);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  color: var(--text-dark);
  padding: 96px 24px 112px;
  direction: rtl;
}

.menu-menu-categories-section .menu-categories-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* HEADER */
.menu-menu-categories-section .menu-categories-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.menu-menu-categories-section .menu-categories-title {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  text-transform: uppercase;
}

.menu-menu-categories-section .menu-categories-title span {
  color: var(--primary);
}

.menu-menu-categories-section .menu-categories-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  max-width: none !important;
  margin: 0;
}

/* GRID */
.menu-menu-categories-section .menu-categories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  direction: rtl;
  margin-bottom: 56px;
}

/* PANEL */
.menu-menu-categories-section .menu-category-panel {
  background: rgba(255,255,255,0.72);
  border-radius: 6px;
  border: 1px solid var(--border-light);
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.menu-menu-categories-section .menu-category-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

/* IMAGE */
.menu-menu-categories-section .menu-category-image-wrap {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 3/2;
  border-radius: 6px 6px 0 0;
}

.menu-menu-categories-section .menu-category-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  display: block;
  transition: transform 0.25s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.menu-menu-categories-section .menu-category-panel:hover .menu-category-image-wrap img {
  transform: scale(1.03);
}

.menu-menu-categories-section .menu-category-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

/* CONTENT */
.menu-menu-categories-section .menu-category-content {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  text-align: right;
}

.menu-menu-categories-section .menu-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00 0%, #ff2d00 100%);
  color: #fff3df;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
  margin-inline-start: auto;
  margin-inline-end: 0;
}

.menu-menu-categories-section .menu-category-name {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
}

.menu-menu-categories-section .menu-category-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

/* CTA */
.menu-menu-categories-section .menu-categories-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.menu-menu-categories-section .menu-categories-cta-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  max-width: none !important;
  margin: 0;
}

.menu-menu-categories-section .menu-categories-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.menu-menu-categories-section .menu-categories-btn:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.42), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
  color: #fff3df;
  text-decoration: none;
}

/* DIVIDER */
.menu-menu-categories-section .menu-categories-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 5;
}

.menu-menu-categories-section .menu-categories-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .menu-menu-categories-section {
    padding: 56px 16px 100px;
  }

  .menu-menu-categories-section .menu-categories-header {
    margin-bottom: 36px;
  }

  .menu-menu-categories-section .menu-categories-title {
    font-size: 2.2rem;
  }

  .menu-menu-categories-section .menu-categories-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 40px;
  }

  .menu-menu-categories-section .menu-category-content {
    padding: 20px 20px 24px;
  }

  .menu-menu-categories-section .menu-category-badge {
    font-size: 0.7rem;
  }

  .menu-menu-categories-section .menu-category-name {
    font-size: 1.2rem;
  }

  .menu-menu-categories-section .menu-categories-cta {
    gap: 16px;
  }

  .menu-menu-categories-section .menu-categories-btn {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 14px 20px;
  }
}

/* menu-specialties */
.menu-specialties-section {
  position: relative;
  overflow: visible;
  background-color: #05070a;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,106,0,0.18) 0%, rgba(255,106,0,0) 40%),
    radial-gradient(circle at 78% 60%, rgba(0,229,255,0.10) 0%, rgba(0,229,255,0) 35%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 96px 24px 130px;
  direction: rtl;
}

/* Texture overlay */
.menu-specialties-section .mss-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.menu-specialties-section .mss-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── MAIN GRID ── */
.menu-specialties-section .mss-main-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  direction: rtl;
}

/* ── CONTENT COLUMN ── */
.menu-specialties-section .mss-content-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-specialties-section .mss-label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid rgba(0,229,255,0.35);
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(0,229,255,0.06);
  width: fit-content;
  text-shadow: 0 0 12px rgba(0,229,255,0.5);
}

.menu-specialties-section .mss-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-light);
  text-shadow: 0 2px 0 rgba(0,0,0,0.32);
  margin: 0;
  text-align: right;
}

.menu-specialties-section .mss-heading-accent {
  color: var(--primary);
  text-shadow: 0 0 28px rgba(255,106,0,0.55), 0 2px 0 rgba(0,0,0,0.32);
}

.menu-specialties-section .mss-body-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #f3e8d3;
  margin: 0;
  text-align: right;
  max-width: 560px;
}

.menu-specialties-section .mss-body-text strong {
  color: var(--accent);
  font-weight: 800;
}

/* ── HIGHLIGHT BLOCKS ── */
.menu-specialties-section .mss-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-specialties-section .mss-highlight-block {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: flex-start;
  background: linear-gradient(180deg, rgba(10,14,19,0.92) 0%, rgba(7,10,14,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-inline-start: 2px solid var(--primary);
  border-radius: 6px;
  padding: 20px 20px 20px 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  direction: rtl;
}

.menu-specialties-section .mss-highlight-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

.menu-specialties-section .mss-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(255,122,0,0.12);
  border: 1px solid rgba(255,122,0,0.25);
  color: var(--primary);
  flex-shrink: 0;
}

.menu-specialties-section .mss-highlight-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-specialties-section .mss-highlight-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-light);
  margin: 0;
  text-align: right;
}

.menu-specialties-section .mss-highlight-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

/* ── CTA ── */
.menu-specialties-section .mss-cta-wrap {
  padding-top: 8px;
}

.menu-specialties-section .mss-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.menu-specialties-section .mss-cta-btn:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.7), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
}

/* ── IMAGE COLUMN ── */
.menu-specialties-section .mss-image-col {
  position: relative;
}

.menu-specialties-section .mss-image-frame {
  position: relative;
  display: inline-block;
  width: 100%;
}

.menu-specialties-section .mss-image-glow {
  position: absolute;
  inset: -30px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,106,0,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(0,229,255,0.15) 0%, transparent 55%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(20px);
}

.menu-specialties-section .mss-main-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  display: block;
  transition: transform 0.25s ease;
}

.menu-specialties-section .mss-image-frame:hover .mss-main-image {
  transform: scale(1.03);
}

.menu-specialties-section .mss-image-badge {
  position: absolute;
  bottom: 28px;
  inset-inline-end: -20px;
  z-index: 3;
  background: linear-gradient(135deg, #ff7a00 0%, #ff2d00 100%);
  border: 2px solid rgba(255,200,100,0.4);
  border-radius: 6px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 0 28px rgba(255,106,0,0.5), 0 10px 30px rgba(0,0,0,0.4);
  text-align: center;
}

.menu-specialties-section .mss-badge-num {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff3df;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255,220,100,0.6);
}

.menu-specialties-section .mss-badge-text {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff3df;
  line-height: 1.3;
  letter-spacing: 0.5px;
  text-align: center;
}

/* ── BOTTOM DIVIDER ── */
.menu-specialties-section .mss-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.menu-specialties-section .mss-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .menu-specialties-section .mss-main-grid {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }

  .menu-specialties-section .mss-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .menu-specialties-section {
    padding: 56px 16px 110px;
  }

  .menu-specialties-section .mss-main-grid {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }

  .menu-specialties-section .mss-image-col {
    
  }

  .menu-specialties-section .mss-image-badge {
    inset-inline-end: 12px;
    bottom: 16px;
  }

  .menu-specialties-section .mss-heading {
    font-size: 2.5rem;
  }

  .menu-specialties-section .mss-body-text {
    max-width: 100%;
  }

  .menu-specialties-section .mss-main-image {
    aspect-ratio: 4/3;
  }

  .menu-specialties-section .mss-highlight-block {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 16px;
  }
}
/* ZAPPY_POSTGEN_GUARD_RTL_ORDER:מנות מומלצות-specialties — stripped 1 order declaration(s) conflicting with RTL grid */


/* menu-ingredients */
.menu-ingredients-section {
  position: relative;
  overflow: visible;
  background-color: var(--bg-light);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(244,239,232,1) 100%);
  color: var(--text-dark);
  padding: 96px 24px 120px;
  direction: rtl;
}

.menu-ingredients-section .menu-ingredients-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.menu-ingredients-section .menu-ingredients-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.menu-ingredients-section .menu-ingredients-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(255,122,0,0.08);
  border: 1px solid rgba(255,122,0,0.22);
  border-radius: 4px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.menu-ingredients-section .menu-ingredients-title {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-dark);
  margin: 0 0 24px;
  text-align: center;
}

.menu-ingredients-section .menu-ingredients-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  max-width: none !important;
}

/* ── GRID ── */
.menu-ingredients-section .menu-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  direction: rtl;
  margin-bottom: 64px;
}

/* ── CARD ── */
.menu-ingredients-section .menu-ingredient-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-ingredients-section .menu-ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.18);
}

/* ── FIGURE / IMAGE ── */
.menu-ingredients-section .menu-ingredient-figure {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
}

.menu-ingredients-section .menu-ingredient-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px 6px 0 0;
  transition: transform 0.3s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.menu-ingredients-section .menu-ingredient-card:hover .menu-ingredient-figure img {
  transform: scale(1.04);
}

/* ── CARD CONTENT ── */
.menu-ingredients-section .menu-ingredient-content {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.menu-ingredients-section .menu-ingredient-icon-line {
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 2px;
  flex-shrink: 0;
}

.menu-ingredients-section .menu-ingredient-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
}

.menu-ingredients-section .menu-ingredient-content p {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

/* ── CTA ── */
.menu-ingredients-section .menu-ingredients-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.menu-ingredients-section .menu-ingredients-cta-note {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  max-width: none !important;
}

.menu-ingredients-section .menu-ingredients-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.menu-ingredients-section .menu-ingredients-btn:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.62), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
}

/* ── BOTTOM DIVIDER ── */
.menu-ingredients-section .menu-ingredients-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.menu-ingredients-section .menu-ingredients-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .menu-ingredients-section .menu-ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .menu-ingredients-section .menu-ingredients-title {
    font-size: 2.75rem;
  }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
  .menu-ingredients-section {
    padding: 56px 16px 100px;
  }

  .menu-ingredients-section .menu-ingredients-header {
    margin-bottom: 40px;
  }

  .menu-ingredients-section .menu-ingredients-title {
    font-size: 2.25rem;
  }

  .menu-ingredients-section .menu-ingredients-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    margin-bottom: 40px;
  }

  .menu-ingredients-section .menu-ingredient-content {
    padding: 20px 20px 24px;
  }

  .menu-ingredients-section .menu-ingredients-divider-wrapper {
    height: 60px;
  }
}

/* menu-cta */
.menu-cta-section {
  position: relative;
  background-color: #05070a;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255, 106, 0, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(31, 231, 255, 0.07) 0%, transparent 38%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 96px 24px;
  overflow: hidden;
  direction: rtl;
}

.menu-cta-section .menu-cta-glow-left {
  position: absolute;
  inset-inline-start: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.menu-cta-section .menu-cta-glow-right {
  position: absolute;
  inset-inline-end: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.menu-cta-section .menu-cta-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.menu-cta-section .menu-cta-badge {
  display: inline-block;
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.45);
  color: var(--accent);
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  line-height: 1.6;
}

.menu-cta-section .menu-cta-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0;
  text-align: center;
  max-width: none !important;
}

.menu-cta-section .menu-cta-body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  max-width: 560px;
  max-width: none !important;
}

.menu-cta-section .menu-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255, 132, 0, 0.35), 0 0 18px rgba(255, 94, 0, 0.55), inset 0 1px 0 rgba(255, 220, 170, 0.35);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
  margin-top: 8px;
}

.menu-cta-section .menu-cta-btn:hover {
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.42), 0 0 0 1px rgba(255, 132, 0, 0.5), inset 0 1px 0 rgba(255, 220, 170, 0.35);
  transform: translateY(-2px);
}

.menu-cta-section .menu-cta-btn-icon {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.menu-cta-section .menu-cta-btn:hover .menu-cta-btn-icon {
  transform: translateX(-4px);
}

@media (min-width: 768px) {
  .menu-cta-section {
    padding: 96px 40px;
  }

  .menu-cta-section .menu-cta-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-cta-section {
    padding: 56px 20px;
  }

  .menu-cta-section .menu-cta-glow-left,
  .menu-cta-section .menu-cta-glow-right {
    display: none;
  }

  .menu-cta-section .menu-cta-heading {
    font-size: 1.75rem;
  }

  .menu-cta-section .menu-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* about-intro */
.about-intro-section {
  position: relative;
  overflow: visible;
  background-color: #06080b;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(255,106,0,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(31,231,255,0.07) 0%, transparent 40%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 140px 24px 110px;
  direction: rtl;
}

.about-intro-section .about-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}

/* ── Content (right/start side) ── */
.about-intro-section .about-intro-content {
  flex: 0 0 44%;
  max-width: 44%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.about-intro-section .about-intro-eyebrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.about-intro-section .about-intro-eyebrow-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-intro-section .about-intro-eyebrow-text {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
}

.about-intro-section .about-intro-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-light);
  text-shadow: 0 2px 0 rgba(0,0,0,0.32);
  margin: 0;
  text-align: right;
}

.about-intro-section .about-intro-accent {
  color: var(--primary);
  -webkit-text-fill-color: var(--primary);
  text-shadow: 0 0 34px rgba(255,106,0,0.45);
}

.about-intro-section .about-intro-body {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
  color: #f3e8d3;
  text-align: right;
  margin: 0;
  max-width: 480px;
}

.about-intro-section .about-intro-cta {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.about-intro-section .about-intro-cta:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.62), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
}

/* ── Figure (left/end side) ── */
.about-intro-section .about-intro-figure {
  flex: 1 1 auto;
  position: relative;
  z-index: 5;
  margin: 0;
}

.about-intro-section .about-intro-img-glow {
  position: absolute;
  inset-inline-end: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,106,0,0.22) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(32px);
}

.about-intro-section .about-intro-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-intro-section .about-intro-figure:hover .about-intro-img {
  transform: scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,0.65);
}

.about-intro-section .about-intro-badge {
  position: absolute;
  bottom: -20px;
  inset-inline-start: -20px;
  z-index: 10;
  background: linear-gradient(180deg, rgba(10,14,19,0.96) 0%, rgba(7,10,14,0.99) 100%);
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 0 28px rgba(255,106,0,0.35), 0 18px 40px rgba(0,0,0,0.42);
  min-width: 90px;
}

.about-intro-section .about-intro-badge-num {
  font-family: 'Rubik', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 18px rgba(255,106,0,0.5);
}

.about-intro-section .about-intro-badge-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Bottom Divider ── */
.about-intro-section .about-intro-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.about-intro-section .about-intro-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-intro-section .about-intro-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-intro-section .about-intro-content {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .about-intro-section .about-intro-body {
    max-width: 100%;
  }

  .about-intro-section .about-intro-badge {
    bottom: -16px;
    inset-inline-start: 12px;
  }
}

@media (max-width: 768px) {
  .about-intro-section {
    padding: 100px 16px 110px;
  }

  .about-intro-section .about-intro-inner {
    gap: 32px;
  }

  .about-intro-section .about-intro-h1 {
    font-size: 2.6rem;
  }

  .about-intro-section .about-intro-badge {
    position: static;
    align-self: flex-start;
    margin-top: 12px;
    flex-direction: row;
    gap: 8px;
    min-width: unset;
  }

  .about-intro-section .about-intro-figure {
    width: 100%;
  }

  .about-intro-section .about-intro-img-glow {
    display: none;
  }

  .about-intro-section .about-intro-divider-wrapper {
    height: 60px;
  }
}

/* about-story */
.about-story-section {
  position: relative;
  overflow: visible;
  background-color: var(--bg-light);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(244,239,232,1) 100%);
  color: var(--text-dark);
  padding: 120px 24px 100px;
  direction: rtl;
}

.about-story-section .about-story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  direction: rtl;
}

/* ── Content Column ── */
.about-story-section .about-story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-story-section .about-story-eyebrow {
  display: flex;
  justify-content: flex-start;
}

.about-story-section .about-story-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, #ff4d00 100%);
  color: #fff3df;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(255,94,0,0.35);
}

.about-story-section .about-story-h2 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
}

.about-story-section .about-story-h2 span.accent {
  color: var(--primary);
}

.about-story-section .about-story-h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
  text-align: right;
  border-inline-start: 3px solid var(--primary);
  padding-inline-start: 14px;
}

.about-story-section .about-story-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
}

.about-story-section p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

/* ── Values List ── */
.about-story-section .about-story-values {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  padding: 24px;
  background: rgba(255,255,255,0.72);
  border-radius: 6px;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-story-section .about-story-value-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  direction: rtl;
}

.about-story-section .about-story-value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, #ff4d00 100%);
  border-radius: 4px;
  color: #fff3df;
  font-size: 1.1rem;
  box-shadow: 0 0 14px rgba(255,94,0,0.3);
  flex-shrink: 0;
}

.about-story-section .about-story-value-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.about-story-section .about-story-value-text strong {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.about-story-section .about-story-value-text small {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Image Column ── */
.about-story-section .about-story-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.about-story-section .about-story-image-top {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-story-section .about-story-image-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

.about-story-section .about-story-image-top img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.25s ease;
}

.about-story-section .about-story-image-top:hover img {
  transform: scale(1.03);
}

.about-story-section .about-story-image-badge {
  position: absolute;
  bottom: 16px;
  inset-inline-end: 16px;
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.about-story-section .about-story-badge-number {
  font-family: 'Rubik', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 0 18px rgba(255,94,0,0.5);
}

.about-story-section .about-story-badge-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.about-story-section .about-story-image-bottom {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-story-section .about-story-image-bottom:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

.about-story-section .about-story-image-bottom img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.25s ease;
}

.about-story-section .about-story-image-bottom:hover img {
  transform: scale(1.03);
}

/* ── Bottom Charred Divider ── */
.about-story-section .about-story-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.about-story-section .about-story-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-story-section .about-story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-section .about-story-images {
    order: -1;
  }

  .about-story-section .about-story-image-top img {
    height: 260px;
  }

  .about-story-section .about-story-image-bottom img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .about-story-section {
    padding: 100px 16px 90px;
  }

  .about-story-section .about-story-container {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }

  .about-story-section .about-story-h2 {
    font-size: 2.2rem;
  }

  .about-story-section .about-story-image-top img {
    height: 220px;
  }

  .about-story-section .about-story-image-bottom img {
    height: 150px;
  }

  .about-story-section .about-story-values {
    padding: 16px;
  }

  .about-story-section .about-story-image-badge {
    padding: 8px 12px;
  }

  .about-story-section .about-story-badge-number {
    font-size: 1.3rem;
  }
}

/* about-process */
.about-process-section {
  position: relative;
  overflow: visible;
  background-color: #06080b;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,106,0,0.13) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(31,231,255,0.08) 0%, transparent 35%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 96px 24px 130px;
  direction: rtl;
}

/* Grain texture overlay */
.about-process-section .about-process-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.6;
}

/* Container */
.about-process-section .about-process-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section header */
.about-process-section .about-process-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 64px;
}

.about-process-section .about-process-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid rgba(255,122,0,0.4);
  border-radius: 4px;
  padding: 4px 14px;
  margin-bottom: 18px;
  text-shadow: 0 0 12px rgba(255,106,0,0.45);
}

.about-process-section .about-process-title {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff2dc;
  text-shadow: 0 2px 0 rgba(0,0,0,0.32);
  margin: 0 0 20px;
  text-align: center;
}

.about-process-section .about-process-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #f3e8d3;
  text-align: center;
  margin: 0;
}

/* Steps grid */
.about-process-section .about-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
}

/* Card */
.about-process-section .about-process-card {
  position: relative;
  background: linear-gradient(180deg, rgba(10,14,19,0.92) 0%, rgba(7,10,14,0.98) 100%);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.42);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-process-section .about-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

/* Step number */
.about-process-section .about-process-step-num {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  z-index: 10;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--primary);
  background: rgba(6,8,11,0.82);
  border: 1px solid rgba(255,122,0,0.35);
  border-radius: 4px;
  padding: 4px 10px;
  text-shadow: 0 0 10px rgba(255,106,0,0.5);
}

/* Image wrapper */
.about-process-section .about-process-img-wrap {
  margin: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}

.about-process-section .about-process-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,8,11,0.88) 100%);
  pointer-events: none;
  z-index: 2;
}

.about-process-section .about-process-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.25s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  background-color: #1a1a1a;
}

.about-process-section .about-process-card:hover .about-process-img-wrap img {
  transform: scale(1.03);
}

/* Card body */
.about-process-section .about-process-card-body {
  padding: 24px 28px 28px;
  position: relative;
  z-index: 3;
}

.about-process-section .about-process-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.2;
  color: #fff2dc;
  margin: 0 0 12px;
  text-align: right;
  letter-spacing: -0.01em;
}

.about-process-section .about-process-card-title::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  margin-bottom: 10px;
  margin-inline-start: auto;
}

.about-process-section .about-process-card-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #c8bfb0;
  margin: 0;
  text-align: right;
}

/* CTA area */
.about-process-section .about-process-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.about-process-section .about-process-cta {
  display: inline-block;
  background: linear-gradient(180deg, rgba(36,239,255,0.18) 0%, rgba(10,168,216,0.18) 100%);
  color: #8ff5ff;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #37eaff;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(31,231,255,0.2), 0 0 20px rgba(31,231,255,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif;
  transition: all 0.25s ease;
}

.about-process-section .about-process-cta:hover {
  box-shadow: 0 0 0 1px rgba(31,231,255,0.4), 0 0 34px rgba(31,231,255,0.65), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Bottom wave divider */
.about-process-section .about-process-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.about-process-section .about-process-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-process-section .about-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-process-section .about-process-steps .about-process-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-process-section {
    padding: 56px 16px 110px;
  }
  .about-process-section .about-process-title {
    font-size: 2.25rem;
  }
  .about-process-section .about-process-header {
    margin-bottom: 40px;
  }
  .about-process-section .about-process-steps {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .about-process-section .about-process-steps .about-process-card:last-child {
    grid-column: auto;
    max-width: 100%;
    margin-inline: 0;
  }
  .about-process-section .about-process-card-body {
    padding: 20px 20px 24px;
  }
  .about-process-section .about-process-cta-wrap {
    margin-top: 40px;
  }
  .about-process-section .about-process-cta {
    font-size: 1rem;
    padding: 12px 24px;
    letter-spacing: 1px;
  }
  .about-process-section .about-process-divider-wrapper {
    height: 60px;
  }
}

/* about-atmosphere */
.about-atmosphere-section {
  background-color: var(--bg-light);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%);
  color: var(--text-dark);
  position: relative;
  overflow: visible;
  padding-bottom: 90px;
  direction: rtl;
}

/* ── Image Band ── */
.about-atmosphere-section .atm-image-band {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.about-atmosphere-section .atm-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.6s ease;
}

.about-atmosphere-section .atm-image-band:hover img {
  transform: scale(1.03);
}

.about-atmosphere-section .atm-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(244,239,232,0) 0%,
    rgba(244,239,232,0.18) 60%,
    rgba(244,239,232,0.72) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── Content Wrapper ── */
.about-atmosphere-section .atm-content-wrapper {
  padding: 56px 24px 0;
  position: relative;
  z-index: 1;
}

.about-atmosphere-section .atm-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  direction: rtl;
}

/* ── Main Block (START / right) ── */
.about-atmosphere-section .atm-main-block {
  text-align: right;
}

.about-atmosphere-section .atm-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.about-atmosphere-section .atm-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin: 0 0 24px;
  text-align: right;
}

.about-atmosphere-section .atm-body {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: right;
  margin: 0 0 28px;
  max-width: 520px;
}

.about-atmosphere-section .atm-body strong {
  color: var(--primary);
  font-weight: 800;
}

.about-atmosphere-section .atm-accent-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-inline-start: auto;
  margin-inline-end: 0;
}

/* ── Support Block (END / left) ── */
.about-atmosphere-section .atm-support-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: right;
}

.about-atmosphere-section .atm-support-image-wrap {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
}

.about-atmosphere-section .atm-support-image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 6px;
  transition: transform 0.25s ease;
}

.about-atmosphere-section .atm-support-image-wrap:hover img {
  transform: scale(1.03);
}

.about-atmosphere-section .atm-support-text {
  text-align: right;
}

.about-atmosphere-section .atm-sub-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 12px;
  text-align: right;
}

.about-atmosphere-section .atm-support-text p {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text-dark);
  text-align: right;
  margin: 0 0 22px;
}

/* ── CTA Button ── */
.about-atmosphere-section .atm-cta {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 32px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.about-atmosphere-section .atm-cta:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.62), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
}

/* ── Bottom Diagonal Divider ── */
.about-atmosphere-section .atm-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  pointer-events: none;
  z-index: 5;
}

.about-atmosphere-section .atm-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE: Tablet ── */
@media (max-width: 900px) {
  .about-atmosphere-section .atm-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-atmosphere-section .atm-heading {
    font-size: 2.6rem;
  }

  .about-atmosphere-section .atm-body {
    max-width: 100%;
  }

  .about-atmosphere-section .atm-image-band {
    height: 300px;
  }
}

/* ── RESPONSIVE: Mobile ── */
@media (max-width: 768px) {
  .about-atmosphere-section {
    padding-bottom: 80px;
  }

  .about-atmosphere-section .atm-image-band {
    height: 220px;
  }

  .about-atmosphere-section .atm-content-wrapper {
    padding: 36px 16px 0;
  }

  .about-atmosphere-section .atm-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-atmosphere-section .atm-heading {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .about-atmosphere-section .atm-support-image-wrap img {
    height: 200px;
  }

  .about-atmosphere-section .atm-support-block {
    gap: 20px;
  }

  .about-atmosphere-section .atm-divider-wrapper {
    height: 60px;
  }

  .about-atmosphere-section {
    padding-bottom: 60px;
  }
}

/* about-invite */
.about-invite-section {
  position: relative;
  background-color: #06080b;
  background-image:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(255, 106, 0, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 96px 24px;
  overflow: hidden;
  direction: rtl;
}

.about-invite-section .about-invite-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.about-invite-section .about-invite-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(255, 106, 0, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(18px);
}

.about-invite-section .about-invite-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  opacity: 0.9;
}

.about-invite-section .about-invite-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text-light);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.32);
  margin: 0 0 24px 0;
  text-align: center;
  max-width: none !important;
}

.about-invite-section .about-invite-highlight {
  background: linear-gradient(90deg, #ff7a00 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-invite-section .about-invite-body {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: #f3e8d3;
  max-width: 560px;
  margin: 0 auto 36px auto;
  text-align: center;
  max-width: none !important;
}

.about-invite-section .about-invite-cta {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255, 132, 0, 0.35), 0 0 18px rgba(255, 94, 0, 0.55), inset 0 1px 0 rgba(255, 220, 170, 0.35);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.about-invite-section .about-invite-cta:hover {
  box-shadow: 0 0 28px rgba(255, 106, 0, 0.42), 0 0 0 1px rgba(255, 132, 0, 0.5), inset 0 1px 0 rgba(255, 220, 170, 0.35);
  transform: translateY(-2px);
  color: #fff3df;
}

.about-invite-section .about-invite-divider-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.5), transparent);
  margin: 48px auto 0 auto;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .about-invite-section {
    padding: 56px 20px;
  }

  .about-invite-section .about-invite-heading {
    font-size: 2.4rem;
  }

  .about-invite-section .about-invite-glow {
    width: 320px;
    height: 160px;
  }

  .about-invite-section .about-invite-body {
    font-size: 1rem;
    padding: 0;
  }

  .about-invite-section .about-invite-cta {
    font-size: 1rem;
    padding: 13px 26px;
  }
}

/* contact-intro */
.contact-intro-section {
  position: relative;
  overflow: visible;
  background-color: #06080b;
  background-image:
    radial-gradient(circle at 15% 60%, rgba(255,106,0,0.13) 0%, transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(31,231,255,0.07) 0%, transparent 35%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 140px 0 72px;
  direction: rtl;
}

.contact-intro-section .contact-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.contact-intro-section .contact-intro-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.contact-intro-section .contact-intro-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: 0 0 18px rgba(255,106,0,0.55);
  margin-bottom: 4px;
}

.contact-intro-section .contact-intro-heading {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text-light);
  text-shadow: 0 2px 0 rgba(0,0,0,0.32);
  margin: 0;
}

.contact-intro-section .contact-intro-heading em {
  font-style: normal;
  color: var(--primary);
  text-shadow: 0 0 28px rgba(255,106,0,0.45);
}

.contact-intro-section .contact-intro-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.85;
  max-width: 560px;
  margin: 0;
  text-align: right;
}

/* Image band */
.contact-intro-section .contact-intro-image-band {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

.contact-intro-section .contact-intro-image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: 6px;
  transition: transform 0.25s ease;
}

.contact-intro-section .contact-intro-image-band:hover img {
  transform: scale(1.03);
}

.contact-intro-section .contact-intro-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,8,11,0.18) 0%,
    rgba(6,8,11,0.0) 40%,
    rgba(6,8,11,0.62) 100%
  );
  border-radius: 6px;
  pointer-events: none;
  z-index: 1;
}

/* Accent line on the right edge of image */
.contact-intro-section .contact-intro-image-band::after {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Bottom divider */
.contact-intro-section .contact-intro-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 72px;
  pointer-events: none;
  z-index: 5;
}

.contact-intro-section .contact-intro-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Decorative ember dot */
.contact-intro-section .contact-intro-content::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255,106,0,0.6);
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-intro-section {
    padding: 100px 0 72px;
  }

  .contact-intro-section .contact-intro-inner {
    padding: 0 16px;
    gap: 32px;
  }

  .contact-intro-section .contact-intro-heading {
    font-size: 2.6rem;
  }

  .contact-intro-section .contact-intro-image-band {
    height: 180px;
  }

  .contact-intro-section .contact-intro-text {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-intro-section .contact-intro-image-band {
    height: 320px;
  }
}

/* contact-contact-details */
.contact-contact-details-section {
  position: relative;
  overflow: visible;
  background-color: var(--bg-light);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(244,239,232,1) 100%);
  color: var(--text-dark);
  padding: 96px 24px 120px;
  direction: rtl;
}

.contact-contact-details-section .contact-details-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Intro Block ── */
.contact-contact-details-section .contact-details-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.contact-contact-details-section .contact-details-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-dark);
  margin: 0 0 16px;
  text-align: center;
}

.contact-contact-details-section .accent-dot {
  color: var(--primary);
}

.contact-contact-details-section .contact-details-subtext {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
  margin: 0;
  max-width: none !important;
}

/* ── Cards Grid ── */
.contact-contact-details-section .contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  direction: rtl;
  margin-bottom: 48px;
}

/* ── Individual Card ── */
.contact-contact-details-section .contact-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
}

.contact-contact-details-section .contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.16);
}

.contact-contact-details-section .contact-card-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,122,0,0.12) 0%, rgba(255,77,0,0.06) 100%);
  border: 1px solid rgba(255,122,0,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-contact-details-section .contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-contact-details-section .contact-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
  text-align: start;
}

.contact-contact-details-section .contact-card-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  text-align: start;
}

.contact-contact-details-section .contact-card-address {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: normal;
  text-align: start;
  border-inline-start: 3px solid var(--primary);
  padding-inline-start: 12px;
}

.contact-contact-details-section .contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.contact-contact-details-section .contact-map-link:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

/* ── Hours List ── */
.contact-contact-details-section .contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-contact-details-section .hours-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
  gap: 8px;
}

.contact-contact-details-section .hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-contact-details-section .hours-day {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: start;
}

.contact-contact-details-section .hours-time {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-align: end;
  white-space: nowrap;
}

.contact-contact-details-section .contact-card-note {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  text-align: start;
}

/* ── Contact Info List ── */
.contact-contact-details-section .contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-contact-details-section .contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.contact-contact-details-section .contact-info-icon {
  color: var(--primary);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact-contact-details-section .contact-info-link {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.25s ease;
  text-align: start;
}

.contact-contact-details-section .contact-info-link:hover {
  color: var(--primary);
}

/* ── CTA Button ── */
.contact-contact-details-section .contact-details-cta {
  text-align: center;
  margin-top: 8px;
}

.contact-contact-details-section .contact-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  transition: all 0.25s ease;
}

.contact-contact-details-section .contact-cta-btn:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.62), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
}

/* ── Bottom Divider ── */
.contact-contact-details-section .contact-details-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 88px;
  pointer-events: none;
  z-index: 5;
}

.contact-contact-details-section .contact-details-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
  .contact-contact-details-section .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-contact-details-section .contact-details-heading {
    font-size: 2.8rem;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
  .contact-contact-details-section {
    padding: 56px 16px 100px;
  }

  .contact-contact-details-section .contact-details-intro {
    margin-bottom: 36px;
  }

  .contact-contact-details-section .contact-details-heading {
    font-size: 2.2rem;
  }

  .contact-contact-details-section .contact-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .contact-contact-details-section .contact-card {
    padding: 24px;
    min-width: 0;
  }

  .contact-contact-details-section .contact-details-divider-wrapper {
    height: 60px;
  }
}

/* contact-form */
.contact-form-section {
  position: relative;
  overflow: visible;
  background-color: #06080b;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,106,0,0.10) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(31,231,255,0.07) 0%, transparent 35%),
    linear-gradient(180deg, #06080b 0%, #0b1016 100%);
  color: var(--text-light);
  padding: 96px 24px 110px;
  direction: rtl;
}

.contact-form-section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  direction: rtl;
}

/* ── Form Column ── */
.contact-form-section__form-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-section__form-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form-section__eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  text-align: start;
}

.contact-form-section__heading {
  font-family: 'Rubik', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-light);
  text-shadow: 0 2px 0 rgba(0,0,0,0.32);
  margin: 0;
  text-align: start;
}

.contact-form-section__subtext {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
  text-align: start;
}

/* ── Form ── */
.contact-form-section__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-section__field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-section__label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  text-align: start;
}

.contact-form-section__input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  padding: 14px 16px;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  outline: none;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
  text-align: start;
  direction: rtl;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form-section__input::placeholder {
  color: rgba(156,149,139,0.6);
}

.contact-form-section__input:focus {
  border-color: var(--primary);
  background: rgba(255,122,0,0.06);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.15);
  color: var(--text-light);
}

.contact-form-section__input:hover:not(:focus) {
  border-color: rgba(255,255,255,0.25);
}

.contact-form-section__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

/* ── Privacy Consent ── */
.contact-form-section .privacy-consent {
  margin-top: 4px;
  color: var(--text-muted);
}

.contact-form-section .privacy-consent-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: start;
}

.contact-form-section .privacy-consent-checkbox {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  cursor: pointer;
}

.contact-form-section .privacy-consent a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.contact-form-section .privacy-consent a:hover {
  color: var(--accent);
}

/* ── Submit Button ── */
.contact-form-section__submit {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(180deg, #ff7a00 0%, #ff4d00 100%);
  color: #fff3df;
  padding: 14px 34px;
  border-radius: 4px;
  border: 2px solid #ff9b3d;
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255,132,0,0.35), 0 0 18px rgba(255,94,0,0.55), inset 0 1px 0 rgba(255,220,170,0.35);
  text-shadow: 0 1px 0 rgba(0,0,0,0.3);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 8px;
  text-decoration: none;
}

.contact-form-section__submit:hover {
  box-shadow: 0 0 28px rgba(255,106,0,0.42), 0 0 0 1px rgba(255,132,0,0.5), inset 0 1px 0 rgba(255,220,170,0.35);
  transform: translateY(-2px);
}

/* ── Aside Column ── */
.contact-form-section__aside {
  position: sticky;
  top: 120px;
}

.contact-form-section__aside-inner {
  background: linear-gradient(180deg, rgba(10,14,19,0.92) 0%, rgba(7,10,14,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 40px 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.42);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-section__aside-icon-wrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.contact-form-section__aside-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-light);
  margin: 0;
  text-align: start;
}

.contact-form-section__aside-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  text-align: start;
}

/* ── Reassurance List ── */
.contact-form-section__reassurance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-section__reassurance-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: start;
}

.contact-form-section__reassurance-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255,209,102,0.08);
  border-radius: 50%;
  border: 1px solid rgba(255,209,102,0.2);
}

/* ── Aside Divider ── */
.contact-form-section__aside-divider {
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(255,255,255,0.12), transparent);
  margin: 4px 0;
}

/* ── Contact Info ── */
.contact-form-section__contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form-section__contact-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  text-align: start;
  transition: color 0.2s ease;
}

.contact-form-section__contact-link:hover {
  color: var(--primary);
}

.contact-form-section__contact-link i {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--primary);
  width: 20px;
  text-align: center;
}

.contact-form-section__address {
  cursor: default;
}

.contact-form-section__address:hover {
  color: var(--text-muted);
}

/* ── Bottom Cyan Curve Divider ── */
.contact-form-section__divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  pointer-events: none;
  z-index: 5;
}

.contact-form-section__divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-form-section__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-section__aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 56px 16px 90px;
  }

  .contact-form-section__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-section__heading {
    font-size: 2.5rem;
  }

  .contact-form-section__aside-inner {
    padding: 28px 20px;
  }

  .contact-form-section__submit {
    width: 100%;
    text-align: center;
  }

  .contact-form-section__divider-wrapper {
    height: 50px;
  }
}

/* contact-visit-info */
.contact-visit-info-section {
  background: linear-gradient(180deg, #F4EFE8 0%, #EDE6DC 100%);
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: 96px 24px 96px;
  direction: rtl;
  position: relative;
  overflow: visible;
  font-family: 'Rubik', sans-serif;
}

/* ── Container ── */
.contact-visit-info-section .cvi-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ── */
.contact-visit-info-section .cvi-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.contact-visit-info-section .cvi-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-align: center;
  max-width: none !important;
}

.contact-visit-info-section .cvi-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
  max-width: none !important;
  margin: 0;
}

/* ── Content Grid ── */
.contact-visit-info-section .cvi-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  direction: rtl;
}

@media (min-width: 900px) {
  .contact-visit-info-section .cvi-content-grid {
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
  }
}

/* ── Info Blocks ── */
.contact-visit-info-section .cvi-info-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Info Card ── */
.contact-visit-info-section .cvi-info-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-visit-info-section .cvi-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

/* ── Card Icon ── */
.contact-visit-info-section .cvi-card-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ff7a00 0%, #ff4d00 100%);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff3df;
  box-shadow: 0 0 18px rgba(255,94,0,0.45);
}

.contact-visit-info-section .cvi-card-icon-wrap svg {
  color: #fff3df;
}

/* ── Card Body ── */
.contact-visit-info-section .cvi-card-body {
  flex: 1;
  min-width: 0;
}

.contact-visit-info-section .cvi-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 16px;
  text-align: start;
}

/* ── Info List ── */
.contact-visit-info-section .cvi-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-visit-info-section .cvi-info-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: start;
}

.contact-visit-info-section .cvi-list-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.875rem;
  margin-top: 2px;
}

/* ── Image Column ── */
.contact-visit-info-section .cvi-image-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Image Figure ── */
.contact-visit-info-section .cvi-image-figure {
  margin: 0;
  padding: 0;
  position: relative;
}

.contact-visit-info-section .cvi-image-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  display: block;
  transition: transform 0.25s ease;
}

.contact-visit-info-section .cvi-image-figure:hover img {
  transform: scale(1.03);
}

.contact-visit-info-section .cvi-image-caption {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: start;
  font-style: italic;
}

/* ── Hours Card ── */
.contact-visit-info-section .cvi-hours-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 24px 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.36);
}

.contact-visit-info-section .cvi-hours-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--primary);
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-visit-info-section .cvi-hours-header i {
  font-size: 1rem;
  color: var(--primary);
}

.contact-visit-info-section .cvi-hours-header span {
  color: var(--text-light);
}

.contact-visit-info-section .cvi-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-visit-info-section .cvi-hours-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.contact-visit-info-section .cvi-hours-day {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: start;
}

.contact-visit-info-section .cvi-hours-time {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-align: end;
}

.contact-visit-info-section .cvi-hours-divider {
  height: 1px;
  background: var(--border-dark);
  width: 100%;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .contact-visit-info-section {
    padding: 56px 16px 56px;
  }

  .contact-visit-info-section .cvi-header {
    margin-bottom: 36px;
  }

  .contact-visit-info-section .cvi-title {
    font-size: 1.75rem;
  }

  .contact-visit-info-section .cvi-content-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .contact-visit-info-section .cvi-info-card {
    padding: 20px 16px;
    flex-direction: column;
    gap: 14px;
  }

  .contact-visit-info-section .cvi-card-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .contact-visit-info-section .cvi-info-blocks {
    gap: 16px;
  }

  .contact-visit-info-section .cvi-hours-card {
    padding: 18px 16px;
  }
}



/* Global font override - exclude icon fonts and special elements */
*:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]):not(.iconify):not([class*="icon"]):not(code):not(pre):not(i[class*="fa"]) {
  font-family: 'Rubik', sans-serif !important;
}


/* Logo size constraint - enforce max-height only */
.logo, img.logo, .logo img, .logo-link img, .nav-brand img {
  max-height: 40px !important;
  height: auto !important;
  width: auto !important;
  object-fit: contain !important;
}


/* Hide WhatsApp float button on desktop (mobile-only) */
@media (min-width: 769px) {
  .whatsapp-float {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}


/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }


/* ============================================
   MOBILE RESPONSIVE FIXES (Auto-generated)
   Safe, minimal fixes for common overflow issues
   ============================================ */

@media (max-width: 768px) {
  
  /* 1. GLOBAL FIXES - Essential for preventing horizontal scroll */
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  
  *, *::before, *::after {
    box-sizing: border-box !important;
  }

  /* 2. FORM FIXES - Forms often have fixed widths */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="url"],
  input[type="search"],
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .form-field,
  .form-group,
  .input-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 3. GRID TO COLUMN CONVERSION */
  /* Only convert grids that don't have proper mobile handling */
  [style*="display: grid"]:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid),
  [style*="display:grid"]:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid),
  .grid:not([data-zappy-auto-grid="true"]):not(.zappy-preserve-css-grid) {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
  
  /* Ensure auto-grids use single column on mobile */
  [data-zappy-auto-grid="true"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Force single-column for AI-generated grids with class names like gallery-grid, features-grid, etc. */
  /* These often have fixed column counts (repeat(3, 1fr) or repeat(4, 1fr)) that don't fit mobile */
  [class*="-grid"]:not([data-zappy-auto-grid="true"]):not([data-zappy-explicit-columns="true"]) {
    grid-template-columns: 1fr !important;
  }
  
  /* Reset any column/row spanning items on mobile - they cause overflow */
  [class*="-grid"] > [class*="-large"],
  [class*="-grid"] > [class*="-item-large"],
  [class*="-grid"] > [style*="grid-column: span"],
  [class*="-grid"] > [style*="grid-row: span"] {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  
  /* Fix zoom wrapper images to be responsive on mobile */
  [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  
  [data-zappy-zoom-wrapper="true"] img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    object-fit: cover !important;
    top: 0 !important;
    left: 0 !important;
  }

  /* Hero sections need extra padding-top to clear the sticky navbar */
  /* The navbar is ~70px tall, so hero needs at least 100px padding-top */
  /* IMPORTANT: Use section tag to avoid matching child elements like buttons that contain "-hero-section" in their BEM class */
  section[class*="-hero-section"]:first-of-type,
  main > section:first-child {
    padding-top: 100px !important;
  }

  /* 4. TYPOGRAPHY SCALING - Only headings, NOT spans (breaks icons) */
  h1 {
    font-size: clamp(28px, 8vw, 48px) !important;
  }
  
  h2 {
    font-size: clamp(24px, 6vw, 36px) !important;
  }
  
  h3 {
    font-size: clamp(20px, 5vw, 28px) !important;
  }
  
  h4 {
    font-size: clamp(18px, 4vw, 24px) !important;
  }

  /* Body text scaling - exclude spans to avoid breaking icons */
  p, li {
    font-size: clamp(14px, 4vw, 18px) !important;
  }

  /* 5. IMAGE RESPONSIVENESS */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* 5b. HERO BG IMAGE EXCEPTION - fullscreen hero backgrounds must fill their
     absolute-positioned wrapper, not shrink to natural aspect-ratio height.
     data-hero-bg is added deterministically by sectionGenerationService. */
  img[data-hero-bg] {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* 6. MULTI-COLUMN LAYOUTS */
  .columns,
  [style*="column-count"],
  [style*="columns:"] {
    column-count: 1 !important;
    columns: 1 !important;
  }

  /* 7. TABLES */
  table {
    width: 100% !important;
    display: block !important;
    overflow-x: auto !important;
  }

  /* 8. CARDS/BLOCKS */
  .card,
  .block,
  .box {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 9. HERO SECTIONS - Targeted selectors only */
  section.hero,
  section.hero-section,
  section[class*="hero-section"] {
    min-height: auto !important;
    height: auto !important;
    padding: 2rem 1rem !important;
  }

  /* 9b. HERO SECTION CHILDREN - prevent 100vh min-height on inner wrappers
     AI often sets content-wrappers / scrim divs to min-height:100vh which
     creates huge empty space on mobile. Reset direct children so the section
     sizes to its content. Absolute-positioned backgrounds are unaffected. */
  section.hero > *,
  section.hero-section > *,
  section[class*="hero-section"] > * {
    min-height: auto !important;
  }

  /* 9c. FULLSCREEN HERO EXCEPTION - preserve viewport height for fullscreen
     hero sections. Rule 9 above resets all heroes to height:auto which is correct
     for side-by-side heroes, but fullscreen-scrim/fullscreen-card heroes are
     designed to fill the viewport with a background image behind a scrim.
     data-hero-type is added deterministically by sectionGenerationService. */
  section[data-hero-type*="fullscreen"] {
    min-height: 100vh !important;
    height: auto !important;
  }

  /* 10. HERO TITLE ACCENTS - ensure inline display for proper text flow */
  h1 span[class*="accent"],
  h2 span[class*="accent"],
  .hero-title span,
  .hero-heading span {
    display: inline !important;
  }

  /* 11. PACKAGES/CARDS GRIDS - Specific class targeting */
  .packages-grid,
  .cards-grid,
  .pricing-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  /* 12. PREVENT HORIZONTAL SCROLL - Safety net */
  body > * {
    max-width: 100vw !important;
  }
}

/* END MOBILE RESPONSIVE FIXES */

/* === NAVBAR STYLE OVERRIDES START === */
.navbar { background-color: transparent !important; background-image: linear-gradient(to bottom, rgba(0,0,0,var(--nav-overlay-opacity,0.35)), transparent) !important; transition: background-color 0.3s ease, background-image 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, box-shadow 0.3s ease !important; }
.zappy-catalog-menu, #zappy-catalog-menu { background-image: linear-gradient(to bottom, rgba(0,0,0,var(--nav-overlay-opacity,0.35)), transparent) !important; transition: background 0.3s ease, background-image 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease !important;}
.navbar .nav-menu > li > a,
.navbar .nav-menu > .nav-item > a,
.navbar .nav-link,
.navbar .navbar-nav .nav-link,
.navbar a:not(.nav-cta-btn) { color: #F5F2EC !important; }
.navbar .nav-menu > li > a:hover,
.navbar .nav-menu > .nav-item > a:hover,
.navbar .nav-link:hover,
.navbar a:not(.nav-cta-btn):hover { color: #00E5FF !important; }
.navbar .navbar-brand, .navbar .navbar-brand a { color: #F5F2EC !important; }
.navbar .dropdown-toggle { color: #F5F2EC !important; }
.navbar .dropdown-toggle:hover { color: #00E5FF !important; }
.navbar .mobile-hamburger-btn, .navbar .mobile-close-btn { color: #F5F2EC !important; }
.navbar-toggler { color: #F5F2EC !important; border-color: #F5F2EC44 !important; }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F5F2EC' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }
.navbar .dropdown-menu { background-color: #121212 !important; }
.navbar .dropdown-menu li a,
.navbar .dropdown-menu .dropdown-item { color: #F5F2EC !important; }
.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu .dropdown-item:hover { color: #00E5FF !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .sub-menu,
.navbar ul.sub-menu,
nav.navbar .sub-menu { background-color: #121212 !important; }
.navbar .sub-menu a,
.navbar .sub-menu li a,
.navbar .nav-menu .sub-menu a,
.navbar .nav-menu .sub-menu li a,
.navbar .zappy-products-dropdown .sub-menu a,
nav.navbar .sub-menu li a { color: #F5F2EC !important; }
.navbar .sub-menu a:hover,
.navbar .sub-menu li a:hover,
nav.navbar .sub-menu li a:hover { color: #00E5FF !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .mobile-submenu-toggle { color: #F5F2EC !important; }
.navbar .phone-header-btn { color: #F5F2EC !important; }
.navbar .nav-search-input,
.navbar .nav-search-box .nav-search-input { color: #171717 !important; }
.navbar .nav-search-input::placeholder { color: var(--text-muted, rgba(128,128,128,0.6)) !important; }
@media (min-width: 769px) {
  .navbar .nav-search-box .nav-search-btn { color: #171717 !important; }
  .navbar .nav-search-box .nav-search-btn svg { stroke: #171717 !important; fill: none !important; }
}
.navbar .nav-search-result-name { color: #171717 !important; }
.navbar .nav-search-result-item a { color: #171717 !important; }
.navbar .nav-search-result-price { color: var(--accent, var(--primary)) !important; }
.navbar .nav-search-no-results,
.navbar .search-no-results { color: var(--text-muted, rgba(128,128,128,0.6)) !important; }
.zappy-catalog-menu, #zappy-catalog-menu { background: transparent !important; }
.zappy-catalog-menu .catalog-menu-item,
.zappy-catalog-menu .catalog-menu-all { color: #F5F2EC !important; }
.zappy-catalog-menu .catalog-menu-item:hover,
.zappy-catalog-menu .catalog-menu-all:hover { color: #00E5FF !important; background: rgba(128,128,128,0.1) !important; }
.navbar .cart-link.nav-cart,
.navbar .login-link.nav-login,
.navbar .nav-search-toggle,
.navbar .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
.navbar .cart-link.nav-cart:hover,
.navbar .login-link.nav-login:hover,
.navbar .nav-search-toggle:hover,
.navbar .search-toggle:hover { background: rgba(128,128,128,0.15) !important; color: var(--text-dark, #1a1a1a) !important; }
.navbar .cart-link.nav-cart svg, .navbar .login-link.nav-login svg, .navbar .nav-search-toggle svg, .navbar .search-toggle svg { color: inherit !important; fill: none !important; stroke: currentColor !important; }

@media (min-width: 769px) {
  .navbar:not(.scrolled) .dropdown-menu { background-color: #121212 !important; }
  .navbar:not(.scrolled) .dropdown-menu li a,
  .navbar:not(.scrolled) .dropdown-menu .dropdown-item { color: #F5F2EC !important; }
  .navbar:not(.scrolled) .dropdown-menu li a:hover,
  .navbar:not(.scrolled) .dropdown-menu .dropdown-item:hover { color: var(--nav-text-hover, var(--accent)) !important; }
  .navbar:not(.scrolled) .sub-menu { background-color: #121212 !important; }
  .navbar:not(.scrolled) .sub-menu a,
  .navbar:not(.scrolled) .sub-menu li a,
  .navbar:not(.scrolled) .nav-menu .sub-menu a,
  .navbar:not(.scrolled) .zappy-products-dropdown .sub-menu a { color: #F5F2EC !important; }
  .navbar:not(.scrolled) .sub-menu a:hover,
  .navbar:not(.scrolled) .sub-menu li a:hover { color: var(--nav-text-hover, var(--accent)) !important; }
}
.navbar.scrolled { background-color: rgba(18,18,18,0.85) !important; background-image: none !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; box-shadow: 0 2px 16px rgba(0,0,0,0.12) !important; }
.navbar.scrolled::before, .navbar.scrolled::after { background: transparent !important; opacity: 0 !important; }
.navbar.scrolled ~ .zappy-catalog-menu, .navbar.scrolled ~ #zappy-catalog-menu, .zappy-catalog-menu.scrolled, #zappy-catalog-menu.scrolled { background: rgba(18,18,18,0.85) !important; background-image: none !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }
.zappy-catalog-menu.scrolled .catalog-menu-item,
.zappy-catalog-menu.scrolled .catalog-menu-all,
#zappy-catalog-menu.scrolled .catalog-menu-item,
#zappy-catalog-menu.scrolled .catalog-menu-all,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-item,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-all,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-item,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-all { color: var(--frosted-text, #F5F2EC) !important; }
.zappy-catalog-menu.scrolled .catalog-menu-item:hover,
.zappy-catalog-menu.scrolled .catalog-menu-all:hover,
#zappy-catalog-menu.scrolled .catalog-menu-item:hover,
#zappy-catalog-menu.scrolled .catalog-menu-all:hover,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-item:hover,
.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-all:hover,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-item:hover,
.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-all:hover { color: var(--nav-text-hover, var(--accent)) !important; }
.navbar.scrolled .nav-menu > li > a,
.navbar.scrolled .nav-menu > .nav-item > a,
.navbar.scrolled .nav-link,
.navbar.scrolled a:not(.nav-cta-btn) { color: var(--frosted-text, #F5F2EC) !important; }
.navbar.scrolled .nav-menu > li > a:hover,
.navbar.scrolled .nav-menu > .nav-item > a:hover,
.navbar.scrolled .nav-link:hover,
.navbar.scrolled a:not(.nav-cta-btn):hover { color: var(--nav-text-hover, var(--accent)) !important; }
.navbar.scrolled .navbar-brand, .navbar.scrolled .navbar-brand a { color: var(--frosted-text, #F5F2EC) !important; }
.navbar.scrolled .dropdown-toggle { color: var(--frosted-text, #F5F2EC) !important; }
.navbar.scrolled .mobile-hamburger-btn, .navbar.scrolled .mobile-close-btn { color: var(--frosted-text, #F5F2EC) !important; }
.navbar.scrolled .phone-header-btn { color: var(--frosted-text, #F5F2EC) !important; }
.navbar.scrolled .mobile-toggle { color: var(--frosted-text, #F5F2EC) !important; }
.navbar.scrolled .mobile-toggle svg { color: inherit !important; }
.navbar.scrolled .mobile-toggle svg path { stroke: currentColor !important; }
.navbar.scrolled .nav-search-btn { color: var(--frosted-text, #F5F2EC) !important; }
.navbar.scrolled .nav-search-btn svg { stroke: var(--frosted-text, #F5F2EC) !important; fill: none !important; }
@media (min-width: 769px) {
  .navbar.scrolled .sub-menu,
  .navbar.scrolled ul.sub-menu,
  nav.navbar.scrolled .sub-menu { background-color: #F4EFE8 !important; border-radius: 8px !important; box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important; }
  .navbar.scrolled .sub-menu a,
  .navbar.scrolled .sub-menu li a,
  .navbar.scrolled .nav-menu .sub-menu a,
  .navbar.scrolled .nav-menu .sub-menu li a,
  .navbar.scrolled .zappy-products-dropdown .sub-menu a,
  nav.navbar.scrolled .sub-menu li a { color: #171717 !important; }
  .navbar.scrolled .sub-menu a:hover,
  .navbar.scrolled .sub-menu li a:hover,
  .navbar.scrolled .nav-menu .sub-menu a:hover,
  nav.navbar.scrolled .sub-menu li a:hover { color: #00E5FF !important; background-color: rgba(128,128,128,0.1) !important; }
  .navbar.scrolled .dropdown-menu { background-color: #F4EFE8 !important; }
  .navbar.scrolled .dropdown-menu li a,
  .navbar.scrolled .dropdown-menu .dropdown-item { color: #171717 !important; }
  .navbar.scrolled .dropdown-menu li a:hover,
  .navbar.scrolled .dropdown-menu .dropdown-item:hover { color: #00E5FF !important; background-color: rgba(128,128,128,0.1) !important; }
  .navbar.scrolled .mobile-submenu-toggle { color: #171717 !important; }
}

.navbar.scrolled .cart-link.nav-cart,
.navbar.scrolled .login-link.nav-login,
.navbar.scrolled .nav-search-toggle,
.navbar.scrolled .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
@media (max-width: 768px) {
  .navbar { background-color: transparent !important; background-image: none !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; box-shadow: none !important; }
  .zappy-catalog-menu, #zappy-catalog-menu { background-image: none !important; }
  .navbar::before, .navbar::after { background: transparent !important; opacity: 0 !important; }
  body.menu-open .navbar, body.nav-open .navbar, body.mobile-menu-open .navbar, .navbar.scrolled, .navbar.active, .navbar.open, .navbar.show, .navbar.menu-open, .navbar:has(.nav-menu.active), .navbar:has(#navMenu.active), .navbar:has(.mobile-menu.active), .navbar:has(.mobile-toggle.active), .navbar:has(#mobileToggle.active) { background-color: #121212 !important; }
  .nav-menu, .nav-menu.active, .nav-menu.nav-menu-active, #navMenu, #navMenu.active, .mobile-menu, .mobile-menu.active, .mobile-nav, .mobile-nav.active { background-color: #121212 !important; background: #121212 !important; }
  .nav-menu.active, .nav-menu.nav-menu-active, #navMenu.active, .mobile-menu.active, .mobile-nav.active { max-height: calc(100dvh - 70px) !important; overflow-y: auto !important; }
  .nav-menu a, .nav-menu > li > a, #navMenu a, #navMenu > li > a { color: #F5F2EC !important; }
  .nav-menu a:hover, .nav-menu > li > a:hover { color: #00E5FF !important; }
  .nav-menu .dropdown-menu { background: rgba(128,128,128,0.06) !important; }
  .nav-menu .dropdown-menu a, .nav-menu .dropdown-menu li a { color: #F5F2EC !important; }
  .nav-menu .dropdown-menu a:hover { color: #00E5FF !important; }
  .nav-menu .sub-menu a { color: #F5F2EC !important; }
  .nav-menu .sub-menu a:hover { color: #00E5FF !important; }
  .nav-menu > li { position: relative !important; }
  .navbar .nav-menu .mobile-submenu-toggle { color: #F5F2EC !important; position: static !important; height: auto !important; flex-shrink: 0 !important; align-self: stretch !important; }
  .mobile-toggle { color: #F5F2EC !important; }
  .mobile-toggle svg { color: inherit !important; }
  .mobile-toggle svg path { stroke: currentColor !important; }
  
  /* When menu is open or navbar is scrolled in mobile, the background is dropdownBg, so text should be mobileMenuText */
  .navbar.scrolled .mobile-toggle, .navbar.scrolled .mobile-hamburger-btn, .navbar.scrolled .mobile-close-btn,
  .navbar.scrolled .navbar-brand, .navbar.scrolled .dropdown-toggle, .navbar.scrolled .phone-header-btn,
  body.menu-open .navbar .mobile-toggle, body.nav-open .navbar .mobile-toggle, body.mobile-menu-open .navbar .mobile-toggle,
  .navbar.active .mobile-toggle, .navbar.open .mobile-toggle, .navbar.show .mobile-toggle, .navbar.menu-open .mobile-toggle,
  .navbar:has(.nav-menu.active) .mobile-toggle, .navbar:has(#navMenu.active) .mobile-toggle, .navbar:has(.mobile-menu.active) .mobile-toggle, .navbar:has(.mobile-toggle.active) .mobile-toggle,
  body.menu-open .navbar .navbar-brand, body.nav-open .navbar .navbar-brand, body.mobile-menu-open .navbar .navbar-brand,
  .navbar.active .navbar-brand, .navbar.open .navbar-brand, .navbar.show .navbar-brand, .navbar.menu-open .navbar-brand,
  .navbar:has(.nav-menu.active) .navbar-brand, .navbar:has(#navMenu.active) .navbar-brand, .navbar:has(.mobile-menu.active) .navbar-brand, .navbar:has(.mobile-toggle.active) .navbar-brand,
  body.menu-open .navbar .phone-header-btn, body.nav-open .navbar .phone-header-btn, body.mobile-menu-open .navbar .phone-header-btn,
  .navbar.active .phone-header-btn, .navbar.open .phone-header-btn, .navbar.show .phone-header-btn, .navbar.menu-open .phone-header-btn,
  .navbar:has(.nav-menu.active) .phone-header-btn, .navbar:has(#navMenu.active) .phone-header-btn, .navbar:has(.mobile-menu.active) .phone-header-btn, .navbar:has(.mobile-toggle.active) .phone-header-btn {
    color: #F5F2EC !important;
  }
  
  .navbar.scrolled .mobile-toggle svg { color: inherit !important; }
  .navbar.scrolled .mobile-toggle svg path { stroke: currentColor !important; }
  
  .navbar.scrolled .nav-menu > li > a,
  .navbar.scrolled .nav-menu > .nav-item > a,
  .navbar.scrolled .nav-link,
  .navbar.scrolled a:not(.nav-cta-btn) { color: #F5F2EC !important; }
  .cart-link.nav-cart,
  .login-link.nav-login,
  .nav-search-toggle,
  .search-toggle { background: var(--bg-light, #ffffff) !important; color: var(--text-dark, #1a1a1a) !important; }
  .cart-link.nav-cart svg,
  .login-link.nav-login svg,
  .nav-search-toggle svg,
  .search-toggle svg { stroke: var(--text-dark, #1a1a1a) !important; color: var(--text-dark, #1a1a1a) !important; }
  .mobile-search-panel { color: #F5F2EC !important; }
  .mobile-search-panel input { color: #F5F2EC !important; background: rgba(255,255,255,0.12) !important; }
  .mobile-search-panel .close-search { color: #F5F2EC !important; background: rgba(255,255,255,0.15) !important; }
  .mobile-search-panel .close-search svg { stroke: #F5F2EC !important; color: #F5F2EC !important; }
  .mobile-search-panel .close-search:hover { color: #F5F2EC !important; background: rgba(255,255,255,0.25) !important; }
  .mobile-search-panel .close-search:hover svg { stroke: #F5F2EC !important; color: #F5F2EC !important; }
  .navbar .zappy-products-dropdown .sub-menu,
  .navbar .zappy-products-dropdown > .sub-menu {
    display: none !important; position: static !important; max-height: 0 !important;
    overflow: hidden !important; opacity: 0 !important; visibility: hidden !important;
    pointer-events: none !important; box-shadow: none !important; border: none !important;
    padding: 0 !important; transform: none !important;
  }
  .navbar .zappy-products-dropdown:hover .sub-menu,
  .navbar .zappy-products-dropdown:hover > .sub-menu,
  .navbar .zappy-products-dropdown:focus-within .sub-menu,
  .navbar .zappy-products-dropdown:focus-within > .sub-menu,
  .navbar .menu-item-has-children:hover > .sub-menu,
  .navbar .nav-dropdown:hover > .dropdown-menu {
    display: none !important; opacity: 0 !important; visibility: hidden !important;
    max-height: 0 !important; pointer-events: none !important;
  }
  .navbar .zappy-products-dropdown.open .sub-menu,
  .navbar .zappy-products-dropdown.open > .sub-menu,
  .navbar .zappy-products-dropdown .sub-menu.mobile-expanded,
  .navbar .zappy-products-dropdown > .sub-menu.mobile-expanded,
  .navbar .menu-item-has-children.open > .sub-menu,
  .navbar .menu-item-has-children > .sub-menu.mobile-expanded,
  .navbar .nav-dropdown.open > .dropdown-menu {
    display: block !important; opacity: 1 !important; visibility: visible !important;
    max-height: 60vh !important; pointer-events: auto !important; position: static !important;
    overflow-y: auto !important; padding: 0.5rem 0 !important;
  }
}
/* === NAVBAR STYLE OVERRIDES END === */

/* Legal Pages Content Styles */

/* Legal Pages Content Styles */
.legal-page-content {
  padding: 120px 0 60px;
  min-height: 60vh;
  color: inherit;
}

.legal-page-content .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-page-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: inherit;
}

.legal-page-content .last-updated {
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-page-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: inherit;
}

.legal-page-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-page-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

[dir="rtl"] .legal-page-content ul {
  padding-left: 0;
  padding-right: 1.5rem;
}

.legal-page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-page-content .contact-box,
.legal-page-content .contact-info {
  background: rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.legal-page-content .contact-box a,
.legal-page-content .contact-info a {
  color: inherit;
  text-decoration: underline;
}

.legal-page-content .contact-box a:hover,
.legal-page-content .contact-info a:hover {
  opacity: 0.8;
}

.legal-page-content .important-notice,
.legal-page-content .legal-reference {
  background: rgba(0, 0, 0, 0.03);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid currentColor;
}

[dir="rtl"] .legal-page-content .important-notice,
[dir="rtl"] .legal-page-content .legal-reference {
  border-left: none;
  border-right: 4px solid currentColor;
}.cc-btn.cc--btn-primary {
  background-color: var(--cc-btn-primary-bg) !important;
  border-color: var(--cc-btn-primary-border) !important;
}

.cc-btn.cc--btn-primary:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
}

/* Responsive adjustments *//* Cookie preferences button in footer *//* Accessibility Styles */

/* Basic Accessibility Enhancements */
:root {
  --accessibility-focus: #f5f2ec;
}

/* Skip link styles */
.skip-link:focus {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  background: #000 !important;
  color: white !important;
  padding: 8px !important;
  text-decoration: none !important;
  z-index: 10000 !important;
  border-radius: 4px !important;
}

/* Enhanced focus indicators */
*:focus {
  outline: 2px solid var(--accessibility-focus) !important;
  outline-offset: 2px !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  * {
    border-color: currentColor !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Screen reader only content */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* Custom Accessibility Toolbar Styling - Zappy Style */

/* Main button icon - ONLY target the floating button, not menu elements */
#mic-access-tool-general-button {
  background-color: transparent !important;
  background: transparent !important;
  border: none !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* AGGRESSIVELY hide all text in the button */
#mic-access-tool-general-button,
#mic-access-tool-general-button *:not(svg):not(path):not(circle):not(rect):not(polygon):not(ellipse):not(line):not(polyline):not(g) {
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
  line-height: 0 !important;
  letter-spacing: -999em !important;
  white-space: nowrap !important;
}

/* Hide text nodes specifically */
#mic-access-tool-general-button::before,
#mic-access-tool-general-button::after {
  content: none !important;
  display: none !important;
}

/* Hover state - keep text hidden */
#mic-access-tool-general-button:hover {
  background-color: rgba(245, 242, 236, 0.1) !important;
  background: rgba(245, 242, 236, 0.1) !important;
  box-shadow: 0 2px 8px rgba(245, 242, 236, 0.2) !important;
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
}

/* Target the SVG and make it the selected color */
#mic-access-tool-general-button svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  margin: 0 !important;
  /* Convert green to selected color using dynamic CSS filter */
  filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

/* Also directly target all SVG elements to be the selected color */
#mic-access-tool-general-button svg,
#mic-access-tool-general-button svg *,
#mic-access-tool-general-button svg path,
#mic-access-tool-general-button svg circle,
#mic-access-tool-general-button svg rect,
#mic-access-tool-general-button svg polygon,
#mic-access-tool-general-button svg ellipse,
#mic-access-tool-general-button svg line,
#mic-access-tool-general-button svg polyline,
#mic-access-tool-general-button svg g {
  fill: #f5f2ec !important;
  stroke: #f5f2ec !important;
  color: #f5f2ec !important;
}

/* Target images if the icon is an img instead of SVG */
#mic-access-tool-general-button img,
#mic-access-tool-general-button i {
  width: 18px !important;
  height: 18px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  /* Convert green to selected color using dynamic filter */
  filter: invert(50%) sepia(100%) saturate(500%) hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

/* Menu header with selected color */
#mic-access-tool-box .mic-access-tool-box-header,
.mic-access-tool-box-header,
div[id*="mic-access-tool-box"] header,
div[id*="mic-access-tool-box"] .header {
  background: #f5f2ec !important;
  color: white !important;
}

/* Make header text white - title and close button */
#mic-access-tool-box .mic-access-tool-box-header *,
.mic-access-tool-box-header *,
div[id*="mic-access-tool-box"] header *,
div[id*="mic-access-tool-box"] .header * {
  color: white !important;
}

/* Close button text */
#mic-access-tool-box .mic-access-tool-box-header button,
#mic-access-tool-box .mic-access-tool-box-header a,
#mic-access-tool-box [class*="close"],
#mic-access-tool-box button[title*="close"],
#mic-access-tool-box button[title*="Close"] {
  color: white !important;
  background: transparent !important;
}

/* Active buttons and highlights in menu */
#mic-access-tool-box button.active,
#mic-access-tool-box button:hover,
div[id*="mic-access-tool-box"] button.active,
div[id*="mic-access-tool-box"] button:hover {
  border-color: #f5f2ec !important;
  color: #f5f2ec !important;
  background-color: rgba(245, 242, 236, 0.1) !important;
}

/* Reset button */
#mic-access-tool-box button[title*="reset"],
#mic-access-tool-box button[title*="Reset"],
#mic-access-tool-box [class*="reset"],
div[id*="mic-access-tool-box"] button[class*="reset"] {
  background: #f5f2ec !important;
  color: white !important;
}

/* Reset button text and icon */
#mic-access-tool-box button[title*="reset"] *,
#mic-access-tool-box button[title*="Reset"] *,
#mic-access-tool-box [class*="reset"] *,
div[id*="mic-access-tool-box"] button[class*="reset"] * {
  color: white !important;
}

/* Hide accessibility widget by default on all screen sizes */
/* TODO: Can be re-enabled in the future by removing display: none */
/* The widget can be shown via ALT+A keyboard shortcut (desktop only) */
/* Target Mickidum accessibility button with high specificity */
#mic-access-tool-general-button,
.mic-access-tool-general-button,
#mic-init-access-tool .mic-access-tool-general-button,
#mic-init-access-tool #mic-access-tool-general-button,
._access-icon {
  display: none !important; /* Hidden by default - can be re-enabled */
}

/* Target Mickidum accessibility menu with high specificity */
#mic-access-tool-box,
.mic-access-tool-box,
#mic-init-access-tool #mic-access-tool-box,
div[id*="mic-access-tool-box"],
._access-menu {
  display: none !important; /* Hidden by default - can be re-enabled */
}

/* Show accessibility widget when ALT+A keyboard shortcut is used (desktop only) */
body.accessibility-widget-visible #mic-access-tool-general-button,
body.accessibility-widget-visible .mic-access-tool-general-button,
body.accessibility-widget-visible #mic-init-access-tool .mic-access-tool-general-button,
body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-general-button,
body.accessibility-widget-visible ._access-icon {
  display: flex !important; /* Show button when visible class is added */
}

body.accessibility-widget-visible #mic-access-tool-box,
body.accessibility-widget-visible .mic-access-tool-box,
body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-box,
body.accessibility-widget-visible div[id*="mic-access-tool-box"],
body.accessibility-widget-visible ._access-menu {
  display: block !important; /* Show menu when visible class is added */
}

/* On mobile, ensure it stays hidden */
@media (max-width: 768px) {
  /* Hide the accessibility button on mobile - higher specificity */
  #mic-access-tool-general-button,
  .mic-access-tool-general-button,
  #mic-init-access-tool .mic-access-tool-general-button,
  #mic-init-access-tool #mic-access-tool-general-button,
  ._access-icon {
    display: none !important; /* Hidden on mobile - can be re-enabled */
  }
  
  /* Hide the accessibility menu on mobile - higher specificity */
  #mic-access-tool-box,
  .mic-access-tool-box,
  #mic-init-access-tool #mic-access-tool-box,
  div[id*="mic-access-tool-box"],
  ._access-menu {
    display: none !important; /* Hidden on mobile - can be re-enabled */
  }
  
  /* Ensure mobile never shows widget even with keyboard shortcut */
  body.accessibility-widget-visible #mic-access-tool-general-button,
  body.accessibility-widget-visible .mic-access-tool-general-button,
  body.accessibility-widget-visible #mic-init-access-tool .mic-access-tool-general-button,
  body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-general-button,
  body.accessibility-widget-visible ._access-icon,
  body.accessibility-widget-visible #mic-access-tool-box,
  body.accessibility-widget-visible .mic-access-tool-box,
  body.accessibility-widget-visible #mic-init-access-tool #mic-access-tool-box,
  body.accessibility-widget-visible div[id*="mic-access-tool-box"],
  body.accessibility-widget-visible ._access-menu {
    display: none !important;
  }
}/* === Slim bottom bar (consent modal) ===
 * Single-row inline layout: [description text] ......... [Accept] [Customize]
 * - No title, no footer (Privacy/Terms live in the page legal footer).
 * - Description truncates with ellipsis on narrow viewports rather than
 *   pushing the bar into a multi-line stack.
 * - Hard-overrides .cm--inline (the v3 modifier the library adds for the
 *   bar inline layout) so the body stays in a single flex row.
 *//* X dismiss button — injected at runtime by the init script's onModalShow
 * callback. Anchored to the top-right of the bar with a small hit target
 * (32x32) and a low-emphasis text color so it doesn't compete with the
 * primary "Accept" pill. Click maps to acceptCategory([]) (necessary only),
 * which is the GDPR/ePrivacy-correct mapping for "dismissed without an
 * explicit choice".
 *
 * extra right-padding on #cm.cm--bar above (56px vs the previous 20px)
 * keeps the description text from running under the X on narrow viewports. *//* RTL: anchor to the top-LEFT and shift body padding accordingly. *//* Title intentionally hidden if any translation set still carries it,
 * so the bar stays single-line even on legacy sites that haven't been
 * re-upgraded yet. *//* Same defensive hide for the cm__footer — legacy bundles may still emit
 * Privacy/Terms links inside the bar, but they live in the page footer. *//* Button group — Customize (left) ... Accept (right).
 * vanilla-cookieconsent v3 renders showPreferencesBtn (data-role="show")
 * FIRST in the DOM and acceptAllBtn (data-role="all") second, so the
 * NATURAL flex-row order already gives us [Customize] [Accept] from
 * left to right — exactly the destructive-on-left, primary-on-right
 * convention. We do NOT use flex-direction: row-reverse here: with the
 * library's actual DOM order (Customize first, Accept second) reverse
 * would put Accept on the LEFT and Customize on the RIGHT, which is the
 * exact bug a previous "fix" produced. Verified via incognito + browser
 * automation (May 2026). RTL flipping happens via writing direction
 * naturally; no extra rule needed. *//* Buttons render as inline-flex so internal label/icon nodes vertically
 * center against the description text (the previous block-level button
 * relied on padding + line-height matching, which left a ~2px offset
 * because the text baseline and button-content baseline differ). *//* Primary "Accept" — filled pill in site primary color *//* Secondary "Customize" — borderless underlined text link.
 * Same height as the Accept pill so the row stays perfectly aligned, but
 * with no fill, no border, and an underline that sits 3px below the
 * baseline (text-underline-offset). Hard-coded brand color so this rule
 * doesn't depend on --cc-btn-secondary-* (which have to stay sensible
 * defaults for the preferences modal's two secondary pills). *//* === Preferences modal — minimalist restyle ===
 * The modal opens when "Customize" is clicked. It MUST render as a solid
 * card — pre-fix it inherited the bar's translucent --cc-bg without the
 * matching backdrop-filter, leaving the page footer visibly bleeding
 * through the modal box, the title, the toggle rows, and the bottom
 * button row. Solid white box + clean shadow + an explicit slightly
 * darker scrim on the overlay restores proper modal hierarchy. *//* Secondary modal pills — "Accept Necessary" + "Save Preferences".
 * Must be a visible solid fill (light grey on white card) so users can
 * actually find them. Pre-fix these inherited --cc-btn-secondary-bg:
 * transparent (used by the bar's Customize text link), making them
 * invisible against the modal background. *//* Toggle thumbs in brand color when on *//* Mobile fallback: two rows (description on top, buttons below) *//* Cookie preferences button in legal footer keeps default behavior *//* mobile-submenu-overflow-fix */
@media (max-width: 768px) {
  .navbar .sub-menu.mobile-expanded,
  .nav-menu .sub-menu.mobile-expanded,
  #navMenu .sub-menu.mobile-expanded,
  .zappy-products-dropdown .sub-menu.mobile-expanded,
  .zappy-products-dropdown > .sub-menu.mobile-expanded,
  .menu-item-has-children > .sub-menu.mobile-expanded {
    max-height: none !important;
    overflow-y: visible !important;
  }
  .menu-item-has-children,
  .zappy-products-dropdown,
  .nav-menu > li.menu-item-has-children {
    flex-shrink: 0 !important;
  }
  .sub-menu a,
  .navbar .sub-menu a,
  .navbar .sub-menu li a,
  nav.navbar .sub-menu li a,
  .zappy-products-dropdown .sub-menu a {
    white-space: normal !important;
  }
}


/* zappy-nav-child-indent */
.zappy-products-dropdown .zappy-nav-child > a,
.sub-menu .zappy-nav-child > a {
  padding-left: 28px !important;
  font-size: 0.9em !important;
  opacity: 0.85 !important;
}
[dir="rtl"] .zappy-products-dropdown .zappy-nav-child > a,
[dir="rtl"] .sub-menu .zappy-nav-child > a,
html[lang="he"] .zappy-products-dropdown .zappy-nav-child > a,
html[lang="he"] .sub-menu .zappy-nav-child > a,
html[lang="ar"] .zappy-products-dropdown .zappy-nav-child > a,
html[lang="ar"] .sub-menu .zappy-nav-child > a {
  padding-left: 0 !important;
  padding-right: 28px !important;
}
.zappy-products-dropdown .zappy-nav-parent > a,
.sub-menu .zappy-nav-parent > a {
  font-weight: 600 !important;
}
@media (max-width: 768px) {
  .nav-menu.active,
  #navMenu.active {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
}


/* ========== EMPTY SUBMENU HIDING (Auto-added by Zappy) ========== */
.sub-menu:empty,
.dropdown-menu:empty,
.sub-menu.zappy-empty-submenu,
.dropdown-menu.zappy-empty-submenu,
.nav-menu .sub-menu.zappy-empty-submenu,
nav .sub-menu.zappy-empty-submenu,
.navbar .sub-menu.zappy-empty-submenu,
#navMenu .sub-menu.zappy-empty-submenu,
#navMenu .dropdown-menu.zappy-empty-submenu {
  display: none !important;
}


/* ========== RTL MOBILE NAVBAR FIX (zappy-rtl-mobile-fix) ========== */
/* High-specificity rules to ensure RTL positioning wins over any [lang="en"] conflicts */
/* For RTL sites: hamburger on RIGHT, phone on LEFT (mirror of LTR layout) */
/* NOTE: Includes both html[dir="rtl"] AND [dir="rtl"] selectors as fallback */
/* because some pages may be wrapped with <html lang="en"> (missing dir="rtl" on html) */
/* but still have dir="rtl" on <body> or other ancestor elements */

@media (max-width: 768px) {
  /* RTL Mobile Toggle (hamburger) - positioned on RIGHT */
  /* Using multiple parent selectors for higher specificity */
  html[dir="rtl"] .navbar .mobile-toggle,
  html[dir="rtl"] nav .mobile-toggle,
  html[dir="rtl"] header .mobile-toggle,
  html[dir="rtl"] .nav-container .mobile-toggle,
  html[dir="rtl"] .mobile-toggle,
  [dir="rtl"] .navbar .mobile-toggle,
  [dir="rtl"] nav .mobile-toggle,
  [dir="rtl"] header .mobile-toggle,
  [dir="rtl"] .nav-container .mobile-toggle,
  [dir="rtl"] .mobile-toggle,
  html[lang="he"] .mobile-toggle,
  html[lang="ar"] .mobile-toggle {
    left: auto !important;
    right: 15px !important;
  }
  
  /* RTL Phone Button - positioned on LEFT */
  html[dir="rtl"] .navbar .phone-header-btn,
  html[dir="rtl"] nav .phone-header-btn,
  html[dir="rtl"] header .phone-header-btn,
  html[dir="rtl"] .nav-container .phone-header-btn,
  html[dir="rtl"] .phone-header-btn,
  [dir="rtl"] .navbar .phone-header-btn,
  [dir="rtl"] nav .phone-header-btn,
  [dir="rtl"] header .phone-header-btn,
  [dir="rtl"] .nav-container .phone-header-btn,
  [dir="rtl"] .phone-header-btn,
  html[lang="he"] .phone-header-btn,
  html[lang="ar"] .phone-header-btn {
    left: 15px !important;
    right: auto !important;
  }
  
  /* RTL Mobile Menu - slides from RIGHT */
  html[dir="rtl"] .navbar .nav-menu,
  html[dir="rtl"] nav .nav-menu,
  html[dir="rtl"] header .nav-menu,
  html[dir="rtl"] .nav-container .nav-menu,
  html[dir="rtl"] .nav-menu,
  [dir="rtl"] .navbar .nav-menu,
  [dir="rtl"] nav .nav-menu,
  [dir="rtl"] header .nav-menu,
  [dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    left: auto !important;
    right: 0 !important;
  }
  
  /* RTL Mobile Menu Links - text align right */
  html[dir="rtl"] .nav-menu a,
  html[dir="rtl"] .nav-menu li,
  [dir="rtl"] .nav-menu a,
  [dir="rtl"] .nav-menu li,
  html[lang="he"] .nav-menu a,
  html[lang="he"] .nav-menu li,
  html[lang="ar"] .nav-menu a,
  html[lang="ar"] .nav-menu li {
    text-align: right !important;
  }
}

/* ========== END RTL MOBILE NAVBAR FIX ========== */


/* ========== NAV CONTAINER MIN-HEIGHT FIX (nav-container-min-height-fix) ========== */
/* On mobile, all nav children are position:absolute/fixed (out of flow), */
/* so height:auto collapses to 0px. min-height ensures the navbar is visible. */

/* DEFENSIVE: Ensure CTA container is visible on desktop */
/* This guards against CSS minifiers (CleanCSS level 2) that may pull */
/* the mobile display:none rule out of its @media query */
@media (min-width: 769px) {
  .nav-cta-container,
  .nav-cta-container:not(:has(.lang-switcher)) {
    display: flex !important;
    align-items: center !important;
  }
}

@media (max-width: 768px) {
  .nav-container {
    min-height: 70px !important;
    position: relative !important;
  }
  /* Reset nav-cta-container desktop styling (box-shadow/padding) on mobile */
  .nav-cta-container {
    box-shadow: none !important;
    padding: 0 !important;
  }
  /* Hide nav-cta-container when no lang-switcher (only CTA btn, which is hidden on mobile) */
  .nav-cta-container:not(:has(.lang-switcher)) {
    display: none !important;
  }
}

/* ========== END NAV CONTAINER MIN-HEIGHT FIX ========== */


/* ========== HERO IMAGE GRADIENT FIX (hero-image-gradient-fix) ========== */
/* Prevent hero image fade gradient from bleeding over headline text below. */
/* The .image-fade-gradient has bottom: -30px which extends below its parent; */
/* on mobile stacked layout this overlaps the h1 text. */

@media (max-width: 768px) {
  .hero-image-column {
    overflow: hidden !important;
  }
  .image-fade-gradient {
    bottom: 0 !important;
  }
}

/* ========== END HERO IMAGE GRADIENT FIX ========== */


/* ========== FULLSCREEN HERO OVERFLOW FIX (fullscreen-hero-overflow-fix) ========== */
@media (max-width: 768px) {

  section[data-hero-type*="fullscreen"] {
    height: auto !important;
    min-height: 100svh !important;
    padding: 0 0 90px 0 !important;
  }
  section[data-hero-type*="fullscreen"] > [class*="-container"]:not([class*="bg"]):not([class*="scrim"]):not([class*="divider"]),
  section[data-hero-type*="fullscreen"] > .container {
    padding-bottom: 100px !important;
    min-height: auto !important;
  }
}
/* ========== END FULLSCREEN HERO OVERFLOW FIX ========== */


/* ========== PRODUCT ICON STYLES (product-icon-styles) ========== */
.product-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; width: 100%; }
.product-title-row h1 { flex: 1; min-width: 0; }
.product-icon-actions { display: flex; gap: 8px; flex-shrink: 0; padding-top: 6px; }
.icon-btn { width: 36px; height: 36px; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: color 0.2s; color: currentColor; padding: 0; }
.icon-btn:hover { color: var(--primary-color, #ff0083); }
.icon-btn.active { color: #e74c3c; }
.icon-btn.active .heart-outline { display: none !important; }
.icon-btn.active .heart-filled { display: block !important; }
.profile-section, .addresses-section, .favorites-section, .orders-section { border: 1px solid var(--border-color, rgba(128,128,128,0.2)); border-radius: 12px; padding: 24px; margin-bottom: 24px; background: transparent; }
.favorites-section h2 { font-size: 1.25rem; color: var(--text-color, #1f2937); margin-bottom: 20px; }
.favorites-loading { text-align: center; padding: 20px; color: var(--text-secondary, #6b7280); }
.favorites-empty { text-align: center; padding: 32px; color: var(--text-secondary, #6b7280); }
.favorites-empty p { margin-bottom: 16px; }
.favorites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.favorite-card { background: transparent; border: 1px solid var(--border-color, rgba(128,128,128,0.2)); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s; position: relative; }
.favorite-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.favorite-card-img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.favorite-card-body { padding: 12px; }
.favorite-card-body h4 { font-size: 0.875rem; font-weight: 500; color: var(--text-color, #1f2937); margin: 0 0 6px 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.favorite-price { font-weight: 600; color: var(--primary-color, #ff0083); font-size: 0.9rem; }
.favorite-remove-btn { position: absolute; top: 8px; right: 8px; width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(255,255,255,0.9); color: #dc2626; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.favorite-remove-btn:hover { background: #dc2626; color: white; }
@media (max-width: 480px) { .favorites-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
/* ========== END PRODUCT ICON STYLES ========== */

/* ========== ORPHANED_ZOOM_IMG_FIX ========== */
@media (max-width: 768px) {
  .zappy-preserve-css-grid > img[data-zappy-zoom],
  [class*="-grid"] > img[data-zappy-zoom] {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 300px !important;
    object-fit: cover !important;
    left: auto !important;
    top: auto !important;
  }
}
/* ========== END ORPHANED_ZOOM_IMG_FIX ========== */


/* ========== GRID RESPONSIVE FIX (zappy-grid-mobile-fix) ========== */
/* Ensures grids with explicit columns use CSS variable and are responsive on mobile */

/* DESKTOP: Explicit column grids use CSS variable for grid-template-columns */
/* The deployment process ensures --zappy-grid-cols is always set in inline styles */
[data-zappy-explicit-columns="true"] {
  display: grid !important;
  grid-template-columns: var(--zappy-grid-cols, repeat(2, minmax(0, 1fr))) !important;
}
/* Carousel mode overrides grid display to allow flex-based track layout */
.zappy-carousel-mode,
[data-zappy-display-mode="carousel"] {
  display: block !important;
}

/* ZOOM WRAPPER: Ensure overflow:hidden and position:relative for crop zoom effect */
/* The wrapper clips the oversized image to create the zoom/crop effect */
/* position:relative is needed so absolutely positioned images stay within the wrapper */
[data-zappy-zoom-wrapper="true"] {
  overflow: hidden !important;
  position: relative !important;
}

/* Prevent inserted elements from exceeding their container width.
   max-width uses no !important so inline styles can set a specific constraint. */
.zappy-inserted-element {
  max-width: 100%;
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  /* Auto-grid (AI-generated) grids - force single column on mobile */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"],
  [data-zappy-auto-grid="true"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  /* Grid children: override min-width:auto so children with fixed-width
     content (e.g. zoom wrappers with width:448px!important) can shrink
     to fit the 1fr column instead of overflowing the grid container. */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > *,
  [data-zappy-auto-grid="true"] > *,
  [data-zappy-explicit-columns="true"] > * {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  
  /* Featured grids - force single column on mobile */
  .featured-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Neutralize centering transforms on mobile */
  [data-zappy-center-transform] {
    transform: none !important;
  }
  
  /* Media-only grid items - constrain height on mobile */
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > .zappy-grid-item-media-only,
  [data-zappy-auto-grid="true"] > .zappy-grid-item-media-only {
    height: auto !important;
    max-height: 300px !important;
  }
  
  .zappy-preserve-css-grid[data-zappy-auto-grid="true"] > .zappy-grid-item-media-only img,
  [data-zappy-auto-grid="true"] > .zappy-grid-item-media-only img {
    height: auto !important;
    max-height: 300px !important;
  }
  
  /* Full-width mode zoom wrappers - ensure image is visible (not collapsed) */
  [data-zappy-zoom-wrapper-width-mode="full"] img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 300px !important;
    left: auto !important;
    top: auto !important;
    object-fit: cover !important;
  }
  
  /* MOBILE: Explicit column grids - force single column on mobile */
  [data-zappy-explicit-columns="true"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Inline grid with fixed pixel columns - make responsive */
  .zappy-inline-grid-active.zappy-preserve-css-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* AI-generated section grids with common naming patterns */
  /* These often have fixed pixel column widths that don't adapt to mobile */
  [class*="-grid"]:not([data-zappy-auto-grid]):not(.zappy-preserve-css-grid):not([data-zappy-explicit-columns="true"]) {
    grid-template-columns: 1fr !important;
  }
  
  /* Reset any column/row spanning items on mobile - they cause overflow */
  /* Gallery grids often have -large items that span multiple columns */
  [class*="-grid"] > [class*="-large"],
  [class*="-grid"] > [class*="-item-large"],
  [class*="-grid"] > [style*="grid-column: span"],
  [class*="-grid"] > [style*="grid-row: span"] {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  
  /* Common AI-generated visual/frame containers that may overflow */
  [class*="-visual"],
  [class*="-frame"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  
  /* CRITICAL: Constrain zoom wrappers on mobile without breaking saved crop geometry */
  [data-zappy-zoom-wrapper="true"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    position: relative !important;
  }
  
  /* Legacy zoom wrappers without saved crop data can still fall back to responsive images. */
  [data-zappy-zoom-wrapper="true"]:not([data-zappy-zoom-wrapper-width]) img:not([data-zappy-mobile-object-position]):not([data-zappy-mobile-zoom]) {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 300px !important;
    max-width: 100% !important;
    object-fit: cover !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  
  /* Carousel: ensure block display on mobile */
  .zappy-carousel-mode,
  [data-zappy-display-mode="carousel"] {
    display: block !important;
  }
  /* JS-initialized carousel: constrain wrapper on mobile */
  .zappy-carousel-js-init .zappy-carousel-container-wrapper {
    max-width: calc(100% - 20px) !important;
  }
  .zappy-carousel-js-init .zappy-carousel-item {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  /* CSS-only fallback: if JS didn't initialize, stack items vertically */
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-container-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-track {
    flex-direction: column !important;
    transform: none !important;
    gap: 1.5rem !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: 0 0 auto !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) > :not(style):not(script):not(.zappy-carousel-btn):not(.zappy-carousel-dots):not(.zappy-carousel-container-wrapper) {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    flex: none !important;
  }
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-btn,
  .zappy-carousel-mode:not(.zappy-carousel-js-init) .zappy-carousel-dots {
    display: none !important;
  }
  /* Carousel items: fix zoom wrapper padding creating excess spacing */
  .zappy-carousel-item [data-zappy-zoom-wrapper="true"],
  .zappy-carousel-mode > div [data-zappy-zoom-wrapper="true"] {
    padding-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
  }
  /* Carousel buttons: position inside the card area on mobile */
  .zappy-carousel-js-init > .zappy-carousel-btn {
    left: 4px !important;
    right: auto !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 16px !important;
    background: rgba(255,255,255,0.9) !important;
  }
  .zappy-carousel-js-init > .zappy-carousel-btn.zappy-carousel-right {
    left: auto !important;
    right: 4px !important;
  }
  
  /* ========== MAIN PADDING FIX ========== */
  /* Fix double-padding from old V2 mobile CSS that applied padding to both main and sections */
  /* Exclude ecommerce-page which needs its own horizontal padding for proper mobile layout */
  main:not(.ecommerce-page) {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  /* Hero sections need flex-column on mobile for proper stacking */
  section[class*="hero"],
  .home-Hero-section {
    flex-direction: column !important;
  }
  
  /* Hero sections need extra padding-top to clear the sticky navbar */
  /* The navbar is ~70px tall, so hero needs at least 100px padding-top */
  /* IMPORTANT: Use section tag to avoid matching child elements like buttons that contain "-hero-section" in their BEM class */
  section[class*="-hero-section"]:first-of-type,
  main > section:first-child {
    padding-top: 100px !important;
  }
  
  /* ========== HERO CONTAINER FULL-WIDTH (FULLSCREEN HEROES ONLY) ========== */
  /* Only strip container padding/width for heroes with actual background images.
     Text-only and side-by-side hero sections on inner pages need normal padding. */
  .hero-container,
  /* V2 generation-time fullscreen heroes */
  section[data-hero-type="fullscreen-scrim"] > .container,
  section[data-hero-type="fullscreen-card"] > .container,
  /* Editor-applied background images on hero sections */
  section[class*="hero"][data-zappy-bg-type="image"] > .container,
  section[class*="hero"][data-zappy-bg-type="video"] > .container,
  /* V1 fallback: hero sections with known bg structures */
  section[class*="hero"]:has(.hero-bg-container) > .container,
  section[class*="hero"]:has([data-hero-bg]) > .container {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* ========== HERO WIDTH FIX ========== */
  /* Remove nested horizontal padding for fullscreen-type heroes only */
  .home-Hero-section .hero-container,
  .home-Hero-section .hero-content,
  .home-Hero-section .hero-metrics,
  .home-Hero-section .hero-image-column,
  .home-Hero-section .hero-image-frame,
  .home-Hero-section .container,
  .home-Hero-section .wrapper,
  /* V2 fullscreen heroes */
  section[data-hero-type="fullscreen-scrim"] .hero-container,
  section[data-hero-type="fullscreen-scrim"] .hero-content,
  section[data-hero-type="fullscreen-scrim"] .container,
  section[data-hero-type="fullscreen-card"] .hero-container,
  section[data-hero-type="fullscreen-card"] .hero-content,
  section[data-hero-type="fullscreen-card"] .container,
  /* Editor-applied background images on hero sections */
  section[class*="hero"][data-zappy-bg-type="image"] .hero-container,
  section[class*="hero"][data-zappy-bg-type="image"] .hero-content,
  section[class*="hero"][data-zappy-bg-type="image"] .container,
  section[class*="hero"][data-zappy-bg-type="video"] .hero-container,
  section[class*="hero"][data-zappy-bg-type="video"] .hero-content,
  section[class*="hero"][data-zappy-bg-type="video"] .container,
  /* V1 fallback: hero sections with known bg structures */
  section[class*="hero"]:has(.hero-bg-container) .hero-container,
  section[class*="hero"]:has(.hero-bg-container) .hero-content,
  section[class*="hero"]:has(.hero-bg-container) .container,
  section[class*="hero"]:has([data-hero-bg]) .hero-container,
  section[class*="hero"]:has([data-hero-bg]) .hero-content,
  section[class*="hero"]:has([data-hero-bg]) .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  
  /* ========== HERO VERTICAL SPACING FIX ========== */
  .home-Hero-section .hero-content,
  .home-Hero-section .hero-container,
  .home-Hero-section .hero-image-column {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  
  .hero-cta-row {
    padding: 8px 0 !important;
    margin: 8px 0 12px !important;
  }
  
  .hero-content {
    gap: 12px !important;
  }
  
  .hero-metrics {
    gap: 10px !important;
  }
  
  .metric-card {
    padding: 12px !important;
  }
  
  .hero-container {
    gap: 16px !important;
  }

  /* ========== GRID OVERFLOW FIX ========== */
  /* CSS Grid items default to min-width:auto, preventing them from shrinking
     below their content's intrinsic size. Fixed-width zoom wrappers or large
     images inside grid items can force the column wider than the viewport. */
  .hero-container > * {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  /* Zappy-inserted image elements with fixed-width zoom wrappers must
     respect the parent container width on mobile */
  .zappy-inserted-element,
  [data-zappy-zoom-wrapper] {
    max-width: 100% !important;
  }

  /* ========== FULLSCREEN HERO OVERFLOW FIX ========== */

  section[data-hero-type*="fullscreen"] {
    height: auto !important;
    min-height: 100svh !important;
    padding: 0 0 90px 0 !important;
  }
  section[data-hero-type*="fullscreen"] > [class*="-container"]:not([class*="bg"]):not([class*="scrim"]):not([class*="divider"]),
  section[data-hero-type*="fullscreen"] > .container {
    padding-bottom: 100px !important;
    min-height: auto !important;
  }
}

/* ========== HERO SECTION WIDTH CONSTRAINT (ALL VIEWPORTS) ========== */
/* Prevent hero sections from exceeding viewport width.                */
/* Root cause: AI-generated CSS may use width:100vw or add horizontal  */
/* padding to the section, causing it to overflow the viewport.        */
/* NOTE: Do NOT add overflow:hidden here — it clips SVG bottom dividers */
/* that need overflow:visible to extend into the next section.          */
section[class*="hero" i],
section[class*="Hero"],
section[data-hero-type] {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ========== SVG DIVIDER OVERLAY FIX ========== */
/* Many AI sections place .section-divider absolutely at the bottom of a section,
   which can overlap/cut off the last row of content. The safest CSS-only fix
   is to prevent overlay by forcing the divider into normal flow. */
.section-divider {
  position: relative !important;
  bottom: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: auto !important;
  margin-top: 16px !important;
}

.section-divider svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
}

/* Exclude small icon SVGs from full-width sizing - these are decorative icons, not wave dividers */
.section-divider svg.divider-icon,
.section-divider svg[width="32"],
.section-divider svg[width="24"],
.section-divider svg[width="48"],
.section-divider svg[viewBox="0 0 32 32"],
.section-divider svg[viewBox="0 0 24 24"],
.section-divider svg[viewBox="0 0 48 48"] {
  width: auto !important;
  height: auto !important;
  max-width: 64px !important;
  max-height: 64px !important;
}

/* ========== END SVG DIVIDER OVERLAY FIX ========== */

/* ========== HORIZONTAL-PAIR GRID MEDIA FIX ========== */
/* Ensures media in horizontal-pair grids fills columns correctly */

/* Image/video media cells: stretch to fill the grid cell */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"]:not([data-element-type="icon"]) {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  min-height: 0 !important;
}

/* Icon media cells: use flex for centering but allow alignment to be controlled by the editor */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"][data-element-type="icon"] {
  position: relative !important;
  display: flex !important;
  min-height: 0 !important;
}

/* Images/videos: preserve aspect ratio while filling column width */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > img,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  flex: 0 0 auto !important;
  min-height: 0 !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Icons/SVG: respect their explicit pixel size from the editor */
/* Do NOT force width/height: 100% - icons should use their inline size */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > svg,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > .iconify,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] [data-zappy-media-cell="true"] > .iconify svg {
  flex: 0 0 auto !important;
  min-height: 0 !important;
  display: inline-block !important;
}

/* Non-media grid items (buttons, text, etc.) should NOT stretch */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) {
  align-self: start !important;
  height: auto !important;
  width: auto !important;
  max-width: 100% !important;
}

/* Buttons inside non-media grid items should NOT stretch horizontally */
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) .btn,
.zappy-horizontal-grid[data-zappy-grid-kind="horizontal-pair"] > .zappy-inserted-element:not([data-zappy-media-cell]) [data-element-type="button"] {
  width: auto !important;
  flex: 0 0 auto !important;
}

/* ========== END HORIZONTAL-PAIR GRID MEDIA FIX ========== */

/* ========== END GRID RESPONSIVE FIX ========== */


/* ZAPPY_CONTACT_FORM_LAYOUT_FIX */
form.contact-form, .contact-form { flex-direction: column !important; align-items: stretch !important; }
form.contact-form > .contact-form-field, .contact-form > .contact-form-field { width: 100% !important; align-self: stretch !important; }
form.contact-form .contact-input, form.contact-form .contact-textarea { width: 100% !important; box-sizing: border-box !important; }


/* ZAPPY_NAVBAR_CTA_ALIGNMENT_FIX */
.nav-cta-container .zappy-search-container,
.zappy-search-container { align-self: center; }
.nav-cta-container p { margin: 0 !important; }


/* ZAPPY_SECTION_BG_TYPE_FIX */
[data-zappy-bg-type="color"] { background-image: none !important; background-color: var(--zappy-bg-color, transparent) !important; }
[data-zappy-bg-type="image"] { background-image: linear-gradient(var(--zappy-bg-overlay, rgba(0,0,0,0)), var(--zappy-bg-overlay, rgba(0,0,0,0))), var(--zappy-bg-image, none) !important; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
[data-zappy-bg-type="video"] { background-image: none !important; }


/* ZAPPY_IOS_NAVBAR_GAP_FIX */
/* iOS Safari does not clip overflow-x:hidden on <html>, so a page with any
   horizontal overflow ends up with visual viewport > layout viewport.
   position:fixed children anchored with right:0 (the mobile dropdown menu)
   then pin to the visual viewport right edge — off-screen past the navbar.
   Companion JS (ZAPPY_IOS_VIEWPORT_GAP_FIX in script.js) measures the gap
   and exposes it as --ios-viewport-gap; this rule uses it to shift the
   menu inward so it lands on the real layout-viewport right edge. On every
   other browser the gap is 0 and the rule is a no-op.

   The selector list below intentionally mirrors the RTL selectors used
   elsewhere in the stylesheet — we need equal-or-higher specificity to
   win the cascade (!important alone can't beat higher specificity). */
@media (max-width: 768px) {
  .navbar,
  nav.navbar {
    width: auto !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  #navMenu,
  .nav-menu,
  html[dir="rtl"] .nav-menu,
  html[dir="rtl"] .navbar .nav-menu,
  html[dir="rtl"] nav .nav-menu,
  html[dir="rtl"] header .nav-menu,
  html[dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .navbar .nav-menu,
  [dir="rtl"] nav .nav-menu,
  [dir="rtl"] header .nav-menu,
  [dir="rtl"] .nav-container .nav-menu,
  [dir="rtl"] .nav-menu,
  html[lang="he"] .nav-menu,
  html[lang="ar"] .nav-menu {
    /* Force position:fixed so the --ios-viewport-gap shift is measured
       against the (visual) viewport, not whatever container the menu may
       have been reparented into by earlier v1/v2 patches.
       --zappy-navbar-bottom is set by the runtime JS companion and
       defaults to 70px — this lets us override the v2 `top: 100%` (which
       with position:fixed would resolve to the full viewport height and
       push the menu off-screen). */
    position: fixed !important;
    top: var(--zappy-navbar-bottom, 70px) !important;
    right: var(--ios-viewport-gap, 0px) !important;
  }
}


/* ZAPPY_PRODUCTS_DROPDOWN_LTR_INDENT */
/* LTR mirror of the [dir="rtl"] indentation block. Equal-or-higher
   specificity than the shorthand .navbar .sub-menu li a override so the
   nested sub-category items keep their visual indent on every LTR page —
   English, Spanish, French, Russian, German, etc. The selectors target
   dir="ltr" (the source of truth set on <html> by per-language page
   generation), NOT a specific language code, so the rule stays generic
   across every site / language combination. */
[dir="ltr"] .sub-menu .zappy-nav-child > a,
[dir="ltr"] .zappy-products-dropdown .zappy-nav-child > a,
html[dir="ltr"] .sub-menu .zappy-nav-child > a,
html[dir="ltr"] .zappy-products-dropdown .zappy-nav-child > a {
  padding-left: 28px !important;
  padding-right: 16px !important;
  font-size: 0.9em !important;
  opacity: 0.85 !important;
}
@media (max-width: 768px) {
  [dir="ltr"] .navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  [dir="ltr"] nav.navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  html[dir="ltr"] .navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a,
  html[dir="ltr"] nav.navbar .zappy-products-dropdown > .sub-menu .zappy-nav-child > a {
    padding-left: 36px !important;
    padding-right: 16px !important;
  }
}


/* ZAPPY_MOBILE_NAV_MENU_ITEM_PADDING */
@media (max-width: 768px) {
  .navbar .nav-menu.active > li > a,
  nav.navbar .nav-menu.active > li > a,
  #navMenu.active > li > a,
  .nav-menu.open > li > a {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 16px !important;
    height: auto !important;
    min-height: 44px !important;
    line-height: 1.4 !important;
  }
  .navbar .nav-menu.active > li,
  nav.navbar .nav-menu.active > li,
  #navMenu.active > li,
  .nav-menu.open > li {
    margin: 4px 0 !important;
  }
  .navbar .nav-menu.active > li.zappy-products-dropdown > a,
  nav.navbar .nav-menu.active > li.zappy-products-dropdown > a,
  #navMenu.active > li.zappy-products-dropdown > a,
  .nav-menu.open > li.zappy-products-dropdown > a {
    padding-right: 56px !important;
  }
  html[dir="rtl"] .navbar .nav-menu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] nav.navbar .nav-menu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] #navMenu.active > li.zappy-products-dropdown > a,
  html[dir="rtl"] .nav-menu.open > li.zappy-products-dropdown > a {
    padding-right: 16px !important;
    padding-left: 56px !important;
  }
}

/* Cookie Consent Styles */
/* Cookie Consent Customizations ccCssV10 */
:root {
  /* --cc-bg has to STAY translucent (with the matching backdrop-filter on
   * the bar below) so the slim bar reads as a frosted overlay rather than
   * a solid horizontal stripe slapped on top of the page. The preferences
   * modal — which doesn't use backdrop-filter — overrides this to a solid
   * white below so it doesn't render see-through against the page. */
  --cc-bg: rgba(255, 255, 255, 0.96);
  --cc-primary-color: #1f2937;
  --cc-secondary-color: #4b5563;
  --cc-btn-primary-bg: #FF7A00;
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border: #FF7A00;
  --cc-btn-primary-hover-bg: #e66100;
  --cc-btn-primary-hover-border: #e66100;
  --cc-btn-primary-hover-color: #ffffff;
  /* --cc-btn-secondary-* are used by BOTH the bar's "Customize" link and
   * the preferences modal's "Accept Necessary" / "Save Preferences" pills.
   * We keep the token defaults sensible (light grey fill, dark text) so
   * the preferences-modal buttons stay visible, then override only
   * .cm--bar .cm__btn[data-role=show] directly to render the
   * Customize link as a transparent underlined text. */
  --cc-btn-secondary-bg: #f3f4f6;
  --cc-btn-secondary-color: #1f2937;
  --cc-btn-secondary-border: #e5e7eb;
  --cc-btn-secondary-hover-bg: #e5e7eb;
  --cc-btn-secondary-hover-color: #111827;
  --cc-btn-secondary-hover-border: #d1d5db;
  --cc-toggle-on-bg: #FF7A00;
}

#cc-main,
#cc--main {
  font-family: inherit !important;
  color: var(--cc-primary-color);
}

/* === Slim bottom bar (consent modal) ===
 * Single-row inline layout: [description text] ......... [Accept] [Customize]
 * - No title, no footer (Privacy/Terms live in the page legal footer).
 * - Description truncates with ellipsis on narrow viewports rather than
 *   pushing the bar into a multi-line stack.
 * - Hard-overrides .cm--inline (the v3 modifier the library adds for the
 *   bar inline layout) so the body stays in a single flex row.
 */
#cc-main #cm.cm--bar,
#cc--main #cm.cm--bar {
  position: fixed !important;
  inset: auto 0 0 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 10px 56px 10px 20px !important;
  background: var(--cc-bg) !important;
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border: none !important;
  border-top: 1px solid rgba(255, 122, 0, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.04) !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  z-index: 2147483646;
}

/* X dismiss button — injected at runtime by the init script's onModalShow
 * callback. Anchored to the top-right of the bar with a small hit target
 * (32x32) and a low-emphasis text color so it doesn't compete with the
 * primary "Accept" pill. Click maps to acceptCategory([]) (necessary only),
 * which is the GDPR/ePrivacy-correct mapping for "dismissed without an
 * explicit choice".
 *
 * extra right-padding on #cm.cm--bar above (56px vs the previous 20px)
 * keeps the description text from running under the X on narrow viewports. */
#cc-main #cm.cm--bar .cm__close-x,
#cc--main #cm.cm--bar .cm__close-x {
  position: absolute !important;
  top: 8px !important;
  right: 12px !important;
  width: 28px !important;
  height: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  border-radius: 999px !important;
  color: var(--cc-secondary-color) !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
#cc-main #cm.cm--bar .cm__close-x:hover,
#cc--main #cm.cm--bar .cm__close-x:hover {
  background-color: rgba(0, 0, 0, 0.06) !important;
  color: var(--cc-primary-color) !important;
}
#cc-main #cm.cm--bar .cm__close-x:focus-visible,
#cc--main #cm.cm--bar .cm__close-x:focus-visible {
  outline: 2px solid var(--cc-btn-primary-bg) !important;
  outline-offset: 2px;
}
/* RTL: anchor to the top-LEFT and shift body padding accordingly. */
[dir="rtl"] #cc-main #cm.cm--bar,
[dir="rtl"] #cc--main #cm.cm--bar {
  padding: 10px 20px 10px 56px !important;
}
[dir="rtl"] #cc-main #cm.cm--bar .cm__close-x,
[dir="rtl"] #cc--main #cm.cm--bar .cm__close-x {
  right: auto !important;
  left: 12px !important;
}

#cc-main #cm.cm--bar .cm__body,
#cc--main #cm.cm--bar .cm__body {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 !important;
}

#cc-main #cm.cm--bar .cm__texts,
#cc--main #cm.cm--bar .cm__texts {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
}

/* Title intentionally hidden if any translation set still carries it,
 * so the bar stays single-line even on legacy sites that haven't been
 * re-upgraded yet. */
#cc-main #cm.cm--bar .cm__title,
#cc--main #cm.cm--bar .cm__title {
  display: none !important;
}

#cc-main #cm.cm--bar .cm__desc,
#cc--main #cm.cm--bar .cm__desc {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--cc-primary-color) !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Same defensive hide for the cm__footer — legacy bundles may still emit
 * Privacy/Terms links inside the bar, but they live in the page footer. */
#cc-main #cm.cm--bar .cm__footer,
#cc--main #cm.cm--bar .cm__footer {
  display: none !important;
}

/* Button group — Customize (left) ... Accept (right).
 * vanilla-cookieconsent v3 emits buttons in this DOM order:
 *   1. acceptAllBtn         data-role="all"        ("Accept")
 *   2. acceptNecessaryBtn   data-role="necessary"  (omitted from the bar
 *                           in our config, lives in the prefs modal)
 *   3. showPreferencesBtn   data-role="show"       ("Customize")
 *
 * So natural flex-direction: row paints them [Accept] [Customize] from
 * left to right — the OPPOSITE of the destructive-on-left,
 * primary-on-right convention we want. We use flex-direction: row-reverse
 * to flip the visual order to [Customize] [Accept]. Verified live (May
 * 2026) against the deployed bundle via incognito + browser automation:
 * the rendered DOM shows acceptAllBtn FIRST, showPreferencesBtn second.
 * Do NOT change this back to plain row without re-verifying the
 * library emit order — V9 was rolled back specifically because it made
 * that assumption.
 *
 * RTL: writing direction already inverts the inline axis, and
 * row-reverse flips again, so [dir=rtl] users see Customize on the
 * inline-end (right side of the bar in RTL = right of Accept), which
 * mirrors the LTR layout destructive-on-inline-start convention
 * correctly. No extra RTL override needed. */
#cc-main #cm.cm--bar .cm__btns,
#cc--main #cm.cm--bar .cm__btns {
  display: flex !important;
  flex-direction: row-reverse !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 0 0 auto;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Buttons render as inline-flex so internal label/icon nodes vertically
 * center against the description text (the previous block-level button
 * relied on padding + line-height matching, which left a ~2px offset
 * because the text baseline and button-content baseline differ). */
#cc-main #cm.cm--bar .cm__btn,
#cc--main #cm.cm--bar .cm__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 0 16px !important;
  height: 32px !important;
  min-height: 0 !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  transition: background-color 0.15s ease, color 0.15s ease;
}

/* Primary "Accept" — filled pill in site primary color */
#cc-main #cm.cm--bar .cm__btn[data-role="all"],
#cc--main #cm.cm--bar .cm__btn[data-role="all"] {
  background-color: var(--cc-btn-primary-bg) !important;
  color: var(--cc-btn-primary-color) !important;
  border: 1px solid var(--cc-btn-primary-border) !important;
}

#cc-main #cm.cm--bar .cm__btn[data-role="all"]:hover,
#cc--main #cm.cm--bar .cm__btn[data-role="all"]:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
  border-color: var(--cc-btn-primary-hover-border) !important;
}

/* Secondary "Customize" — borderless underlined text link.
 * Same height as the Accept pill so the row stays perfectly aligned, but
 * with no fill, no border, and an underline that sits 3px below the
 * baseline (text-underline-offset). Hard-coded brand color so this rule
 * doesn't depend on --cc-btn-secondary-* (which have to stay sensible
 * defaults for the preferences modal's two secondary pills). */
#cc-main #cm.cm--bar .cm__btn[data-role="show"],
#cc--main #cm.cm--bar .cm__btn[data-role="show"] {
  background-color: transparent !important;
  color: #FF7A00 !important;
  border: none !important;
  padding: 0 8px !important;
  height: 32px !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 6px !important;
}

#cc-main #cm.cm--bar .cm__btn[data-role="show"]:hover,
#cc--main #cm.cm--bar .cm__btn[data-role="show"]:hover {
  color: #e66100 !important;
  background-color: transparent !important;
}

/* === Preferences modal — minimalist restyle ===
 * The modal opens when "Customize" is clicked. It MUST render as a solid
 * card — pre-fix it inherited the bar's translucent --cc-bg without the
 * matching backdrop-filter, leaving the page footer visibly bleeding
 * through the modal box, the title, the toggle rows, and the bottom
 * button row. Solid white box + clean shadow + an explicit slightly
 * darker scrim on the overlay restores proper modal hierarchy. */
#cc-main .pm,
#cc--main .pm {
  background: rgba(0, 0, 0, 0.32) !important;
}

#cc-main .pm .pm__box,
#cc--main .pm .pm__box {
  background: #ffffff !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-radius: 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18) !important;
}

#cc-main .pm__title,
#cc--main .pm__title {
  font-weight: 600 !important;
  color: var(--cc-primary-color) !important;
}

#cc-main .pm__btn[data-role="accept-all"],
#cc--main .pm__btn[data-role="accept-all"] {
  background-color: var(--cc-btn-primary-bg) !important;
  border-color: var(--cc-btn-primary-border) !important;
  color: var(--cc-btn-primary-color) !important;
  border-radius: 999px !important;
}

#cc-main .pm__btn[data-role="accept-all"]:hover,
#cc--main .pm__btn[data-role="accept-all"]:hover {
  background-color: var(--cc-btn-primary-hover-bg) !important;
  border-color: var(--cc-btn-primary-hover-border) !important;
}

/* Secondary modal pills — "Accept Necessary" + "Save Preferences".
 * Must be a visible solid fill (light grey on white card) so users can
 * actually find them. Pre-fix these inherited --cc-btn-secondary-bg:
 * transparent (used by the bar's Customize text link), making them
 * invisible against the modal background. */
#cc-main .pm__btn,
#cc--main .pm__btn {
  border-radius: 999px !important;
}
#cc-main .pm__btn[data-role="necessary"],
#cc--main .pm__btn[data-role="necessary"],
#cc-main .pm__btn[data-role="save"],
#cc--main .pm__btn[data-role="save"] {
  background-color: var(--cc-btn-secondary-bg) !important;
  color: var(--cc-btn-secondary-color) !important;
  border: 1px solid var(--cc-btn-secondary-border) !important;
}
#cc-main .pm__btn[data-role="necessary"]:hover,
#cc--main .pm__btn[data-role="necessary"]:hover,
#cc-main .pm__btn[data-role="save"]:hover,
#cc--main .pm__btn[data-role="save"]:hover {
  background-color: var(--cc-btn-secondary-hover-bg) !important;
  color: var(--cc-btn-secondary-hover-color) !important;
  border-color: var(--cc-btn-secondary-hover-border) !important;
}

/* Toggle thumbs in brand color when on */
#cc-main .section__toggle:checked + .toggle__icon,
#cc--main .section__toggle:checked + .toggle__icon,
#cc-main .section__toggle:checked ~ .toggle__icon,
#cc--main .section__toggle:checked ~ .toggle__icon {
  background-color: var(--cc-toggle-on-bg) !important;
}

/* Mobile fallback: two rows (description on top, buttons below) */
@media (max-width: 640px) {
  #cc-main #cm.cm--bar,
  #cc--main #cm.cm--bar {
    padding: 10px 14px !important;
  }
  #cc-main #cm.cm--bar .cm__body,
  #cc--main #cm.cm--bar .cm__body {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  #cc-main #cm.cm--bar .cm__desc,
  #cc--main #cm.cm--bar .cm__desc {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  #cc-main #cm.cm--bar .cm__btns,
  #cc--main #cm.cm--bar .cm__btns {
    width: 100%;
    justify-content: space-between;
  }
  #cc-main #cm.cm--bar .cm__btn[data-role="all"],
  #cc--main #cm.cm--bar .cm__btn[data-role="all"] {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Cookie preferences button in legal footer keeps default behavior */
.cookie-preferences-btn:hover {
  text-decoration: none !important;
}
/* RTL footer contact: icon on the right (start) side, text on the left */
html[dir="rtl"] .footer-contact li, html[dir="rtl"] .site-footer .footer-contact li, html[dir="rtl"] .site-footer .footer-col:nth-child(3) .footer-contact li { flex-direction: row !important; justify-content: flex-start !important; }
html[dir="rtl"] .footer-contact .contact-icon { order: 0 !important; }
html[dir="rtl"] .footer-contact .contact-text { order: 1 !important; }
html[dir="rtl"] .footer-contact li > a { flex-direction: row !important; }

/* Spec table BiDi fix: isolate cells so mixed LTR/RTL content renders correctly */
.specs-table th, .specs-table td { unicode-bidi: plaintext !important; }
