html {
  scroll-behavior: smooth;
}
:root {
  --olive: #556b2f;
  --dark: #111;
  --light: #f5f6f7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: #111;
}



/* BUTTON */
.btn {
  background: var(--olive);
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn.large {
  padding: 16px 36px;
  font-size: 18px;
}

/* HERO */
.hero {
  height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)),
    url("images/hero-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
  color: #fff;
}

.hero-content h1 {
  font-size: 54px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 30px;
}

/* ================= KATEGORIE ================= */

#categories {
  padding: 140px 8%;
  text-align: center;
}

#categories h2 {
  font-size: 42px;
  margin-bottom: 80px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px; /* DUŻE ODSTĘPY */
  max-width: 1200px;
  margin: 0 auto;
}

.category-card {
  background: #0f1115;
  color: #fff;
  text-decoration: none;
  border-radius: 22px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,.6);
}

.category-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.category-card h3 {
  font-size: 22px;
  margin: 24px 24px 10px;
}

.category-card p {
  margin: 0 24px 30px;
  opacity: .75;
}

/* MOBILE */
@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.category-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
}

.category-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* OVERLAY Z TEKSTEM */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px 24px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.0)
  );
}

.card-overlay h3 {
  font-size: 24px;
  margin: 0 0 10px;
  line-height: 1.25;
}

.card-overlay p {
  margin: 0;
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.4;
}
/* FEATURED */
.featured {
  padding: 160px 8%;
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
    url("images/adventure.jpg") center/cover no-repeat;
  color: #fff;
}

.featured-text {
  max-width: 600px;
}

/* CONTACT */
.contact {
  padding: 120px 8%;
  text-align: center;
  background: var(--dark);
  color: #fff;
}

.contact h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {

  .topbar {
    padding: 0 20px;
    height: 70px;
  }

  .logo {
    height: 40px;
  }

  .topbar nav a {
    margin-left: 16px;
    font-size: 14px;
  }

  .hero {
    padding: 0 6%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn.large {
    width: 100%;
    padding: 16px;
    font-size: 17px;
  }

  .categories {
    padding: 100px 6%;
  }

  .categories h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .category-card img {
    height: 200px;
  }

  .featured {
    padding: 120px 6%;
  }

  .contact {
    padding: 90px 6%;
  }
}

/* =========================
   ANIMACJE – FADE / SLIDE
========================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   SPECYFIKACJA – ADVENTURE
========================= */

.specs-section {
  padding: 140px 8%;
  background: #fff;
  text-align: center;
}

.specs-section h2 {
  font-size: 42px;
  margin-bottom: 80px;
}

.specs-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.spec-item {
  background: #f5f6f7;
  padding: 30px;
  border-radius: 14px;
  text-align: left;
}

.spec-item span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 10px;
}

.spec-item strong {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

/* MOBILE */
@media (max-width: 768px) {
  .specs-section {
    padding: 100px 6%;
  }

  .specs-section h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }

  .spec-item strong {
    font-size: 18px;
  }
}

/* =========================
   LIGHTBOX – FULLSCREEN
========================= */

.gallery {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.lightbox.active {
  display: flex;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transform: translateY(-50%);
}

.lightbox .prev {
  left: 40px;
}

.lightbox .next {
  right: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
  .lightbox .nav {
    font-size: 36px;
  }
}
/* ===== GALERIA ===== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* ===== LIGHTBOX ===== */

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

#lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/* =========================
   IMAGE ZOOM – SAFE
========================= */

#imgZoom {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  display: none;
  z-index: 9999;
}

#imgZoom.active {
  display: block;
}

#imgZoom img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 14px;
}

#imgZoomClose {
  position: fixed;
  top: 30px;
  right: 40px;
  font-size: 44px;
  color: #fff;
  cursor: pointer;
}
/* =========================
   GALERIA – MINIATURY
========================= */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.zoom-img {
  width: 100%;
  max-width: 100%;
  height: 320px;              /* KONTROLA WIELKOŚCI */
  object-fit: cover;          /* PROFESJONALNY LOOK */
  border-radius: 16px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}

.zoom-img:hover {
  transform: scale(1.03);
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}
/* =========================
   GALERIA – SEKCJA
========================= */

#gallery {
  padding: 140px 6%;
  background: #fff;
}

#gallery h2 {
  font-size: 44px;
  margin-bottom: 90px;
}

@media (max-width: 768px) {
  #gallery {
    padding: 100px 6%;
  }

  #gallery h2 {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .gallery {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .zoom-img {
    height: 220px;   /* MNIEJSZE NA TELEFONIE */
  }
}
/* === KATEGORIE – STYL PREMIUM === */

#categories {
  padding: 120px 6vw;
  background: linear-gradient(
    to bottom,
    #0e0f11 0%,
    #121417 100%
  );
}

#categories h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 60px;
  text-align: center;
}

.category-grid,
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* KARTA */
.category-card {
  position: relative;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: #000;
  transition: transform .5s ease, box-shadow .5s ease;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

/* OVERLAY */
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2),
    rgba(0,0,0,.05)
  );
  z-index: 1;
}

/* TEKST */
.category-card h3,
.category-card p {
  position: absolute;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.category-card h3 {
  bottom: 70px;
  font-size: 22px;
  font-weight: 600;
}

.category-card p {
  bottom: 32px;
  font-size: 15px;
  opacity: .85;
}

/* HOVER */
.category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
}

.category-card:hover img {
  transform: scale(1.08);
}
/* === ABOUT / DLACZEGO === */

.about-section {
  padding: 140px 6vw 160px;
  background: linear-gradient(
    to bottom,
    #0d0f12 0%,
    #111318 60%,
    #121417 100%
  );
  text-align: center;
  color: #ffffff; /* <<< TO JEST KLUCZ */
}

.about-section h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin-bottom: 30px;
}

.about-section p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.85;
}

/* DELIKATNY SEPARATOR W DÓŁ */
.about-section::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  margin: 80px auto 0;
}
/* === GALERIE – PEŁNA SEKCJA === */

.gallery-section {
  padding: 140px 6vw;
  background: linear-gradient(
    to bottom,
    #0e0f11 0%,
    #111318 100%
  );
}

/* siatka galerii */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
}

/* zdjęcia – BEZ powiększania */
.zoom-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  cursor: pointer;
}
.section-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-header h2 {
  font-size: 44px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  opacity: 0.75;
}
#tundra,
#ranger-przedlift {
  color: #ffffff;
}

#tundra .section-header p,
#ranger-przedlift .section-header p {
  opacity: 0.8;
}
.section.dark {
  color: #fff;
}

/* ===== HERO HARDTOP – JAWNE TŁO + BLUR ===== */

.hero-hardtop {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* TŁO */
.hero-hardtop .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.12);
  z-index: 1;
}

/* GRADIENT DLA CZYTELNOŚCI */
.hero-hardtop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.8)
  );
  z-index: 2;
}

/* TREŚĆ */
.hero-hardtop .hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: #fff;
}

.hero-hardtop h1 {
  font-size: 56px;
  margin-bottom: 12px;
}

.hero-hardtop p {
  font-size: 18px;
  opacity: 0.85;
}
.spec-btn-wrap {
  margin: 80px 0;   /* równa odległość od sekcji powyżej i poniżej */
  text-align: center;
}

.topbar nav a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity .2s ease;
}

.topbar nav a:hover {
  opacity: 1;
}

.topbar nav a.btn {
  color: #ffffff;
}
.topbar nav a,
.lang-switch a {
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
}
.lang-switch,
.lang-switch-fixed {
  gap: 12px; /* ← ODSTĘP MIĘDZY JĘZYKAMI */
}
/* ================= MODELS – COLOR UNIFICATION ================= */

/* całe sekcje models */
#models.section.dark {
  background: #0f1115; /* to samo co reszta dark */
}

/* nagłówki modeli */
#models .section-header h2 {
  color: #ffffff;
}

/* opisy pod nagłówkami */
#models .section-header p {
  color: rgba(255,255,255,0.75);
}

/* odstępy między blokami modeli */
#models .section-header {
  margin-top: 120px;
}

/* pierwszy nagłówek bez górnego marginesu */
#models .section-header:first-child {
  margin-top: 0;
}

/* galerie na tym samym tle */
#models .gallery {
  background: transparent;
}
/* ===== FIX GAP BETWEEN ABOUT & MODELS ===== */

/* usuń dolny margines z about */
.about-section {
  margin-bottom: 0;
  padding-bottom: 120px; /* zachowujemy oddech wizualny */
}

/* usuń górny margines z models */
#models {
  margin-top: 0;
}
#models.section.dark {
  padding-top: 120px;
}
.specs {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.specs.active {
  max-height: 800px; /* wystarczająco dużo */
  opacity: 1;
}
/* ===== PRODUCT GALLERY ===== */
.product-gallery {
  max-width: 1100px;
  margin: 60px auto;
}

.gallery-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-thumbs {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-thumbs img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.gallery-thumbs img:hover {
  opacity: 1;
}

.gallery-thumbs img.active {
  opacity: 1;
  border-color: #8fa96a; /* akcent TO CROSSLAND */
}

/* mobile */
@media (max-width: 768px) {
  .gallery-main img {
    height: 320px;
  }

  .gallery-thumbs img {
    width: 90px;
    height: 60px;
  }
}
/* ===== FIX GAP AFTER SUMMIT ===== */

/* usuń dolny margines ostatniej galerii */
.product-gallery:last-of-type {
  margin-bottom: 0;
}

/* kontroluj górę sekcji konfiguracji */
.contact {
  margin-top: 0;
  padding-top: 120px; /* zachowujemy oddech, ale bez dziury */
}
/* ================= MODEL THEMES ================= */

.model-theme {
  padding: 120px 0;
}

/* ALPINE – chłodny, minimalistyczny */
.alpine-theme {
  background: linear-gradient(180deg, #0f1412 0%, #0b0f0d 100%);
}

/* RIDGELINE – uniwersalny outdoor */
.ridgeline-theme {
  background: linear-gradient(180deg, #141611 0%, #0e100c 100%);
}

/* HIGHLAND – komfort / travel */
.highland-theme {
  background: linear-gradient(180deg, #171a15 0%, #0f120e 100%);
}

/* SUMMIT – ekspedycyjny premium */
.summit-theme {
  background: linear-gradient(180deg, #1a1f1d 0%, #0c0f0f 100%);
}

/* wspólne elementy */
.model-theme h2,
.model-theme h3,
.model-theme p {
  color: #f2f2f2;
}

.model-theme .btn {
  background: #8fa96a;
}

.model-theme .specs {
  background: rgba(255,255,255,0.06);
}

/* delikatne oddzielenie modeli */
.model-theme + .model-theme {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.specs-section {
  max-width: 1100px;
  margin: 80px auto 0;
  text-align: center;
}

.specs-header {
  margin-bottom: 30px;
}

.specs-header h3 {
  margin-bottom: 20px;
}
/* ================= GLOBAL DARK FIX ================= */

body {
  background: #0e1110;
  color: #eaeaea;
}

/* sekcje główne */
section,
.specs-section,
.product-gallery {
  background: transparent;
}

/* featured / hero */
.featured {
  color: #fff;
}

/* specyfikacja */
.specs-section {
  background: #0e1110;
}

.specs-header h3 {
  color: #ffffff;
}

.specs {
  background: rgba(255,255,255,0.06);
  color: #f2f2f2;
}

/* lista spec */
.specs li {
  color: #f2f2f2;
}

/* galerie */
.product-gallery {
  background: #0e1110;
}

/* teksty nagłówków */
h1, h2, h3 {
  color: #ffffff;
}

/* przyciski */
.btn {
  background: #8fa96a;
  color: #111;
}

/* zabezpieczenie przed białymi sekcjami */
section:not(.featured) {
  background-color: transparent !important;
}
/* ================= CONTACT FORM ================= */

.contact-section {
  padding: 140px 8%;
  text-align: center;
  background: #0e1110;
}

.contact-section h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.contact-section p {
  max-width: 600px;
  margin: 0 auto 50px;
  opacity: 0.85;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}

.contact-form select {
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #8fa96a;
  background: rgba(255,255,255,0.08);
}

.form-group.checkbox {
  text-align: left;
  font-size: 14px;
  opacity: 0.85;
}

.form-group.checkbox input {
  margin-right: 8px;
}

.contact-form button {
  margin-top: 10px;
}
/* ===== FIX SELECT DROPDOWN VISIBILITY ===== */

/* sam select */
.contact-form select {
  background-color: rgba(255,255,255,0.05);
  color: #ffffff;
}

/* lista opcji (dropdown) */
.contact-form select option {
  background-color: #0e1110;
  color: #ffffff;
}

/* hover / aktywna opcja (Windows) */
.contact-form select option:hover,
.contact-form select option:checked {
  background-color: #8fa96a;
  color: #111;
}
/* ===== TOPBAR CONTACT BUTTON FIX ===== */

.topbar .contact-btn {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.topbar .contact-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.35);
}

/* ===== CONTACT BUTTON – CLEAN VERSION ===== */

.topbar .contact-btn {
  background: transparent;
  border: none;
  color: #ffffff;
}

.topbar .contact-btn:hover {
  background: rgba(255,255,255,0.12);
}
.logo {
  height: 100px;
  width: auto;
  display: block;
}
/* ===== GALLERY ARROWS ===== */

.gallery-main {
  position: relative;
}

.gallery-main img {
  transition: opacity 0.3s ease;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
}

.gallery-arrow:hover {
  background: rgba(0,0,0,0.7);
}

.gallery-arrow.left {
  left: 20px;
}

.gallery-arrow.right {
  right: 20px;
}

@media (max-width:768px) {
  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}
/* ===== UNIFIED DARK BACKGROUND FOR TENTS PAGE ===== */

body {
  background: #0f1115;
}

section {
  background: transparent !important;
}

/* subtelne oddzielenie sekcji */
.section-divider {
  height: 1px;
  width: 80%;
  margin: 80px auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
}
/* ================= TENTS PAGE DEPTH FIX ================= */

.tents-page {
  background: linear-gradient(
    to bottom,
    #0b0e13,
    #121720 40%,
    #0f141c
  );
}

/* sekcje namiotów */
.tents-page section {
  padding: 120px 8%;
}

/* delikatne oddzielenie sekcji */
.tents-page section:not(.hero) {
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* większe nagłówki żeby strona nie była "pusta" */
.tents-page h2 {
  font-size: 44px;
  margin-bottom: 40px;
}

/* więcej przestrzeni między elementami */
.tents-page .product-gallery {
  margin: 100px auto;
}
/* ================= CONTENT TYPOGRAPHY FIX ================= */

.section {
  max-width: 1000px;
  margin: 120px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.section h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.section ul {
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 0;
  list-style: none;
}

.section ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #8fa96a;
}
section {
  border-top: 1px solid rgba(255,255,255,0.05);
}
/* ================= EXPEDITION ATMOSPHERE ================= */

body {
  background:
    radial-gradient(ellipse at 50% 20%, rgba(120,140,100,0.08), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(40,60,80,0.15), transparent 60%),
    linear-gradient(to bottom, #0b0f14 0%, #10161d 50%, #0c1117 100%);
}

/* bardzo subtelna tekstura klimatu */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.02), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* sekcje lekko unoszą się nad tłem */
.section {
  position: relative;
  z-index: 1;
}
/* ================= GLOBAL TOPBAR ================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 0 60px;

 
  align-items: center;
  justify-content: space-between;

  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);

  z-index: 1000;
}

/* żeby treść nie wchodziła pod pasek */
body {
  padding-top: 90px;
}

/* logo */
.logo {
  height: 70px;
  width: auto;
}

/* środek menu */
.nav-center {
  display: flex;
  gap: 40px;
}

.nav-center a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-center a:hover {
  color: #8fa96a;
}

/* prawa strona */
.nav-right a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-right a:hover {
  color: #8fa96a;
}
/* ================= FIX: miniatury bez czarnego tła ================= */

.product-gallery {
  background: transparent !important;
}

.gallery-main {
  background: transparent !important;
}

.gallery-thumbs {
  background: transparent !important;
}

.gallery-thumbs img {
  background: transparent !important;
  border-radius: 8px;
  display: block;
}
/* ================= PHONE FIELD ================= */

.phone-group {
  text-align: left;
}

.phone-row {
  display: flex;
  gap: 10px;
}

.phone-row select {
  width: 120px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 15px;
}

.phone-row input {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 15px;
}

.country-display {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
/* ================= CUSTOM COUNTRY SELECT ================= */

.custom-select {
  position: relative;
  width: 130px;
  font-size: 15px;
}

.select-selected {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.select-selected img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.select-items {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: none;
  z-index: 999;
  max-height: 220px;
  overflow-y: auto;
}

.select-items div {
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.select-items div:hover {
  background: rgba(255,255,255,0.08);
}

.select-items img {
  width: 20px;
  height: 14px;
  object-fit: cover;
}

.custom-select.open .select-items {
  display: block;
}
.product-gallery {
  max-width: 1100px;
  margin: 60px auto;
}

.gallery-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-thumbs {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-thumbs img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.65;
  transition: 0.25s ease;
}

.gallery-thumbs img.active {
  opacity: 1;
  outline: 2px solid #8fa96a;
}
/* ================= GALLERY ARROWS ================= */

.gallery-main {
  position: relative;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 26px;
  font-weight: 600;

  background: rgba(0,0,0,0.55);
  color: #fff;
  backdrop-filter: blur(6px);

  transition: 0.25s ease;
  z-index: 5;
}

.gallery-arrow:hover {
  background: rgba(143,169,106,0.9);
}

.gallery-arrow.prev {
  left: 14px;
}

.gallery-arrow.next {
  right: 14px;
}
/* ================= TOPBAR UNIWERSALNY ================= */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.topbar-inner {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 64px;
  display: block;
}

/* NAV */

.main-nav {
  display: flex;
  gap: 34px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  opacity: 0.9;
  transition: 0.25s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: #8fa96a;
}

/* LANG */

.lang-switch {
  display: flex;
  gap: 10px;
}

.lang-switch a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.7;
}

.lang-switch a.active {
  opacity: 1;
  color: #8fa96a;
}

/* OFFSET strony pod fixed topbar */

body {
  padding-top: 80px;
}
/* ================= TOPBAR LAYOUT ================= */

.topbar-inner {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* LOGO LEWA */

.logo-wrap {
  justify-self: start;
}

.logo {
  height: 64px;
  display: block;
}

/* MENU ŚRODEK */

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  opacity: 0.9;
  transition: 0.25s ease;
}

.main-nav a:hover {
  opacity: 1;
  color: #8fa96a;
}

/* JĘZYKI PRAWA */

.lang-switch {
  justify-self: end;
  display: flex;
  gap: 10px;
}

.lang-switch a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.7;
}

.lang-switch a.active {
  opacity: 1;
  color: #8fa96a;
}
/* ===== TOPBAR HARD FIX ===== */

.topbar-inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* logo lewa */

.logo-wrap {
  justify-self: start !important;
}

/* menu idealny środek */

.main-nav {
  justify-self: center !important;
  display: flex !important;
  justify-content: center;
  gap: 34px;
}

/* języki prawa */

.lang-switch {
  justify-self: end !important;
  display: flex;
  gap: 12px;
}
/* HERO BLUR BACKGROUND */

.hero{
  position:relative;
  min-height:95vh;
  display:flex;
  align-items:center;
  padding-left:8%;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;

  background:
  linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.75)),
  url("images/hero-bg.jpg") center/cover no-repeat;

  filter:blur(6px);
  transform:scale(1.1);

  z-index:0;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
}
.hero{
  position:relative;
  min-height:95vh;
  display:flex;
  align-items:center;
  padding-left:8%;
  overflow:hidden;
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:600px;
}
/* HERO NAMIOTY */

.tents-hero{
background:
linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.7)),
url("images/cat-tent.jpg") center/cover no-repeat !important;
}
/* FULLSCREEN */

#fullscreen-view{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.95);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

#fullscreen-view.active{
display:flex;
}

#fullscreen-image{
max-width:90%;
max-height:90%;
}

#fullscreen-close{
position:absolute;
top:25px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}
/* FULLSCREEN STRZAŁKI */

.fullscreen-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:50px;
color:white;
cursor:pointer;
user-select:none;
padding:10px 20px;
}

.fullscreen-arrow.left{
left:30px;
}

.fullscreen-arrow.right{
right:30px;
}
/* HERO ROZMYTE TŁO */

.hero.reveal.active{
position:relative;
overflow:hidden;
}

.hero.reveal.active::before{

content:"";
position:absolute;
inset:0;

background:
linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.65)),
url("images/hero-bg2.jpg") center/cover no-repeat;

filter:blur(6px);
transform:scale(1.1);

z-index:0;

}

.hero.reveal.active .hero-content{
position:relative;
z-index:2;
}
/* ================= MOBILE ================= */

@media (max-width: 900px){

/* TOPBAR */

.topbar-inner{
flex-direction:column;
gap:15px;
}

.main-nav{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.logo{
height:45px;
}

/* HERO */

.hero{
padding:120px 20px;
text-align:center;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

/* GALERIA */

.gallery-main img{
width:100%;
height:auto;
}

.gallery-thumbs{
flex-wrap:wrap;
justify-content:center;
}

/* PRODUKTY */

.product-gallery{
padding:0 10px;
}

/* SPECYFIKACJA */

.specs-grid{
grid-template-columns:1fr;
}

/* FORMULARZ */

.contact-form{
padding:0 10px;
}

.phone-row{
flex-direction:column;
gap:10px;
}

/* MODELE */

.model-nav{
flex-direction:column;
gap:12px;
align-items:center;
}

}

/* ================= SMALL PHONE ================= */

@media (max-width: 600px){

.hero h1{
font-size:28px;
}

.section{
padding:60px 20px;
}

.gallery-thumbs img{
width:70px;
}

.btn.large{
padding:12px 20px;
font-size:14px;
}

}
/* HARDTOP FEATURES */

.feature-list{
display:flex;
gap:60px;
justify-content:center;
margin-top:40px;
flex-wrap:wrap;
}

.feature-list ul{
list-style:none;
padding:0;
margin:0;
max-width:400px;
}

.feature-list li{
margin-bottom:12px;
font-size:16px;
line-height:1.5;
position:relative;
padding-left:18px;
}

.feature-list li::before{
content:"•";
position:absolute;
left:0;
color:#9cc56b;
font-weight:bold;
}
/* HARDTOP SPECYFIKACJA */

.hardtop-specs{
max-width:900px;
margin:auto;
}

.hardtop-specs ul{
list-style:none;
padding:0;
margin-top:30px;
}

.hardtop-specs li{
padding:12px 0;
border-bottom:1px solid rgba(255,255,255,0.1);
font-size:16px;
}
/* KOMPAKTOWE SEKCJE HARDTOP */

/* KOMPAKTOWE SEKCJE HARDTOP */

.compact-section{
padding-top:20px !important;
padding-bottom:20px !important;
}

.compact-section .section-header{
margin-bottom:15px;
}
/* FULLSCREEN */

#fullscreen-view{
position:fixed;
inset:0;
background:rgba(0,0,0,.95);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

#fullscreen-view.active{
display:flex;
}

#fullscreen-image{
max-width:90vw;
max-height:90vh;
}

#fullscreen-close{
position:absolute;
top:30px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

.fullscreen-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:50px;
color:white;
cursor:pointer;
user-select:none;
padding:10px 20px;
}

.fullscreen-arrow.left{
left:30px;
}

.fullscreen-arrow.right{
right:30px;
}
@media (max-width:700px){

.hero{
padding:120px 20px;
text-align:center;
}

.hero h1{
font-size:32px;
}

}

/* SEKCJA VIDEO */

.video-section{
padding:120px 6vw;
text-align:center;
}

.video-wrapper{
position:relative;
padding-bottom:56.25%;
height:0;
max-width:1000px;
margin:auto;
}

.video-wrapper iframe{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border-radius:16px;
}