/* Typography: display serif + clean sans */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap");

/* Theme tokens */
:root{
  --bg:#0b0b0b;
  --text:#f1f1f1;
  --accent:#c8a951;
  --line:#262626;
  --gold-1:#e0c27a;
  --gold-2:#b88b32;
  --surface-1:#151515;
  --surface-2:#1b1b1b;
  --shadow: 0 18px 36px rgba(0,0,0,.5);
}

/* Base layout + behavior */
*{box-sizing:border-box}
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
  color:var(--text);
  /* Page background image */
  background-color:#0b0b0b;
  background-image:url("img/background/hexa-bg6.png");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  background-attachment:fixed;
}
h1, h2, h3, .brand{
  /* Display font for headings + brand */
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing:.5px;
}
/* Content width constraint */
.container{
  width:min(1100px, 90%);
  margin:auto;

}

/* Sticky header */
header{
  position:sticky;
  top:0;
  background:rgba(0,0,0,.78);
  backdrop-filter: blur(6px);
  border-bottom:1px solid var(--line);
  z-index:1000;
}

/* Nav layout */
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}
/* Brand + icon group */
.brand-row{
  display:flex;
  align-items:center;
  gap:10px;
}
/* Brand styling */
.brand{
  font-size:18px;
  font-weight:600;
  color:var(--gold-1);
  text-decoration:none;
  letter-spacing:.8px;
  text-shadow: 0 6px 18px rgba(224,194,122,.25);
}
/* Social icon button (Facebook) */
.social-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:999px;
  color:var(--gold-1);
  border:1px solid rgba(224,194,122,.35);
  background: rgba(255,255,255,.03);
  text-decoration:none;
}
.social-icon:hover{
  background: rgba(224,194,122,.12);
  border-color: rgba(224,194,122,.6);
}
/* CTA button inside nav */
.nav-cta{
  border-radius:999px;
  padding:9px 14px;
  font-size:14px;
  color:#1a1206;
  font-weight:600;
  letter-spacing:.3px;
}

/* Primary nav list */
nav ul{
  list-style:none;
  display:flex;
  gap:15px;
  padding:0;
  margin:0;
  align-items:center;
}

/* Nav links */
nav a{
  color:var(--text);
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  line-height:1;
}
nav a:hover{
  color:var(--gold-1);
}

nav a.primary:not(.btn){
  color:var(--accent);
}
.nav-menu .btn.primary{
  color:#1a1206;
}
/* Mobile nav dropdown */
@media (max-width: 760px){
  .nav-menu .btn.primary{
    color:#fff;
  }
}

/* Hero section layout */
.hero{
  padding:40px 0;
}
/* Hero split layout (text + video) */
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap:20px;
  align-items:center;
}
/* Centered hero variant */
.hero--center{
  text-align:center;
}
/* Hero card panel styling */
.hero-card{
  max-width:920px;
  margin:0 auto;
  padding:22px 20px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(109, 97, 97, 0.652), rgba(10,10,10,.55));
  border:2px solid rgba(255, 255, 255, 0.082);
  box-shadow: var(--shadow);
}
/* Hero button row */
.hero-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero-video{
  padding:12px;
}
/* Scroll reveal (JS adds .is-visible) */
[data-reveal]{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible{
  opacity:1;
  transform: translateY(0);
}
/* Logo image container (badge panel) */
.hero-title-image{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:18px;
  background: linear-gradient(180deg, rgba(20,20,20,.7), rgba(10,10,10,.4));
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(6px);
  margin:6px auto 10px;
}
/* Logo image sizing */
.hero-title-image img{
  display:block;
  width:min(520px, 92%);
  height:auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55));
}

/* Hero text styling */
.hero-kicker{
  font-size:13px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  margin:6px 0 4px;
}
.hero-subtitle{
  font-size:16px;
  color:rgba(255,255,255,.8);
  margin:4px 0 12px;
}
.hero-benefits{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  font-size:13px;
  color:rgba(255,255,255,.9);
  margin:4px 0 10px;
}
.hero-benefits span{
  position:relative;
  padding:7px 12px 7px 24px;
  border-radius:999px;
  border:1px solid rgba(224,194,122,.35);
  background: rgba(224,194,122,.12);
  font-weight:600;
  letter-spacing:.2px;
}
.hero-benefits span::before{
  content:"";
  position:absolute;
  left:10px;
  top:50%;
  width:6px;
  height:6px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  transform: translateY(-50%);
}
/* Visually hidden helper */
.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;
}


/* Gallery grid layout */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:12px;
  transition: opacity .25s ease;
}
.gallery-grid.is-transitioning{
  opacity:.55;
}

/* Voucher grid */
.voucher-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:16px;
}
.voucher-card{
  perspective: 1200px;
  border-radius:16px;
  overflow:hidden;
}
.voucher-inner{
  position:relative;
  width:100%;
  aspect-ratio: 4 / 3;
  transform-style: preserve-3d;
  transition: transform .6s ease;
}
.voucher-face{
  position:absolute;
  inset:0;
  backface-visibility: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px;
}
.voucher-front{ padding:0; background:#0b0b0b; }
.voucher-front img{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:12px;
}
.voucher-back{
  transform: rotateY(180deg);
  text-align:center;
  background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
}
.voucher-back h4{
  margin:0 0 6px;
  color: var(--gold-1);
}
.voucher-card:hover .voucher-inner{
  transform: rotateY(180deg);
}
@media (max-width: 760px){
  .voucher-card.active .voucher-inner{
    transform: rotateY(180deg);
  }
}

/* Video section */
.video-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:16px;
}
.video-card{
  width:100%;
  max-width:560px;
  margin:0 auto;
}
.video-embed{
  position:relative;
  width:100%;
  aspect-ratio: 9 / 16;
  overflow:hidden;
  border-radius:12px;
}
.video-embed iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Video showcase under hero */
.showcase-video{
  margin: 4px 0 18px;
}
.showcase-video-shell{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  align-items:start;
  max-width: 980px;
  margin: 0 auto;
  border:1px solid rgba(224,194,122,.14);
  background:
    radial-gradient(90% 120% at 10% 10%, rgba(224,194,122,.07), transparent 55%),
    linear-gradient(180deg, rgba(20,20,20,.82), rgba(10,10,10,.72));
}
.showcase-video-copy{
  text-align:center;
  padding:8px 10px 4px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.05);
  background: rgba(255,255,255,.015);
}
.showcase-video-copy h2{
  margin:0 0 8px;
}
.showcase-video-copy .muted{
  line-height:1.5;
  margin:0 auto;
  max-width:56ch;
}
.showcase-video-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
  justify-content:center;
}
.showcase-video-frame{
  position:relative;
  max-width:420px;
  width:100%;
  margin:0 auto;
}
.showcase-video-frame::before{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:18px;
  background: radial-gradient(80% 60% at 50% 50%, rgba(224,194,122,.12), transparent 70%);
  pointer-events:none;
}
.showcase-video-frame .video-embed{
  border:1px solid rgba(255,255,255,.07);
  box-shadow: 0 18px 36px rgba(0,0,0,.45);
}

/* Gallery images */
.gallery-grid img{
  width:100%;
  border-radius:12px;
  cursor:pointer;
}

/* Barbers grid */
.barbers{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

/* Barber card styling */
.barber-card{
  background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
  padding:15px;
  border-radius:15px;
  text-align:center;
  border:1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (hover: hover){
  .barber-card:hover{
    transform: translateY(-4px);
    border-color: rgba(224,194,122,.2);
    box-shadow: 0 22px 40px rgba(0,0,0,.55);
  }
}
/* Link styling inside barber cards and contact section */
.barber-card a,
#contact a{
  color: var(--gold-1);
  text-decoration:none;
}
.barber-card a:hover,
#contact a:hover{
  color: var(--gold-2);
}
/* Emphasis helper for key info */
.highlight{
  color: var(--gold-1);
  font-weight:700;
}

/* Barber initials badge */
.barber-badge{
  width:78px;
  height:78px;
  margin:4px auto 10px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  letter-spacing:1px;
  color:var(--gold-1);
  background: radial-gradient(80% 80% at 30% 20%, rgba(224,194,122,.25), rgba(0,0,0,.1)), var(--surface-1);
  border:1px solid rgba(224,194,122,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 24px rgba(0,0,0,.45);
}
.barber-card h3{
  margin:6px 0 2px;
}

/* Base button */
.btn{
  display:inline-block;
  margin-top:10px;
  padding:11px 18px;
  border:1px solid rgba(200,169,81,.6);
  color:var(--text);
  text-decoration:none;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.2));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 24px rgba(0,0,0,.35);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  position:relative;
  overflow:hidden;
}

/* Remove top margin for buttons inside nav */
.nav-menu .btn{
  margin-top:0;
}

/* Primary CTA button */
.primary{
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  color:#1a1206;
  border-color:var(--gold-1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 12px 28px rgba(0,0,0,.4);
}

/* Large hero CTA */
.btn.btn-lg{
  padding:13px 22px;
  font-size:15px;
}

/* Ghost/outline button for secondary CTA */
.btn.ghost{
  background: transparent;
  border-color: rgba(255,255,255,.18);
  color: var(--text);
}
.btn.ghost:hover{
  border-color: rgba(224,194,122,.5);
}

/* Embedded map */
iframe{
  width:100%;
  height:350px;
  border:0;
  border-radius:15px;
}

/* Footer */
.footer{
  padding:28px 0;
  border-top:1px solid var(--line);
  margin-top:40px;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:flex-start;
}
.footer-left,
.footer-right{
  flex:1;
}
.footer-right{
  text-align:right;
}
.footer-title{
  margin:0 0 8px;
  font-weight:600;
  color:var(--gold-1);
  letter-spacing:.4px;
}
.footer-text{
  margin:0;
  line-height:1.6;
}
.footer-link{
  color: var(--gold-1);
  text-decoration:none;
  font-size:13px;
}
.footer-link:hover{
  color: var(--gold-2);
}
@media (max-width: 760px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .hero-video{
    max-width:520px;
    margin:0 auto;
  }
  .showcase-video-shell{
    grid-template-columns: 1fr;
  }
  .showcase-video-copy{
    text-align:center;
    padding:2px 2px 0;
  }
  .showcase-video-actions{
    justify-content:center;
  }
  body{
    background-attachment:scroll;
    background-image:url("img/background/hexa-bg6_mobile.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
  }
  .gitem{
    aspect-ratio: auto;
  }
  .gitem img{
    width:100%;
    height:auto;
    object-fit:contain;
  }
  .footer-inner{
    flex-direction:column;
  }
  .footer-right{
    text-align:left;
  }
}

/* Mobile-only: limit "Všetko" view to 4 photos */
@media (max-width: 760px){
  .gallery-all .gitem.hide-all{
    display:none !important;
  }
}

/* Cookie consent banner */
.cookie-banner{
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  display:none;
  gap:14px;
  align-items:center;
  justify-content:space-between;
  padding:14px 16px;
  border-radius:16px;
  background: rgba(10,10,10,.9);
  border:1px solid rgba(224,194,122,.25);
  box-shadow: 0 18px 36px rgba(0,0,0,.5);
  z-index:2000;
}
.cookie-banner.show{ display:flex; }
.cookie-text{
  font-size:13px;
  color: rgba(255,255,255,.85);
  line-height:1.4;
}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
@media (max-width: 760px){
  .cookie-banner{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* Reservation section alignment */
#reservation{
  text-align:center;
}
/* Reservation card sizing */
.reservation-card{
  max-width:540px;
  margin:12px auto 0;
}
/* Reservation card text spacing */
.reservation-card p{
  margin:0 0 12px;
}

/* Lightbox overlay (opened by JS) */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  justify-content:center;
  align-items:center;
}

/* Lightbox image constraints */
.lightbox img{
  max-width:90%;
  max-height:90%;
}

/* Utility helpers */
.muted{ color: rgba(255,255,255,.65); }
.small{ font-size: 13px; }
.pad{ padding: 14px; }
/* Generic card surface */
.card{
  background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
  border:1px solid rgba(255,255,255,.06);
  border-radius:15px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
@media (hover: hover){
  .card:hover{
    transform: translateY(-4px);
    border-color: rgba(224,194,122,.2);
    box-shadow: 0 22px 40px rgba(0,0,0,.55);
  }
}

/* Section header row */
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}
.section-head h2{ margin:0; }
.section-head p{ margin:6px 0 0; }
/* Section title ornament */
.section-head h2,
section > h2{
  position:relative;
  display:inline-block;
  padding-bottom:8px;
}
.section-head h2::after,
section > h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:54px;
  height:2px;
  background: linear-gradient(90deg, var(--gold-1), rgba(224,194,122,0));
  border-radius:999px;
}

/* Buttons */
/* Secondary gold button variant */
.btn.gold{
  border-color: rgba(200,169,81,.65);
  background: linear-gradient(180deg, rgba(224,194,122,.2), rgba(184,139,50,.08));
}
/* Hover lift */
.btn:hover{
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 16px 30px rgba(0,0,0,.45);
}
/* Active press */
.btn:active{
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 18px rgba(0,0,0,.35);
}
/* Sheen highlight on hover */
.btn::after{
  content:"";
  position:absolute;
  inset:-40% -20%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.18) 45%, transparent 55%);
  transform: translateX(-80%);
  transition: transform .45s ease;
  pointer-events:none;
}
.btn:hover::after{ transform: translateX(80%); }
.btn:focus-visible{
  outline:2px solid rgba(200,169,81,.6);
  outline-offset:3px;
}

/* CTA pulse animation */
@keyframes btnPulse{
  0%{ box-shadow: 0 0 0 0 rgba(200,169,81,.35); }
  70%{ box-shadow: 0 0 0 16px rgba(200,169,81,0); }
  100%{ box-shadow: 0 0 0 0 rgba(200,169,81,0); }
}
.btn.pulse{
  animation: btnPulse 1.8s ease 2;
}
/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .btn.pulse{ animation: none; }
  [data-reveal]{
    opacity:1;
    transform:none;
    transition:none;
  }
}

/* Gallery filters */
.gallery-filters{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.chip{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  cursor:pointer;
  font-size: 14px;
}
.chip.active{
  border-color: rgba(200,169,81,.55);
  background: rgba(200,169,81,.10);
}

/* Gallery card */
.gitem{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  border:1px solid var(--line);
  cursor:pointer;
  transition: opacity .25s ease, transform .25s ease;
}
.gitem::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(120% 80% at 50% 20%, rgba(255,255,255,.08), transparent 60%);
  opacity:0;
  transition: opacity .25s ease;
}
.gitem:hover::after{ opacity:1; }
/* Gallery caption pill */
.gitem figcaption{
  position:absolute;
  left:10px;
  bottom:10px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.08);
}
/* Smooth filter hide */
.gitem.is-hiding{
  opacity:0;
  transform: scale(.98);
  pointer-events:none;
}
.gitem.hide{ display:none; }

/* Pricing + hours grids */
.pricing-grid, .hours-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.pricing-grid > .card{ grid-column: span 4; }
.pricing-grid--single > .card{ grid-column: span 12; }
.hours-grid > .card:first-child{ grid-column: span 7; }
.hours-grid > .card:last-child{ grid-column: span 5; }

@media (max-width: 900px){
  .pricing-grid > .card{ grid-column: span 12; }
  .pricing-grid--single > .card{ grid-column: span 12; }
  .hours-grid > .card{ grid-column: span 12 !important; }
}
@media (max-width: 760px){
  .price-groups{
    grid-template-columns: 1fr;
  }
}

/* List styling for prices/hours */
/* List styling for prices/hours */
.price-list, .hours-list{
  list-style:none;
  padding:0;
  margin: 10px 0 0;
}
/* Row layout for price/hour items */
.price-list li, .hours-list li{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.price-groups{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px 28px;
  margin-top:10px;
}
.price-group h4{
  margin:0 0 6px;
  font-size:15px;
  color:var(--gold-1);
  letter-spacing:.4px;
}
.price-text{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.price-text > span:first-child{
  position:relative;
  padding-left:14px;
  color: rgba(255,255,255,.9);
}
.price-text > span:first-child::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:6px;
  height:6px;
  border-radius:999px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
  transform: translateY(-50%);
}
.price-desc{
  line-height:1.3;
}
.pricing-card{
  width:100%;
  max-width:none;
  margin:0;
  border:1px solid rgba(224,194,122,.18);
}
.pricing-card h3{
  margin-bottom:4px;
}
.price-list li{
  align-items:center;
}
.price-list strong{
  background: transparent;
  border:none;
  padding:0;
  font-weight:700;
  letter-spacing:.3px;
  color: var(--gold-1);
  white-space:nowrap;
}
.price-list li:last-child, .hours-list li:last-child{ border-bottom:0; }

/* Buttons row in hours card */
.hours-actions{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}


/* Mobile nav toggle + dropdown */
.nav-toggle{
  display:none;
  width:44px;
  height:40px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:12px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  gap:5px;
}
.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:var(--text);
  border-radius:2px;
  opacity:.9;
}

.nav-menu .nav-link.active{
  color: var(--accent);
}

@media (max-width: 760px){
  .nav-toggle{ display:flex; }

  .nav{
    position:relative;
  }

  .nav-menu{
    position:absolute;
    top:60px;
    right:0;
    left:0;
    display:none;
    background:rgba(0,0,0,.92);
    border:1px solid var(--line);
    border-radius:14px;
    padding:12px;
  }
  .nav-menu.open{ display:block; }

  nav ul{
    flex-direction:column;
    gap:10px;
  }

  nav a{
    display:block;
    padding:10px 12px;
    border-radius:12px;
    border:1px solid transparent;
  }
  nav a:hover{
    border-color:var(--line);
    background:rgba(255,255,255,.03);
  }
}

/* Gallery image hover zoom */
.gitem img{
  border:1px solid var(--line);
  transition: transform .25s ease;
}
.gitem:hover img{ transform: scale(1.02); }

/* Lightbox layout */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
}
.lightbox.open{ display:flex; }

/* Lightbox inner frame */
.lightbox-inner{
  position:relative;
  width:min(100%, 980px);
  background:#0f0f0f;
  border:1px solid var(--line);
  border-radius:16px;
  overflow:hidden;
  padding:12px;
  touch-action: pan-y;
}

/* Lightbox image sizing */
#lightbox-img{
  width:100%;
  height:min(70vh, 680px);
  object-fit:contain;
  display:block;
  border-radius:12px;
}

/* Lightbox caption */
.lb-caption{
  margin-top:10px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

/* Lightbox controls */
.lb-btn{
  position:absolute;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  width:44px;
  height:40px;
  border-radius:12px;
  cursor:pointer;
}
.lb-btn:hover{ background:rgba(255,255,255,.10); }

.lb-close{ top:12px; right:12px; }
.lb-prev{ top:50%; left:12px; transform: translateY(-50%); }
.lb-next{ top:50%; right:12px; transform: translateY(-50%); }
