﻿/* ── Skip link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: #1E2A1A;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ============================================================
   ELBEAUTY 77 — V2 PREMIUM : Couche d'optimisation
   S'applique par-dessus styles.css
   Améliorations : hero enrichi, trust badges, sticky CTA,
   cards prestations enrichies, avis avec noms, SEO sémantique
   ============================================================ */

/* ── Hero premium : gradient plus doux, plus aéré ── */
.hero {
  padding: var(--space-24) 0 var(--space-24);
  background: linear-gradient(150deg,
    #F8F4EA 0%,
    #F0EBDA 45%,
    #EBE8D8 100%);
}

/* ── Trust bar sous le hero ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
  padding: var(--space-4) 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}
.trust-item-icon { color: var(--rose); font-size: 1rem; }
.trust-sep { color: var(--beige); font-size: 1.2rem; }
@media (max-width: 640px) {
  .trust-bar-inner { gap: var(--space-4); }
  .trust-sep { display: none; }
}

/* ── Badge "Best-seller" premium ── */
.badge-bestseller {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  font-weight: 600;
}

/* ── Service cards : barre de popularité ── */
.service-popularity {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--beige);
}
.popularity-bar-bg {
  flex: 1;
  height: 4px;
  background: var(--beige);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.popularity-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose-light), var(--rose));
  border-radius: var(--radius-full);
}
.popularity-label {
  font-size: var(--text-xs);
  color: var(--text-light);
  white-space: nowrap;
}

/* ── Sticky CTA mobile ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--white);
  border-top: 1px solid var(--beige);
  padding: var(--space-3) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  box-shadow: 0 -4px 20px rgba(42,32,32,0.08);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text {
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.4;
}
.sticky-cta-text strong { color: var(--text-dark); display: block; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

/* ── Avis enrichis : prénoms + villes ── */
.review-location {
  font-size: var(--text-xs);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 3px;
}

/* ── Section CTA améliorée ── */
.cta-section-v2 {
  background: var(--text-dark);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(201,123,138,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(201,123,138,0.08) 0%, transparent 70%);
}
.cta-section-v2 > * { position: relative; }
.cta-section-v2 .section-title { color: var(--white); }
.cta-section-v2 .section-subtitle { color: rgba(255,255,255,0.70); margin: 0 auto var(--space-8); }
.cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.50);
}

/* ── FAQ / Accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--beige);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.2s;
}
.faq-question:hover { background: var(--rose-pale); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--rose);
  transition: transform 0.25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── FAQ Search ── */
.faq-search {
  width: 100%;
  padding: var(--space-3) var(--space-5);
  border: 1.5px solid var(--beige);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-search:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(var(--rose-rgb, 198,140,130), 0.15);
}
.faq-search::placeholder { color: var(--text-light, #aaa); }
.faq-no-result {
  text-align: center;
  color: var(--text-mid);
  font-size: var(--text-sm);
  padding: var(--space-6) 0;
}
.faq-item--hidden { display: none; }

/* ══════════════════════════════════════════════════════════════
   MOBILE IMPROVEMENTS (max-width: 768px)
   ══════════════════════════════════════════════════════════════ */

/* ── 1. SERVICE CARDS — single column + touch-friendly ── */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  .service-card {
    min-height: 44px; /* touch target minimum */
  }
  .service-card .badge {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ── 2. STICKY CTA — blur backdrop + no content overlap ── */
.sticky-cta {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
}

/* Body padding so content isn't hidden behind sticky CTA on mobile */
@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
  }
}

/* ── 3. FLOATING WHATSAPP BUTTON ── */
/* Desktop: bottom-right, above fold */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 49;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Mobile: push above sticky CTA (sticky CTA ~64px tall) */
@media (max-width: 767px) {
  .whatsapp-fab {
    bottom: 80px;
  }
}

/* ── 4. NAVBAR — logo doesn't overflow on mobile ── */
@media (max-width: 768px) {
  .nav-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
  }
  .navbar .container {
    overflow: visible;
  }
}

/* ── 5. HERO — proper padding so text isn't cut off ── */
@media (max-width: 768px) {
  .hero {
    padding: var(--space-16) 0 var(--space-12);
  }
  .hero-inner {
    padding: 0 var(--space-4);
  }
  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
  }
  .hero-ctas {
    flex-wrap: wrap;
    gap: var(--space-3);
  }
  .hero-trust {
    flex-wrap: wrap;
    gap: var(--space-2);
  }
}

/* ── 6. FAQ — large touch targets ── */
@media (max-width: 768px) {
  .faq-question {
    padding: var(--space-5) var(--space-4);
    min-height: 56px; /* well above 44px minimum */
    font-size: var(--text-sm);
  }
  .faq-answer-inner {
    padding: 0 var(--space-4) var(--space-4);
  }
  .faq-item.open .faq-answer {
    max-height: 400px; /* more room on mobile for longer text */
  }
}

/* ── Nav active state ── */
.nav-links a.active {
  color: var(--rose);
  background: var(--rose-pale);
}

/* ══════════════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════════════ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #F8F2E6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(58, 82, 48, 0.2);
  border-top-color: #3A5230;
  border-radius: 50%;
  animation: loaderSpin 0.75s linear infinite;
}
@keyframes loaderSpin {
  to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════
   SERVICE CARD HOVER — lift + green left border
══════════════════════════════════════════════ */
.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-left-color 0.25s ease;
  border-left: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(58, 82, 48, 0.14);
  border-left-color: #3A5230;
}

/* ══════════════════════════════════════════════
   TRUST BAR ITEM — highlight on hover
══════════════════════════════════════════════ */
.trust-item {
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: default;
  border-radius: 6px;
  padding: 4px 8px;
}
.trust-item:hover {
  color: #3A5230;
  transform: translateY(-1px);
}
.trust-item:hover .trust-item-icon {
  color: #3A5230;
}

/* ══════════════════════════════════════════════
   REVIEW CARDS — border color on hover
══════════════════════════════════════════════ */
.review-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.review-card:hover {
  border-color: #C97B8A;
  box-shadow: 0 8px 24px rgba(201, 123, 138, 0.12);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════
   FORM FIELD VALIDATION STATES
══════════════════════════════════════════════ */
.booking-field {
  position: relative;
}
.booking-field input,
.booking-field select {
  padding-right: 2.5rem !important;
}
.booking-field::after {
  content: '';
  position: absolute;
  right: 0.75rem;
  bottom: 0.65rem;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  pointer-events: none;
}
.booking-field.field-valid::after {
  content: '\2713';
  display: flex;
  background: #3A5230;
  color: #fff;
}
.booking-field.field-valid input,
.booking-field.field-valid select {
  border-color: #3A5230 !important;
  background: #F4FAF2 !important;
}
.booking-field.field-invalid::after {
  content: '\00D7';
  display: flex;
  background: #c0392b;
  color: #fff;
}
.booking-field.field-invalid input,
.booking-field.field-invalid select {
  border-color: #c0392b !important;
  background: #FFF8F8 !important;
}

/* ── Section "Pourquoi nous choisir" ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.why-card {
  text-align: center;
  padding: var(--space-8) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon { font-size: 2.5rem; margin-bottom: var(--space-4); }
.why-title { font-family: var(--font-serif); font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--space-2); }
.why-desc { font-size: var(--text-sm); color: var(--text-mid); line-height: 1.6; }

/* ── Section Transformations (Avant / Après) ── */
.transformations-section {
  background: var(--beige-pale, #F8F4EA);
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}

@media (max-width: 768px) {
  .transform-grid {
    grid-template-columns: 1fr;
  }
}

.transform-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--beige);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.transform-before,
.transform-after {
  flex: 1;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--space-6);
  position: relative;
}

.transform-before {
  background: #EBEBEB;
  color: #888;
}

.transform-before::before {
  content: "AVANT";
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #aaa;
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius-full);
  padding: 2px 8px;
}

.transform-after {
  background: #F0EBDA;
  color: var(--brun-light, #7A6A50);
}

.transform-after::before {
  content: "APRÈS";
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--rose, #C97B8A);
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius-full);
  padding: 2px 8px;
}

.transform-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--beige), transparent);
  flex-shrink: 0;
}

.transform-label {
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-mid);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--beige);
  letter-spacing: 0.02em;
}

/* ── Loyalty trust item with CSS tooltip ── */
.trust-item--loyalty {
  position: relative;
  cursor: default;
}
.trust-tooltip {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark, #1E2A1A);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 20;
}
.trust-tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--text-dark, #1E2A1A);
  width: 0;
  height: 0;
}
.trust-item--loyalty:hover .trust-tooltip,
.trust-item--loyalty:focus .trust-tooltip,
.trust-item--loyalty:focus-within .trust-tooltip {
  visibility: visible;
  opacity: 1;
}

/* ── Newsletter section ── */
.newsletter-section {
  background: #EBF2E8;
  padding: var(--space-16, 4rem) 0;
  border-top: 1px solid #d4e5cf;
  border-bottom: 1px solid #d4e5cf;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8, 2rem);
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.newsletter-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3A5230;
  box-shadow: 0 2px 12px rgba(58,82,48,0.12);
}
.newsletter-text {
  flex: 1;
  min-width: 200px;
}
.newsletter-title {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: var(--text-xl, 1.25rem);
  font-weight: 700;
  color: #1E2A1A;
  margin: 0 0 0.35rem;
}
.newsletter-subtitle {
  font-size: var(--text-sm, 0.875rem);
  color: #4A5A3A;
  margin: 0;
  line-height: 1.55;
}
.newsletter-form {
  flex-shrink: 0;
}
.newsletter-input-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.newsletter-input-group input[type="email"] {
  border: 1.5px solid #b5d1ae;
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: var(--text-sm, 0.875rem);
  color: #1E2A1A;
  background: #fff;
  outline: none;
  min-width: 220px;
  transition: border-color 0.18s;
  font-family: inherit;
}
.newsletter-input-group input[type="email"]:focus {
  border-color: #3A5230;
}
.newsletter-privacy {
  font-size: 0.72rem;
  color: #6a7a5a;
  margin: 0.5rem 0 0;
  text-align: center;
}
.newsletter-success {
  font-size: var(--text-sm, 0.875rem);
  font-weight: 600;
  color: #3A5230;
  background: #fff;
  border: 1.5px solid #b5d1ae;
  border-radius: 12px;
  padding: 0.65rem 1.2rem;
}
.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;
}
@media (max-width: 640px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-input-group {
    justify-content: center;
  }
  .newsletter-input-group input[type="email"] {
    min-width: 0;
    width: 100%;
  }
}
/* ══════════════════════════════════════════════════════════
   GALLERY FILTERS
══════════════════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.gallery-filter {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid #EDE0C8;
  background: transparent;
  color: #4A5A3A;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  font-family: inherit;
}
.gallery-filter:hover {
  border-color: #3A5230;
  background: #EBF2E8;
}
.gallery-filter.active {
  background: #3A5230;
  border-color: #3A5230;
  color: #fff;
}

/* Gallery item overlay (hover hint) */
.gallery-item-inner {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 82, 48, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: inherit;
}
.gallery-item-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.gallery-item-inner:hover .gallery-item-overlay,
.gallery-item-inner:focus-visible .gallery-item-overlay {
  opacity: 1;
}

/* Hidden filtered items */
.gallery-item.gallery-hidden {
  display: none;
}

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 700px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}
/* Placeholder card shown when no real image exists */
.lightbox-placeholder {
  background: #1E2A1A;
  border-radius: 12px;
  padding: 3rem 4rem;
  text-align: center;
  color: #fff;
  min-width: 280px;
}
.lightbox-placeholder .lp-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.lightbox-placeholder .lp-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.lightbox-placeholder .lp-hint {
  font-size: 0.8rem;
  opacity: 0.6;
}
.lightbox-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  background: rgba(0,0,0,0.45);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 48px;
  height: 64px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  line-height: 1;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
@media (max-width: 600px) {
  .lightbox-arrow { width: 38px; height: 50px; font-size: 2rem; }
  .lightbox-prev { left: 0.25rem; }
  .lightbox-next { right: 0.25rem; }
  .lightbox-placeholder { padding: 2rem 2rem; }
}
