@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@700;900&display=swap');



/* 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: #7A1F2B;
  --secondary: #355C7D;
  --accent: #D89B2B;
  --bg-light: #F1DFC2;
  --bg-dark: #201816;
  --text-dark: #201816;
  --text-light: #F7F1E7;
  --text-muted: #6E6258;
  --border-light: #D6C2A3;
  --border-dark: #4A3935;
  --nav-bg: transparent;
  --nav-text: #F7F1E7;
  --nav-text-hover: #D89B2B;

  --radius-sm: 2px;
  --radius-card: 2px;
  --radius-btn: 2px;
  --radius-img: 0px;
  --radius-badge: 2px;
  --radius-input: 2px;
  --shadow-subtle: 0 4px 10px rgba(58,32,24,0.12);
  --shadow-card: 0 8px 20px rgba(58,32,24,0.18);
  --shadow-elevated: 0 16px 36px rgba(58,32,24,0.28);
  --shadow-btn-hover: 0 12px 28px rgba(143,31,18,0.22);
  --spacing-section: 96px;
  --spacing-section-mobile: 56px;
  --spacing-card-padding: 32px;
  --spacing-card-gap: 32px;
  --spacing-element-gap: 16px;
  --transition-default: all 0.3s ease;
  --transition-hover: all 0.25s ease-in-out;

  --gradient-primary: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  --gradient-gold-shine: linear-gradient(180deg, #f7e6a3 0%, #e7c56f 42%, #c89a3d 100%);
  --gradient-secondary: linear-gradient(180deg, #345983 0%, #1f385d 100%);
  --gradient-gold-accent: linear-gradient(180deg, #f4c247 0%, #d89a1f 100%);
  --gradient-dark-section: linear-gradient(180deg, #6c3317 0%, #2a160f 100%);
  --gradient-overlay-dark: linear-gradient(180deg, rgba(58,32,24,0.18) 0%, rgba(58,32,24,0.55) 100%);
  --gradient-light-section: linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  --gradient-overlay-light: linear-gradient(180deg, rgba(255,244,220,0.12) 0%, rgba(242,223,184,0.42) 100%);
}

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

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

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

img,
video,
svg {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-img);
}

ul,
ol {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

h1 {
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
}

h2 {
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
}

h3 {
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 1rem !important;
  margin-top: 0.5rem !important;
}

h4 {
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
}

h5 {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
}

h6 {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 0.75rem !important;
  margin-top: 0.5rem !important;
}

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.85;
}

@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: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-btn);
  padding: 14px 36px;
  font-weight: 600;
  text-transform: uppercase;
  transition: var(--transition-hover);
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.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: var(--text-light);
  border-color: var(--primary);
}

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

.btn-secondary {
  background: var(--gradient-secondary, var(--secondary));
  color: var(--text-light);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--text-light);
  border-color: var(--secondary);
  box-shadow: 0 12px 28px rgba(53,92,125,0.28);
}

.btn-accent {
  background: var(--gradient-gold-accent, var(--accent));
  color: var(--text-dark);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

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

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

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline-light:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 17px;
}

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

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

.badge {
  display: inline-block;
  border-radius: var(--radius-badge);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif;
}

.badge-primary {
  background: var(--primary);
  color: var(--text-light);
}

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

.badge-secondary {
  background: var(--secondary);
  color: var(--text-light);
}

input,
textarea,
select {
  border-radius: var(--radius-input);
  border: 1px solid var(--border-light);
  padding: 10px 14px;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  color: var(--text-dark);
  background: #fff;
  transition: var(--transition-default);
  width: 100%;
  direction: rtl;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122,31,43,0.12);
  outline: none;
}

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

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

.bg-gradient-primary { background: var(--gradient-primary) !important; }
.bg-gradient-secondary { background: var(--gradient-secondary) !important; }
.bg-gradient-dark { background: var(--gradient-dark-section) !important; }
.bg-gradient-light { background: var(--gradient-light-section) !important; }
.bg-gradient-gold { background: var(--gradient-gold-shine) !important; }

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

.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.d-inline { display: inline !important; }
.d-inline-flex { display: inline-flex !important; }

.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.align-end { align-items: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-end { justify-content: flex-end !important; }
.justify-start { justify-content: flex-start !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-col { flex-direction: column !important; }
.gap-sm { gap: var(--spacing-element-gap) !important; }
.gap-md { gap: var(--spacing-card-gap) !important; }

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

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

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.pt-section { padding-top: var(--spacing-section) !important; }
.pb-section { padding-bottom: var(--spacing-section) !important; }

.rounded-sm { border-radius: var(--radius-sm) !important; }
.rounded-card { border-radius: var(--radius-card) !important; }
.rounded-full { border-radius: 50% !important; }

.overflow-hidden { overflow: hidden !important; }
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

.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 (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .btn-lg {
    padding: 14px 32px;
    font-size: 15px;
  }

  .card {
    padding: 20px;
  }
}

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

  .hide-mobile {
    display: none !important;
  }
}

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

@media (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}

/* Navbar Styles */
:root {
  --nav-bg: transparent;
  --nav-text: #F7F1E7;
  --nav-text-hover: #D89B2B;
  --primary: #7A1F2B;
  --secondary: #355C7D;
  --accent: #D89B2B;
  --bg-light: #F1DFC2;
  --bg-dark: #201816;
  --text-dark: #201816;
  --text-light: #F7F1E7;
  --text-muted: #6E6258;
  --border-light: #D6C2A3;
  --border-dark: #4A3935;
}

.navbar {
  background: var(--nav-bg);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  direction: rtl;
  background: linear-gradient(to bottom, rgba(32, 24, 22, 0.82) 0%, rgba(32, 24, 22, 0.0) 100%);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(214, 194, 163, 0.12);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.navbar.scrolled {
  background: rgba(32, 24, 22, 0.97);
  border-bottom: 1px solid rgba(214, 194, 163, 0.22);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0;
}

.nav-brand {
  flex-shrink: 0;
  margin-left: 40px;
}

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

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

.nav-menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  color: var(--nav-text);
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 22px;
  position: relative;
  transition: all 0.25s ease-in-out;
  text-shadow: 0 1px 4px rgba(32, 24, 22, 0.55);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  text-shadow: 0 0 12px rgba(216, 155, 43, 0.35);
}

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

.nav-cta-container {
  margin-right: auto;
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid rgba(216, 155, 43, 0.3);
  transition: all 0.25s ease-in-out;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(32, 24, 22, 0.4);
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 155, 43, 0.15) 0%, transparent 60%);
  
  transition: opacity 0.25s ease-in-out;
}

.nav-cta-btn:hover {
  background: #8f2333;
  border-color: rgba(216, 155, 43, 0.6);
  box-shadow: 0 12px 28px rgba(143, 31, 18, 0.22);
  transform: translateY(-1px);
}

.nav-cta-btn:hover::before {
  opacity: 1;
}

.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(32, 24, 22, 0.97);
  }

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

  .nav-brand {
    margin-left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    background: rgba(32, 24, 22, 0.98);
    flex-direction: column;
    padding: 24px 0 32px;
    border-bottom: 1px solid rgba(214, 194, 163, 0.18);
    gap: 4px;
    backdrop-filter: blur(10px);
  }

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

  .nav-link {
    padding: 14px 32px;
    font-size: 17px;
    text-align: center;
    border-bottom: 1px solid rgba(214, 194, 163, 0.08);
  }

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

  .nav-cta-container {
    margin-right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 32px 0;
  }

  .nav-cta-btn {
    width: 100%;
    text-align: center;
    padding: 14px 36px;
  }
}
:root {
  --nav-bg: transparent;
  --nav-text: #F7F1E7;
  --nav-text-hover: #D89B2B;
  --primary: #7A1F2B;
  --secondary: #355C7D;
  --accent: #D89B2B;
  --bg-light: #F1DFC2;
  --bg-dark: #201816;
  --text-dark: #201816;
  --text-light: #F7F1E7;
  --text-muted: #6E6258;
  --border-light: #D6C2A3;
  --border-dark: #4A3935;
}

.navbar {
  background: var(--nav-bg);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  direction: rtl;
  background: linear-gradient(to bottom, rgba(32, 24, 22, 0.82) 0%, rgba(32, 24, 22, 0.0) 100%);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(214, 194, 163, 0.12);
  transition: background 0.35s ease, border-color 0.35s ease;
}

.navbar.scrolled {
  background: rgba(32, 24, 22, 0.97);
  border-bottom: 1px solid rgba(214, 194, 163, 0.22);
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0;
}

.nav-brand {
  flex-shrink: 0;
  margin-left: 40px;
}

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

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

.nav-menu {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  color: var(--nav-text);
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 8px 22px;
  position: relative;
  transition: all 0.25s ease-in-out;
  text-shadow: 0 1px 4px rgba(32, 24, 22, 0.55);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease-in-out;
}

.nav-link:hover {
  color: var(--nav-text-hover);
  text-shadow: 0 0 12px rgba(216, 155, 43, 0.35);
}

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

.nav-cta-container {
  margin-right: auto;
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid rgba(216, 155, 43, 0.3);
  transition: all 0.25s ease-in-out;
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 3px rgba(32, 24, 22, 0.4);
}

.nav-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 155, 43, 0.15) 0%, transparent 60%);
  
  transition: opacity 0.25s ease-in-out;
}

.nav-cta-btn:hover {
  background: #8f2333;
  border-color: rgba(216, 155, 43, 0.6);
  box-shadow: 0 12px 28px rgba(143, 31, 18, 0.22);
  transform: translateY(-1px);
}

.nav-cta-btn:hover::before {
  opacity: 1;
}

.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(32, 24, 22, 0.97);
  }

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

  .nav-brand {
    margin-left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .nav-menu {
    display: none;
    position: fixed;
    top: 64px;
    right: 0;
    left: 0;
    background: rgba(32, 24, 22, 0.98);
    flex-direction: column;
    padding: 24px 0 32px;
    border-bottom: 1px solid rgba(214, 194, 163, 0.18);
    gap: 4px;
    backdrop-filter: blur(10px);
  }

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

  .nav-link {
    padding: 14px 32px;
    font-size: 17px;
    text-align: center;
    border-bottom: 1px solid rgba(214, 194, 163, 0.08);
  }

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

  .nav-cta-container {
    margin-right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 16px 32px 0;
  }

  .nav-cta-btn {
    width: 100%;
    text-align: center;
    padding: 14px 36px;
  }
}


/* ============================================
   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, #7A1F2B));
  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;
}

/* Search container inside CTA area — vertically center to match CTA button */
.nav-cta-container .zappy-search-container {
  align-self: center;
}
.nav-cta-container p {
  margin: 0 !important;
}

/* 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: none !important;
    overflow-y: visible !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;
    white-space: normal !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: none !important;
    pointer-events: auto !important;
    position: static !important;
    overflow-y: visible !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: 100% !important;
  max-width: none !important;
  overflow-x: clip !important;
}

/* iOS Safari fix: When the page has hidden horizontal overflow (which iOS
   does not clip on the <html> element), width: 100% / 100vw on a fixed
   element resolves to the visual viewport width, which can exceed the
   actual layout viewport. This pushes children positioned with right:0
   off-screen to the right.

   Two-part fix:
   1. Navbar — left:0 + right:0 + width:auto + overflow-x:hidden anchors
      the navbar to the real layout viewport on all mobile browsers.
   2. Mobile dropdown menu — position:fixed + right:0 on the menu still
      anchors to the iOS visual viewport (regardless of its navbar parent).
      We use a CSS variable --ios-viewport-gap, set by a runtime JS snippet
      (see ensureIOSNavbarGapFix in githubService) to
      (window.innerWidth - document.documentElement.clientWidth). Shifting
      the menu's 'right' by that gap lands it on the real layout-viewport
      right edge on iOS, and is a no-op on every other browser (gap=0).  */
@media (max-width: 768px) {
  .navbar,
  nav.navbar {
    width: auto !important;
    max-width: none !important;
    left: 0 !important;
    right: 0 !important;
    overflow-x: clip !important;
    box-sizing: border-box !important;
  }
  /* Selector list mirrors the RTL selectors used elsewhere in Zappy CSS so
     this rule wins the cascade via equal-or-higher specificity. */
  #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 {
    position: fixed !important;
    top: var(--zappy-navbar-bottom, 70px) !important;
    right: var(--ios-viewport-gap, 0px) !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 */
:root {
  --primary: #7A1F2B;
  --secondary: #355C7D;
  --accent: #D89B2B;
  --bg-light: #F1DFC2;
  --bg-dark: #201816;
  --text-dark: #201816;
  --text-light: #F7F1E7;
  --text-muted: #6E6258;
  --border-light: #D6C2A3;
  --border-dark: #4A3935;
}

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

/* Parchment texture overlay */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(122,31,43,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(53,92,125,0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Pattern band */
.footer-pattern-band {
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 18px,
    var(--primary) 18px,
    var(--primary) 36px,
    var(--bg-dark) 36px,
    var(--bg-dark) 48px,
    var(--secondary) 48px,
    var(--secondary) 60px,
    var(--bg-dark) 60px,
    var(--bg-dark) 72px
  );
  opacity: 0.85;
  position: relative;
  z-index: 1;
}

.footer-pattern-band--bottom {
  margin-top: 0;
  opacity: 0.5;
}

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

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

/* Column base */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Brand column */
.footer-logo-wrap {
  margin-bottom: 0.25rem;
}

.footer-logo-wrap img {
  display: block;
  max-width: 150px;
  height: auto;
  border-radius: 2px;
  opacity: 0.9;
}

.footer-brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(247,241,231,0.62);
  line-height: 1.75;
  margin: 0;
  font-style: italic;
}

/* Ornament divider */
.footer-ornament {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.footer-ornament span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.footer-ornament i {
  color: var(--accent);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Headings */
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin: 0 0 0.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 2rem;
  height: 1px;
  background: var(--accent);
  opacity: 0.8;
}

/* Nav links */
.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav li a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(247,241,231,0.75);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.25s ease-in-out;
  border-radius: 2px;
  padding: 0.15rem 0;
}

.footer-nav li a:hover {
  color: var(--accent);
  padding-right: 0.4rem;
}

.footer-nav-icon {
  font-size: 0.72rem;
  color: var(--accent);
  opacity: 0.7;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

/* Contact */
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(216,155,43,0.12);
  border: 1px solid rgba(216,155,43,0.25);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.contact-icon i {
  font-size: 0.7rem;
  color: var(--accent);
}

.contact-text {
  font-size: 0.84rem;
  color: rgba(247,241,231,0.72);
  line-height: 1.5;
  padding-top: 0.25rem;
}

.contact-text a {
  color: rgba(247,241,231,0.72);
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  border-radius: 2px;
}

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

/* Social */
.footer-social {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(247,241,231,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  color: rgba(247,241,231,0.75);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 10px rgba(58,32,24,0.12);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(216,155,43,0.25);
}

/* Quote */
.footer-quote {
  margin-top: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-right: 2px solid rgba(216,155,43,0.4);
  background: rgba(216,155,43,0.05);
  border-radius: 0 2px 2px 0;
}

.footer-quote p {
  margin: 0;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(247,241,231,0.55);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* Bottom bar */
.footer-bottom {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--border-dark);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copyright {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(247,241,231,0.45);
  letter-spacing: 0.02em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(247,241,231,0.5);
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  border-radius: 2px;
}

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

.footer-legal-sep {
  color: rgba(247,241,231,0.2);
  font-size: 0.78rem;
}

.zappy-attribution {
  color: rgba(216,155,43,0.6) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.03em;
}

.zappy-attribution:hover {
  color: var(--accent) !important;
}

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

  .footer-col--social {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    border-top: 1px solid var(--border-dark);
    padding-top: 1.5rem;
  }

  .footer-col--social .footer-heading {
    min-width: 120px;
  }
}

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

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

  .footer-col--social {
    flex-direction: column;
    grid-column: auto;
    border-top: 1px solid var(--border-dark);
    padding-top: 1.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    gap: 0.6rem;
  }

  .footer-legal {
    gap: 0.4rem;
  }

  .footer-brand-name {
    font-size: 1.05rem;
  }
}


/* Footer Contrast Guard — overrides dark-on-dark text */
.site-footer .contact-list a,
.site-footer .contact-list li,
.site-footer .contact-list span,
.site-footer .footer-legal a,
.site-footer .copyright p,
.site-footer .footer-description,
.site-footer .footer-bottom a,
.site-footer .footer-bottom p,
.site-footer .footer-bottom span:not(.separator) {
  color: #6E6258 !important;
}
.site-footer .contact-list a:hover,
.site-footer .footer-legal a:hover,
.site-footer .footer-bottom a:hover {
  color: #F7F1E7 !important;
}
.site-footer .footer-legal .separator {
  color: #4A3935 !important;
}
/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }
/* 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; }
/* index-hero */
.index-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: visible;
  background-color: var(--bg-dark);
  color: var(--text-light);
  display: flex;
  align-items: flex-end;
  padding-bottom: 110px;
}

/* Background Image */
.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 40%;
  border-radius: 0;
}

/* Manuscript Texture Overlay */
.index-hero-section .index-hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0.2 0 1 0 0 0.1 0 0 1 0 0.05 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='transparent'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* Dark Gradient Scrim */
.index-hero-section .index-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(
      to top,
      rgba(20, 10, 6, 0.92) 0%,
      rgba(20, 10, 6, 0.75) 30%,
      rgba(20, 10, 6, 0.35) 60%,
      rgba(20, 10, 6, 0.10) 100%
    );
}

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

/* Content Block */
.index-hero-section .index-hero-content {
  max-width: 620px;
  width: 100%;
  text-align: right;
}

/* Label */
.index-hero-section .index-hero-label {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(20,10,6,0.6);
  border-inline-end: 3px solid var(--accent);
  padding-inline-end: 12px;
}

/* H1 */
.index-hero-section .index-hero-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-light);
  margin: 0 0 18px;
  text-shadow:
    0 2px 6px rgba(20,10,6,0.7),
    0 4px 20px rgba(20,10,6,0.5);
}

/* H3 */
.index-hero-section .index-hero-h3 {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--accent);
  margin: 0 0 20px;
  text-shadow: 0 1px 4px rgba(20,10,6,0.55);
  letter-spacing: 0.01em;
}

/* Paragraph */
.index-hero-section .index-hero-p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(247, 241, 231, 0.88);
  margin: 0 0 36px;
  text-shadow: 0 1px 4px rgba(20,10,6,0.55);
  max-width: 560px;
}

/* CTA Row */
.index-hero-section .index-hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Primary Button */
.index-hero-section .index-hero-btn-primary {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #f8e8b8;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  border: 1px solid #d4b27a;
  border-radius: 2px;
  padding: 14px 36px;
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.index-hero-section .index-hero-btn-primary:hover {
  background: linear-gradient(180deg, #c23518 0%, #8f1f12 100%);
  box-shadow: 0 12px 28px rgba(143,31,18,0.38), 0 2px 0 #5f2012;
  transform: translateY(-2px);
  color: #fff8e8;
}

/* Secondary Button */
.index-hero-section .index-hero-btn-secondary {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #f8e8b8;
  background: linear-gradient(180deg, #345983 0%, #1f385d 100%);
  border: 1px solid #8ea6bf;
  border-radius: 2px;
  padding: 14px 36px;
  box-shadow: 0 2px 0 #1a2f4d, 0 4px 10px rgba(36,69,111,0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.index-hero-section .index-hero-btn-secondary:hover {
  background: linear-gradient(180deg, #3f6e9e 0%, #2a4e7a 100%);
  box-shadow: 0 12px 28px rgba(36,69,111,0.38), 0 2px 0 #1a2f4d;
  transform: translateY(-2px);
  color: #fff8e8;
}

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

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

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

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

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

  .index-hero-section .index-hero-h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: 14px;
  }

  .index-hero-section .index-hero-h3 {
    font-size: 1.05rem;
    margin-bottom: 16px;
  }

  .index-hero-section .index-hero-p {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .index-hero-section .index-hero-ctas {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .index-hero-section .index-hero-btn-primary,
  .index-hero-section .index-hero-btn-secondary {
    text-align: center;
    padding: 13px 20px;
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .index-hero-section .index-hero-scrim {
    background-image: linear-gradient(
      to top,
      rgba(20, 10, 6, 0.96) 0%,
      rgba(20, 10, 6, 0.80) 35%,
      rgba(20, 10, 6, 0.40) 65%,
      rgba(20, 10, 6, 0.12) 100%
    );
  }
}

/* index-story */
.index-story-section {
  position: relative;
  overflow: visible;
  direction: rtl;
  background-color: #f2dfb8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f2dfb8'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  color: var(--text-dark);
  padding: 96px 24px 120px;
  font-family: 'Rubik', sans-serif;
}

/* Parchment texture overlay */
.index-story-section .index-story-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 20%, rgba(216,155,43,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(122,31,43,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Main container */
.index-story-section .index-story-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: start;
  direction: rtl;
}

/* ── TEXT COLUMN ── */
.index-story-section .index-story-text-col {
  padding-inline-end: 24px;
}

/* Top carmine rule */
.index-story-section .index-story-rule {
  width: 64px;
  height: 2px;
  background: var(--primary);
  margin-bottom: 28px;
  margin-inline-start: 0;
}

/* H2 heading */
.index-story-section .index-story-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  text-align: start;
  margin: 0 0 28px 0;
  letter-spacing: 0.01em;
}

/* Lead paragraph */
.index-story-section .index-story-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dark);
  text-align: start;
  margin: 0 0 24px 0;
}

/* Saffron accent divider between paragraphs */
.index-story-section .index-story-divider-accent {
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, var(--accent), transparent);
  margin: 20px 0;
  opacity: 0.7;
}

/* Body paragraph */
.index-story-section .index-story-body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-dark);
  text-align: start;
  margin: 0 0 24px 0;
}

/* H3 subheading */
.index-story-section .index-story-subheading {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  text-align: start;
  margin: 8px 0 14px 0;
  letter-spacing: 0.01em;
}

/* Route paragraph */
.index-story-section .index-story-route-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  text-align: start;
  margin: 0;
  padding-inline-start: 16px;
  border-inline-start: 2px solid var(--accent);
}

/* ── IMAGE COLUMN ── */
.index-story-section .index-story-image-col {
  position: relative;
  margin: 0;
  padding: 0;
  align-self: start;
}

.index-story-section .index-story-main-image-wrap {
  position: relative;
  display: block;
}

.index-story-section .index-story-main-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 0;
  box-shadow: 0 16px 36px rgba(58,32,24,0.28);
  transition: transform 0.3s ease;
}

.index-story-section .index-story-main-img:hover {
  transform: scale(1.02);
}

/* Faded route-sketch tile — peeking from bottom-end corner */
.index-story-section .index-story-map-tile-wrap {
  position: absolute;
  bottom: -28px;
  inset-inline-end: -32px;
  width: 200px;
  height: 148px;
  z-index: 2;
  pointer-events: none;
}

.index-story-section .index-story-map-tile {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  opacity: 0.30;
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
  border: 1px solid var(--border-light);
  transition: opacity 0.3s ease;
}

.index-story-section .index-story-map-tile-wrap:hover .index-story-map-tile {
  opacity: 0.50;
}

/* ── BOTTOM DIVIDER WRAPPER ── */
.index-story-section .index-story-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 76px;
  pointer-events: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Zellige band */
.index-story-section .index-story-zellige-band {
  width: 100%;
  height: 28px;
  flex-shrink: 0;
  overflow: hidden;
}

.index-story-section .index-story-zellige-svg {
  display: block;
  width: 100%;
  height: 28px;
}

/* Dissolve wave */
.index-story-section .index-story-wave-svg {
  display: block;
  width: 100%;
  height: 48px;
  flex-shrink: 0;
}

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .index-story-section .index-story-container {
    grid-template-columns: 1fr 380px;
    gap: 40px;
  }

  .index-story-section .index-story-map-tile-wrap {
    width: 160px;
    height: 116px;
    inset-inline-end: -16px;
    bottom: -20px;
  }
}

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

  .index-story-section .index-story-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .index-story-section .index-story-text-col {
    padding-inline-end: 0;
    order: 1;
  }

  .index-story-section .index-story-image-col {
    order: 2;
  }

  .index-story-section .index-story-heading {
    font-size: 1.65rem;
  }

  .index-story-section .index-story-main-img {
    aspect-ratio: 4/3;
    max-height: 360px;
  }

  /* On mobile, keep map tile visible but repositioned */
  .index-story-section .index-story-map-tile-wrap {
    position: static;
    display: block;
    width: 140px;
    height: 100px;
    margin-top: 12px;
    margin-inline-start: auto;
  }

  .index-story-section .index-story-map-tile {
    opacity: 0.35;
  }

  .index-story-section .index-story-divider-wrapper {
    height: 64px;
  }

  .index-story-section .index-story-wave-svg {
    height: 36px;
  }
}

/* index-showcase */
.index-showcase-section {
  position: relative;
  overflow: visible;
  background-color: #f2dfb8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f2dfb8'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  color: var(--text-dark);
  padding: 96px 0 110px;
  direction: rtl;
  font-family: 'Rubik', sans-serif;
}

.index-showcase-section .showcase-texture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(241,223,194,0.4) 0%, rgba(237,216,173,0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

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

/* ── Title Block ─────────────────────────────── */
.index-showcase-section .showcase-title-block {
  text-align: center;
  margin-bottom: 32px;
}

.index-showcase-section .showcase-accent-rule {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 20px;
}

.index-showcase-section .showcase-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.index-showcase-section .showcase-subheading {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 20px;
  max-width: none !important;
}

/* ── Intro Text ──────────────────────────────── */
.index-showcase-section .showcase-intro-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.index-showcase-section .showcase-gallery-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.25s ease-in-out;
}

.index-showcase-section .showcase-gallery-link:hover {
  color: var(--accent);
}

/* ── Panorama Band ───────────────────────────── */
.index-showcase-section .showcase-panorama {
  margin: 0 0 40px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 6px 14px rgba(58,32,24,0.22);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.index-showcase-section .showcase-panorama img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.index-showcase-section .showcase-panorama:hover img {
  transform: scale(1.02);
}

.index-showcase-section .showcase-panorama-caption {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  background: linear-gradient(0deg, rgba(32,24,22,0.75) 0%, transparent 100%);
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  padding: 24px 20px 12px;
  text-align: start;
}

/* ── Three-Tile Grid ─────────────────────────── */
.index-showcase-section .showcase-tiles-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 32px;
  direction: rtl;
  align-items: start;
  margin-bottom: 48px;
}

/* ── Individual Tile ─────────────────────────── */
.index-showcase-section .showcase-tile {
  background: linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  border-radius: 2px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.index-showcase-section .showcase-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(58,32,24,0.28);
}

/* ── Tile Media ──────────────────────────────── */
.index-showcase-section .showcase-tile-media {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.index-showcase-section .showcase-tile--large .showcase-tile-media {
  height: 320px;
}

.index-showcase-section .showcase-tile--video .showcase-tile-media,
.index-showcase-section .showcase-tile--route .showcase-tile-media {
  height: 220px;
}

.index-showcase-section .showcase-tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}

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

/* ── Video Overlay ───────────────────────────── */
.index-showcase-section .showcase-tile-media--video {
  cursor: pointer;
}

.index-showcase-section .showcase-video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32,24,22,0.35);
  transition: background 0.25s ease-in-out;
}

.index-showcase-section .showcase-tile:hover .showcase-video-play-overlay {
  background: rgba(32,24,22,0.2);
}

.index-showcase-section .showcase-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #b8831e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(240,181,45,0.38);
  transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.index-showcase-section .showcase-tile:hover .showcase-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(240,181,45,0.55);
}

.index-showcase-section .showcase-play-btn .fa-play {
  color: var(--text-light);
  font-size: 20px;
  margin-inline-start: 4px;
}

.index-showcase-section .showcase-video-badge {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: #FF0000;
  color: #fff;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ── VR Badge ────────────────────────────────── */
.index-showcase-section .showcase-vr-badge {
  position: absolute;
  bottom: 12px;
  inset-inline-start: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1f3a5c 100%);
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(58,32,24,0.22);
}

/* ── Tile Content ────────────────────────────── */
.index-showcase-section .showcase-tile-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.index-showcase-section .showcase-tile-tag {
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
  display: inline-block;
}

.index-showcase-section .showcase-tile-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
}

.index-showcase-section .showcase-tile-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0;
  flex: 1;
}

.index-showcase-section .showcase-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.25s ease-in-out, gap 0.25s ease-in-out;
}

.index-showcase-section .showcase-tile-link:hover {
  color: var(--accent);
  gap: 12px;
}

.index-showcase-section .showcase-tile-arrow {
  font-size: 0.8rem;
  transition: transform 0.25s ease-in-out;
}

.index-showcase-section .showcase-tile-link:hover .showcase-tile-arrow {
  transform: translateX(-3px);
}

/* ── CTA Row ─────────────────────────────────── */
.index-showcase-section .showcase-cta-row {
  text-align: center;
  margin-top: 8px;
}

.index-showcase-section .showcase-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid #d4b27a;
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.index-showcase-section .showcase-cta-btn:hover {
  box-shadow: 0 12px 28px rgba(143,31,18,0.22);
  transform: translateY(-2px);
  color: #f8e8b8;
}

/* ── 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: 1024px) {
  .index-showcase-section .showcase-tiles-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .index-showcase-section .showcase-tile--large {
    grid-column: 1 / -1;
  }

  .index-showcase-section .showcase-tile--large .showcase-tile-media {
    height: 280px;
  }
}

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

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

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

  .index-showcase-section .showcase-panorama img {
    height: 200px;
  }

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

  .index-showcase-section .showcase-tile--large {
    grid-column: 1 !important;
  }

  .index-showcase-section .showcase-tile--large .showcase-tile-media {
    height: 220px;
  }

  .index-showcase-section .showcase-tile--video .showcase-tile-media,
  .index-showcase-section .showcase-tile--route .showcase-tile-media {
    height: 200px;
  }

  .index-showcase-section .showcase-tile-content {
    padding: 16px;
  }

  .index-showcase-section .showcase-cta-btn {
    padding: 12px 24px;
    font-size: 0.875rem;
    letter-spacing: 1px;
  }

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

  .index-showcase-section .showcase-intro-text {
    text-align: right;
  }
}

/* index-tributes */
.index-tributes-section {
  position: relative;
  overflow: visible;
  background-color: #201816;
  background-image:
    radial-gradient(ellipse at 85% 20%, rgba(216,155,43,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(122,31,43,0.10) 0%, transparent 50%),
    linear-gradient(180deg, #2a160f 0%, #201816 60%, #1a1008 100%);
  color: var(--text-light);
  direction: rtl;
  padding: 96px 24px 120px;
  font-family: 'Rubik', sans-serif;
}

.index-tributes-bg-image {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 38%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.index-tributes-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.index-tributes-header {
  max-width: 660px;
  margin-block-end: 56px;
}

.index-tributes-header-accent {
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin-block-end: 20px;
  margin-inline-start: 0;
}

.index-tributes-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 0 18px 0;
  letter-spacing: 0.02em;
}

.index-tributes-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  opacity: 0.82;
  margin: 0;
  text-align: start;
}

.index-tributes-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  direction: rtl;
  margin-block-end: 56px;
  align-items: start;
}

.index-tribute-card {
  position: relative;
  background: linear-gradient(160deg, #f5e6c6 0%, #e8d09a 100%);
  border: 1px solid #c9a96e;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(58,32,24,0.28), inset 0 0 0 1px rgba(216,155,43,0.18);
  transition: all 0.3s ease;
  overflow: hidden;
}

.index-tribute-card--tall {
  grid-row: span 1;
}

.index-tribute-card-edge {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(216,155,43,0.3) 100%);
  z-index: 1;
}

.index-tribute-card-inner {
  position: relative;
  z-index: 2;
  padding: 28px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.index-tribute-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.index-tribute-icon {
  color: var(--accent);
  font-size: 14px;
  line-height: 1.6;
  flex-shrink: 0;
  margin-block-start: 2px;
}

.index-tribute-name {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-block-end: 4px;
}

.index-tribute-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: 'Rubik', sans-serif;
}

.fa-location-dot {
  font-size: 0.75rem;
  color: var(--primary);
}

.index-tribute-message {
  margin: 0;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  border-inline-start: 2px solid var(--accent);
  padding-inline-start: 14px;
  opacity: 0.92;
}

.index-tribute-date {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-family: 'Rubik', sans-serif;
  text-align: start;
  opacity: 0.8;
  letter-spacing: 0.03em;
}

.index-tributes-separator {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-block-end: 48px;
  direction: rtl;
}

.index-tributes-sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.index-tributes-sep-star {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.index-tributes-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.index-tributes-cta-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.85;
  max-width: 520px;
  margin: 0;
  text-align: center;
}

.index-tributes-btn {
  display: inline-block;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid #d4b27a;
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.index-tributes-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  pointer-events: none;
  z-index: 5;
}

.index-tributes-wall {
    grid-template-columns: repeat(2, 1fr);
  }

.index-tributes-bg-image {
    width: 50%;
    opacity: 0.09;
  }

.index-tributes-section {
    padding: 56px 16px 100px;
  }

.index-tributes-wall {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

.index-tributes-bg-image {
    display: none;
  }

.index-tributes-header {
    max-width: 100%;
    margin-block-end: 36px;
  }

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

.index-tribute-card-inner {
    padding: 20px 18px 18px 18px;
  }

.index-tributes-cta-text {
    font-size: 0.9375rem;
  }

/* index-cta */
.index-cta-section {
  position: relative;
  overflow: visible;
  background-color: #f2dfb8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f2dfb8'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  color: var(--text-dark);
  padding: 80px 24px 96px;
  direction: rtl;
  text-align: center;
}

/* Thin carmine top rule */
.index-cta-section .index-cta-top-rule {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  z-index: 2;
}

/* Corner decorative fragments */
.index-cta-section .index-cta-corner {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 0;
}

.index-cta-section .index-cta-corner--tr {
  top: 0;
  inset-inline-end: 0;
}

.index-cta-section .index-cta-corner--bl {
  bottom: 0;
  inset-inline-start: 0;
}

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

/* Ornamental dividers */
.index-cta-section .index-cta-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  margin-bottom: 32px;
}

.index-cta-section .index-cta-ornament--bottom {
  margin-bottom: 0;
  margin-top: 40px;
}

.index-cta-section .index-cta-ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.index-cta-section .index-cta-ornament-star,
.index-cta-section .index-cta-ornament-diamond {
  font-size: 12px;
  color: var(--accent);
  opacity: 0.75;
  flex-shrink: 0;
  line-height: 1;
}

/* Heading */
.index-cta-section .index-cta-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 24px 0;
  letter-spacing: 0.01em;
}

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

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

/* Primary button */
.index-cta-section .btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid #d4b27a;
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.index-cta-section .btn-primary:hover {
  box-shadow: 0 12px 28px rgba(143,31,18,0.22);
  transform: translateY(-2px);
  color: #f8e8b8;
}

/* Secondary button */
.index-cta-section .btn-secondary {
  display: inline-block;
  background: linear-gradient(180deg, #345983 0%, #1f385d 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid #8ea6bf;
  box-shadow: 0 2px 0 #1a2f4d, 0 4px 10px rgba(36,69,111,0.25);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.index-cta-section .btn-secondary:hover {
  box-shadow: 0 12px 28px rgba(36,69,111,0.35);
  transform: translateY(-2px);
  color: #f8e8b8;
}

/* Mobile styles */
@media (max-width: 768px) {
  .index-cta-section {
    padding: 56px 16px 64px;
  }

  .index-cta-section .index-cta-corner {
    width: 72px;
    height: 72px;
  }

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

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

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

  .index-cta-section .index-cta-ornament {
    max-width: 240px;
  }
}

/* gallery-intro */
.gallery-intro-section {
  position: relative;
  overflow: visible;
  background-color: #f5e6c6;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f5e6c6'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  color: var(--text-dark);
  padding: 120px 24px 96px;
  direction: rtl;
}

.gallery-intro-section .gallery-intro-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 48px,
    rgba(122, 31, 43, 0.03) 48px,
    rgba(122, 31, 43, 0.03) 49px
  );
}

.gallery-intro-section .gallery-intro-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  direction: rtl;
}

/* ── Content Column ─────────────────────────────────────── */
.gallery-intro-section .gallery-intro-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: right;
}

.gallery-intro-section .gallery-intro-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.gallery-intro-section .gallery-intro-eyebrow-text {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.gallery-intro-section .gallery-intro-rule {
  display: block;
  height: 1px;
  width: 40px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.gallery-intro-section .gallery-intro-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.5px;
}

.gallery-intro-section .gallery-intro-h1 strong {
  color: var(--primary);
}

.gallery-intro-section .gallery-intro-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
  max-width: 560px;
}

.gallery-intro-section .gallery-intro-lead strong {
  color: var(--primary);
  font-weight: 700;
}

.gallery-intro-section .gallery-intro-divider-accent {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  margin-inline-start: 0;
  border-radius: 1px;
}

.gallery-intro-section .gallery-intro-h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
  letter-spacing: 0.2px;
}

/* ── Category List ──────────────────────────────────────── */
.gallery-intro-section .gallery-intro-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-intro-section .gallery-intro-category-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(245,230,198,0.9) 0%, rgba(237,216,173,0.7) 100%);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  box-shadow: 0 4px 10px rgba(58,32,24,0.08);
  transition: all 0.3s ease;
}

.gallery-intro-section .gallery-intro-category-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
  border-color: var(--accent);
}

.gallery-intro-section .gallery-intro-category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  border-radius: 2px;
  color: var(--text-light);
  box-shadow: 0 2px 8px rgba(122,31,43,0.25);
}

.gallery-intro-section .gallery-intro-category-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.gallery-intro-section .gallery-intro-category-text strong {
  font-family: 'Rubik', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.gallery-intro-section .gallery-intro-category-text span {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ── Image Column ───────────────────────────────────────── */
.gallery-intro-section .gallery-intro-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.gallery-intro-section .gallery-intro-image-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(58,32,24,0.28);
}

.gallery-intro-section .gallery-intro-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.gallery-intro-section .gallery-intro-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Manuscript texture overlay on image */
.gallery-intro-section .gallery-intro-image-manuscript {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .09 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='transparent'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.18;
}

/* Decorative border frame */
.gallery-intro-section .gallery-intro-image-border {
  position: absolute;
  inset: 10px;
  pointer-events: none;
  z-index: 3;
  border: 1px solid rgba(216,155,43,0.35);
  border-radius: 0;
}

.gallery-intro-section .gallery-intro-figcaption {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: right;
  padding-inline-end: 4px;
  border-inline-end: 2px solid var(--accent);
  padding-inline-start: 0;
  padding-right: 12px;
  font-style: italic;
}

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

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

/* ── Responsive: Tablet ─────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-intro-section .gallery-intro-container {
    gap: 40px;
  }
}

/* ── Responsive: Mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-intro-section {
    padding: 100px 16px 80px;
  }

  .gallery-intro-section .gallery-intro-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery-intro-section .gallery-intro-h1 {
    font-size: 2.2rem;
  }

  .gallery-intro-section .gallery-intro-lead {
    max-width: 100%;
  }

  .gallery-intro-section .gallery-intro-figure {
    order: -1;
  }

  .gallery-intro-section .gallery-intro-eyebrow {
    flex-wrap: wrap;
  }

  .gallery-intro-section .gallery-intro-rule {
    width: 24px;
  }

  .gallery-intro-section .gallery-intro-category-item {
    padding: 12px 14px;
    gap: 12px;
  }

  .gallery-intro-section .gallery-intro-category-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}

/* gallery-gallery */
.gallery-gallery-section {
  direction: rtl;
  background-color: #f2dfb8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f2dfb8'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  color: var(--text-dark);
  padding: 96px 0 0;
  position: relative;
  overflow: visible;
  font-family: 'Rubik', sans-serif;
}

.gallery-gallery-section .gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 96px;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.gallery-gallery-section .gallery-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.gallery-gallery-section .gallery-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.gallery-gallery-section .gallery-title-rule {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin: 0 auto 20px;
  border-radius: 1px;
}

.gallery-gallery-section .gallery-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

/* ── GRID ROW 1 ── */
.gallery-gallery-section .gallery-grid {
  display: grid;
  gap: 24px;
  direction: rtl;
  margin-bottom: 0;
}

.gallery-gallery-section .gallery-grid-row1 {
  grid-template-columns: 1fr 1.6fr 1fr;
  grid-template-rows: auto;
  align-items: start;
  margin-bottom: 0;
}

.gallery-gallery-section .gallery-grid-row2 {
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr;
  grid-template-rows: auto;
  align-items: start;
  margin-top: 0;
}

/* ── GALLERY ITEMS ── */
.gallery-gallery-section .gallery-item {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.gallery-gallery-section .gallery-img-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
  border: 2px solid var(--border-light);
  box-shadow: 0 6px 14px rgba(58,32,24,0.22);
  transition: box-shadow var(--transition-hover, all 0.25s ease-in-out);
}

.gallery-gallery-section .gallery-img-wrap:hover {
  box-shadow: 0 16px 36px rgba(58,32,24,0.28);
}

.gallery-gallery-section .gallery-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.25s ease-in-out;
}

.gallery-gallery-section .gallery-img-wrap:hover img {
  transform: scale(1.02);
}

/* Portrait items */
.gallery-gallery-section .gallery-item--portrait .gallery-img-wrap {
  aspect-ratio: 5/7;
}

/* Landscape items */
.gallery-gallery-section .gallery-item--landscape .gallery-img-wrap {
  aspect-ratio: 3/2;
}

/* Square items */
.gallery-gallery-section .gallery-item--square .gallery-img-wrap {
  aspect-ratio: 1/1;
}

/* Wide landscape (spans 2 cols in row 2) */
.gallery-gallery-section .gallery-item--wide {
  grid-column: span 2;
}

.gallery-gallery-section .gallery-item--wide .gallery-img-wrap {
  aspect-ratio: 16/9;
}

/* ── CAPTIONS ── */
.gallery-gallery-section .gallery-caption {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: right;
  padding: 8px 4px 0;
  border-top: 1px solid var(--border-light);
  margin-top: 8px;
}

/* ── PULL QUOTE ── */
.gallery-gallery-section .gallery-pullquote {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 56px auto;
  padding: 40px 48px;
  max-width: 780px;
  background: linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
  position: relative;
}

.gallery-gallery-section .gallery-pullquote::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 2px 0 0 2px;
}

.gallery-gallery-section .gallery-pullquote::after {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: 0 2px 2px 0;
}

.gallery-gallery-section .gallery-pullquote-ornament {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
  letter-spacing: 6px;
}

.gallery-gallery-section .gallery-pullquote-ornament:last-of-type {
  margin-bottom: 0;
  margin-top: 12px;
}

.gallery-gallery-section .gallery-pullquote-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0 0 12px;
  letter-spacing: 0.03em;
  font-style: italic;
}

.gallery-gallery-section .gallery-pullquote-cite {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: normal;
  display: block;
}

/* ── BOTTOM GEOMETRIC BAND DIVIDER ── */
.gallery-gallery-section .gallery-divider-band {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.gallery-gallery-section .gallery-divider-stripe {
  width: 100%;
  height: 4px;
}

.gallery-gallery-section .gallery-divider-stripe--accent {
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 12px,
    transparent 12px,
    transparent 20px
  );
  opacity: 0.85;
}

.gallery-gallery-section .gallery-divider-stripe--primary {
  background: var(--primary);
  height: 2px;
}

.gallery-gallery-section .gallery-divider-stripe--gold {
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0px,
    var(--accent) 6px,
    var(--primary) 6px,
    var(--primary) 12px
  );
  height: 3px;
  opacity: 0.7;
}

/* ── SVG BOTTOM DIVIDER ── */
.gallery-gallery-section .gallery-bottom-divider-wrapper {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  z-index: 5;
  display: block;
  margin-top: -1px;
}

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

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 1024px) {
  .gallery-gallery-section .gallery-grid-row1 {
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 18px;
  }

  .gallery-gallery-section .gallery-grid-row2 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
  }

  .gallery-gallery-section .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-gallery-section .gallery-pullquote {
    padding: 32px 36px;
  }

  .gallery-gallery-section .gallery-pullquote-text {
    font-size: 1.45rem;
  }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
  .gallery-gallery-section {
    padding-top: 56px;
  }

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

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

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

  .gallery-gallery-section .gallery-grid-row1 {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .gallery-gallery-section .gallery-grid-row2 {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .gallery-gallery-section .gallery-item--wide {
    grid-column: span 1 !important;
  }

  .gallery-gallery-section .gallery-item--portrait .gallery-img-wrap {
    aspect-ratio: 3/2;
  }

  .gallery-gallery-section .gallery-item--wide .gallery-img-wrap {
    aspect-ratio: 3/2;
  }

  .gallery-gallery-section .gallery-pullquote {
    margin: 32px auto;
    padding: 24px 20px;
  }

  .gallery-gallery-section .gallery-pullquote-text {
    font-size: 1.2rem;
  }

  .gallery-gallery-section .gallery-pullquote::before,
  .gallery-gallery-section .gallery-pullquote::after {
    display: none;
  }

  .gallery-gallery-section .gallery-bottom-divider-wrapper {
    height: 40px;
  }
}

/* gallery-video-showcase */
.gallery-video-showcase-section {
  position: relative;
  overflow: visible;
  background-color: #201816;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(122,31,43,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(53,92,125,0.12) 0%, transparent 50%),
    linear-gradient(180deg, #3a1a0e 0%, #201816 60%, #1a1210 100%);
  color: var(--text-light);
  padding: 96px 24px 130px;
  direction: rtl;
}

/* Subtle texture overlay */
.gallery-video-showcase-section .gvs-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23201816'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.gallery-video-showcase-section .gvs-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HEADER ── */
.gallery-video-showcase-section .gvs-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-video-showcase-section .gvs-header-accent-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 16px auto;
}

.gallery-video-showcase-section .gvs-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  letter-spacing: 0.01em;
  margin: 0 0 16px;
  text-align: center;
}

.gallery-video-showcase-section .gvs-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.82;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── CARDS GRID ── */
.gallery-video-showcase-section .gvs-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  direction: rtl;
}

/* ── INDIVIDUAL CARD ── */
.gallery-video-showcase-section .gvs-video-card {
  background: linear-gradient(180deg, #6c3317 0%, #2a160f 100%);
  border-radius: 2px;
  border: 1px solid var(--border-dark);
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-video-showcase-section .gvs-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(58,32,24,0.28);
  border-color: var(--accent);
}

/* ── CARD MEDIA ── */
.gallery-video-showcase-section .gvs-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #1a0f0a;
}

.gallery-video-showcase-section .gvs-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: all 0.25s ease-in-out;
  filter: brightness(0.82) saturate(0.9);
}

.gallery-video-showcase-section .gvs-video-card:hover .gvs-card-media img {
  transform: scale(1.04);
  filter: brightness(0.72) saturate(1);
}

/* Dark cinematic scrim over image */
.gallery-video-showcase-section .gvs-play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,8,4,0.18) 0%,
    rgba(20,8,4,0.38) 55%,
    rgba(20,8,4,0.62) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 2;
}

.gallery-video-showcase-section .gvs-video-card:hover .gvs-play-overlay {
  background: linear-gradient(
    to bottom,
    rgba(20,8,4,0.28) 0%,
    rgba(20,8,4,0.50) 55%,
    rgba(20,8,4,0.72) 100%
  );
}

.gallery-video-showcase-section .gvs-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(216,155,43,0.92);
  border: 2px solid rgba(247,241,231,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  box-shadow: 0 0 22px rgba(216,155,43,0.5), 0 4px 14px rgba(0,0,0,0.45);
  transition: all 0.25s ease-in-out;
  padding-inline-start: 3px;
}

.gallery-video-showcase-section .gvs-video-card:hover .gvs-play-btn {
  transform: scale(1.12);
  background: rgba(216,155,43,1);
  box-shadow: 0 0 32px rgba(216,155,43,0.7), 0 6px 18px rgba(0,0,0,0.5);
}

/* ── BADGE ── */
.gallery-video-showcase-section .gvs-card-badge {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: var(--primary);
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  border: 1px solid rgba(247,241,231,0.2);
  z-index: 3;
  text-transform: uppercase;
}

/* ── CARD BODY ── */
.gallery-video-showcase-section .gvs-card-body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.gallery-video-showcase-section .gvs-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--accent);
  margin: 0;
  text-align: right;
}

.gallery-video-showcase-section .gvs-card-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.82;
  margin: 0;
  text-align: right;
  flex: 1;
}

.gallery-video-showcase-section .gvs-card-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--border-dark);
  padding-top: 12px;
  justify-content: flex-end;
}

.gallery-video-showcase-section .gvs-meta-icon {
  color: #FF0000;
  font-size: 1.1rem;
  line-height: 1;
}

.gallery-video-showcase-section .gvs-meta-text {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  opacity: 0.7;
  letter-spacing: 0.04em;
}

/* ── CTA ROW ── */
.gallery-video-showcase-section .gvs-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.gallery-video-showcase-section .gvs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid var(--accent);
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2);
  transition: all 0.3s ease;
}

.gallery-video-showcase-section .gvs-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(143,31,18,0.22);
  background: linear-gradient(180deg, #bf3318 0%, #8f1f12 100%);
}

.gallery-video-showcase-section .gvs-cta-btn i {
  font-size: 1.1rem;
  color: #FF4444;
}

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

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

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

  .gallery-video-showcase-section .gvs-video-card:last-child {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 768px) {
  .gallery-video-showcase-section {
    padding: 56px 16px 110px;
  }

  .gallery-video-showcase-section .gvs-title {
    font-size: 1.6rem;
  }

  .gallery-video-showcase-section .gvs-subtitle {
    font-size: 0.95rem;
  }

  .gallery-video-showcase-section .gvs-header {
    margin-bottom: 36px;
  }

  .gallery-video-showcase-section .gvs-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .gallery-video-showcase-section .gvs-video-card:last-child {
    grid-column: auto !important;
    max-width: none;
    margin: 0;
  }

  .gallery-video-showcase-section .gvs-card-body {
    padding: 18px 16px 16px;
  }

  .gallery-video-showcase-section .gvs-play-btn {
    width: 50px;
    height: 50px;
  }

  .gallery-video-showcase-section .gvs-cta-row {
    margin-top: 32px;
  }

  .gallery-video-showcase-section .gvs-cta-btn {
    padding: 12px 24px;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
  }

  .gallery-video-showcase-section .gvs-divider-wrapper {
    height: 60px;
  }
}

/* gallery-virtual-tour */
.gallery-virtual-tour-section {
  position: relative;
  overflow: visible;
  direction: rtl;
  background-color: #f2dfb8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f2dfb8'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  color: var(--text-dark);
  padding: 96px 24px;
  font-family: 'Rubik', sans-serif;
}

.gallery-virtual-tour-section .gvt-texture-overlay {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 48px,
    rgba(122, 31, 43, 0.03) 48px,
    rgba(122, 31, 43, 0.03) 49px
  );
  pointer-events: none;
  z-index: 0;
  aria-hidden: true;
}

.gallery-virtual-tour-section .gvt-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: start;
  direction: rtl;
}

/* ── CONTENT SIDE ── */
.gallery-virtual-tour-section .gvt-content-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  padding-top: 12px;
}

.gallery-virtual-tour-section .gvt-accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin-bottom: 20px;
  border-radius: 2px;
}

.gallery-virtual-tour-section .gvt-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(216, 155, 43, 0.12);
  border: 1px solid rgba(216, 155, 43, 0.35);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.gallery-virtual-tour-section .gvt-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 20px 0;
  text-align: right;
}

.gallery-virtual-tour-section .gvt-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0 0 24px 0;
  text-align: right;
}

.gallery-virtual-tour-section .gvt-divider-accent {
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, var(--accent), transparent);
  margin-bottom: 24px;
  opacity: 0.5;
}

.gallery-virtual-tour-section .gvt-subheading {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0 0 14px 0;
  text-align: right;
}

.gallery-virtual-tour-section .gvt-body-text {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin: 0 0 28px 0;
  text-align: right;
}

.gallery-virtual-tour-section .gvt-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.gallery-virtual-tour-section .gvt-feature-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-align: right;
  font-family: 'Rubik', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.gallery-virtual-tour-section .gvt-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(122, 31, 43, 0.08);
  border: 1px solid rgba(122, 31, 43, 0.2);
  border-radius: 2px;
  color: var(--primary);
  margin-top: 2px;
}

.gallery-virtual-tour-section .gvt-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid #d4b27a;
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-virtual-tour-section .gvt-cta-btn:hover {
  box-shadow: 0 12px 28px rgba(143,31,18,0.22);
  transform: translateY(-2px);
}

/* ── PORTAL SIDE ── */
.gallery-virtual-tour-section .gvt-portal-side {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-virtual-tour-section .gvt-route-sketch {
  position: absolute;
  inset-inline-end: -30px;
  top: -20px;
  width: 120px;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.gallery-virtual-tour-section .gvt-route-svg {
  width: 100%;
  height: 100%;
}

/* Tour Frame */
.gallery-virtual-tour-section .gvt-tour-frame {
  position: relative;
  z-index: 1;
  background: #f5e6c6;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  box-shadow: 0 16px 36px rgba(58,32,24,0.28), 0 0 0 4px rgba(216,155,43,0.12);
  overflow: hidden;
}

.gallery-virtual-tour-section .gvt-frame-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #ede0c4 0%, #e0cfa5 100%);
  border-bottom: 1px solid var(--border-light);
  direction: ltr;
}

.gallery-virtual-tour-section .gvt-frame-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.gallery-virtual-tour-section .gvt-dot-red { background: #e05c5c; }
.gallery-virtual-tour-section .gvt-dot-amber { background: #e0a83a; }
.gallery-virtual-tour-section .gvt-dot-green { background: #5cb85c; }

.gallery-virtual-tour-section .gvt-frame-label {
  margin-inline-start: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  direction: rtl;
  flex: 1;
  text-align: center;
}

.gallery-virtual-tour-section .gvt-tour-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 5/3;
  overflow: hidden;
  background: var(--bg-dark);
}

.gallery-virtual-tour-section .gvt-panoramic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  border-radius: 0;
}

.gallery-virtual-tour-section .gvt-tour-viewport:hover .gvt-panoramic-img {
  transform: scale(1.02);
}

.gallery-virtual-tour-section .gvt-tour-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(32, 24, 22, 0.15) 0%,
    rgba(32, 24, 22, 0.55) 100%
  );
  z-index: 2;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.gallery-virtual-tour-section .gvt-tour-overlay:hover {
  background: linear-gradient(
    180deg,
    rgba(32, 24, 22, 0.1) 0%,
    rgba(32, 24, 22, 0.45) 100%
  );
}

.gallery-virtual-tour-section .gvt-play-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(122, 31, 43, 0.85);
  border: 1px solid rgba(216, 155, 43, 0.5);
  border-radius: 2px;
  padding: 18px 28px;
  box-shadow: 0 8px 20px rgba(58,32,24,0.4);
  transition: all 0.25s ease-in-out;
}

.gallery-virtual-tour-section .gvt-tour-overlay:hover .gvt-play-badge {
  background: rgba(122, 31, 43, 0.95);
  box-shadow: 0 12px 28px rgba(143,31,18,0.5);
  transform: translateY(-2px);
}

.gallery-virtual-tour-section .gvt-play-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(216, 155, 43, 0.25);
  border: 2px solid rgba(216, 155, 43, 0.6);
  border-radius: 50%;
  color: #f8e8b8;
}

.gallery-virtual-tour-section .gvt-play-label {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #f8e8b8;
  text-transform: uppercase;
  white-space: nowrap;
}

.gallery-virtual-tour-section .gvt-compass-badge {
  position: absolute;
  top: 14px;
  inset-inline-start: 14px;
  width: 44px;
  height: 44px;
  background: rgba(32, 24, 22, 0.65);
  border: 1px solid rgba(216, 155, 43, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.gallery-virtual-tour-section .gvt-360-badge {
  position: absolute;
  bottom: 14px;
  inset-inline-start: 14px;
  background: rgba(32, 24, 22, 0.75);
  border: 1px solid rgba(216, 155, 43, 0.45);
  border-radius: 2px;
  padding: 4px 10px;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  z-index: 3;
}

.gallery-virtual-tour-section .gvt-frame-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #e0cfa5 0%, #d6c290 100%);
  border-top: 1px solid var(--border-light);
  font-family: 'Rubik', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  direction: rtl;
}

.gallery-virtual-tour-section .gvt-location-pin {
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Thumbnail Row */
.gallery-virtual-tour-section .gvt-thumbnail-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
  direction: rtl;
}

.gallery-virtual-tour-section .gvt-thumbnail-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(58,32,24,0.22);
  border: 1px solid var(--border-light);
}

.gallery-virtual-tour-section .gvt-thumbnail-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.gallery-virtual-tour-section .gvt-thumbnail-wrapper:hover .gvt-thumbnail-img {
  transform: scale(1.02);
}

.gallery-virtual-tour-section .gvt-thumb-label {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  background: rgba(32, 24, 22, 0.7);
  color: var(--text-light);
  font-family: 'Rubik', sans-serif;
  font-size: 0.75rem;
  padding: 5px 8px;
  text-align: center;
}

.gallery-virtual-tour-section .gvt-thumbnail-caption {
  text-align: right;
}

.gallery-virtual-tour-section .gvt-thumbnail-caption p {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
  border-inline-start: 2px solid var(--accent);
  padding-inline-start: 14px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .gallery-virtual-tour-section .gvt-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gallery-virtual-tour-section .gvt-route-sketch {
    display: none;
  }

  .gallery-virtual-tour-section .gvt-thumbnail-row {
    grid-template-columns: 160px 1fr;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .gallery-virtual-tour-section {
    padding: 56px 16px;
  }

  .gallery-virtual-tour-section .gvt-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery-virtual-tour-section .gvt-heading {
    font-size: 1.65rem;
  }

  .gallery-virtual-tour-section .gvt-thumbnail-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-virtual-tour-section .gvt-thumbnail-wrapper {
    width: 100%;
  }

  .gallery-virtual-tour-section .gvt-thumbnail-img {
    height: 180px;
    width: 100%;
  }

  .gallery-virtual-tour-section .gvt-tour-viewport {
    aspect-ratio: 4/3;
  }

  .gallery-virtual-tour-section .gvt-cta-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }

  .gallery-virtual-tour-section .gvt-features-list {
    gap: 12px;
  }
}

/* candles-intro */
.candles-intro-section {
  position: relative;
  overflow: visible;
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-dark);
  background-image: linear-gradient(180deg, #1a0e0a 0%, #201816 100%);
  color: var(--text-light);
  padding-bottom: 90px;
  direction: rtl;
}

/* ── Full-bleed image ── */
.candles-intro-section .candles-intro-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.candles-intro-section .candles-intro-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
  filter: brightness(0.72) saturate(1.15);
}

/* ── Scrim overlay: gradient from dark-right to transparent-left (RTL: text on right) ── */
.candles-intro-section .candles-intro-scrim {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to left,
      rgba(20, 10, 6, 0.92) 0%,
      rgba(20, 10, 6, 0.82) 30%,
      rgba(20, 10, 6, 0.55) 58%,
      rgba(20, 10, 6, 0.18) 80%,
      rgba(20, 10, 6, 0.0) 100%
    ),
    linear-gradient(to bottom,
      rgba(20, 10, 6, 0.30) 0%,
      rgba(20, 10, 6, 0.0) 40%,
      rgba(20, 10, 6, 0.50) 100%
    );
  z-index: 1;
}

.candles-intro-section .candles-intro-content-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 160px 6% 120px;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.candles-intro-section .candles-intro-content {
  max-width: 820px;
  text-align: right;
}

/* ── Accent line ── */
.candles-intro-section .candles-intro-accent-line {
  width: 64px;
  height: 2px;
  background: linear-gradient(to left, var(--accent), rgba(216,155,43,0.3));
  margin-bottom: 24px;
  margin-inline-start: auto;
  margin-inline-end: 0;
}

/* ── H1 ── */
.candles-intro-section .candles-intro-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  margin: 0 0 24px 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 24px rgba(20, 10, 6, 0.7), 0 0 60px rgba(216,155,43,0.18);
}

/* ── Lead paragraph ── */
.candles-intro-section .candles-intro-lead {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
  margin: 0 0 32px 0;
  text-shadow: 0 1px 8px rgba(20, 10, 6, 0.6);
  opacity: 0.93;
}

.candles-intro-section .candles-intro-lead strong {
  color: var(--accent);
  font-weight: 600;
}

/* ── H3 invitation ── */
.candles-intro-section .candles-intro-h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--accent);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 12px rgba(20, 10, 6, 0.5);
  border-inline-start: 2px solid rgba(216,155,43,0.45);
  padding-inline-start: 16px;
}

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

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

/* ── RESPONSIVE: Mobile ── */
@media (max-width: 768px) {
  .candles-intro-section {
    min-height: auto;
    padding-bottom: 90px;
  }

  .candles-intro-section .candles-intro-image-wrapper {
    min-height: 100vh;
  }

  .candles-intro-section .candles-intro-scrim {
    background-image:
      linear-gradient(to bottom,
        rgba(20, 10, 6, 0.55) 0%,
        rgba(20, 10, 6, 0.70) 30%,
        rgba(20, 10, 6, 0.88) 65%,
        rgba(20, 10, 6, 0.95) 100%
      );
  }

  .candles-intro-section .candles-intro-content-wrapper {
    min-height: 100vh;
    padding: 110px 20px 100px;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .candles-intro-section .candles-intro-content {
    max-width: 100%;
  }

  .candles-intro-section .candles-intro-h1 {
    font-size: 2.2rem;
  }

  .candles-intro-section .candles-intro-lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .candles-intro-section .candles-intro-h3 {
    font-size: 1.15rem;
  }

  .candles-intro-section .candles-intro-accent-line {
    width: 48px;
  }
}

/* candles-candle-gallery */
.candles-candle-gallery-section {
  position: relative;
  background-color: #edd8ad;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23edd8ad'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  color: var(--text-dark);
  direction: rtl;
  padding: 96px 24px 120px;
  overflow: visible;
}

.candles-candle-gallery-section .candles-bg-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 28px,
    rgba(122,31,43,0.18) 28px,
    rgba(122,31,43,0.18) 29px
  );
}

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

/* HEADER */
.candles-candle-gallery-section .candles-header {
  text-align: center;
  margin-bottom: 56px;
}

.candles-candle-gallery-section .candles-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 16px 0;
  letter-spacing: 0.02em;
}

.candles-candle-gallery-section .candles-title-rule {
  width: 80px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 20px;
  border-radius: 1px;
}

.candles-candle-gallery-section .candles-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.candles-candle-gallery-section .candles-keyword {
  color: var(--primary);
  font-style: italic;
}

.candles-candle-gallery-section .candles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  direction: rtl;
  align-items: start;
}

.candles-candle-gallery-section .candle-card {
  background: linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.candles-candle-gallery-section .candle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(216,155,43,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.candles-candle-gallery-section .candle-card > * {
  position: relative;
  z-index: 1;
}

.candles-candle-gallery-section .candle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(58,32,24,0.28);
}

.candles-candle-gallery-section .candle-card--tall {
  padding-top: 18px;
  padding-bottom: 16px;
}

.candles-candle-gallery-section .candle-card--short {
  padding-top: 10px;
  padding-bottom: 10px;
}

.candles-candle-gallery-section .candle-card--center {
  border-color: var(--accent);
  background: linear-gradient(180deg, #fdf3d8 0%, #f5e0a8 100%);
  box-shadow: 0 0 22px rgba(240,181,45,0.38), 0 8px 20px rgba(58,32,24,0.18);
}

.candles-candle-gallery-section .candle-card--center:hover {
  box-shadow: 0 0 32px rgba(240,181,45,0.5), 0 16px 36px rgba(58,32,24,0.28);
}

.candles-candle-gallery-section .candle-flame-wrap {
  position: relative;
  width: 30px;
  height: 45px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.candles-candle-gallery-section .candle-glow {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 60%, rgba(240,165,0,0.45) 0%, rgba(216,155,43,0.2) 50%, transparent 80%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 0;
}

.candles-candle-gallery-section .candle-glow--large {
  width: 28px;
  height: 33px;
  background: radial-gradient(ellipse at 50% 60%, rgba(240,165,0,0.55) 0%, rgba(216,155,43,0.25) 50%, transparent 80%);
  filter: blur(12px);
}

.candles-candle-gallery-section .candle-flame-svg {
  width: 30px;
  height: 45px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 6px rgba(240,165,0,0.6));
}

.candles-candle-gallery-section .candle-flame-svg--large {
  width: 35px;
  height: 52px;
  filter: drop-shadow(0 0 10px rgba(240,165,0,0.75));
}

.candles-candle-gallery-section .candle-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.candles-candle-gallery-section .candle-name {
  font-family: 'Rubik', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 8px;
  width: 100%;
}

.candles-candle-gallery-section .candle-dedication {
  font-family: 'Rubik', sans-serif;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-dark);
  margin: 0;
  text-align: center;
  font-style: italic;
}

.candles-candle-gallery-section .candle-date {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  letter-spacing: 0.04em;
}

/* BOTTOM RULE */
.candles-candle-gallery-section .candles-bottom-rule {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  padding: 0 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.candles-candle-gallery-section .candles-saffron-line {
  width: 100%;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

/* TEAR DIVIDER */
.candles-candle-gallery-section .candles-tear-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  pointer-events: none;
  z-index: 5;
}

.candles-candle-gallery-section .candles-tear-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

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

@media (max-width: 768px) {
  .candles-candle-gallery-section {
    padding: 56px 16px 100px;
  }

  .candles-candle-gallery-section .candles-header {
    margin-bottom: 36px;
  }

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

  .candles-candle-gallery-section .candles-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .candles-candle-gallery-section .candle-card--tall,
  .candles-candle-gallery-section .candle-card--short {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .candles-candle-gallery-section .candles-bottom-rule {
    margin-top: 40px;
    padding: 0 8px;
  }

  .candles-candle-gallery-section .candles-tear-wrapper {
    height: 40px;
  }
}

/* candles-devotion */
.candles-devotion-section {
  position: relative;
  overflow: visible;
  background-color: #f2dfb8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f2dfb8'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  color: var(--text-dark);
  direction: rtl;
  padding: 96px 24px 120px;
}

.candles-devotion-section .grain-overlay {
  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='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='0.07'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.candles-devotion-section .candles-devotion-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
  direction: rtl;
}

/* ── TEXT COLUMN ─────────────────────────────── */
.candles-devotion-section .candles-devotion-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-block: 16px;
}

.candles-devotion-section .candles-devotion-rule-top {
  width: 56px;
  height: 2px;
  background: var(--accent);
  margin-block-end: 28px;
  margin-inline-start: 0;
}

.candles-devotion-section .candles-devotion-h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  text-align: right;
  margin: 0 0 28px 0;
  letter-spacing: 0.01em;
}

.candles-devotion-section .candles-devotion-p {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  text-align: right;
  margin: 0 0 24px 0;
  max-width: 640px;
}

.candles-devotion-section .candles-devotion-p strong {
  color: var(--primary);
  font-weight: 700;
}

.candles-devotion-section .candles-devotion-rule-mid {
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, var(--accent) 0%, transparent 100%);
  margin: 32px 0 28px 0;
  opacity: 0.7;
}

.candles-devotion-section .candles-devotion-h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  text-align: right;
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
  border-inline-start: 3px solid var(--accent);
  padding-inline-start: 16px;
}

.candles-devotion-section .candles-devotion-p-sub {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  text-align: right;
  margin: 0;
  max-width: 620px;
}

/* ── IMAGE COLUMN ────────────────────────────── */
.candles-devotion-section .candles-devotion-figure {
  position: relative;
  margin: 0;
  padding: 0;
}

.candles-devotion-section .candles-devotion-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(58,32,24,0.22);
  transition: var(--transition-hover, all 0.25s ease-in-out);
}

.candles-devotion-section .candles-devotion-img-wrapper:hover {
  box-shadow: 0 16px 36px rgba(58,32,24,0.32);
}

.candles-devotion-section .candles-devotion-img-wrapper img {
  display: block;
  width: 100%;
  height: 780px;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.candles-devotion-section .candles-devotion-img-wrapper:hover img {
  transform: scale(1.02);
}

.candles-devotion-section .candles-devotion-img-caption {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(32,24,22,0.78) 0%, transparent 100%);
  text-align: right;
}

.candles-devotion-section .candles-devotion-img-caption span {
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-light);
  letter-spacing: 0.03em;
  opacity: 0.9;
}

.candles-devotion-section .candles-devotion-img-accent {
  position: absolute;
  bottom: -12px;
  inset-inline-end: 16px;
  width: 60%;
  height: 3px;
  background: linear-gradient(to left, var(--accent) 0%, transparent 100%);
  pointer-events: none;
}

/* ── BOTTOM DIVIDER ──────────────────────────── */
.candles-devotion-section .candles-devotion-divider-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.candles-devotion-section .candles-devotion-dots-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding-block-end: 6px;
  position: absolute;
  bottom: 52px;
  left: 0;
  z-index: 6;
}

.candles-devotion-section .candles-devotion-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}

.candles-devotion-section .candles-devotion-dot:nth-child(odd) {
  opacity: 0.3;
  width: 4px;
  height: 4px;
}

.candles-devotion-section .candles-devotion-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 56px;
  flex-shrink: 0;
}

/* ── RESPONSIVE: MOBILE ──────────────────────── */
@media (max-width: 768px) {
  .candles-devotion-section {
    padding: 72px 16px 100px;
  }

  .candles-devotion-section .candles-devotion-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .candles-devotion-section .candles-devotion-figure {
    order: -1;
  }

  .candles-devotion-section .candles-devotion-img-wrapper img {
    height: 420px;
  }

  .candles-devotion-section .candles-devotion-h2 {
    font-size: 1.6rem;
  }

  .candles-devotion-section .candles-devotion-h3 {
    font-size: 1.2rem;
  }

  .candles-devotion-section .candles-devotion-p,
  .candles-devotion-section .candles-devotion-p-sub {
    max-width: 100%;
  }

  .candles-devotion-section .candles-devotion-img-accent {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .candles-devotion-section .candles-devotion-container {
    grid-template-columns: 1fr 320px;
    gap: 48px;
  }

  .candles-devotion-section .candles-devotion-img-wrapper img {
    height: 600px;
  }
}

/* candles-dedication-cta */
.candles-dedication-cta-section {
  position: relative;
  background-color: #201816;
  background-image:
    radial-gradient(ellipse 60% 55% at 50% 50%, rgba(216,155,43,0.10) 0%, transparent 70%),
    linear-gradient(180deg, #2a160f 0%, #201816 60%, #160f0c 100%);
  color: var(--text-light);
  padding: 96px 24px;
  overflow: hidden;
  direction: rtl;
  text-align: center;
}

.candles-dedication-cta-section .candles-dedication-cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Candle glow ring — atmospheric decoration */
.candles-dedication-cta-section .candles-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,155,43,0.08) 0%, rgba(122,31,43,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.candles-dedication-cta-section .candles-dedication-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.candles-dedication-cta-section .candles-dedication-ornament {
  margin-bottom: 24px;
  opacity: 0.85;
}

.candles-dedication-cta-section .candles-dedication-ornament--bottom {
  margin-bottom: 0;
  margin-top: 28px;
}

.candles-dedication-cta-section .candles-dedication-cta-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-light);
  text-align: center;
  margin: 0 0 20px 0;
  letter-spacing: 0.02em;
}

.candles-dedication-cta-section .candles-dedication-cta-text {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  text-align: center;
  margin: 0 0 32px 0;
  max-width: 560px;
  opacity: 0.88;
}

.candles-dedication-cta-section .candles-dedication-cta-btn {
  display: inline-block;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid #d4b27a;
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2), 0 0 18px rgba(216,155,43,0.12);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.candles-dedication-cta-section .candles-dedication-cta-btn:hover {
  background: linear-gradient(180deg, #c43518 0%, #8f1f12 100%);
  box-shadow: 0 12px 28px rgba(143,31,18,0.22), 0 0 28px rgba(216,155,43,0.18);
  transform: translateY(-2px);
  color: #f8e8b8;
  text-decoration: none;
}

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

  .candles-dedication-cta-section .candles-glow-ring {
    width: 300px;
    height: 300px;
  }

  .candles-dedication-cta-section .candles-dedication-cta-heading {
    font-size: 1.6rem;
  }

  .candles-dedication-cta-section .candles-dedication-cta-text {
    font-size: 16px;
    padding: 0 4px;
  }

  .candles-dedication-cta-section .candles-dedication-cta-btn {
    padding: 12px 24px;
    font-size: 13px;
    letter-spacing: 1.5px;
  }
}

/* miscellaneous-route-map */
.miscellaneous-route-map-section {
  position: relative;
  overflow: visible;
  background-color: #edd8ad;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23edd8ad'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  color: var(--text-dark);
  padding: 120px 24px 90px;
  direction: rtl;
}

.miscellaneous-route-map-section .route-map-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(ellipse at 10% 80%, rgba(122,31,43,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 20%, rgba(53,92,125,0.07) 0%, transparent 55%);
}

.miscellaneous-route-map-section .route-map-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  direction: rtl;
}

/* ── TEXT COLUMN ── */
.miscellaneous-route-map-section .route-map-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
}

.miscellaneous-route-map-section .route-map-accent-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  margin-inline-start: 0;
}

.miscellaneous-route-map-section .route-map-h1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin: 0;
  letter-spacing: 0.01em;
}

.miscellaneous-route-map-section .route-map-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

.miscellaneous-route-map-section .route-map-divider-ornament {
  display: flex;
  justify-content: flex-end;
  margin: 4px 0;
}

.miscellaneous-route-map-section .route-map-h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
  border-inline-end: 3px solid var(--accent);
  padding-inline-end: 14px;
}

.miscellaneous-route-map-section .route-map-body {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
}

/* Info Cards */
.miscellaneous-route-map-section .route-map-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

.miscellaneous-route-map-section .route-info-card {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  background: linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 14px 16px;
  box-shadow: 0 4px 10px rgba(58,32,24,0.12);
  transition: all 0.3s ease;
  direction: rtl;
}

.miscellaneous-route-map-section .route-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(58,32,24,0.28);
}

.miscellaneous-route-map-section .route-info-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(122,31,43,0.08);
  border-radius: 2px;
  flex-shrink: 0;
}

.miscellaneous-route-map-section .route-info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.miscellaneous-route-map-section .route-info-content strong {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.miscellaneous-route-map-section .route-info-content span {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* CTA Button */
.miscellaneous-route-map-section .route-map-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid #d4b27a;
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 8px;
  align-self: flex-start;
}

.miscellaneous-route-map-section .route-map-cta:hover {
  box-shadow: 0 12px 28px rgba(143,31,18,0.22);
  transform: translateY(-2px);
  color: #f8e8b8;
}

/* ── MAP COLUMN ── */
.miscellaneous-route-map-section .route-map-visual-col {
  position: relative;
  z-index: 1;
}

.miscellaneous-route-map-section .route-map-frame {
  background: linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  border: 2px solid var(--border-light);
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(58,32,24,0.18), inset 0 1px 4px rgba(58,32,24,0.12);
  overflow: hidden;
  padding: 10px;
}

.miscellaneous-route-map-section .route-map-frame::before {
  content: '';
  display: block;
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(216,155,43,0.35);
  border-radius: 1px;
  pointer-events: none;
  z-index: 2;
}

.miscellaneous-route-map-section .route-map-frame-inner {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.miscellaneous-route-map-section .route-map-frame-inner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(58,32,24,0.22);
}

.miscellaneous-route-map-section .route-map-frame-inner:hover img {
  transform: scale(1.02);
}

.miscellaneous-route-map-section .route-map-overlay-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.miscellaneous-route-map-section .route-map-caption {
  font-family: 'Rubik', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  padding: 10px 12px 6px;
  border-top: 1px solid var(--border-light);
  margin-top: 6px;
  direction: rtl;
}

/* Legend */
.miscellaneous-route-map-section .route-map-legend {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 12px 4px;
  border-top: 1px solid rgba(216,155,43,0.3);
  direction: rtl;
}

.miscellaneous-route-map-section .legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

.miscellaneous-route-map-section .legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.miscellaneous-route-map-section .legend-dot--start {
  background: var(--accent);
  border: 2px solid white;
  box-shadow: 0 0 0 1px var(--accent);
}

.miscellaneous-route-map-section .legend-dot--end {
  background: var(--primary);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 1px var(--primary);
}

.miscellaneous-route-map-section .legend-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  opacity: 0.7;
  flex-shrink: 0;
  position: relative;
}

.miscellaneous-route-map-section .legend-line::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--secondary);
  border-radius: 50%;
}

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

.miscellaneous-route-map-section .route-map-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .miscellaneous-route-map-section .route-map-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .miscellaneous-route-map-section .route-map-visual-col {
    
  }

  .miscellaneous-route-map-section .route-map-h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .miscellaneous-route-map-section {
    padding: 100px 16px 90px;
  }

  .miscellaneous-route-map-section .route-map-container {
    grid-template-columns: 1fr !important;
    gap: 28px;
    padding: 0;
  }

  .miscellaneous-route-map-section .route-map-h1 {
    font-size: 1.9rem;
  }

  .miscellaneous-route-map-section .route-map-h3 {
    font-size: 1.2rem;
  }

  .miscellaneous-route-map-section .route-map-info-cards {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .miscellaneous-route-map-section .route-map-cta {
    align-self: stretch;
    justify-content: center;
    font-size: 14px;
    padding: 12px 20px;
  }

  .miscellaneous-route-map-section .route-map-legend {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .miscellaneous-route-map-section .route-map-info-cards {
    grid-template-columns: 1fr !important;
  }

  .miscellaneous-route-map-section .route-map-h1 {
    font-size: 1.6rem;
  }
}
/* ZAPPY_POSTGEN_GUARD_RTL_ORDER:שונות-route-map — stripped 1 order declaration(s) conflicting with RTL grid */


/* miscellaneous-heritage-notes */
.miscellaneous-heritage-notes-section {
  position: relative;
  overflow: visible;
  background-color: #201816;
  background-image: linear-gradient(180deg, #2a160f 0%, #201816 60%, #2a160f 100%);
  color: var(--text-light);
  direction: rtl;
  padding-bottom: 90px;
}

/* ── Top archival image ── */
.miscellaneous-heritage-notes-section .heritage-top-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  z-index: 1;
}

.miscellaneous-heritage-notes-section .heritage-top-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  opacity: 0.55;
  border-radius: 0;
}

.miscellaneous-heritage-notes-section .heritage-top-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(32, 24, 22, 0.35) 0%,
    rgba(32, 24, 22, 0.0) 40%,
    rgba(32, 24, 22, 0.85) 100%
  );
  pointer-events: none;
}

/* ── Main container ── */
.miscellaneous-heritage-notes-section .heritage-notes-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 48px;
}

/* ── Heading block ── */
.miscellaneous-heritage-notes-section .heritage-notes-heading-block {
  text-align: center;
  margin-bottom: 52px;
}

.miscellaneous-heritage-notes-section .heritage-notes-eyebrow {
  display: inline-block;
  font-family: 'Rubik', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  opacity: 0.9;
}

.miscellaneous-heritage-notes-section .heritage-notes-h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-light);
  margin: 0 0 20px 0;
  max-width: none !important;
}

.miscellaneous-heritage-notes-section .heritage-notes-rule {
  width: 72px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 24px;
  opacity: 0.8;
}

.miscellaneous-heritage-notes-section .heritage-notes-intro {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  opacity: 0.82;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

/* ── Four-column grid ── */
.miscellaneous-heritage-notes-section .heritage-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  direction: rtl;
}

/* ── Individual card ── */
.miscellaneous-heritage-notes-section .heritage-note-card {
  background: linear-gradient(180deg, rgba(108,51,23,0.42) 0%, rgba(42,22,15,0.55) 100%);
  border: 1px solid var(--border-dark);
  border-radius: 2px;
  padding: 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.miscellaneous-heritage-notes-section .heritage-note-card::before {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  opacity: 0.6;
}

.miscellaneous-heritage-notes-section .heritage-note-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(58,32,24,0.28);
  border-color: var(--accent);
}

/* ── Card icon ── */
.miscellaneous-heritage-notes-section .heritage-note-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 48px;
  height: 48px;
  background: rgba(216,155,43,0.12);
  border-radius: 2px;
  border: 1px solid rgba(216,155,43,0.3);
  flex-shrink: 0;
  align-self: flex-end;
  padding: 6px;
}

/* ── Card content ── */
.miscellaneous-heritage-notes-section .heritage-note-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.miscellaneous-heritage-notes-section .heritage-note-h3 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-light);
  margin: 0;
  text-align: right;
}

.miscellaneous-heritage-notes-section .heritage-note-content p {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  opacity: 0.78;
  margin: 0;
  text-align: right;
}

/* ── Bottom landscape image ── */
.miscellaneous-heritage-notes-section .heritage-bottom-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  z-index: 1;
  margin-top: 0;
}

.miscellaneous-heritage-notes-section .heritage-bottom-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  opacity: 0.45;
  border-radius: 0;
}

.miscellaneous-heritage-notes-section .heritage-bottom-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(32, 24, 22, 0.9) 0%,
    rgba(32, 24, 22, 0.25) 50%,
    rgba(32, 24, 22, 0.6) 100%
  );
  pointer-events: none;
}

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

.miscellaneous-heritage-notes-section .heritage-notes-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive: 2-column on tablet ── */
@media (max-width: 1024px) {
  .miscellaneous-heritage-notes-section .heritage-notes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Responsive: mobile ── */
@media (max-width: 768px) {
  .miscellaneous-heritage-notes-section .heritage-top-image-wrapper {
    height: 160px;
  }

  .miscellaneous-heritage-notes-section .heritage-bottom-image-wrapper {
    height: 140px;
  }

  .miscellaneous-heritage-notes-section .heritage-notes-container {
    padding: 36px 16px 36px;
  }

  .miscellaneous-heritage-notes-section .heritage-notes-heading-block {
    margin-bottom: 36px;
  }

  .miscellaneous-heritage-notes-section .heritage-notes-h2 {
    font-size: 1.6rem;
  }

  .miscellaneous-heritage-notes-section .heritage-notes-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .miscellaneous-heritage-notes-section .heritage-note-card {
    padding: 22px 18px;
  }

  .miscellaneous-heritage-notes-section .heritage-notes-divider-wrapper {
    height: 60px;
  }

  .miscellaneous-heritage-notes-section {
    padding-bottom: 60px;
  }
}

/* miscellaneous-faq */
.miscellaneous-faq-section {
  background-color: #f5e6c6;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f2dfb8'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  color: var(--text-dark);
  direction: rtl;
  padding: 96px 24px 80px;
  position: relative;
  overflow: visible;
}

.miscellaneous-faq-section .faq-container {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.miscellaneous-faq-section .faq-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.miscellaneous-faq-section .faq-title {
  font-family: 'Rubik', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin: 0 0 20px 0;
  max-width: none !important;
}

.miscellaneous-faq-section .faq-title-rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  margin: 0 auto 20px;
}

.miscellaneous-faq-section .faq-subtitle {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
  max-width: 520px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  text-align: center;
}

/* ── FAQ List ── */
.miscellaneous-faq-section .faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.miscellaneous-faq-section .faq-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
}

.miscellaneous-faq-section .faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

/* ── Question Row ── */
.miscellaneous-faq-section .faq-question-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.miscellaneous-faq-section .faq-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: 2px;
  font-family: 'Rubik', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-top: 2px;
}

.miscellaneous-faq-section .faq-question {
  font-family: 'Rubik', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--primary);
  margin: 0;
  flex: 1;
  text-align: right;
}

/* ── Answer ── */
.miscellaneous-faq-section .faq-answer {
  padding-inline-start: 52px;
}

.miscellaneous-faq-section .faq-answer p {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin: 0;
  text-align: right;
}

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

.faq-bottom-divider-wrapper svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .miscellaneous-faq-section {
    padding: 56px 16px 70px;
  }

  .miscellaneous-faq-section .faq-header {
    margin-bottom: 36px;
  }

  .miscellaneous-faq-section .faq-title {
    font-size: 1.6rem;
  }

  .miscellaneous-faq-section .faq-item {
    padding: 24px 0;
  }

  .miscellaneous-faq-section .faq-question-row {
    gap: 12px;
    margin-bottom: 12px;
  }

  .miscellaneous-faq-section .faq-number {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .miscellaneous-faq-section .faq-question {
    font-size: 1.15rem;
  }

  .miscellaneous-faq-section .faq-answer {
    padding-inline-start: 42px;
  }

  .miscellaneous-faq-section .faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
  }
}

/* miscellaneous-contact */
.miscellaneous-contact-section {
  position: relative;
  background-color: #f2dfb8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 .08 0'/%3E%3C/filter%3E%3Crect width='140' height='140' fill='%23f2dfb8'/%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  color: var(--text-dark);
  padding: 96px 24px;
  direction: rtl;
  overflow: visible;
}

.miscellaneous-contact-section .contact-bg-texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

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

/* ── Intro ── */
.miscellaneous-contact-section .contact-intro {
  text-align: center;
  margin-bottom: 56px;
}

.miscellaneous-contact-section .contact-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.miscellaneous-contact-section .ornament-line {
  display: block;
  width: 80px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.miscellaneous-contact-section .ornament-diamond {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.miscellaneous-contact-section .contact-heading {
  font-family: 'Rubik', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  margin: 0 0 20px 0;
  letter-spacing: 0.5px;
}

.miscellaneous-contact-section .contact-subtext {
  font-family: 'Rubik', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ── Form Wrapper Layout ── */
.miscellaneous-contact-section .contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  direction: rtl;
}

/* ── Form Inner Card ── */
.miscellaneous-contact-section .contact-form-inner {
  background: linear-gradient(180deg, #fdf3dc 0%, #f5e6c6 100%);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--primary);
  border-radius: 2px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
}

/* ── Welcome Note ── */
.miscellaneous-contact-section .form-welcome-note {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  background: rgba(216, 155, 43, 0.1);
  border: 1px solid rgba(216, 155, 43, 0.35);
  border-radius: 2px;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.miscellaneous-contact-section .form-note-icon {
  color: var(--accent);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.miscellaneous-contact-section .form-welcome-note p {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
  text-align: right;
}

/* ── Form Rows ── */
.miscellaneous-contact-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  direction: rtl;
}

.miscellaneous-contact-section .form-row-mixed {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.miscellaneous-contact-section .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.miscellaneous-contact-section .form-field-message {
  grid-column: auto;
}

.miscellaneous-contact-section .form-field label {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  letter-spacing: 0.3px;
}

.miscellaneous-contact-section .form-field input,
.miscellaneous-contact-section .form-field textarea {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: #fdf7ec;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  padding: 12px 16px;
  direction: rtl;
  text-align: right;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 4px rgba(58,32,24,0.08);
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.miscellaneous-contact-section .form-field input::placeholder,
.miscellaneous-contact-section .form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
  font-size: 14px;
}

.miscellaneous-contact-section .form-field input:focus,
.miscellaneous-contact-section .form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 31, 43, 0.1), inset 0 1px 4px rgba(58,32,24,0.08);
  background: #fff9f0;
}

.miscellaneous-contact-section .form-field textarea {
  resize: vertical;
  min-height: 130px;
}

/* ── Privacy Consent ── */
.miscellaneous-contact-section .privacy-consent {
  margin-bottom: 28px;
  color: var(--text-dark);
}

.miscellaneous-contact-section .privacy-consent-label {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: right;
}

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

.miscellaneous-contact-section .privacy-consent a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.miscellaneous-contact-section .privacy-consent a:hover {
  color: var(--accent);
}

/* ── Submit Row ── */
.miscellaneous-contact-section .form-submit-row {
  display: flex;
  justify-content: flex-start;
}

.miscellaneous-contact-section .contact-submit-btn {
  background: linear-gradient(180deg, #a72d16 0%, #7a180f 100%);
  color: #f8e8b8;
  padding: 14px 36px;
  border-radius: 2px;
  border: 1px solid #d4b27a;
  box-shadow: 0 2px 0 #5f2012, 0 4px 10px rgba(58,32,24,0.2);
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.miscellaneous-contact-section .contact-submit-btn:hover {
  background: linear-gradient(180deg, #c43518 0%, #8f1f12 100%);
  box-shadow: 0 12px 28px rgba(143,31,18,0.22), 0 2px 0 #5f2012;
  transform: translateY(-2px);
}

.miscellaneous-contact-section .submit-icon {
  font-size: 14px;
}

/* ── Side Note Panel ── */
.miscellaneous-contact-section .contact-side-note {
  position: sticky;
  top: 120px;
}

.miscellaneous-contact-section .side-note-inner {
  background: linear-gradient(180deg, #f5e6c6 0%, #edd8ad 100%);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--accent);
  border-radius: 2px;
  padding: 32px 28px;
  box-shadow: 0 8px 20px rgba(58,32,24,0.18);
}

.miscellaneous-contact-section .side-note-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.miscellaneous-contact-section .side-note-icon {
  font-size: 32px;
  color: var(--accent);
}

.miscellaneous-contact-section .side-note-title {
  font-family: 'Rubik', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.4;
}

.miscellaneous-contact-section .side-note-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.miscellaneous-contact-section .side-note-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  text-align: right;
}

.miscellaneous-contact-section .list-icon {
  color: var(--accent);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.miscellaneous-contact-section .side-note-list li span {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
}

.miscellaneous-contact-section .side-note-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 24px 0;
  opacity: 0.6;
}

.miscellaneous-contact-section .side-note-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.miscellaneous-contact-section .contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-align: right;
}

.miscellaneous-contact-section .info-icon {
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
}

.miscellaneous-contact-section .contact-info-item a {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
  direction: ltr;
  unicode-bidi: embed;
}

.miscellaneous-contact-section .contact-info-item a:hover {
  color: var(--primary);
}

/* ── Bottom Ornament ── */
.miscellaneous-contact-section .contact-bottom-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 56px;
}

.miscellaneous-contact-section .ornament-star {
  color: var(--accent);
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .miscellaneous-contact-section .contact-form-wrapper {
    grid-template-columns: 1fr;
  }

  .miscellaneous-contact-section .contact-side-note {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .miscellaneous-contact-section {
    padding: 56px 16px;
  }

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

  .miscellaneous-contact-section .contact-heading {
    font-size: 26px;
  }

  .miscellaneous-contact-section .contact-subtext {
    font-size: 15px;
  }

  .miscellaneous-contact-section .contact-form-inner {
    padding: 24px 20px;
  }

  .miscellaneous-contact-section .form-row {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .miscellaneous-contact-section .form-row-mixed {
    grid-template-columns: 1fr !important;
  }

  .miscellaneous-contact-section .ornament-line {
    width: 48px;
  }

  .miscellaneous-contact-section .side-note-inner {
    padding: 24px 20px;
  }

  .miscellaneous-contact-section .form-submit-row {
    justify-content: center;
  }

  .miscellaneous-contact-section .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}



/* 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;
}





/* Hide WhatsApp float button on desktop (mobile-only) */



/* Footer contact alignment fix */
.footer-contact li > a { display: flex; align-items: flex-start; gap: inherit; }

/* 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; }


/* ============================================
   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: clip !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 — from sharedMobileCss.js */

  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;
  }

  /* 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: #F7F1E7 !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: #D89B2B !important; }
.navbar .navbar-brand, .navbar .navbar-brand a { color: #F7F1E7 !important; }
.navbar .dropdown-toggle { color: #F7F1E7 !important; }
.navbar .dropdown-toggle:hover { color: #D89B2B !important; }
.navbar .mobile-hamburger-btn, .navbar .mobile-close-btn { color: #F7F1E7 !important; }
.navbar-toggler { color: #F7F1E7 !important; border-color: #F7F1E744 !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='%23F7F1E7' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; }
.navbar .dropdown-menu { background-color: #201816 !important; }
.navbar .dropdown-menu li a,
.navbar .dropdown-menu .dropdown-item { color: #F7F1E7 !important; }
.navbar .dropdown-menu li a:hover,
.navbar .dropdown-menu .dropdown-item:hover { color: #D89B2B !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .sub-menu,
.navbar ul.sub-menu,
nav.navbar .sub-menu { background-color: #201816 !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: #F7F1E7 !important; }
.navbar .sub-menu a:hover,
.navbar .sub-menu li a:hover,
nav.navbar .sub-menu li a:hover { color: #D89B2B !important; background-color: rgba(128,128,128,0.1) !important; }
.navbar .mobile-submenu-toggle { color: #F7F1E7 !important; }
.navbar .phone-header-btn { color: #F7F1E7 !important; }
.navbar .nav-search-input,
.navbar .nav-search-box .nav-search-input { color: #201816 !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: #201816 !important; }
  .navbar .nav-search-box .nav-search-btn svg { stroke: #201816 !important; fill: none !important; }
}
.navbar .nav-search-result-name { color: #201816 !important; }
.navbar .nav-search-result-item a { color: #201816 !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: #F7F1E7 !important; }
.zappy-catalog-menu .catalog-menu-item:hover,
.zappy-catalog-menu .catalog-menu-all:hover { color: #D89B2B !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: #201816 !important; }
  .navbar:not(.scrolled) .dropdown-menu li a,
  .navbar:not(.scrolled) .dropdown-menu .dropdown-item { color: #F7F1E7 !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: #201816 !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: #F7F1E7 !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(32,24,22,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(32,24,22,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, #F7F1E7) !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, #F7F1E7) !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, #F7F1E7) !important; }
.navbar.scrolled .dropdown-toggle { color: var(--frosted-text, #F7F1E7) !important; }
.navbar.scrolled .mobile-hamburger-btn, .navbar.scrolled .mobile-close-btn { color: var(--frosted-text, #F7F1E7) !important; }
.navbar.scrolled .phone-header-btn { color: var(--frosted-text, #F7F1E7) !important; }
.navbar.scrolled .mobile-toggle { color: var(--frosted-text, #F7F1E7) !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, #F7F1E7) !important; }
.navbar.scrolled .nav-search-btn svg { stroke: var(--frosted-text, #F7F1E7) !important; fill: none !important; }
@media (min-width: 769px) {
  .navbar.scrolled .sub-menu,
  .navbar.scrolled ul.sub-menu,
  nav.navbar.scrolled .sub-menu { background-color: #F1DFC2 !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: #201816 !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: #D89B2B !important; background-color: rgba(128,128,128,0.1) !important; }
  .navbar.scrolled .dropdown-menu { background-color: #F1DFC2 !important; }
  .navbar.scrolled .dropdown-menu li a,
  .navbar.scrolled .dropdown-menu .dropdown-item { color: #201816 !important; }
  .navbar.scrolled .dropdown-menu li a:hover,
  .navbar.scrolled .dropdown-menu .dropdown-item:hover { color: #D89B2B !important; background-color: rgba(128,128,128,0.1) !important; }
  .navbar.scrolled .mobile-submenu-toggle { color: #201816 !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: #201816 !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: #201816 !important; background: #201816 !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: #F7F1E7 !important; }
  .nav-menu a:hover, .nav-menu > li > a:hover { color: #D89B2B !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: #F7F1E7 !important; }
  .nav-menu .dropdown-menu a:hover { color: #D89B2B !important; }
  .nav-menu .sub-menu a { color: #F7F1E7 !important; white-space: normal !important; }
  .nav-menu .sub-menu a:hover { color: #D89B2B !important; }
  .nav-menu > li { position: relative !important; }
  .navbar .nav-menu .mobile-submenu-toggle { color: #F7F1E7 !important; position: static !important; height: auto !important; flex-shrink: 0 !important; align-self: stretch !important; }
  .mobile-toggle { color: #F7F1E7 !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: #F7F1E7 !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: #F7F1E7 !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: #F7F1E7 !important; }
  .mobile-search-panel input { color: #F7F1E7 !important; background: rgba(255,255,255,0.12) !important; }
  .mobile-search-panel .close-search { color: #F7F1E7 !important; background: rgba(255,255,255,0.15) !important; }
  .mobile-search-panel .close-search svg { stroke: #F7F1E7 !important; color: #F7F1E7 !important; }
  .mobile-search-panel .close-search:hover { color: #F7F1E7 !important; background: rgba(255,255,255,0.25) !important; }
  .mobile-search-panel .close-search:hover svg { stroke: #F7F1E7 !important; color: #F7F1E7 !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: none !important; pointer-events: auto !important; position: static !important;
    overflow-y: visible !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: #201816;
}

/* 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 */

/* Hover state - keep text hidden */
#mic-access-tool-general-button:hover {
  background-color: rgba(32, 24, 22, 0.1) !important;
  background: rgba(32, 24, 22, 0.1) !important;
  box-shadow: 0 2px 8px rgba(32, 24, 22, 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: #201816 !important;
  stroke: #201816 !important;
  color: #201816 !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: #201816 !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: #201816 !important;
  color: #201816 !important;
  background-color: rgba(32, 24, 22, 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: #201816 !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 */

/* Target Mickidum accessibility menu with high specificity */

/* Show accessibility widget when ALT+A keyboard shortcut is used (desktop only) */


/* On mobile, ensure it stays hidden */
@media (max-width: 768px) {
  /* Hide the accessibility button on mobile - higher specificity */
  
  /* Hide the accessibility menu on mobile - higher specificity */
  
  /* Ensure mobile never shows widget even with keyboard shortcut */
}

.navbar .nav-brand-title {
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
  white-space: nowrap;
}

.navbar .nav-brand-star {
  color: var(--accent-color);
  font-size: 1.1rem;
  filter: drop-shadow(0 0 4px rgba(216,155,43,0.7));
  display: inline-block;
}

.footer-brand-name-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.footer-brand-name {
  font-family: 'Frank Ruhl Libre', serif !important;
  font-weight: 900 !important;
}

.footer-brand-star {
  color: var(--accent-color) !important;
  font-size: 1.2rem;
  filter: drop-shadow(0 0 5px rgba(216,155,43,0.8));
}

.candles-dedication-cta-section .candle-dedication-form {
  width: 100%;
  max-width: 560px;
  margin: 24px auto 0;
}

.candles-dedication-cta-section .candle-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.candles-dedication-cta-section .candle-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.candles-dedication-cta-section .candle-form-label {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.03em;
}

.candles-dedication-cta-section .candle-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  background: rgba(255,244,220,0.12);
  color: var(--text-light);
  font-size: 1rem;
  font-family: inherit;
  direction: rtl;
  text-align: right;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.candles-dedication-cta-section .candle-form-input::placeholder {
  color: rgba(247,241,231,0.45);
}

.candles-dedication-cta-section .candle-form-input:focus {
  outline: none;
  border-color: #f0c040;
  box-shadow: 0 0 8px rgba(216,155,43,0.4);
}

.nav-brand-title {
  color: var(--primary-color) !important;
}

.navbar-tzadik-title {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
  border-top: 1px solid rgba(214,194,163,0.18);
  background: rgba(32,24,22,0.55);
}

.navbar-tzadik-title .magen-david {
  font-size: 1.3em;
  margin: 0 0.4em;
  color: var(--accent);
  display: inline-block;
}



.navbar .nav-menu a {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  letter-spacing: 0.04em !important;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55) !important;
}

.navbar .nav-menu > li > a {
  color: #FFFFFF !important;
}

.navbar .nav-menu > .nav-item > a {
  color: #FFFFFF !important;
}

.navbar .navbar-nav .nav-link {
  color: #FFFFFF !important;
}

.navbar a:not(.nav-cta-btn) {
  color: #FFFFFF !important;
}

.navbar .navbar-brand a {
  color: #FFFFFF !important;
}

.navbar .dropdown-menu li a {
  color: #FFFFFF !important;
}

.navbar .dropdown-menu .dropdown-item {
  color: #FFFFFF !important;
}

.navbar .sub-menu a {
  color: #FFFFFF !important;
}

.navbar .sub-menu li a {
  color: #FFFFFF !important;
}

.navbar .nav-menu .sub-menu a {
  color: #FFFFFF !important;
}

.navbar .nav-menu .sub-menu li a {
  color: #FFFFFF !important;
}

.navbar .zappy-products-dropdown .sub-menu a {
  color: #FFFFFF !important;
}

nav.navbar .sub-menu li a {
  color: #FFFFFF !important;
}

.navbar .nav-search-box .nav-search-input {
  color: #FFFFFF !important;
}

.navbar .nav-search-input::placeholder {
  color: #FFFFFF !important;
}

.navbar .nav-search-result-item a {
  color: #FFFFFF !important;
}

.navbar .cart-link.nav-cart {
  color: #FFFFFF !important;
}

.navbar .login-link.nav-login {
  color: #FFFFFF !important;
}

.navbar .cart-link.nav-cart svg {
  color: #FFFFFF !important;
}

.navbar .login-link.nav-login svg {
  color: #FFFFFF !important;
}

.navbar .nav-search-toggle svg {
  color: #FFFFFF !important;
}

.navbar .search-toggle svg {
  color: #FFFFFF !important;
}

.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-item {
  color: #FFFFFF !important;
}

.navbar.scrolled ~ .zappy-catalog-menu .catalog-menu-all {
  color: #FFFFFF !important;
}

.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-item {
  color: #FFFFFF !important;
}

.navbar.scrolled ~ #zappy-catalog-menu .catalog-menu-all {
  color: #FFFFFF !important;
}

.navbar.scrolled .nav-menu > li > a {
  color: #FFFFFF !important;
}

.navbar.scrolled .nav-menu > .nav-item > a {
  color: #FFFFFF !important;
}

.navbar.scrolled .nav-link {
  color: #FFFFFF !important;
}

.navbar.scrolled a:not(.nav-cta-btn) {
  color: #FFFFFF !important;
}

.navbar.scrolled .navbar-brand {
  color: #FFFFFF !important;
}

.navbar.scrolled .navbar-brand a {
  color: #FFFFFF !important;
}

.navbar.scrolled .dropdown-toggle {
  color: #FFFFFF !important;
}

.navbar.scrolled .mobile-hamburger-btn {
  color: #FFFFFF !important;
}

.navbar.scrolled .mobile-close-btn {
  color: #FFFFFF !important;
}

.navbar.scrolled .phone-header-btn {
  color: #FFFFFF !important;
}

.navbar.scrolled .mobile-toggle {
  color: #FFFFFF !important;
}

.navbar.scrolled .mobile-toggle svg {
  color: #FFFFFF !important;
}

.navbar.scrolled .nav-search-btn {
  color: #FFFFFF !important;
}

.navbar.scrolled .cart-link.nav-cart {
  color: #FFFFFF !important;
}

.navbar.scrolled .login-link.nav-login {
  color: #FFFFFF !important;
}

.navbar.scrolled .nav-search-toggle {
  color: #FFFFFF !important;
}

.navbar.scrolled .search-toggle {
  color: #FFFFFF !important;
}

.brd-bulletin-section {
  direction: rtl;
  font-family: system-ui, sans-serif;
  background-color: #201816;
  padding: 48px 40px 40px 40px;
  display: block;
  flex-direction: unset;
  align-items: unset;
  /* align panel to the right (RTL = right side visually = start) */
  min-height: 200px;
  position: relative;
  overflow: hidden;
}

/* ---- Zellige decorative borders (top & bottom) ---- */
.brd-zellige-border {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 24px;
  margin-right: 0;
  margin-left: auto; /* push to right in RTL context */
}

.brd-zellige-bottom {
  margin-top: 6px;
}

.brd-zellige-diamond {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #C9A84C;
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(201, 168, 76, 0.5);
}

.brd-zellige-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C9A84C 30%, #C9A84C 70%, transparent);
  min-width: 20px;
}

/* ---- Main Panel ---- */
.brd-panel {
  width: 50%;
  max-width: 600px;
  margin-right: 0; /* RTL: sticks to the right edge */
  margin-left: auto;
  background: #201816;
  border: 2px solid #C9A84C;
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.15),
    0 4px 32px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
}

/* Moroccan arch top decoration */
.brd-panel::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    #7A1F2B 15%,
    #C9A84C 35%,
    #e8c96a 50%,
    #C9A84C 65%,
    #7A1F2B 85%,
    transparent 100%
  );
  z-index: 1;
}

/* ---- Panel Header ---- */
.brd-panel-header {
  background: linear-gradient(180deg, #2e1a14 0%, #1a100c 100%);
  padding: 22px 28px 18px;
  text-align: center;
  border-bottom: 2px solid #C9A84C;
  position: relative;
}

.brd-header-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.brd-ornament-star {
  color: #C9A84C;
  font-size: 14px;
  line-height: 1;
  text-shadow: 0 0 8px rgba(201, 168, 76, 0.6);
}

.brd-ornament-line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C9A84C, transparent);
}

.brd-panel-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #C9A84C;
  margin: 6px 0 4px;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 12px rgba(201, 168, 76, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brd-title-icon {
  font-size: 1.4rem;
}

.brd-header-subtitle {
  font-size: 0.85rem;
  color: rgba(201, 168, 76, 0.7);
  letter-spacing: 0.06em;
  margin-top: 6px;
  font-style: italic;
}

/* ---- Scrollable container ---- */
.brd-notices-scroll {
  max-height: 480px;
  overflow-y: auto;
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #C9A84C #2e1a14;
}

.brd-notices-scroll::-webkit-scrollbar {
  width: 6px;
}

.brd-notices-scroll::-webkit-scrollbar-track {
  background: #2e1a14;
  border-radius: 3px;
}

.brd-notices-scroll::-webkit-scrollbar-thumb {
  background: #C9A84C;
  border-radius: 3px;
}

.brd-notices-scroll::-webkit-scrollbar-thumb:hover {
  background: #e8c96a;
}

/* ---- Notice Card ---- */
.brd-notice-card {
  background: #F1DFC2;
  border: 1.5px solid #C9A84C;
  border-radius: 12px;
  padding: 20px 20px 16px;
  position: relative;
  box-shadow:
    0 2px 12px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.brd-notice-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(201, 168, 76, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Moroccan corner ornaments */
.brd-notice-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: #7A1F2B;
  border-style: solid;
  border-width: 0;
}

.brd-corner-tl {
  top: 6px;
  right: 6px; /* RTL: top-right */
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-right-radius: 3px;
}

.brd-corner-tr {
  top: 6px;
  left: 6px; /* RTL: top-left */
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-left-radius: 3px;
}

.brd-corner-bl {
  bottom: 6px;
  right: 6px; /* RTL: bottom-right */
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-bottom-right-radius: 3px;
}

.brd-corner-br {
  bottom: 6px;
  left: 6px; /* RTL: bottom-left */
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-bottom-left-radius: 3px;
}

/* Star of David badge */
.brd-notice-badge {
  position: absolute;
  top: -1px;
  right: 50%;
  transform: translateX(50%);
  background: #7A1F2B;
  color: #C9A84C;
  font-size: 13px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #C9A84C;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  z-index: 2;
}

/* ---- Notice Body ---- */
.brd-notice-body {
  padding-top: 14px;
}

.brd-notice-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #2a1208;
  margin: 0;
  font-weight: 400;
  border-right: 3px solid #7A1F2B;
  padding-right: 12px;
}

/* ---- Notice Footer ---- */
.brd-notice-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(122, 31, 43, 0.25);
}

.brd-notice-date {
  font-size: 0.82rem;
  color: #5a3010;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.brd-date-icon {
  font-size: 0.9rem;
}

/* ---- Share Buttons ---- */
.brd-share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.brd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: system-ui, sans-serif;
}

.brd-share-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brd-share-btn:focus-visible {
  outline: 3px solid #C9A84C;
  outline-offset: 2px;
}

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

/* Facebook button */
.brd-share-fb {
  background: #1877F2;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(24, 119, 242, 0.35);
}

/* WhatsApp button */
.brd-share-wa {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.35);
}

.brd-share-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ---- Panel Footer Ornament ---- */
.brd-panel-footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px 18px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.brd-star-sm {
  color: #C9A84C;
  font-size: 11px;
  opacity: 0.7;
}

.brd-star-lg {
  color: #C9A84C;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.brd-line-short {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 900px) {
  .brd-panel {
    width: 70%;
    max-width: 100%;
  }

  .brd-zellige-border {
    width: 70%;
  }
}

@media (max-width: 600px) {
  .brd-bulletin-section {
    padding: 32px 0 28px 0;
    align-items: stretch; /* full width on mobile */
  }

  .brd-panel {
    width: 100%;
    max-width: 100%;
    border-left: none;
    border-right: none;
    border-radius: 0;
    margin: 0;
  }

  .brd-zellige-border {
    width: 100%;
    padding: 8px 16px;
  }

  .brd-panel-header {
    padding: 18px 20px 14px;
  }

  .brd-panel-title {
    font-size: 1.4rem;
  }

  .brd-notices-scroll {
    padding: 16px 14px 8px;
    gap: 14px;
    max-height: 420px;
  }

  .brd-notice-card {
    padding: 18px 16px 14px;
  }

  .brd-notice-footer {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .brd-share-buttons {
    width: 100%;
    justify-content: flex-end;
  }

  .brd-share-btn {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .brd-panel-title {
    font-size: 1.2rem;
  }

  .brd-notice-text {
    font-size: 0.9rem;
  }
}

/* AI-generated section */
/* ── Ticker Bar Section ────────────────────────────────────────────── */
.ticker-bar-section {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--primary, #7A1F2B);
  border-bottom: 2px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 999;
  overflow: hidden;
  font-family: system-ui, sans-serif;
  direction: rtl;
}

/* ── Wrapper: label + scrolling track ─────────────────────────────── */
.ticker-bar-wrapper {
  display: flex;
  align-items: stretch;
  height: 42px;
  overflow: hidden;
}

/* ── Label badge on the right (RTL start) ─────────────────────────── */
.ticker-bar-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  background: linear-gradient(135deg, #c9a227 0%, #a07c18 100%);
  color: #1a0a00;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

/* Angled right-edge cut (RTL: left side of label) */
.ticker-bar-label::after {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 42px solid transparent;
  border-right: 13px solid #a07c18;
  pointer-events: none;
}

.ticker-bar-label-icon {
  font-size: 10px;
  opacity: 0.8;
}

.ticker-bar-label-text {
  font-size: 12px;
  font-weight: 800;
}

/* ── Scrolling track container ─────────────────────────────────────── */
.ticker-bar-track-container {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}

/* Fade-out edges for polish */
.ticker-bar-track-container::before,
.ticker-bar-track-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.ticker-bar-track-container::before {
  right: 0;
  background: linear-gradient(to left, var(--primary, #7A1F2B) 0%, transparent 100%);
}

.ticker-bar-track-container::after {
  left: 0;
  background: linear-gradient(to right, var(--primary, #7A1F2B) 0%, transparent 100%);
}

/* ── The moving strip ──────────────────────────────────────────────── */
.ticker-bar-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  /* RTL ticker scrolls from right → left (negative X) */
  animation: tickerScroll 42s linear infinite;
  will-change: transform;
}

/* Pause on hover for accessibility / readability */
.ticker-bar-track-container:hover .ticker-bar-track {
  animation-play-state: paused;
}

/* ── Individual ticker items ───────────────────────────────────────── */
.ticker-bar-item {
  display: inline-block;
  color: #f0d060;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding: 0 6px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

/* ── Separator dots ────────────────────────────────────────────────── */
.ticker-bar-separator {
  display: inline-block;
  color: rgba(212, 175, 55, 0.6);
  font-size: 10px;
  padding: 0 18px;
  vertical-align: middle;
}

/* ── Keyframe: scroll from left edge to right edge (RTL = negative X) */
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── Reduced-motion accessibility ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ticker-bar-track {
    animation: none;
  }
}

/* ── Mobile: slightly smaller text ────────────────────────────────── */
@media (max-width: 600px) {
  .ticker-bar-wrapper {
    height: 38px;
  }

  .ticker-bar-label {
    padding: 0 12px;
  }

  .ticker-bar-label-text {
    font-size: 11px;
  }

  .ticker-bar-item {
    font-size: 13px;
  }

  .ticker-bar-separator {
    padding: 0 12px;
  }

  .ticker-bar-track {
    animation-duration: 32s;
  }
}

@media (max-width: 380px) {
  .ticker-bar-label-icon {
    display: none;
  }

  .ticker-bar-label {
    padding: 0 10px;
  }
}

.brd-bulletin-section .brd-notices-scroll {
  flex-direction: row !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  display: flex;
}
/* Zappy custom logo size (desktop only — mobile stays at 110px/35px) */
@media (min-width: 769px) {
  .logo, img.logo, .logo img, .logo-link img, .nav-brand img {
    max-height: none !important;
    height: 70px !important;
    max-width: 280px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  .nav-container {
    min-height: 100px !important;
  }
}
/* /Zappy custom logo size */








.candles-candle-gallery-section .candle-name {
  font-size: 0.56rem !important;
}

.candles-candle-gallery-section .candle-dedication {
  font-size: 0.5rem !important;
}

.candles-candle-gallery-section .candle-date {
  font-size: 0.45rem !important;
}

.candles-dedication-cta-section,
.candles-intro-section,
.candles-candle-gallery-section,
.candles-devotion-section {
  font-size: 18px;
}

.candles-dedication-cta-section .candles-dedication-cta-heading {
  font-size: 2.2rem !important;
}

.candles-dedication-cta-section .candles-dedication-cta-text {
  font-size: 1.15rem !important;
  line-height: 1.8 !important;
}

.candles-dedication-cta-section .candle-form-label {
  font-size: 1rem !important;
}

.candles-dedication-cta-section .candle-form-input {
  font-size: 1rem !important;
}

.candles-dedication-cta-section .candles-dedication-cta-btn {
  font-size: 1.05rem !important;
}

.candles-intro-section .candles-intro-h1 {
  font-size: 3rem !important;
}

.candles-intro-section .candles-intro-lead {
  font-size: 1.15rem !important;
  line-height: 1.9 !important;
}

.candles-intro-section .candles-intro-h3 {
  font-size: 1.3rem !important;
}

.candles-candle-gallery-section .candles-title {
  font-size: 2.2rem !important;
}

.candles-candle-gallery-section .candles-intro {
  font-size: 1.1rem !important;
  line-height: 1.85 !important;
}

.candles-candle-gallery-section .candle-name {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
}

.candles-candle-gallery-section .candle-dedication {
  font-size: 0.97rem !important;
  line-height: 1.75 !important;
}

.candles-candle-gallery-section .candle-date {
  font-size: 0.9rem !important;
}

.candles-devotion-section .candles-devotion-h2 {
  font-size: 2rem !important;
}

.candles-devotion-section .candles-devotion-h3 {
  font-size: 1.35rem !important;
}

.candles-devotion-section .candles-devotion-p {
  font-size: 1.1rem !important;
  line-height: 1.9 !important;
}

.candles-devotion-section .candles-devotion-p-sub {
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
}

/* AI-generated section */
/* ===== PRAYER DISPLAY SECTION ===== */
.prayer-display-section {
  background-color: #201816;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(180, 130, 40, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse at 50% 100%, rgba(122, 31, 43, 0.15) 0%, transparent 65%);
  padding: 80px 20px 90px;
  font-family: system-ui, sans-serif;
  direction: rtl;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay */
.prayer-display-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8a84b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.prayer-display-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ===== ORNAMENTAL DIVIDERS ===== */
.prayer-ornament-top,
.prayer-ornament-bottom,
.prayer-footer-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.prayer-ornament-top {
  margin-bottom: 28px;
}

.prayer-ornament-bottom {
  margin-top: 20px;
  margin-bottom: 32px;
}

.prayer-footer-ornament {
  margin-top: 32px;
  margin-bottom: 16px;
}

.prayer-ornament-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a84b 40%, #c8a84b 60%, transparent);
  opacity: 0.7;
}

.prayer-ornament-line.short {
  max-width: 60px;
}

.prayer-ornament-icon {
  color: #c8a84b;
  font-size: 20px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(200, 168, 75, 0.5);
  flex-shrink: 0;
}

.prayer-ornament-icon.small {
  font-size: 14px;
}

.prayer-ornament-dots {
  color: #c8a84b;
  font-size: 18px;
  letter-spacing: 4px;
  opacity: 0.8;
  flex-shrink: 0;
}

/* ===== TITLE BLOCK ===== */
.prayer-title-block {
  margin-bottom: 0;
}

.prayer-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: #c8a84b;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 20px rgba(200, 168, 75, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.6);
  line-height: 1.3;
}

.prayer-subtitle {
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  color: rgba(200, 168, 75, 0.65);
  margin: 0;
  font-style: italic;
  letter-spacing: 0.06em;
}

/* ===== FRAME WRAPPER ===== */
.prayer-frame-wrapper {
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prayer-frame-outer {
  position: relative;
  display: inline-block;
  padding: 14px;
  background: linear-gradient(135deg,
    #c8a84b 0%,
    #f0d070 20%,
    #b8922a 40%,
    #e8c855 55%,
    #c8a84b 70%,
    #f0d070 85%,
    #b8922a 100%
  );
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(200, 168, 75, 0.3),
    0 0 30px rgba(200, 168, 75, 0.2),
    0 8px 40px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.prayer-frame-inner {
  background: #201816;
  padding: 6px;
  border-radius: 2px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
}

.prayer-image {
  display: block;
  width: 100%;
  max-width: 472px;
  height: auto;
  border-radius: 2px;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.prayer-image:hover {
  transform: scale(1.01);
  filter: brightness(1.05);
}

/* ===== CORNER ORNAMENTS ===== */
.prayer-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: #f0d070;
  border-style: solid;
  border-width: 0;
}

.prayer-corner--tl {
  top: 4px;
  right: 4px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.prayer-corner--tr {
  top: 4px;
  left: 4px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.prayer-corner--bl {
  bottom: 4px;
  right: 4px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.prayer-corner--br {
  bottom: 4px;
  left: 4px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

/* ===== CAPTION ===== */
.prayer-caption {
  font-size: clamp(0.8rem, 2.2vw, 0.95rem);
  color: rgba(200, 168, 75, 0.55);
  margin: 0;
  letter-spacing: 0.05em;
  font-style: italic;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 560px) {
  .prayer-display-section {
    padding: 60px 16px 70px;
  }

  .prayer-frame-outer {
    padding: 10px;
  }

  .prayer-frame-inner {
    padding: 4px;
  }

  .prayer-ornament-top {
    margin-bottom: 22px;
  }

  .prayer-ornament-bottom {
    margin-bottom: 24px;
  }

  .prayer-footer-ornament {
    margin-top: 24px;
    margin-bottom: 12px;
  }

  .prayer-corner {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 360px) {
  .prayer-title {
    font-size: 1.4rem;
  }

  .prayer-frame-outer {
    padding: 8px;
  }
}

body::before {
  content: '🚧 האתר בשלבי בנייה — חלק מהתכנים עדיין בהכנה 🚧';
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #5C3A1E 0%, #7A4F2B 50%, #5C3A1E 100%);
  color: #F7E6A3;
  text-align: center;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--accent-color);
  position: relative;
  z-index: 99999;
  line-height: 1.5;
  font-family: inherit;
  direction: rtl;
}
/* 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;
  }

  /* The zoom wrapper's image is position:absolute (so it contributes 0 to the
     wrapper's intrinsic content width). Inserted-element parents that carry a
     desktop pixel height (e.g. height:234px) collapse to 0px wide on mobile
     because nothing in the subtree pushes back on the cross-axis. Force them
     to fill the parent container so the wrapper's aspect-ratio chain resolves. */
  .zappy-inserted-element:has(> [data-zappy-zoom-wrapper="true"]) {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }

  /* Reset zoom wrapper images on mobile to responsive display.
     Images with explicit mobile crop overrides are excluded - the JS runtime
     applies their crop/zoom after page load. */
  [data-zappy-zoom-wrapper="true"]:not([data-zappy-zoom-wrapper-width-mode="full"]) 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: clip !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 ccCssV13 */
: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-modal-bg: #ffffff;
  --cc-primary-color: #1f2937;
  --cc-secondary-color: #4b5563;
  --cc-btn-primary-bg: #7a1f2b;
  --cc-btn-primary-color: #ffffff;
  --cc-btn-primary-border: #7a1f2b;
  --cc-btn-primary-hover-bg: #610612;
  --cc-btn-primary-hover-border: #610612;
  --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
   * .zappy-cookie-banner__button--customize 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: #7a1f2b;
}

#cc-main,
#cc--main {
  font-family: inherit !important;
  color: var(--cc-primary-color);
}

/* === Zappy-owned slim bottom bar ===
 * Single-row inline layout: [description text] ......... [Customize] [Accept]
 * The banner is our DOM (#zappy-cookie-banner), not the library's #cm
 * consent modal. That avoids vanilla-cookieconsent's internal
 * <button><span>Label</span></button> structure entirely.
 */
#zappy-cookie-banner {
  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(122, 31, 43, 0.18) !important;
  border-radius: 0 !important;
  box-shadow: 0 -1px 12px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  align-items: center !important;
  min-height: 52px !important;
  font-size: 13px !important;
  line-height: 1.4 !important;
  z-index: 2147483646;
}

#zappy-cookie-banner .zappy-cookie-banner__inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  max-width: 1200px;
  width: 100% !important;
  margin: 0 auto;
  padding: 0 !important;
  min-height: 32px !important;
}

#zappy-cookie-banner .zappy-cookie-banner__text {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--cc-primary-color) !important;
  height: 32px !important;
  min-height: 32px !important;
  line-height: 32px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#zappy-cookie-banner .zappy-cookie-banner__actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 0 0 auto;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button {
  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;
  cursor: pointer;
}

/* Primary "Accept" — filled pill in site primary color */
#zappy-cookie-banner .zappy-cookie-banner__button--accept {
  background-color: var(--cc-btn-primary-bg) !important;
  color: var(--cc-btn-primary-color) !important;
  border: 1px solid var(--cc-btn-primary-border) !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button--accept: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). */
#zappy-cookie-banner .zappy-cookie-banner__button--customize {
  background-color: transparent !important;
  color: #7a1f2b !important;
  border: none !important;
  padding: 0 8px !important;
  height: 32px !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  border-radius: 6px !important;
}

#zappy-cookie-banner .zappy-cookie-banner__button--customize:hover {
  color: #610612 !important;
  background-color: transparent !important;
}

#zappy-cookie-banner .zappy-cookie-banner__close {
  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;
}
#zappy-cookie-banner .zappy-cookie-banner__close:hover {
  background-color: rgba(0, 0, 0, 0.06) !important;
  color: var(--cc-primary-color) !important;
}
#zappy-cookie-banner .zappy-cookie-banner__button:focus-visible,
#zappy-cookie-banner .zappy-cookie-banner__close:focus-visible {
  outline: 2px solid var(--cc-btn-primary-bg) !important;
  outline-offset: 2px;
}
/* RTL: anchor the X to the top-LEFT and shift body padding accordingly. */
[dir="rtl"] #zappy-cookie-banner {
  padding: 10px 20px 10px 56px !important;
}
[dir="rtl"] #zappy-cookie-banner .zappy-cookie-banner__close {
  right: auto !important;
  left: 12px !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. */
/* The scrim belongs on wrapper layers only. In vanilla-cookieconsent v3,
 * .pm / #pm is the preferences card itself, so styling .pm as the dark
 * overlay makes the card look transparent. */
#cc-main .pm-wrapper,
#cc--main .pm-wrapper,
#cc-main .pm-wrapper.pm--box,
#cc--main .pm-wrapper.pm--box {
  background: rgba(0, 0, 0, 0.32) !important;
}

#cc-main #pm,
#cc--main #pm,
#cc-main .pm,
#cc--main .pm,
#cc-main .pm .pm__box,
#cc--main .pm .pm__box,
#cc-main .pm__box,
#cc--main .pm__box {
  background: var(--cc-modal-bg) !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__header,
#cc--main .pm__header,
#cc-main .pm__body,
#cc--main .pm__body,
#cc-main .pm__footer,
#cc--main .pm__footer,
#cc-main .pm__section,
#cc--main .pm__section {
  background: var(--cc-modal-bg) !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) {
  #zappy-cookie-banner {
    padding: 10px 14px !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__inner {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    height: auto !important;
    min-height: 0 !important;
    line-height: 1.4 !important;
  }
  #zappy-cookie-banner .zappy-cookie-banner__actions {
    width: 100%;
    justify-content: space-between;
  }
  #zappy-cookie-banner .zappy-cookie-banner__button--accept {
    flex: 1 1 auto;
    text-align: center;
  }
}

/* Cookie preferences button in legal footer keeps default behavior */
.cookie-preferences-btn:hover {
  text-decoration: none !important;
}
/* WIDGET-DISPLAY-START */
html[dir="rtl"] .whatsapp-float { right: 20px !important; left: auto !important; }
html[dir="ltr"] .whatsapp-float, html:not([dir]) .whatsapp-float { left: 20px !important; right: auto !important; }
html[dir="rtl"] #mic-access-tool-general-button,
html[dir="rtl"] .mic-access-tool-general-button,
html[dir="rtl"] #mic-init-access-tool .mic-access-tool-general-button,
html[dir="rtl"] #mic-init-access-tool #mic-access-tool-general-button,
html[dir="rtl"] ._access-icon { left: 20px !important; right: auto !important; }
html[dir="ltr"] #mic-access-tool-general-button,
html[dir="ltr"] .mic-access-tool-general-button,
html[dir="ltr"] #mic-init-access-tool .mic-access-tool-general-button,
html[dir="ltr"] #mic-init-access-tool #mic-access-tool-general-button,
html[dir="ltr"] ._access-icon,
html:not([dir]) #mic-access-tool-general-button,
html:not([dir]) .mic-access-tool-general-button,
html:not([dir]) #mic-init-access-tool .mic-access-tool-general-button,
html:not([dir]) #mic-init-access-tool #mic-access-tool-general-button,
html:not([dir]) ._access-icon { right: 20px !important; left: auto !important; }
@media (max-width: 768px) { .whatsapp-float { display: flex !important; } }
@media (min-width: 769px) { .whatsapp-float { display: flex !important; } }
@media (max-width: 768px) {
  #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: flex !important; }
  #mic-access-tool-box, .mic-access-tool-box,
  #mic-init-access-tool #mic-access-tool-box, div[id*="mic-access-tool-box"],
  ._access-menu { visibility: hidden; opacity: 0; pointer-events: auto !important; }
}
@media (min-width: 769px) {
  #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: flex !important; }
  #mic-access-tool-box, .mic-access-tool-box,
  #mic-init-access-tool #mic-access-tool-box, div[id*="mic-access-tool-box"],
  ._access-menu { visibility: hidden; opacity: 0; pointer-events: auto !important; }
}
/* WIDGET-DISPLAY-END */
/* LTR: keep image on left for solution-reverse sections */
html[dir="ltr"] .solution-item.solution-reverse .solution-image { order: -1 !important; }
html[dir="ltr"] .solution-item.solution-reverse .solution-content { order: 1 !important; }
html[dir="ltr"] .service-detail.service-reverse .service-detail-image { order: -1 !important; }
html[dir="ltr"] .service-detail.service-reverse .service-detail-content { order: 1 !important; }

/* Spec table BiDi fix: isolate cells so mixed LTR/RTL content renders correctly */
.specs-table th, .specs-table td { unicode-bidi: plaintext !important; }
