/* =========================================================
   LensARTed – Główny arkusz stylów
   Spójny layout dla index / galerie / sklep / kontakt
   ========================================================= */

/* ------------------------------
   Reset i podstawy
------------------------------ */
* {
  box-sizing: border-box;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #FAFAFA;
  color: #2F2F2F;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}


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

.thumb {
  width: 100%;
  aspect-ratio: 3 / 2;   /* albo 4/3, 1/1 */
  overflow: hidden;
}

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

/* ------------------------------
   Kontener ogólny
------------------------------ */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* =========================================================
   NAGŁÓWEK (logo – menu – flagi)
========================================================= */
/*header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

header nav {
  flex: 1;
  min-width: 0;   
}

header .logo {
  margin-right: 32px;
}*/
/* logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* === Logo size – stałe i przewidywalne === */
.logo { min-height: 64px; display: flex; align-items: center; }
.logo-img {
  height: 80px;          /* stała wysokość logo */
  max-height: none;      /* nadpisuje ewentualne wcześniejsze ograniczenia */
  width: auto;           /* proporcje */
  display: block;
}
@media (min-width: 1200px) {
  .logo, .logo-img { height: 72px; }
}

nav {
  flex: 1 1 auto;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li a {
  text-decoration: none;
  color: #2F2F2F;
  font-weight: 600;
  transition: color 0.3s;
}
.menu li a:hover {
  color: #FF4F00;
}
.menu li a.active {
  color: #FF4F00;      /* brand accent */
  font-weight: 700;    /* subtelny akcent */
}

/* języki */
.language-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.language-switcher img {
  width: 30px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.language-switcher img:hover {
  transform: scale(1.1);
  border-color: #FF4F00;
}

/* ------------------------------
   MOBILE HEADER
------------------------------ */
@media (max-width: 768px) {
  header .container {
    justify-content: center;
  }
  .logo-img {
    max-height: 64px;
  }
  nav {
    order: 3;
    width: 100%;
  }
  .menu {
    flex-wrap: wrap;
    gap: 14px;
  }
  .language-switcher {
    order: 2;
  }
}

/* =========================================================
   HERO / WPROWADZENIE
========================================================= */
.hero {
  background-color: #eee;
  padding: 60px 0;
  text-align: center;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  margin: 10px 0 12px;
}
.hero p {
  font-size: 1.15rem;
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* przyciski */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #2F2F2F;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s, transform 0.2s;
}
.btn:hover {
  background-color: #FF4F00;
}
.btn:active {
  transform: scale(0.98);
}
.btn.btn-secondary {
  background-color: #fff;
  color: #2F2F2F;
  border: 1px solid #2F2F2F;
}
.btn.btn-secondary:hover {
  background-color: #2F2F2F;
  color: #fff;
}

/* =========================================================
   SKRÓTY / KAFELKI
========================================================= */
.shortcuts .grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.tile {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 250px;
  min-height: 280px;
  padding: 10px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.tile:hover {
  transform: scale(1.03);
}
.tile img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.tile p {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.1rem;
}

/* =========================================================
   SEKCJE OPISOWE
========================================================= */
.about, .photo-offer, .shop, .shop-cta {
  text-align: center;
}
.about p, .photo-offer p {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.photo-offer {
  background-color: #f9f9f9;
  padding: 60px 0;
}
.photo-offer h2 {
  margin-bottom: 20px;
}

/* =========================================================
   SKLEP
========================================================= */
.shop {
  padding: 40px 0;
}
.shop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 30px;
}
.shop-item {
  max-width: 300px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
}
.shop-item img {
  border-radius: 8px;
  margin-bottom: 15px;
}
.shop-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.shop-banner {
  text-align: center;
  font-size: 1.2rem;
  margin: 40px 0 0;
  color: #333;
}
.shop-banner a {
  color: #ff4f00;
  font-weight: bold;
  text-decoration: none;
}
.shop-banner a:hover {
  text-decoration: underline;
}

/* =========================================================
   GALERIE (Swiper + Lightbox)
========================================================= */
.swiper {
  padding: 60px 0;
}
.swiper-slide {
  width: 300px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  overflow: hidden;
  position: relative;
}
.swiper-button-disabled {
  opacity: 0.4 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
.img-wrapper {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  position: relative;
}
.img-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* nagłówek galerii */
.gallery-header {
  background-color: #f9f9f9;
  padding: 40px 0;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}
.gallery-header h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.gallery-header p {
  font-size: 1.1rem;
  color: #555;
}

/* =========================================================
   STOPKA
========================================================= */
footer {
  background-color: #fff;
  border-top: 1px solid #ddd;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #9D9D9D;
}

/* =========================================================
   RESPONSYWNOŚĆ
========================================================= */
@media (max-width: 992px) {
  .tile {
    width: 46%;
    min-width: 220px;
  }
}
@media (max-width: 480px) {
  .tile {
    width: 100%;
    min-width: 0;
  }
}
/* =========================================================
   Switcher nad wszystkimi elementami
========================================================= */
.language-switcher { position: relative; z-index: 5; }
.language-switcher img { pointer-events: auto; }

/*====================================================
STYLE DO RECENZJI SPRZĘTOWYCH
====================================================== */

/* =========================================================
   LensARTed – RECENZJE / TESTY (sigma_135.html)
   Uwaga: styluje istniejące klasy z pliku recenzji:
   .wrap, .kicker, .meta, .pill, section, .gallery, .lightbox, .btn...
========================================================= */

/* papierowe tło dla recenzji */
body.review{
  background-color: #F9F9F9; /* papier */
}

/* wrapper recenzji (na Twojej stronie raczej nie używasz .wrap, więc jest bezpiecznie) */
.wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 18px 60px;
  color: #2F2F2F;
}

/* nagłówek recenzji (ten wewnątrz .wrap) */
.wrap > header{
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
  background: transparent;
}

/* typografia */
.wrap h1,
.wrap h2{
  font-family: 'Playfair Display', serif;
  color: #2F2F2F;
}

.kicker{
  color: #555;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}

.lead{
  color: #555;
  font-size: 16px;
  margin: 0;
}

/* meta pills */
.meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
  color: #555;
  font-size: 13px;
  text-align: center;
}

.pill{
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
}

/* sekcje jako “karty” w stylu LensARTed */
.wrap section{
  margin-top: 22px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.wrap p{ margin: 10px 0; color: #2F2F2F; }
.muted{ color: #555; }

.wrap h3{
  margin: 18px 0 8px;
  font-size: 16px;
  color: #2F2F2F;
}

/* callout w Twoim akcencie */
.callout{
  border-left: 3px solid #FF4F00;
  padding: 10px 12px;
  background: rgba(255,79,0,0.08);
  border-radius: 10px;
  color: #2F2F2F;
}

/* galeria – spójnie, jasno */
.gallery{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 720px){
  .gallery{ grid-template-columns: repeat(3, 1fr); }
}

.wrap figure{
  margin: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* klikane miniatury */
.img-btn{
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  width: 100%;
  cursor: zoom-in;
}

.wrap figure img{
  width: 100%;
  aspect-ratio: 4 / 5; /* zachowujesz swój look 4:5 */
  object-fit: cover;
  display: block;
  transform: scale(1.0);
  transition: transform .2s ease;
}
.img-btn:hover img{ transform: scale(1.02); }

.wrap figcaption{
  padding: 10px 10px 12px;
  color: #555;
  font-size: 13px;
  border-top: 1px solid #e0e0e0;
}

/* lightbox – ciemny (lepszy do zdjęć) */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 9999;
}
.lightbox.open{ display: flex; }

.lb-inner{
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  display: grid;
  gap: 10px;
}

.lb-img{
  max-width: min(1200px, 96vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 60px rgba(0,0,0,0.6);
  justify-self: center;
  align-self: center;
}

.lb-cap{
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  text-align: center;
}

.lb-actions{
  display:flex;
  justify-content: center;
  gap: 10px;
}

/* WAŻNE: nie ruszamy globalnego .btn dla strony (masz go w LensARTed),
   nadpisujemy tylko przyciski wewnątrz lightboxa */
.lightbox .btn{
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}
.lightbox .btn:hover{ background: rgba(255,255,255,0.16); }

/* fokus */
.img-btn:focus-visible,
.lightbox .btn:focus-visible{
  outline: 2px solid #FF4F00;
  outline-offset: 3px;
}

/* wstawka “gear-insert” (jeśli używasz) – poziome 16:9 */
.gear-insert .gear-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
@media (min-width: 860px){
  .gear-insert .gear-grid{ grid-template-columns: 1fr 1fr; }
}
.gear-insert figure img{
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.gear-insert .muted-note{
  margin-top: 10px;
  color: #555;
  font-size: 13px;
}
/* === FIX: Swiper w galeriach (slidesPerView: 'auto') === */
  body.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  body.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  /* ===== Language switcher (globe dropdown) ===== */
.lang {
  position: relative;
  display: inline-block;
}

.lang__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .6rem;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font: inherit;
}

.lang__icon {
  font-size: 1rem;
}

.lang__menu {
  position: absolute;
  right: 0;
  top: calc(100% + .5rem);
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  padding: .4rem;
  display: none;
  z-index: 1000;
}

.lang.is-open .lang__menu {
  display: block;
}

.lang__item {
  display: block;
  padding: .5rem .6rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}

.lang__item:hover,
.lang__item:focus {
  background: rgba(0,0,0,.06);
  outline: none;
}

.lang__item[aria-current="true"] {
  background: rgba(196,143,90,.18); /* Twój kolor brand */
}

/* HEADER: trzy elementy w jednej linii */
/*header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap; 
}*/

/* NAV zabiera dostępne miejsce */
/*header nav {
  flex: 1;
  min-width: 0; 
}*/

/* Menu w jednej linii, może się przewijać */
/*header .menu {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;          
  overflow-x: auto;
  white-space: nowrap;
  justify-content: center;
  scrollbar-width: none; 
}*/
/*header .menu::-webkit-scrollbar { display: none; } /* Chrome/Safari */*/

/* Przełącznik języka nie kurczy się i siedzi po prawej */
.lang {
  flex: 0 0 auto;
  margin-left: auto;
}
.lang__btn { white-space: nowrap; }


/* === HEADER (GRID – stabilne) === */
header .container{
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | menu | lang */
  align-items: center;
  gap: 24px;
}

/* logo niech się nie kurczy */
header .logo{ 
  justify-self: start;
}

/* nav ma się mieścić i nie wypychać */
header nav{
  min-width: 0;
}

/* menu centrujemy wewnątrz kolumny nav */
header .menu{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
header .menu::-webkit-scrollbar{ display: none; }

/* lang zawsze po prawej */
header .lang{
  justify-self: end;
  white-space: nowrap;
}

    /*-- Lghtbox --*/
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 10, 0.92); /* 👈 kluczowe */
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .lightbox.open {
      display: flex;
    }

    .lb-inner {
      background: #f2f2f2;   /* 👈 neutralna szarość */
      padding: 32px;
      border-radius: 14px;
      max-width: 92vw;
      max-height: 92vh;
      box-shadow: 0 20px 60px rgba(0,0,0,.7);
    }

    .lb-img {
      max-width: 100%;
      max-height: 80vh;
      display: block;
    }
/*--tlo przyciskow nawigacji slajdera--*/
    /* strefa akcji */
    .lb-actions{
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
    }

    /* wspólny styl buttonów */
    .lb-actions .btn{
      appearance: none;
      border: 1px solid rgba(0,0,0,.18);
      background: rgba(255,255,255,.92);
      color: #111;
      padding: 10px 14px;
      border-radius: 999px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(0,0,0,.18);
      transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
    }

    /* hover */
    .lb-actions .btn:hover{
      transform: translateY(-1px);
      background: #fff;
      box-shadow: 0 14px 28px rgba(0,0,0,.22);
    }

    /* focus accessibility */
    .lb-actions .btn:focus-visible{
      outline: 3px solid rgba(196,143,90,.75); /* Twój akcent */
      outline-offset: 2px;
    }

    /* podpis */
    .lb-cap{
      max-width: min(92vw, 980px);
      margin: 14px auto 0;
      padding: 10px 14px;
      color: #f6f6f6;
      background: rgba(0,0,0,.62);
      backdrop-filter: blur(6px);
      border-radius: 12px;
      font-size: 14px;
      line-height: 1.35;
      text-align: center;
      box-shadow: 0 10px 22px rgba(0,0,0,.25);
    }

    /* przyklejone strzałki po bokach */
    #lbPrev, #lbNext{
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 5;
    }

    /* lewa/prawa */
    #lbPrev{ left: 16px; }
    #lbNext{ right: 16px; }

    /* a Close w prawym górnym rogu */
    #lbClose{
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 6;
    }
    .lb-inner{ position: relative; }

    .lb-inner::after{
      content:"";
      position:absolute;
      left:0; right:0; bottom:0;
      height: 140px;
      background: linear-gradient(to top, rgba(0,0,0,.18), rgba(0,0,0,0));
      pointer-events:none;
      border-radius: 14px;
    }
/* ===== 2026-01-25: anty-download (bez psucia reszty strony) ===== */

/* utrudnia long-press / zaznaczanie */
.img-btn, .img-btn * ,
.frame picture, .frame picture * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* NIE globalnie na wszystkie obrazki! */
.img-btn img,
.frame picture img,
.lightbox .lb-img {
  pointer-events: none;
}

/* overlay tylko w swiperze (tam gdzie masz .frame) */
.swiper .frame { position: relative; }
.swiper .frame::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:auto;
}

/* klik nadal idzie w button */
.swiper .img-btn{
  position:relative;
  z-index:2;
}
ex:2;
}
/* watermark pozycjonowanie */
.frame { position: relative; }

.wm{
  position: absolute;
  right: 10px;
  bottom: 12px;
  font-size: .8rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
  pointer-events: none;
}

/* przycisk hamburger do */
.nav-toggle{
  display:none;
  border:1px solid rgba(0,0,0,.15);
  background:#fff;
  border-radius:999px;
  padding:.45rem .7rem;
  cursor:pointer;
  font:inherit;
}

@media (max-width:768px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; margin-left:auto; }
  header nav{ display:none; } /* ukryj desktopowe menu na mobile */
}

/* overlay */
.nav-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  z-index:9998;
}

/* drawer */
.nav-drawer{
  position:fixed;
  top:0; right:0;
  height:100%;
  width:min(86vw, 360px);
  background:#fff;
  z-index:9999;
  transform:translateX(102%);
  transition: transform .22s ease;
  box-shadow: -18px 0 60px rgba(0,0,0,.25);
  display:flex;
  flex-direction:column;
  padding:18px;
}

.nav-drawer.is-open{ transform:translateX(0); }

.nav-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:12px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.nav-drawer__title{ font-weight:700; }

.nav-close{
  border:0;
  background:transparent;
  cursor:pointer;
  font-size:1.2rem;
  padding:8px 10px;
  border-radius:10px;
}

.nav-drawer__nav{
  display:flex;
  flex-direction:column;
  gap:6px;
  padding-top:14px;
}

.nav-drawer__nav a{
  text-decoration:none;
  color:inherit;
  padding:12px 10px;
  border-radius:12px;
}

.nav-drawer__nav a:hover{ background:rgba(0,0,0,.05); }
.nav-drawer__nav a.active{ background:rgba(196,143,90,.18); }

/* =========================================================
   FIX: Drawer ma istnieć tylko na mobile
   (na desktopie ma być całkowicie niewidoczny)
========================================================= */

/* DESKTOP / domyślnie: drawer i overlay niewidoczne */
.nav-overlay,
.nav-drawer {
  display: none !important;
}

/* Hamburger domyślnie ukryty na desktop */
header .nav-toggle {
  display: none !important;
}

/* MOBILE: pokazujemy hamburger i aktywujemy drawer */
@media (max-width: 768px) {
  header nav { display: none !important; }              /* chowamy menu desktop */
  header .nav-toggle { display: inline-flex !important; } /* pokazujemy hamburger */

  .nav-overlay { 
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(3px);
    z-index: 9998;
  }

  .nav-drawer {
    display: flex !important;
    position: fixed;
    top: 0; right: 0;
    height: 100%;
    width: min(86vw, 360px);
    background: #fff;
    z-index: 9999;
    transform: translateX(102%);
    transition: transform .22s ease;
    box-shadow: -18px 0 60px rgba(0,0,0,.25);
    flex-direction: column;
    padding: 18px;
  }

  .nav-drawer.is-open { transform: translateX(0); }
}

.hero-review {
  margin: 20px 0 10px;
}

.hero-review img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* =========================================================
   FIX: overlay ma być widoczny TYLKO gdy hidden = false
========================================================= */

/* domyślnie overlay niewidoczny */
.nav-overlay { display: none !important; }

/* jeśli ma atrybut hidden -> ZAWSZE ukryty (pewniak na wszystkie przeglądarki) */
.nav-overlay[hidden] { display: none !important; }

/* gdy JS zdejmie hidden (hidden=false), overlay się pokazuje */
.nav-overlay:not([hidden]) {
  display: block !important;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(3px);
  z-index: 9998;
}

/* =========================================================
   Baner Cookie
========================================================= */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 16px;
  background: rgba(11, 11, 11, 0.96);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}

.cookie-banner__content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1 1 420px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.cookie-banner__actions button {
  padding: 10px 16px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.cookie-banner__actions button:hover {
  opacity: 0.85;
}

