/* ============================================================
   tsera LENS — Design System
   WordPress Theme for LENS Photography · Moving Forward Group
   iOS Camera aesthetic · Black + #FFD60A + Glass morphism
   ============================================================ */

/* 1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand colours */
  --l-yellow:       #FFD60A;
  --l-yellow-dim:   rgba(255, 214, 10, 0.15);
  --l-yellow-glow:  rgba(255, 214, 10, 0.4);
  --l-orange:       #FF9F0A;
  --l-orange-deep:  #FF6B00;
  --l-red:          #FF453A;
  --l-green:        #30D158;
  --l-blue:         #0A84FF;
  --l-purple:       #BF5AF2;

  /* Surfaces */
  --l-bg:           #000000;
  --l-bg-2:         #0A0A0A;
  --l-bg-3:         #1C1C1E;
  --l-bg-4:         #2C2C2E;

  /* Glass */
  --l-glass-bg:     rgba(255, 255, 255, 0.06);
  --l-glass-bg-str: rgba(28, 28, 30, 0.85);
  --l-glass-border: rgba(255, 255, 255, 0.10);
  --l-glass-border-h: rgba(255, 255, 255, 0.20);

  /* Text */
  --l-text:         #FFFFFF;
  --l-text-60:      rgba(255, 255, 255, 0.60);
  --l-text-50:      rgba(255, 255, 255, 0.50);
  --l-text-40:      rgba(255, 255, 255, 0.40);
  --l-text-30:      rgba(255, 255, 255, 0.30);
  --l-text-20:      rgba(255, 255, 255, 0.20);
  --l-text-08:      rgba(255, 255, 255, 0.08);

  /* Typography */
  --l-font:         -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', sans-serif;
  --l-mono:         'SF Mono', 'Roboto Mono', 'Courier New', monospace;

  /* Layout */
  --l-header-h:     64px;
  --l-max-w:        1280px;
  --l-px:           24px;
  --l-px-md:        32px;

  /* Border radius */
  --l-r-sm:   12px;
  --l-r-md:   16px;
  --l-r-lg:   24px;
  --l-r-pill: 9999px;

  /* Transitions */
  --l-ease: all 0.2s ease;

  /* Z-index */
  --l-z-header:  1000;
  --l-z-overlay: 1100;
  --l-z-mobile:  1200;
  --l-z-bottom:  900;
}

/* 2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--l-font);
  background: var(--l-bg);
  color: var(--l-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--l-font); cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
::-webkit-scrollbar { width: 0; height: 0; }

/* 3. GLASS UTILITY CLASSES
   ============================================================ */
.lens-glass {
  background: var(--l-glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--l-glass-border);
}
.lens-glass-strong {
  background: var(--l-glass-bg-str);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--l-glass-border);
}

/* 4. PAGE WRAPPER
   ============================================================ */
.lens-page-wrapper {
  min-height: 100vh;
  padding-top: var(--l-header-h);
  background: var(--l-bg);
}

/* 5. HEADER / NAV BAR
   ============================================================ */
.lens-app-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--l-z-header);
  height: var(--l-header-h);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid var(--l-glass-border);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.lens-app-bar.is-scrolled {
  background: rgba(0, 0, 0, 0.92);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.6);
}

.lens-header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  max-width: var(--l-max-w);
  margin: 0 auto;
  padding: 0 var(--l-px);
}

/* 6. LOGO
   ============================================================ */
.lens-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--l-text);
}
.lens-logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.lens-logo-text { display: flex; flex-direction: column; line-height: 1; }
.lens-logo-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--l-text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lens-logo-sub {
  font-size: 9px;
  color: var(--l-text-40);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Custom logo override */
.lens-logo-link .custom-logo {
  max-height: 36px;
  width: auto;
}

/* 7. DESKTOP NAV
   ============================================================ */
.lens-desktop-nav {
  flex: 1;
  display: none;
}
@media (min-width: 768px) {
  .lens-desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.lens-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lens-nav-list li a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: var(--l-r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--l-text-60);
  transition: var(--l-ease);
  white-space: nowrap;
}
.lens-nav-list li a:hover,
.lens-nav-list li.current-menu-item > a,
.lens-nav-list li.current_page_item > a {
  color: var(--l-text);
  background: rgba(255, 255, 255, 0.08);
}

/* 8. HEADER ACTIONS
   ============================================================ */
.lens-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* 9. BUTTONS
   ============================================================ */
.lens-btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--l-r-pill);
  background: var(--l-yellow);
  color: #000 !important;
  font-family: var(--l-font);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: var(--l-ease);
  white-space: nowrap;
}
.lens-btn-yellow:hover {
  background: #F0CB00;
  transform: scale(1.03);
}
.lens-btn-yellow.is-full { width: 100%; }

.lens-btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--l-r-pill);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--l-text) !important;
  font-family: var(--l-font);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none !important;
  transition: var(--l-ease);
  white-space: nowrap;
}
.lens-btn-glass:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Camera-style icon button */
.lens-cam-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--l-ease);
  border: none;
  color: var(--l-text);
  flex-shrink: 0;
}
.lens-cam-btn:hover { background: rgba(255, 255, 255, 0.22); }
.lens-cam-btn.is-active { background: rgba(255, 214, 10, 0.3); color: var(--l-yellow); }

/* 10. MOBILE TOGGLE
    ============================================================ */
.lens-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--l-text-60);
  transition: var(--l-ease);
  flex-shrink: 0;
}
.lens-menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }
@media (min-width: 768px) { .lens-menu-toggle { display: none; } }

/* 11. OVERLAY
    ============================================================ */
.lens-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--l-z-overlay);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lens-overlay.is-open { opacity: 1; visibility: visible; }
@media (min-width: 768px) { .lens-overlay { display: none; } }

/* 12. MOBILE MENU DRAWER
    ============================================================ */
.lens-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-right: 1px solid var(--l-glass-border);
  z-index: var(--l-z-mobile);
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.lens-mobile-menu.is-open { transform: translateX(0); }
@media (min-width: 768px) { .lens-mobile-menu { display: none; } }

.lens-mobile-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px 20px;
}

.lens-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.lens-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--l-text-60);
  transition: var(--l-ease);
}
.lens-menu-close:hover { background: rgba(255, 255, 255, 0.08); }

.lens-mobile-nav { flex: 1; }
.lens-mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lens-mobile-nav-list li a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--l-r-pill);
  font-size: 16px;
  font-weight: 500;
  color: var(--l-text-60);
  transition: var(--l-ease);
}
.lens-mobile-nav-list li a:hover,
.lens-mobile-nav-list li.current-menu-item > a {
  background: rgba(255, 214, 10, 0.1);
  color: var(--l-yellow);
}

.lens-mobile-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--l-glass-border);
}

/* 13. MAIN CONTENT
    ============================================================ */
.lens-main {
  width: 100%;
  background: var(--l-bg);
  min-height: calc(100vh - var(--l-header-h) - 200px);
}

/* 14. SECTION HELPERS (used by HTML widgets)
    ============================================================ */
.lens-container {
  max-width: var(--l-max-w);
  margin: 0 auto;
  padding: 0 var(--l-px);
}
@media (min-width: 768px) {
  .lens-container { padding: 0 var(--l-px-md); }
}

.lens-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: var(--l-yellow);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lens-yellow { color: var(--l-yellow); }

/* Progress bar (used in scanner widget) */
.lens-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.lens-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--l-yellow) 0%, var(--l-orange) 50%, var(--l-yellow) 100%);
  background-size: 200% 100%;
  box-shadow: 0 0 20px rgba(255, 214, 10, 0.6);
  animation: lens-shimmer 2s ease-in-out infinite;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes lens-shimmer {
  0%, 100% { background-position: 0% 0%; }
  50%       { background-position: 100% 0%; }
}

/* Drop zone (used in scanner widget) */
.lens-drop-zone {
  border: 3px dashed rgba(255, 214, 10, 0.3);
  border-radius: var(--l-r-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: rgba(255, 214, 10, 0.02);
  transition: all 0.3s;
}
.lens-drop-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 214, 10, 0.15) 0%, transparent 70%);
  animation: lens-drop-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lens-drop-pulse {
  0%, 100% { transform: scale(0.8); opacity: 0; }
  50%       { transform: scale(1); opacity: 1; }
}
.lens-drop-zone:hover,
.lens-drop-zone.drag-over {
  border-color: var(--l-yellow);
  background: rgba(255, 214, 10, 0.1);
  box-shadow: 0 0 30px rgba(255, 214, 10, 0.3);
  transform: scale(1.02);
}

/* Package cards */
.lens-package-card {
  background: rgba(28, 28, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--l-r-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.lens-package-card:hover {
  border-color: rgba(255, 214, 10, 0.4);
  transform: translateY(-4px);
}
.lens-package-card.featured {
  border-color: rgba(255, 214, 10, 0.6);
}

/* FAQ item */
.lens-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Score ring animation */
@keyframes lens-score-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 214, 10, 0.5)); }
  50%       { filter: drop-shadow(0 0 25px rgba(255, 214, 10, 0.8)); }
}
.lens-score-glowing {
  animation: lens-score-glow 2s ease-in-out infinite;
}

/* Scan line animation */
@keyframes lens-scan-line {
  0%   { top: 0; }
  100% { top: 100%; }
}
.lens-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--l-yellow), transparent);
  animation: lens-scan-line 1s ease-in-out infinite alternate;
  z-index: 10;
  box-shadow: 0 0 12px var(--l-yellow);
}

/* Slide up animation */
@keyframes lens-slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lens-slide-up { animation: lens-slide-up 0.5s ease forwards; }

/* Focus square (hero) */
@keyframes lens-focus-pulse {
  0%, 100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 0.7; transform: translate(-50%, -50%) scale(0.97); }
}
.lens-focus-square {
  width: 80px;
  height: 80px;
  border: 2px solid var(--l-yellow);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: lens-focus-pulse 2s ease-in-out infinite;
}
.lens-focus-square::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px;
  width: 16px; height: 16px;
  border-top: 2px solid var(--l-yellow);
  border-left: 2px solid var(--l-yellow);
}
.lens-focus-square::after {
  content: '';
  position: absolute;
  bottom: -6px; right: -6px;
  width: 16px; height: 16px;
  border-bottom: 2px solid var(--l-yellow);
  border-right: 2px solid var(--l-yellow);
}

/* Grid overlay */
.lens-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 33.33% 33.33%;
  pointer-events: none;
}

/* Mode selector */
.lens-mode-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  justify-content: center;
}
.lens-mode-scroll::-webkit-scrollbar { display: none; }
.lens-mode-item {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  white-space: nowrap;
  padding: 4px 0;
  transition: all 0.2s;
  text-transform: uppercase;
  border: none;
  background: none;
}
.lens-mode-item.is-active { color: var(--l-yellow); }

/* Shutter button */
.lens-shutter-outer {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.1s;
  flex-shrink: 0;
  background: none;
}
.lens-shutter-inner {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: white;
  transition: all 0.1s;
}
.lens-shutter-outer:active .lens-shutter-inner,
.lens-shutter-outer.is-pressed .lens-shutter-inner {
  transform: scale(0.88);
  background: rgba(255, 255, 255, 0.85);
}

/* Flash overlay */
@keyframes lens-flash {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  100% { opacity: 0; }
}
.lens-flash-overlay {
  animation: lens-flash 0.5s ease-out forwards;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  pointer-events: none;
}

/* Gallery grid items */
.lens-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  min-height: 180px;
}
.lens-gallery-item-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}
.lens-gallery-item:hover .lens-gallery-item-bg { transform: scale(1.05); }
.lens-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.lens-gallery-item:hover .lens-gallery-item-overlay { background: rgba(0, 0, 0, 0.3); }
.lens-gallery-item-label {
  transform: translateY(16px);
  opacity: 0;
  transition: all 0.3s;
}
.lens-gallery-item:hover .lens-gallery-item-label {
  transform: translateY(0);
  opacity: 1;
}
/* Viewfinder corners */
.lens-gallery-item::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 20px; height: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  pointer-events: none;
}
.lens-gallery-item::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 20px; height: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  pointer-events: none;
}

/* Brand cards in group section */
.lens-brand-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--l-r-md);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.2s;
}
.lens-brand-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: inherit;
  text-decoration: none;
}
.lens-brand-card.is-current {
  opacity: 0.5;
  pointer-events: none;
  border: 1px solid rgba(255, 214, 10, 0.4);
  box-shadow: 0 0 20px rgba(255, 214, 10, 0.1);
}

/* Review card */
.lens-review-card {
  background: rgba(28, 28, 30, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--l-r-lg);
}

/* Contact row */
.lens-contact-row {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--l-r-md);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.lens-contact-row:hover {
  border-color: rgba(255, 214, 10, 0.4);
  color: inherit;
}
.lens-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 214, 10, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 15. FOOTER
    ============================================================ */
.lens-footer {
  background: var(--l-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0;
}

.lens-footer-inner {
  max-width: var(--l-max-w);
  margin: 0 auto;
  padding: 0 var(--l-px);
}

.lens-footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .lens-footer-top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.lens-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lens-footer-brand-text { display: flex; flex-direction: column; }
.lens-footer-brand-name {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lens-footer-brand-sub {
  font-size: 9px;
  color: var(--l-text-40);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.lens-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lens-footer-link {
  font-size: 12px;
  color: var(--l-text-40);
  padding: 7px 14px;
  border-radius: var(--l-r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--l-ease);
  text-decoration: none;
}
.lens-footer-link:hover { color: var(--l-text); text-decoration: none; }

.lens-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .lens-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.lens-footer-copy {
  font-size: 12px;
  color: var(--l-text-30);
}

.lens-footer-legal {
  display: flex;
  gap: 16px;
}
.lens-footer-legal a {
  font-size: 12px;
  color: var(--l-text-30);
  transition: var(--l-ease);
  text-decoration: none;
}
.lens-footer-legal a:hover { color: var(--l-text); }

/* 16. MOBILE BOTTOM NAV
    ============================================================ */
.lens-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--l-z-bottom);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
@media (min-width: 768px) { .lens-bottom-nav { display: none !important; } }

.lens-bottom-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 400px;
  margin: 0 auto;
  padding: 0 8px;
}
.lens-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  border: none;
  background: none;
  cursor: pointer;
}
.lens-bottom-nav-btn svg { color: var(--l-yellow); }
.lens-bottom-nav-btn span {
  font-size: 10px;
  color: var(--l-text-50);
  letter-spacing: 0.02em;
}

/* Mobile bottom nav spacing for page content */
@media (max-width: 767px) {
  .lens-page-wrapper { padding-bottom: 72px; }
}

/* 17. ELEMENTOR ADJUSTMENTS
    ============================================================ */
.lens-main .elementor-section,
.lens-main .e-con {
  background-color: transparent;
}
.lens-main .elementor-section:first-child { margin-top: 0 !important; }
.lens-main .elementor-widget-container {
  font-family: var(--l-font);
  color: var(--l-text);
}
.lens-main ul, .lens-main ol { list-style: revert; }

/* Elementor form inside .lens-contact-card */
.lens-contact-card .elementor-field-group { margin-bottom: 16px; }
.lens-contact-card .elementor-field-label,
.lens-contact-card label {
  font-size: 11px !important;
  color: var(--l-text-40) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 6px !important;
  display: block !important;
  font-family: var(--l-mono) !important;
}
.lens-contact-card .elementor-field,
.lens-contact-card input[type="text"],
.lens-contact-card input[type="email"],
.lens-contact-card input[type="tel"],
.lens-contact-card textarea {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--l-r-sm) !important;
  color: var(--l-text) !important;
  padding: 14px 16px !important;
  font-family: var(--l-font) !important;
  font-size: 15px !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
}
.lens-contact-card .elementor-field::placeholder,
.lens-contact-card input::placeholder,
.lens-contact-card textarea::placeholder {
  color: var(--l-text-30) !important;
}
.lens-contact-card .elementor-field:focus,
.lens-contact-card input:focus,
.lens-contact-card textarea:focus {
  outline: none !important;
  border-color: rgba(255, 214, 10, 0.5) !important;
  background: rgba(255, 214, 10, 0.04) !important;
}
.lens-contact-card .elementor-button,
.lens-contact-card .elementor-field-type-submit .elementor-button {
  width: 100% !important;
  background: var(--l-yellow) !important;
  color: #000 !important;
  border: none !important;
  border-radius: var(--l-r-pill) !important;
  padding: 14px 24px !important;
  font-family: var(--l-font) !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
  box-shadow: none !important;
}
.lens-contact-card .elementor-button:hover {
  background: #F0CB00 !important;
  transform: scale(1.02) !important;
}

/* 18. WP ADMIN BAR
    ============================================================ */
.admin-bar .lens-app-bar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .lens-app-bar { top: 46px; }
}

/* 19. ACCESSIBILITY
    ============================================================ */
:focus-visible {
  outline: 2px solid var(--l-yellow);
  outline-offset: 3px;
  border-radius: 3px;
}
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
