:root {
  --bg-color: #0a0a0a;
  --surface-color: rgba(255, 255, 255, 0.06);
  --border-color: rgba(255, 255, 255, 0.08);
  --accent-cyan: #e60000;
  --accent-blue: #900000;
  --text-primary: #f0f0f0;
  --text-secondary: #888888;
  --gradient-main: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
  --font-family: 'Rajdhani', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.6;
}

/* Utilities */
.glass {
  background: var(--surface-color);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 800;
}

/* Containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h2.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}

/* NavBar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: min-height 0.4s ease;
  min-height: 65px;
}

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

.nav-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.4s ease, opacity 0.4s ease;
}

/* Linkovi — vidljivi na startu */
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text-primary); }

.btn-primary-small {
  background: var(--gradient-main);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
}

.btn-primary-small:hover { opacity: 0.85; }

/* Hamburger — samo mobitel */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Scrolled stanje ── */
.navbar.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar.scrolled .nav-container {
  min-height: 60px;
}

.navbar.scrolled .nav-logo {
  height: 50px;
  opacity: 0.75;
}

.navbar.scrolled .nav-links {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
}

.navbar.scrolled .hamburger {
  display: flex;
}

/* Dropdown u scrolled stanju */
.navbar.scrolled .nav-links.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  position: absolute;
  top: 100%;
  right: 1.5rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: rgba(14,14,14,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  min-width: 200px;
  overflow: hidden;
}

.navbar.scrolled .nav-links.open a {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease, color 0.2s ease;
}

.navbar.scrolled .nav-links.open a:last-child { border-bottom: none; }

.navbar.scrolled .nav-links.open a:hover {
  background: rgba(230,0,0,0.08);
  color: var(--text-primary);
}

.navbar.scrolled .nav-links.open .btn-primary-small {
  background: var(--gradient-main);
  color: #fff;
  border-radius: 0;
  padding: 1rem 1.5rem;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(212, 0, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 0, 0, 0.5);
}

.btn-primary-small {
  padding: 0.6rem 1.5rem;
  background: var(--surface-color);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-small:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: #fff;
}

.btn-secondary {
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4rem;
  background-color: #0a0a0a;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 40px,
      rgba(230,0,0,0.03) 40px,
      rgba(230,0,0,0.03) 41px
    );
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(230,0,0,0.12) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, var(--bg-color) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  animation: fadeIn 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 3rem;
}

.stat h3 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Catalog Grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.car-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-image-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.car-card:hover .card-image {
  transform: scale(1.05);
}

.status-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.price-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-main);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 12px rgba(212,0,0,0.3);
}

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.car-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.car-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.car-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: #ffffff;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.car-specs {
  display: flex;
  gap: 1rem;
}

.spec {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Contact Details */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.glass-dark {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.icon {
  font-size: 2rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 50%;
  border: 1px solid var(--border-color);
}

.method-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.method-details a, .method-details p {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.method-details a:hover {
  color: var(--accent-cyan);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
}

/* Footer */
footer {
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding: 0;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1rem;
}

.footer-logo {
  height: 95px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

/* ── Responsive: Tablet (≤ 992px) ── */
@media (max-width: 992px) {
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-stats { gap: 2.5rem; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe { height: 280px; }

  .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

  h2.section-title { font-size: 2rem; }
}

/* ── Responsive: Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  /* Navbar */
  .navbar { z-index: 1200; }
  .nav-logo { height: 42px; }
  .nav-container { padding: 0 1rem; min-height: 60px; }

  /* Hamburger uvijek vidljiv na mobitelu, iznad svega */
  .hamburger { display: flex; z-index: 1300; }
  .navbar.scrolled .hamburger { display: flex; }

  /* Linkovi — slide-in panel s desna */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(75vw, 280px);
    height: 100vh;
    background: rgba(12,12,12,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255,255,255,0.07);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 5rem 0 2rem;
    z-index: 1250;
    display: flex;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 1rem 2rem;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s, background 0.2s;
  }

  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover, .nav-links a:active {
    color: #fff;
    background: rgba(230,0,0,0.08);
  }

  /* Dim overlay iza panela */
  .nav-links::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.35s ease;
  }
  .nav-links.open::before { opacity: 1; }

  /* Scrolled na mobitelu */
  .navbar.scrolled .nav-links {
    opacity: 1;
    pointer-events: none;
    transform: translateX(100%);
  }
  .navbar.scrolled .nav-links.open {
    transform: translateX(0);
    pointer-events: auto;
    /* poništi desktop dropdown stil */
    position: fixed;
    top: 0; right: 0;
    width: min(75vw, 280px);
    height: 100vh;
    flex-direction: column;
    border-radius: 0;
    min-width: unset;
    box-shadow: none;
  }

  /* Hero */
  .hero { padding-top: 3.75rem; min-height: 100svh; }
  .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .hero-content { padding: 0 1.25rem; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    margin-bottom: 2rem;
  }
  .stat h3 { font-size: 1.6rem; }
  .stat p { font-size: 0.8rem; }

  /* Sections */
  .section { padding: 4rem 0; }
  .container { padding: 0 1rem; }
  h2.section-title { font-size: 1.8rem; }
  p.section-desc { font-size: 1rem; margin-bottom: 2rem; }

  /* Car catalog */
  .catalog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .card-image-wrap { height: 200px; }
  .price-badge { font-size: 1rem; padding: 0.4rem 0.85rem; }

  /* Contact */
  .contact-methods { gap: 1.25rem; }
  .method { gap: 0.75rem; }
  .icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .contact-map iframe { height: 240px; border-radius: 16px; }

  /* Footer */
  .footer-content { flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
  .footer-links { flex-direction: column; gap: 0.75rem; align-items: center; }
  .footer-logo { height: 65px; }

  /* Modal */
  .modal-grid { grid-template-columns: 1fr; }
  .modal-content { max-height: 95vh; border-radius: 16px; }
  .modal-gallery > img { max-height: 220px; min-height: 160px; }
  .modal-thumbnails { gap: 0.35rem; }
  .modal-thumbnails img { width: 52px; height: 38px; }
  .modal-details { padding: 1.25rem; }
  h2#modalTitle { font-size: 1.2rem; }
  #modalPrice { font-size: 1.5rem; }
  .modal-specs-list { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive: Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-stats { gap: 1rem 2rem; }
  .stat h3 { font-size: 1.4rem; }
  .btn-primary { padding: 0.8rem 2rem; font-size: 1rem; }
}

/* Modal (Popup) */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background: #141414;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s ease;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: rotate(90deg);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-gallery {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

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

.modal-gallery > img {
  width: 100%;
  height: auto;
  max-height: 500px;
  min-height: 300px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-sm);
}

.modal-details {
  padding: 3rem;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .modal-details {
    padding: 2rem;
  }
  .modal-gallery > img {
    max-height: 350px;
    min-height: 250px;
  }
}

#modalTitle {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

#modalPrice {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  font-weight: 800;
  margin-bottom: 2rem;
}

.modal-specs-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.modal-spec-item {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.modal-spec-item strong {
  color: var(--text-primary);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.modal-description {
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.discreet-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  padding: 0.75rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.discreet-link:hover {
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.1);
}

/* Modifikacija kartice da bude klikabilna */
.car-card {
  cursor: pointer;
}

/* Modal Thumbnails */
.modal-thumbnails {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding: 0.5rem 2rem;
}

/* Oprema ispod galerije */
.modal-equipment-section {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border-color);
  margin-top: 0.5rem;
}

.modal-equipment {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.modal-thumbnails .thumbnail {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.modal-thumbnails .thumbnail:hover {
  opacity: 1;
}

.modal-thumbnails .thumbnail.active {
  border-color: var(--accent-cyan);
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  user-select: none;
}

.lightbox-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

#modalImage {
  cursor: zoom-in;
}
