@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --bg-dark: #0a0806;
  --bg-panel: #12100e;
  --bg-soft: #faf8f5;
  --bg-soft-alt: #f5f0e8;
  --gold: #d4a853;
  --gold-alt: #c9a962;
  --gold-faint: #d4a8531f;
  --text-light: #f5f0e8;
  --text-muted: #8a8279;
  --text-dark: #1a1610;
  --border-dark: #1a1610;
  --border-soft: #e5ddd2;
  --shadow-card: 0 20px 45px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.section.soft {
  background: var(--bg-soft);
  color: var(--text-dark);
}

.section.dark {
  background: var(--bg-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(212, 168, 83, 0.28);
  background: var(--gold-faint);
  color: var(--gold-alt);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  margin: 14px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
}

.section-subtitle {
  margin: 0;
  max-width: 720px;
  color: var(--text-muted);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: #0d0b09;
}

.btn-gold:hover {
  background: var(--gold-alt);
}

.btn-outline {
  border-color: #2a2218;
  color: var(--text-light);
  background: #12100e;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-alt);
}

.btn-light {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn.block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-dark);
  background: rgba(10, 8, 6, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 80px;
  height: 56px;
  border-radius: 11px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  overflow: hidden;
  padding: 0;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-serif);
  letter-spacing: 0.2em;
  font-size: 19px;
}

.desktop-nav {
  display: inline-flex;
  gap: 30px;
}

.desktop-nav a,
.mobile-drawer a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-drawer a:hover,
.desktop-nav a.is-active,
.mobile-drawer a.is-active {
  color: var(--gold-alt);
}

.header-actions {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.menu-toggle {
  border: 1px solid #2a2218;
  background: #12100e;
  border-radius: 11px;
  width: 42px;
  height: 42px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--text-light);
}

.menu-toggle-inner > span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle-inner {
  width: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 90;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(84vw, 350px);
  height: 100dvh;
  background: #090705;
  border-left: 1px solid #1d1710;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.45);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateX(calc(100% + 18px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.2s ease, visibility 0s linear 0.25s;
  z-index: 101;
}

.mobile-drawer.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.mobile-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1610;
}

.drawer-close {
  border: 1px solid #2a2218;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
}

.hero {
  padding: 52px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
  min-height: 620px;
}

.hero-copy h1 {
  margin: 22px 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.08;
}

.hero-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 17px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #1f1a16;
  background: #100d0b;
  box-shadow: var(--shadow-card);
}

.js-atropos-hero {
  width: 100%;
}

.js-atropos-hero .atropos-inner {
  border-radius: var(--radius-lg);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 560px;
}

.hero-strip {
  position: relative;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-strip-item {
  border-radius: 12px;
  border: 1px solid #1f1a16;
  overflow: hidden;
}

.hero-strip-item img,
.hero-strip img {
  height: 116px;
  width: 100%;
  object-fit: cover;
}

.js-atropos-card {
  width: 100%;
  height: 100%;
}

.js-atropos-card .atropos-inner,
.js-atropos-card .product-card {
  height: 100%;
}

.stats-bar {
  margin-top: 68px;
  background: #0a0a0a;
  border-top: 1px solid #1a1610;
  border-bottom: 1px solid #1a1610;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 34px 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-bullet {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gold-faint);
  border: 1px solid rgba(212, 168, 83, 0.35);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1;
}

.stat span {
  color: var(--text-muted);
  font-size: 13px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.about-preview-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 20px 40px rgba(26, 22, 16, 0.2);
}

.about-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.info-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #6b6560;
}

.dot {
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gold);
  flex: 0 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: #12100e;
  border: 1px solid #1f1a16;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.product-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.product-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.12);
  border: 1px solid rgba(212, 168, 83, 0.3);
  color: var(--gold-alt);
  font-size: 12px;
  font-weight: 600;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 86px;
  gap: 14px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #1f1a16;
}

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

.gallery-grid figure:nth-child(1) {
  grid-column: span 5;
  grid-row: span 3;
}

.gallery-grid figure:nth-child(2) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(3) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(5) {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(6) {
  grid-column: span 5;
  grid-row: span 3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 16px 34px rgba(20, 17, 12, 0.08);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-family: var(--font-serif);
  font-weight: 500;
}

.feature-card p {
  margin: 0;
  color: #6b6560;
  font-size: 14px;
}

.cta {
  padding: 84px 0;
  text-align: center;
}

.cta-line {
  width: 58px;
  height: 2px;
  margin: 0 auto 24px;
  background: var(--gold);
}

.cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 500;
}

.cta p {
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--text-muted);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.site-footer {
  background: #060503;
  border-top: 1px solid #16120f;
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 30px;
}

.footer-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 21px;
}

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

.footer-logo {
  width: 88px;
  height: 62px;
  border-radius: 0;
  border: none;
  background: transparent;
  object-fit: contain;
  padding: 0;
}

.footer-copy,
.footer-list,
.footer-list a {
  color: #7a7268;
  font-size: 14px;
}

.footer-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.footer-bottom {
  border-top: 1px solid #1a1610;
  margin-top: 32px;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #5a554f;
  font-size: 12px;
}

.page-hero {
  padding: 78px 0 36px;
}

.page-hero h1 {
  margin: 14px 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 500;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--text-muted);
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  margin: 0 0 26px;
}

.input,
.textarea,
.select {
  width: 100%;
  border: 1px solid #2b2218;
  background: #11100d;
  color: var(--text-light);
  border-radius: 12px;
  padding: 12px 14px;
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: 2px solid rgba(212, 168, 83, 0.35);
  border-color: var(--gold);
}

.soft-form .input,
.soft-form .textarea,
.soft-form .select {
  background: #fff;
  color: var(--text-dark);
  border-color: #ddd4c8;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.contact-card {
  border: 1px solid #e3dacc;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--text-dark);
  padding: 24px;
}

.contact-items {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-items strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: #6b6560;
}

.contact-items a,
.contact-items p {
  margin: 0;
  font-size: 15px;
  color: #201b15;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  color: #7b7266;
}

.textarea {
  min-height: 136px;
  resize: vertical;
}

.status-box {
  margin-top: 12px;
  min-height: 24px;
  font-size: 14px;
}

.status-box.success {
  color: #18794e;
}

.status-box.error {
  color: #d92d20;
}

.turnstile-slot {
  min-height: 66px;
}

.empty-state {
  border: 1px dashed #2c241a;
  border-radius: var(--radius-md);
  padding: 26px;
  color: var(--text-muted);
  text-align: center;
}

.hide-mobile {
  display: inline-flex;
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 440px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 52px);
    gap: 8px;
  }

  .brand-mark {
    width: 56px;
    height: 40px;
  }

  .brand-text {
    font-size: 14px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    flex-shrink: 0;
  }

  .footer-logo {
    width: 74px;
    height: 52px;
  }

  .desktop-nav,
  .hide-mobile {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 13vw, 46px);
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
  }

  .gallery-grid figure {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .section {
    padding: 62px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .filter-row {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .brand-text {
    display: none;
  }

  .brand-mark {
    width: 64px;
    height: 44px;
  }
}

/* ===== Gallery Page ===== */

.gallery-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-filter-btn {
  border: 1px solid #2a2218;
  background: #12100e;
  color: var(--text-muted);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.gallery-filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold-alt);
}

.gallery-filter-btn.is-active {
  background: var(--gold);
  color: #0d0b09;
  border-color: var(--gold);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-page-item {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #1f1a16;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-page-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.gallery-page-item img,
.gallery-page-item video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.gallery-page-item figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-muted);
  background: #12100e;
}

.gallery-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
  pointer-events: none;
  transition: background-color 0.2s ease;
}

.gallery-page-item:hover .gallery-play-badge {
  background: rgba(212, 168, 83, 0.8);
}

/* ===== Lightbox ===== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
}

.lightbox-video {
  max-width: 88vw;
  max-height: 80vh;
  border-radius: 12px;
  outline: none;
}

.lightbox-caption {
  margin-top: 12px;
  color: #ccc;
  font-size: 14px;
  text-align: center;
  max-width: 600px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.lightbox-close:hover {
  background: rgba(212, 168, 83, 0.8);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(212, 168, 83, 0.8);
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

/* ===== Hero CTA Mangalları Gör Button ===== */

.btn-mangal {
  background: linear-gradient(135deg, var(--gold) 0%, #b8922e 100%);
  color: #0d0b09;
  font-size: 16px;
  padding: 16px 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 18px rgba(212, 168, 83, 0.35);
}

.btn-mangal:hover {
  background: linear-gradient(135deg, #e8bd5f 0%, var(--gold) 100%);
  box-shadow: 0 6px 24px rgba(212, 168, 83, 0.5);
  transform: translateY(-2px);
}

/* ===== Admin video badge ===== */

.gallery-video-thumb {
  position: relative;
}

.video-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(212, 168, 83, 0.9);
  color: #0d0b09;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ===== Responsive gallery adjustments ===== */

@media (max-width: 860px) {
  .gallery-page-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
  }

  .gallery-page-item img,
  .gallery-page-item video {
    height: 200px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }

  .lightbox-img,
  .lightbox-video {
    max-width: 96vw;
    max-height: 75vh;
  }
}

@media (max-width: 480px) {
  .gallery-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) {
  .mobile-overlay,
  .mobile-drawer {
    display: none !important;
  }
}
