:root {
  --brand: #7A1F33;
  --brand2: #0ea5e9;
  --glass: rgba(0,0,0,.35);
  --light-bg: #f8fafc;
  --light-surface: rgba(255,255,255,.92);
  --light-border: rgba(15,23,42,.08);
  --light-shadow: 0 20px 50px rgba(15,23,42,.12);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  min-width: 375px;
  width: 100%;
  margin: 0;
}

.bg-carousel-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  min-width: 375px;
}
.bg-carousel-wrap .carousel,
.bg-carousel-wrap .carousel-inner,
.bg-carousel-wrap .carousel-item {
  height: 100%;
}
.bg-carousel-wrap .carousel-item {
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.05);
}
.bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(0,0,0,.55), rgba(0,0,0,.35) 45%, rgba(0,0,0,.65));
  z-index: 1;
}
[data-bs-theme="light"] .bg-overlay {
  background: radial-gradient(1200px 600px at 20% 0%, rgba(14,165,233,.18), rgba(255,255,255,.85) 45%, rgba(248,250,252,.95));
}

.app-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-width: 375px;
  display: flex;
  flex-direction: column;
}
.page-shell {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.page-shell.is-ready {
  opacity: 1;
  transform: translateY(0);
}
body.is-exiting .page-shell {
  opacity: 0;
  transform: translateY(-8px);
}

.navbar {
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,.35) !important;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
[data-bs-theme="light"] .navbar {
  background: rgba(255,255,255,.85) !important;
  border-bottom: 1px solid var(--light-border);
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
}
[data-bs-theme="light"] .brand-badge {
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  background: rgba(255,255,255,.9);
}

.top-right-tools {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.dropdown-menu {
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
}
[data-bs-theme="dark"] .dropdown-menu {
  background: rgba(20,20,22,.95);
  border: 1px solid rgba(255,255,255,.12);
}

.lang-switch {
  display: flex;
  gap: 6px;
}
.lang-switch .lang-switch-btn {
  border-radius: 10px !important;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.lang-switch .lang-switch-btn:hover {
  transform: translateY(-1px);
}
.lang-switch .lang-switch-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(122,31,51,.25);
}
[data-bs-theme="light"] .lang-switch .lang-switch-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
[data-bs-theme="dark"] .lang-switch .lang-switch-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(122,31,51,.35);
}

.navbar-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding-top: .95rem;
  padding-bottom: .75rem;
}

.glass {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
}
[data-bs-theme="light"] .glass {
  background: var(--light-surface);
  border: 1px solid var(--light-border);
  box-shadow: var(--light-shadow);
}

.view {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
  display: none;
}
.view.active { display: block; }
.view.show {
  opacity: 1;
  transform: translateY(0);
}

.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: transparent;
}
.loader-img {
  width: 96px;
  height: 96px;
  border-radius: 20px;
  object-fit: cover;
  filter: drop-shadow(0 16px 20px rgba(0,0,0,.35));
  animation: loaderSpin 1.2s linear infinite;
}
@keyframes loaderSpin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.06); }
  100% { transform: rotate(360deg) scale(1); }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.gallery-grid .g {
  grid-column: span 6;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  min-height: 160px;
  position: relative;
  cursor: pointer;
}
[data-bs-theme="light"] .gallery-grid .g {
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-card-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
  border-radius: 2px;
  border: 1px solid rgba(122,31,51,.18);
  background: rgba(255,255,255,.85);
  padding: 6px;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.2));
}
.home-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.home-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}
.home-cards .home-card {
  min-height: 100%;
}
.home-cards .muted.small {
  margin-bottom: 10px;
}
.home-cards .home-card-icon {
  margin-top: 2px;
}
.home-hero hr {
  margin: 8px 0 10px;
}
@media (min-width: 768px) {
  .home-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .home-card {
    padding: 12px !important;
    gap: 6px;
  }
  .home-card-top {
    gap: 10px;
  }
  .home-card-btn {
    margin-top: 0;
  }
}
.home-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 8px;
}
.home-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-card-title {
  font-weight: 600;
}
.home-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}
.home-card-mojito {
  background: #f7f1e2;
  border: 1px solid rgba(79,90,58,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  color: #4f5a3a;
}
.home-card-mojito .fw-semibold,
.home-card-mojito .home-card-title {
  color: #4f5a3a;
}
.home-card-archery {
  background: rgba(120, 155, 120, 0.18);
  border: 1px solid rgba(80, 110, 80, 0.25);
  color: #34553d;
}
.home-card-archery .fw-semibold,
.home-card-archery .home-card-title {
  color: #34553d;
}
.home-card-mojito .muted {
  color: rgba(79,90,58,.7);
}
[data-bs-theme="light"] .home-card-mojito {
  background: #f7f1e2;
}
[data-bs-theme="light"] .home-card-archery {
  background: rgba(120, 155, 120, 0.18);
}
[data-bs-theme="light"] .glass.home-card-mojito {
  background: #f7f1e2;
  border: 1px solid rgba(79,90,58,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  color: #4f5a3a;
}
[data-bs-theme="light"] .glass.home-card-archery {
  background: rgba(120, 155, 120, 0.18);
  border: 1px solid rgba(80, 110, 80, 0.25);
  color: #34553d;
}
.home-card-btn {
  align-self: flex-start;
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(122,31,51,.25);
  margin-top: 0;
}
.home-card-btn:hover {
  color: var(--brand);
  background: #fff;
  border-color: var(--brand);
}
.home-card-btn:focus,
.home-card-btn:active {
  color: var(--brand);
  background: #fff;
  border-color: var(--brand);
}
.home-promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.home-carousel {
  width: 100%;
}

/* Mojito menu look */
.mojito-menu {
  font-family: 'Barlow Condensed', 'Segoe UI', sans-serif;
}
.mojito-menu .mojito-paper {
  background: #f7f1e2;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.7), rgba(247,241,226,0) 55%);
  border: 1px solid rgba(79,90,58,.22);
  color: #4f5a3a;
}
[data-bs-theme="dark"] .mojito-menu .mojito-paper {
  background: #f7f1e2;
  border: 1px solid rgba(79,90,58,.22);
  color: #1f1f1f;
}
.mojito-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.mojito-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mojito-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 2px;
  background: rgba(255,255,255,.85);
  padding: 6px;
  border: 1px solid rgba(79,90,58,.25);
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}
.mojito-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mojito-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.mojito-sub {
  font-size: .95rem;
  opacity: .75;
}
.mojito-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mojito-divider {
  height: 2px;
  margin: 16px 0 20px;
  background: linear-gradient(90deg, rgba(79,90,58,.6), rgba(79,90,58,0));
}
.mojito-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.mojito-menu-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.mojito-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.mojito-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.mojito-panel-count {
  font-size: .85rem;
  text-transform: uppercase;
  opacity: .7;
}
.mojito-pages {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  background: #e9e1ce;
}
.mojito-page {
  padding: 22px 5px 26px;
  margin-bottom: 0;
  background: #f7f1e2 url('../img/menu/menu_bg.png') center / cover no-repeat;
  box-shadow: 0 0 0 1px rgba(79,90,58,.08);
  border-radius: 6px;
  color: inherit;
}
[data-bs-theme="dark"] .mojito-page {
  background: #f7f1e2 url('../img/menu/menu_bg.png') center / cover no-repeat;
  color: #1f1f1f;
}
.mojito-page:first-child {
  padding-top: 22px;
}
.mojito-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 14px;
  color: inherit;
}
.mojito-page-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 2px;
  margin: 10px auto 0;
  background: rgba(79,90,58,.5);
}
.mojito-menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px 26px;
}
.mojito-page:last-child {
  padding-bottom: 26px;
}
@media print {
  .mojito-page {
    page-break-after: always;
  }
  .mojito-page:last-child {
    page-break-after: auto;
  }
}
.mojito-section {
  border-top: 1px dashed rgba(122,31,51,.25);
  padding-top: 12px;
}
.mojito-section-title {
  font-size: 1.1rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}
.mojito-section-title::after {
  content: '';
  display: block;
  width: 90px;
  height: 1px;
  margin: 8px auto 0;
  background: rgba(79,90,58,.45);
}
.mojito-item {
  margin-bottom: 12px;
}
.mojito-item-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.mojito-item-name {
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mojito-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(79,90,58,.5);
  margin: 0 6px 4px;
}
[data-bs-theme="dark"] .mojito-item-dots {
  border-bottom-color: rgba(233,225,206,.5);
}
.mojito-item-price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
}
.mojito-item-desc {
  font-size: .9rem;
  opacity: .75;
  margin-top: 2px;
  font-style: italic;
}
.mojito-feature {
  padding: 18px;
  border-radius: 18px;
  background: rgba(122,31,51,.08);
  border: 1px solid rgba(122,31,51,.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
[data-bs-theme="dark"] .mojito-feature {
  background: rgba(79,90,58,.08);
  border: 1px solid rgba(79,90,58,.18);
}
.mojito-feature-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}
.mojito-feature-label {
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.mojito-feature-sub {
  font-size: .85rem;
  opacity: .7;
}
.mojito-feature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}
.mojito-feature-desc {
  font-size: .9rem;
  opacity: .75;
}
.gallery-grid .g:hover img { transform: scale(1.04); }
@media (max-width: 991px) { .gallery-grid .g { grid-column: span 12; } }

#omar3d {
  width: 100%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: radial-gradient(900px 300px at 50% 0%, rgba(14,165,233,.20), rgba(0,0,0,.25));
}
[data-bs-theme="light"] #omar3d {
  border: 1px solid rgba(0,0,0,.08);
  background: radial-gradient(900px 300px at 50% 0%, rgba(14,165,233,.18), rgba(255,255,255,.4));
}

footer {
  margin-top: auto;
  padding: 28px 0;
  color: rgba(255,255,255,.85);
}
[data-bs-theme="light"] footer { color: rgba(15,23,42,.80); }

.terms-bar {
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding: 8px 0;
}
.terms-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  padding: 8px 14px;
}
[data-bs-theme="light"] .terms-bar-inner {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
}
.terms-link {
  text-decoration: none;
  font-weight: 600;
}

.social a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: inherit;
  transition: transform .15s ease;
}
[data-bs-theme="light"] .social a {
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.03);
}
.social a:hover { transform: translateY(-1px); }
.social .social-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}
.social .social-icon i { font-size: 1.1rem; }

.footer-menu {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
}
.footer-menu a {
  text-decoration: none;
  color: inherit;
  opacity: .9;
}
.footer-menu a:hover { opacity: 1; text-decoration: underline; }
.whatsapp-link {
  border-color: rgba(37, 211, 102, .35);
  background: rgba(37, 211, 102, .12);
}
[data-bs-theme="light"] .whatsapp-link {
  border-color: rgba(37, 211, 102, .35);
  background: rgba(37, 211, 102, .08);
}
.whatsapp-link[aria-disabled="true"] {
  pointer-events: none;
  opacity: .55;
}

.badge-soft {
  background: rgba(122,31,51,.18);
  border: 1px solid rgba(122,31,51,.30);
  color: inherit;
}
.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
}
.btn-brand:hover { filter: brightness(1.05); }
.muted { opacity: .85; }

main { padding: 20px 0 10px; position: relative; }

body {
  overflow-x: hidden;
}

.content-menu-wrap {
  position: relative;
  margin-top: -4px;
  margin-bottom: 8px;
}
.content-menu {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  padding: 1px;
  overflow-x: hidden;
  border-radius: 4px;
  min-width: 375px;
  width: 100%;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(12px);
  font-size: .86rem;
}
[data-bs-theme="light"] .content-menu {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--light-border);
  box-shadow: var(--light-shadow);
}
.content-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: 6px 8px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  color: inherit;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
}
[data-bs-theme="light"] .content-menu a {
  background: rgba(248,250,252,.95);
  border: 1px solid var(--light-border);
}
.content-menu a.active {
  background: var(--brand);
  color: #fff;
  border-color: rgba(122,31,51,.6);
  box-shadow: 0 10px 20px rgba(122,31,51,.25);
}
.content-menu a:hover { transform: translateY(-1px); }
.content-menu i { font-size: 1.15rem; line-height: 1; }
.content-menu span { font-size: .72rem; line-height: 1.1; }
@media (max-width: 991px) {
  .content-menu { font-size: .8rem; }
}

.container {
  min-width: 375px;
  width: 100%;
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 991px) {
  .container {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }
}

.archery-carousel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
}
[data-bs-theme="light"] .archery-carousel img {
  border: 1px solid var(--light-border);
}
.testimonial-card {
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 16px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
[data-bs-theme="light"] .testimonial-card {
  background: rgba(255,255,255,.95);
  border: 1px solid var(--light-border);
  box-shadow: var(--light-shadow);
}
.testimonial-quote {
  font-size: .98rem;
  line-height: 1.4;
}
.testimonial-meta {
  margin-top: 10px;
  font-weight: 600;
}
.omar-panel {
  min-height: 100%;
}
.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, .35);
  background: rgba(37, 211, 102, .12);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: waFloat 2.8s ease-in-out infinite;
}
[data-bs-theme="light"] .whatsapp-cta {
  background: rgba(37, 211, 102, .1);
}
.whatsapp-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}
.whatsapp-cta[aria-disabled="true"] {
  pointer-events: none;
  opacity: .6;
  animation: none;
}
.whatsapp-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 20px rgba(37, 211, 102, .35);
  font-size: 1.2rem;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.02); }
}

#homeCarousel img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
}
[data-bs-theme="light"] #homeCarousel img {
  border: 1px solid var(--light-border);
}

.archery-shell {
  background: rgba(120, 155, 120, 0.18);
  border: 1px solid rgba(80, 110, 80, 0.25);
  color: #34553d;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
[data-bs-theme="light"] .glass.archery-shell {
  background: rgba(120, 155, 120, 0.18);
  border: 1px solid rgba(80, 110, 80, 0.25);
  color: #1f3d2a;
}
[data-bs-theme="dark"] .archery-shell {
  color: #fff;
}
[data-bs-theme="dark"] .archery-shell .muted {
  color: rgba(255,255,255,.78);
}
[data-bs-theme="light"] .archery-shell .muted {
  color: rgba(31,61,42,.75);
}
.archery-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.archery-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.archery-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 2px;
  background: rgba(255,255,255,.85);
  padding: 6px;
  box-shadow: 0 12px 22px rgba(0,0,0,.18);
}
.archery-sub {
  font-size: 1rem;
}
.archery-divider {
  width: 100%;
  height: 1px;
  background: rgba(80, 110, 80, 0.35);
  margin: 12px 0 16px;
}

.omar-agent {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90%);
  display: none;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 12px 14px;
  box-shadow: 0 18px 30px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
}
[data-bs-theme="light"] .omar-agent {
  background: rgba(255,255,255,.95);
  border: 1px solid var(--light-border);
}
.omar-agent.is-visible {
  display: flex;
  gap: 10px;
  align-items: center;
  animation: omarDrop .6s ease forwards;
}
.omar-agent img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0,0,0,.25);
}
.omar-agent .omar-text {
  font-size: .9rem;
}
.omar-agent .omar-actions {
  margin-left: auto;
  display: flex;
  gap: 6px;
}
.omar-agent .btn-close {
  font-size: .7rem;
}
.omar-reopen {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  color: inherit;
}
@keyframes omarDrop {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-title { margin-top: 0; }

.cta-btn {
  min-height: 52px;
  padding: 12px 18px;
  font-weight: 600;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.cta-btn i { font-size: 1.1rem; }

.nav-icon,
.cta-icon,
.section-icon {
  display: inline-block;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.35));
}
.nav-icon { width: 18px; height: 18px; }
.cta-icon { width: 22px; height: 22px; }
.section-icon { width: 24px; height: 24px; }

.cta-row {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.voice-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50% !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease, background .2s ease;
  padding: 0;
  line-height: 1;
}
.voice-btn.voice-on {
  border-color: var(--brand2);
  box-shadow: 0 0 0 4px rgba(14,165,233,.35), 0 0 18px rgba(14,165,233,.45);
  animation: voiceBlink 1.5s ease-in-out infinite;
  background: rgba(14,165,233,.12);
  color: #0ea5e9;
}
@keyframes voiceBlink {
  0%, 100% { box-shadow: 0 0 0 4px rgba(14,165,233,.35), 0 0 18px rgba(14,165,233,.45); opacity: 1; }
  50% { box-shadow: 0 0 0 6px rgba(14,165,233,.18), 0 0 26px rgba(14,165,233,.25); opacity: .7; }
}

/* Admin edit mode */
body.admin-edit .admin-edit-bar {
  margin: 12px 0 16px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
[data-bs-theme="light"] body.admin-edit .admin-edit-bar {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #111827;
}
body.admin-edit .admin-edit-bar .badge {
  font-size: .75rem;
}
.admin-edit-label {
  background: #dc2626;
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.35);
}

body.admin-edit .admin-menu-item {
  position: relative;
  cursor: pointer;
  transition: box-shadow .15s ease, background-color .15s ease;
}

body.admin-edit .admin-menu-item:hover {
  box-shadow: 0 0 0 2px rgba(92, 255, 138, 0.85), 0 0 18px rgba(92, 255, 138, 0.55);
  background: rgba(92, 255, 138, 0.08);
}

body.admin-edit .admin-menu-meta {
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow .15s ease, background-color .15s ease;
}

body.admin-edit .admin-menu-meta:hover {
  box-shadow: 0 0 0 2px rgba(92, 255, 138, 0.85), 0 0 18px rgba(92, 255, 138, 0.55);
  background: rgba(92, 255, 138, 0.08);
}

body.admin-edit .admin-menu-target {
  box-shadow: 0 0 0 2px rgba(14,165,233,.8), 0 0 18px rgba(14,165,233,.35);
  border-radius: 8px;
}

body.admin-edit .admin-menu-meta-target {
  box-shadow: 0 0 0 2px rgba(14,165,233,.8), 0 0 18px rgba(14,165,233,.35);
  background: rgba(14,165,233,.08);
}

.menu-edit-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  z-index: 3;
}
[data-bs-theme="light"] .menu-edit-btn {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(0,0,0,.2);
}

body.admin-edit .mojito-item-actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 6px;
}

body.admin-edit .mojito-item-action-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(79,90,58,.35);
  background: rgba(0,0,0,.35);
  color: #f7f1e2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  line-height: 1;
  padding: 0;
}

body.admin-edit .mojito-item-action-btn.danger {
  border-color: rgba(153, 27, 27, .45);
  color: #7f1d1d;
  background: rgba(127, 29, 29, .12);
}

[data-bs-theme="light"] body.admin-edit .mojito-item-action-btn {
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(0,0,0,.22);
}

.menu-admin-editor {
  position: fixed;
  z-index: 2300;
  right: 16px;
  top: 90px;
  width: min(420px, 92vw);
  max-height: 75vh;
  overflow: auto;
  background: rgba(0,0,0,.88);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 22px 40px rgba(0,0,0,.35);
}
[data-bs-theme="light"] .menu-admin-editor {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.12);
  color: #111827;
}
.menu-admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.menu-admin-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-admin-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-admin-lang {
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
}
[data-bs-theme="light"] .menu-admin-lang {
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}
.menu-admin-lang-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.menu-admin-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 10px;
}

.menu-admin-actions-wrap {
  flex-wrap: wrap;
}

body.admin-edit .admin-editable {
  position: relative;
  cursor: text;
  transition: box-shadow .15s ease, background-color .15s ease;
  border-radius: 8px;
}

body.admin-edit .admin-editable:hover {
  box-shadow: 0 0 0 2px rgba(92, 255, 138, 0.85), 0 0 18px rgba(92, 255, 138, 0.55);
  background: rgba(92, 255, 138, 0.08);
}

body.admin-edit .admin-editable.is-editing {
  box-shadow: 0 0 0 2px rgba(92, 255, 138, 0.95), 0 0 22px rgba(92, 255, 138, 0.75);
  background: rgba(92, 255, 138, 0.12);
}

body.admin-edit img.admin-media-target {
  box-shadow: 0 0 0 3px rgba(14,165,233,.8), 0 0 20px rgba(14,165,233,.45);
  border-radius: 12px;
}

body.admin-edit .admin-container {
  position: relative;
  transition: box-shadow .15s ease, background-color .15s ease;
}

body.admin-edit .admin-container:hover {
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.7), 0 0 18px rgba(255, 193, 7, 0.35);
}

body.admin-edit .admin-container.is-editing {
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.9), 0 0 22px rgba(255, 193, 7, 0.45);
}

.admin-text-editor {
  position: fixed;
  z-index: 2000;
  min-width: 240px;
  max-width: 420px;
  background: rgba(0,0,0,.85);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
[data-bs-theme="light"] .admin-text-editor {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.1);
  color: #111827;
}
.admin-text-editor textarea,
.admin-text-editor input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 10px;
  background: rgba(255,255,255,.08);
  color: inherit;
  font-size: .9rem;
  outline: none;
}
[data-bs-theme="light"] .admin-text-editor textarea,
[data-bs-theme="light"] .admin-text-editor input {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
}
.admin-text-editor .admin-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.admin-media-editor {
  position: fixed;
  z-index: 2100;
  width: min(360px, 92vw);
  background: rgba(0,0,0,.88);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
[data-bs-theme="light"] .admin-media-editor {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.12);
  color: #111827;
}
.admin-media-editor h6 {
  margin: 0 0 8px;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-media-preview {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  margin-bottom: 10px;
}
[data-bs-theme="light"] .admin-media-preview {
  border: 1px solid rgba(0,0,0,.1);
  background: rgba(0,0,0,.03);
}
.admin-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.admin-media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.admin-media-actions input[type="file"] {
  display: none;
}
.admin-media-note {
  font-size: .75rem;
  opacity: .7;
  margin-top: 8px;
}

body.admin-edit #contentMenu a {
  position: relative;
}
body.admin-edit #contentMenu .nav-edit-btn {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.6);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  z-index: 3;
}
[data-bs-theme="light"] body.admin-edit #contentMenu .nav-edit-btn {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(0,0,0,.15);
}
body.admin-edit #contentMenu a:hover .nav-edit-btn {
  display: inline-flex;
}

.admin-nav-editor {
  position: fixed;
  z-index: 2100;
  min-width: 240px;
  max-width: 320px;
  background: rgba(0,0,0,.85);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
[data-bs-theme="light"] .admin-nav-editor {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.1);
  color: #111827;
}
.admin-nav-editor label {
  font-size: .75rem;
  opacity: .75;
  margin-bottom: 4px;
  display: block;
}
.admin-nav-editor input,
.admin-nav-editor select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 10px;
  background: rgba(255,255,255,.08);
  color: inherit;
  font-size: .9rem;
  outline: none;
}
[data-bs-theme="light"] .admin-nav-editor input,
[data-bs-theme="light"] .admin-nav-editor select {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
}
.admin-nav-editor .admin-edit-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.admin-container-editor {
  position: fixed;
  z-index: 2100;
  min-width: 260px;
  max-width: 420px;
  max-height: 70vh;
  overflow: auto;
  background: rgba(0,0,0,.9);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
}
[data-bs-theme="light"] .admin-container-editor {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.1);
  color: #111827;
}
.admin-container-editor .admin-container-row {
  margin-bottom: 8px;
}
.admin-container-editor label {
  display: block;
  font-size: .72rem;
  opacity: .75;
  margin-bottom: 4px;
}
.admin-container-editor input,
.admin-container-editor textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 10px;
  background: rgba(255,255,255,.08);
  color: inherit;
  font-size: .9rem;
  outline: none;
}
[data-bs-theme="light"] .admin-container-editor input,
[data-bs-theme="light"] .admin-container-editor textarea {
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
}
