/* ========================================================
   AUDIOLLEX Luxury Hi-Fi Official Stylesheet
   Single-Screen No-Scroll Viewport Layout (100vh)
   Matching screenshots 1:1
======================================================== */

:root {
  --bg-black: #000000;
  --bg-dark: #08090d;
  --bg-card: #12141a;
  --text-white: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #64748b;
  --border-subtle: rgba(255, 255, 255, 0.08);

  --accent-amp: #00e5a3;
  --accent-cable: #38bdf8;
  --accent-power: #ec4899;
  --accent-acc: #eab308;
}

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

html, body {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden; /* No scroll anywhere on window */
  background-color: var(--bg-black);
  color: var(--text-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  user-select: none;
}

/* Base Viewport Container */
.site-wrapper {
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

/* ========================================================
   HEADER (Pitch Black Bar, 65px height)
======================================================== */
.site-header {
  height: 65px;
  min-height: 65px;
  background-color: var(--bg-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
  z-index: 40;
  flex-shrink: 0;
}

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

.brand-logo img, .brand-logo svg {
  height: 38px;
  width: auto;
  display: block;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-admin-link {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #475569;
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.header-admin-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

/* ========================================================
   LANDING HERO CONTAINER (Middle Area, Full 100vh Fill)
======================================================== */
.hero-container {
  flex: 1;
  height: calc(100vh - 110px); /* 100vh - 65px header - 45px footer */
  max-height: calc(100vh - 110px);
  display: flex;
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.78) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Left Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 55px;
  padding-right: 30px;
  max-width: 580px;
}

.hero-badge {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: #00e5a3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Impact", sans-serif;
}

.hero-desc {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

.btn-play-intro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 229, 163, 0.5);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 9999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-play-intro:hover {
  background: rgba(0, 229, 163, 0.18);
  border-color: #00e5a3;
  box-shadow: 0 0 24px rgba(0, 229, 163, 0.35);
  transform: translateY(-1px);
}

.play-icon-dot {
  width: 9px;
  height: 9px;
  background-color: #00e5a3;
  border-radius: 50%;
  box-shadow: 0 0 10px #00e5a3;
}

/* ========================================================
   CATEGORY ACCORDION ON RIGHT (Matching screenshots exactly)
======================================================== */
.categories-accordion {
  position: relative;
  z-index: 20;
  display: flex;
  margin-left: auto;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-column {
  position: relative;
  width: 52px;
  height: 100%;
  border-left: 2px solid var(--cat-accent, #00e5a3);
  background: rgba(4, 5, 8, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
  transition: width 0.38s cubic-bezier(0.16, 1, 0.3, 1), background 0.35s ease;
  flex-shrink: 0;
}

.cat-column:last-child {
  border-right: 2px solid var(--cat-accent, #eab308);
}

/* Slim State: Vertical Upright Letters (AMPLIFIERS, CABLES, POWER, ACCESSORIES) */
.cat-vertical-label {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.28em;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.2s ease;
  padding: 20px 0;
}

/* Expanded State: Smooth slide out */
.cat-column:hover, .cat-column.expanded {
  width: 330px;
  background: rgba(8, 10, 16, 0.94);
  backdrop-filter: blur(14px);
}

.cat-column:hover .cat-vertical-label,
.cat-column.expanded .cat-vertical-label {
  opacity: 0;
  display: none;
}

.cat-expanded-content {
  display: none;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 30px 24px;
  transition: opacity 0.3s ease 0.08s;
}

.cat-column:hover .cat-expanded-content,
.cat-column.expanded .cat-expanded-content {
  display: flex;
  opacity: 1;
}

.cat-card-thumb {
  width: 160px;
  height: 105px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
  margin-bottom: 20px;
  background: #000;
}

.cat-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-card-title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cat-accent, #fff);
  margin-bottom: 6px;
}

.cat-card-sub {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
}

.cat-btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cbd5e1;
  padding: 8px 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: all 0.2s ease;
}

.cat-column:hover .cat-btn-explore {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
}

/* ========================================================
   FOOTER (Pitch Black Bar, 45px height)
======================================================== */
.site-footer {
  height: 45px;
  min-height: 45px;
  background-color: var(--bg-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 45px;
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
  flex-shrink: 0;
}

.footer-left, .footer-center, .footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 12px;
}

.footer-item a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-item a:hover {
  color: #fff;
}

.footer-dot {
  color: #334155;
}

/* ========================================================
   VIDEO INTRO PLAYER (ACTIVE ON PAGE LOAD)
   Matching screenshots/video.png
======================================================== */
.video-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.video-intro-overlay.intro-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-intro-box {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
}

.video-intro-box video {
  max-width: 100vw;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-intro-controls {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: min(550px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 10000;
}

.video-progress-container {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.video-progress-fill {
  height: 100%;
  width: 0%;
  background: #00e5a3;
  box-shadow: 0 0 10px #00e5a3;
  transition: width 0.1s linear;
}

.video-control-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-skip-intro {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #cbd5e1;
  padding: 8px 24px;
  border-radius: 9999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-skip-intro:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

.btn-audio-toggle {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-audio-toggle:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

/* ========================================================
   PRODUCT & CATEGORY PAGE (NO SCROLL VIEWPORT)
   Matching product-page-*.png screenshots 1:1
======================================================== */
.product-page-body {
  background-color: #ffffff;
  color: #1e293b;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}

.product-page-wrapper {
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Header for product page */
.product-site-header {
  height: 65px;
  min-height: 65px;
  background-color: #000000;
  border-bottom: 1px solid #181b24;
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.header-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-item {
  color: #94a3b8;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 4px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-item:hover {
  color: #ffffff;
}

.nav-item.active {
  color: #ffffff;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

/* Top Product Carousel Bar (85px height) */
.product-carousel-bar {
  height: 85px;
  min-height: 85px;
  background: #fafbfc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-shrink: 0;
}

.carousel-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  flex-shrink: 0;
}

.carousel-nav-btn:hover {
  border-color: #0f172a;
  color: #0f172a;
  background: #f1f5f9;
}

.carousel-track-container {
  overflow-x: auto;
  max-width: 900px;
  scrollbar-width: none;
}

.carousel-track-container::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 4px;
}

.carousel-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s ease;
  min-width: 140px;
}

.carousel-item-card:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.carousel-item-card.active {
  border-color: #0f172a;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.carousel-thumb-box {
  width: 68px;
  height: 46px;
  border-radius: 4px;
  overflow: hidden;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.carousel-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-card-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  text-align: center;
  white-space: nowrap;
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.carousel-item-card.active .carousel-card-title {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Main Product Viewport Container (Fit in 100vh without page scroll) */
.product-main-container {
  flex: 1;
  height: calc(100vh - 195px); /* 100vh - 65px header - 85px carousel - 45px footer */
  max-height: calc(100vh - 195px);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 45px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  overflow: hidden;
  box-sizing: border-box;
}

/* Left Image Box */
.product-gallery-view {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-featured-box {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  max-height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}

.product-featured-box img {
  max-height: calc(100vh - 250px);
  width: 100%;
  object-fit: contain;
}

/* Right Details Box */
.product-details-view {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-badge-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.product-main-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 4px;
  flex-shrink: 0;
}

.product-tagline {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* Tabs Nav Bar */
.product-tabs-nav {
  display: flex;
  gap: 22px;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 8px 2px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tab-btn:hover {
  color: #0f172a;
}

.tab-btn.active {
  color: #0f172a;
  font-weight: 800;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0f172a;
}

/* Tab Panels Content (Inner sleek scroll if content exceeds) */
.tab-content-container {
  flex: 1;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.tab-content-container::-webkit-scrollbar {
  width: 5px;
}

.tab-content-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.2s ease;
}

/* Tab 1: Overview */
.overview-body {
  font-size: 13.5px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 20px;
}

.overview-quote-card {
  background: #f8fafc;
  border-left: 4px solid #0f172a;
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin-top: 18px;
}

.overview-quote-card em {
  font-size: 13.5px;
  font-style: italic;
  color: #0f172a;
  display: block;
  margin-bottom: 4px;
}

.overview-quote-card .quote-author {
  font-size: 11.5px;
  color: #64748b;
}

/* Tab 2: Specification */
.spec-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-row {
  display: flex;
  font-size: 13px;
  line-height: 1.45;
  gap: 8px;
}

.spec-row strong {
  font-weight: 700;
  color: #0f172a;
  min-width: 220px;
}

.spec-row span {
  color: #475569;
}

/* Tab 3: Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-thumb-item {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-thumb-item:hover {
  transform: translateY(-2px);
  border-color: #0f172a;
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tab 4: Reviews */
.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 16px 18px;
}

.review-quote {
  font-size: 13.5px;
  font-style: italic;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.55;
}

.review-author {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 600;
}

/* Tab 5: Data Sheet */
.datasheet-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.datasheet-icon {
  color: #10b981;
}

.datasheet-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.datasheet-desc {
  font-size: 12.5px;
  color: #64748b;
  max-width: 440px;
}

.btn-open-pdf {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.btn-open-pdf:hover {
  background: #1e293b;
}

/* Tab 6: Where to Buy */
.wheretobuy-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.wheretobuy-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f172a;
}

.wheretobuy-desc {
  font-size: 12.5px;
  color: #64748b;
  max-width: 480px;
  line-height: 1.55;
}

.wheretobuy-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-distributor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-contact-sales {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.wheretobuy-footer {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  width: 100%;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  padding: 40px;
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-modal img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
}
