/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Marmelad&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --bg-sand: #F5F3EF;
  --text-dark: #2B2623;
  --text-muted: #6B635B;
  --accent-gold: #C2A87E;
  --accent-gold-dark: #A38A60;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.3);
  --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);

  --shadow-lux: 0 30px 60px -15px rgba(43, 38, 35, 0.15);
  --shadow-float: 0 15px 35px -5px rgba(43, 38, 35, 0.1);
  --glass-border: 1px solid rgba(255, 255, 255, 0.6);
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

  --paper-bg: #fdfbf7;
  --gold-dark: #8a6d3b;
  --gold-matte: #9e7e4b;
  --text-main: #4a403a;
  --text-on-gold: #f2f0eb;
  --paper-texture-url: url('../img/cream-paper-2.png');
  --hero-bg-color: #E6DBC6;

  --header-height: 3.5rem;
  --x: 40px;
  --m: 10px;
  --icon-size: 4rem;

  --title-color: #b68340;
  --text-color: hsl(220, 8%, 40%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(220, 8%, 6%);
  --body-color: hsl(29, 37%, 89%);
  --sand-color: #b68340;
  --container-color: hsl(220, 8%, 96%);
  --strong-color: hsl(0, 0%, 31%);
  --opacity-color-40: hsla(48, 13%, 93%, .6);
  --opacity-color-30: hsla(0, 0%, 90%, .3);
  --opacity-color-20: hsla(0, 0%, 90%, .2);
  --h3-color: hsl(0, 0%, 31%);
  --gradient--sand-color: linear-gradient(110deg, var(--color-sauna1) 0%, var(--color-sauna2) 38%, var(--color-sauna3) 72%, var(--color-sauna4) 100%);
  --gradient--sand2-color: linear-gradient(110deg, var(--color-sauna4) 0%, var(--color-sauna3) 38%, var(--color-sauna2) 72%, var(--color-sauna1) 100%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  /* --body-font: "Montserrat", sans-serif; */
  --second-font: "Marmelad", cursive;
  --biggest-font-size: 3rem;
  --big-font-size: 1.5rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --h4-font-size: 0.97rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .770rem;

  --color-light-bg: #f9f8f7;
  --color-sauna1: #f3e4cc;
  --color-sauna2: #d7c8ae;
  --color-sauna3: #b2a191;
  --color-sauna4: #8e705f;
  --color-sauna5: #fdfdfc;
  --color-accent: #b68340;
  --color-text-light: #f0e9d5;
  --color-text-dark: #2d2823;
  --color-text-gradient: #5c4a3e;
  --text-title-mobile: 1.38rem;
  --text-title-tablet: 2rem;
  --text-title-desktop: 2.45rem;
  --text-sub-mobile: 1.08rem;
  --text-sub-tablet: 1.2rem;
  --text-sub-desktop: 1.28rem;
  --section-padding-mobile: 30px 0;
  --section-padding-tablet: 44px 0;
  --section-padding-desktop: 60px 0;
  --section-margin-mobile: 0;
  --section-margin-tablet: 0;
  --section-margin-desktop: 0;
  --section-min-height-mobile: 180px;
  --section-min-height-tablet: 220px;
  --section-min-height-desktop: 260px;
  --border-radius: 0;
  --content-max-width: 1200px;
  --content-padding-mobile: 12px;
  --content-padding-tablet: 36px;
  --content-padding-desktop: 80px;


  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 600;
  --font-thin: 100;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


/*========== Responsive typography ==========*/
@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 6rem;
    --large-font-size: 3.4rem;
    --big-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
  }
}

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

picture {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* body {
  font-family: 'Marcellus', serif;
  min-height: 100vh;
  background: radial-gradient(circle at 50% 50%, #FBF9F6, #ECE5DD);
  background-attachment: fixed;
  background-size: cover;
} */


h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
div,
button,
input,
textarea,
select {
  font-family: var(--font-head);
}


html {
  scrollbar-color: rgba(138, 109, 59, 0.5) rgba(189, 141, 58, 0.05);
  /* scrollbar-width: thin; */
  scroll-behavior: auto !important;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
  overflow-x: hidden;
  transition: background-color .4s;
}

input,
button {
  outline: none;
  border: none;
}

h1,
h2,
h3,
h4 {
  font-weight: var(--font-semi-bold);
}

h1 {
  /* font-family: 'Marcellus', sans-serif; */
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 25px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

h1 span {
  font-style: italic;
  background: linear-gradient(to right, #fff, #e0d4c3);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-size: var(--text-sub-mobile);
  margin-bottom: 0.36em;
  margin-top: -0.22em;
  font-weight: 400;
  /* text-align: center; */
  opacity: 0.85;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 3;
}

h2 {
  color: var(--sand-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

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

strong {
  font-weight: var(--font-semi-bold);
  color: var(--strong-color);
}

*:has(strong) {
  color: var(--strong-color);
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(220, 6%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(220, 6%, 40%);
}


/* --- TŁO FIXED --- */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #FBF9F6, #ECE5DD);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  animation: float 25s infinite ease-in-out alternate;
}

.blob-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: #EBDCCF;
}

.blob-2 {
  bottom: -10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: #DBCBB8;
  animation-delay: -5s;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  box-sizing: border-box;
}

.grid {
  display: grid;
  /* gap: 1.5rem; */
}

/* .section {
  padding-block: 5rem 5rem;
  min-height: 80vh;
} */

section.light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #FBF9F6, #ECE5DD);
}


::selection {
  background: var(--accent-gold);
  color: #fff;
}



.section-wrapper {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  padding: 50px 0;
}

.section-wrapper-2 {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}

.content-section h2 {
  margin-bottom: 2rem;
}

.content-section p {

  margin-bottom: 25px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 200;

}

.subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  display: block;
  position: relative;
  padding-left: 40px;
  font-family: var(--font-head);
}

.subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--accent-gold);
}

h2 {
  /* font-family: 'Cormorant Garamond', serif; */
  font-size: 50px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 35px;
  color: var(--text-dark);
  letter-spacing: -1px;
}

h2 span {
  /* font-style: italic; */
  font-weight: 400;
}


p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  /* margin-bottom: 25px; */
  /* max-width: 480px; */
  letter-spacing: 0.01em;
}


p+p {
  margin-top: -10px;
}

strong,
b {
  font-weight: 400;
  color: #997F55;
}

/* BUTTONY */
.btn-gold {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  color: var(--accent-gold-dark);
  background: transparent;
  border: 1px solid var(--accent-gold);
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--font-body);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-smooth);
}

.btn-gold:hover {
  color: #fff;
  border-color: var(--accent-gold);
  box-shadow: 0 10px 25px rgba(194, 168, 126, 0.4);
  transform: translateY(-2px);
}

.btn-gold:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.media-frame {
  position: relative !important;
  overflow: hidden !important;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  transform: translateZ(0);
  display: block;
}

.parallax-img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: -20%;
  left: 0;
  transition: none !important;
}

.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: var(--glass-border);
  border-radius: inherit;
  pointer-events: none;
  z-index: 10;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.5s ease;
}

.parallax-img {
  position: absolute;
  width: 100%;

  height: 140% !important;
  top: -20%;
  object-fit: cover;
  left: 0;
  will-change: transform;
  transition: none !important;
}

/* .media-frame:hover img {
  transform: scale(1.08);
} */


.about-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.visual-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1.2fr;
  gap: 10px;
  height: 550px;
  align-items: center;
}

.stone {
  width: 100%;
  box-shadow: var(--shadow-lux);
}


.stone:nth-child(1) {
  height: 60%;
  align-self: start;
  margin-top: 20px;
  border-radius: 150px 150px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}

.stone:nth-child(2) {
  height: 100%;
  z-index: 2;
  border-radius: 200px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}

.stone:nth-child(3) {
  height: 60%;
  align-self: end;
  margin-bottom: 20px;
  border-radius: 0 0 150px 150px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}


/* =========================================================
   SEKCJA MANIFESTO - UKŁAD BAZOWY
   ========================================================= */
.manifesto-track {
  height: 300vh;
  position: relative;
}

.manifesto-section {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  --progress: 0;
}

.manifesto-section,
.hero-footer-bar {
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* =========================================================
   TŁO I KONTENER
   ========================================================= */
.manifesto-bg-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(calc(0.6 + (0.4 * var(--progress))));
  z-index: -1;
  background-color: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: 100%;
  border-radius: calc(80px - (80px * var(--progress)));
  overflow: hidden;
  will-change: transform, border-radius;
}

.manifesto-bg {
  width: 100%;
  height: 100%;
  background-image: image-set(url('../img/home/sections/brand-essence/brand-essence.avif') type('image/avif'),
      url('../img/home/sections/brand-essence/brand-essence.jpg') type('image/jpeg'));
  background-image: -webkit-image-set(url('../img/home/sections/brand-essence/brand-essence.avif') type('image/avif'),
      url('../img/home/sections/brand-essence/brand-essence.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: 60%;
  opacity: 0.6;
  filter: saturate(0.8) brightness(0.9);
  transform: scale(calc(1.1 - (0.1 * var(--progress))));
}

.manifesto-container {
  height: calc(60vh + (40vh * var(--progress)));
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  padding: 4rem 2rem;
  box-sizing: border-box;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.4) 40%, rgba(255, 255, 255, 0) 65%);
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0;
}

/* =========================================================
   ELEMENTY W GRUDZIE (GRID STACK) - WSPÓLNE
   ========================================================= */
.manifesto-pre,
.manifesto-text,
.manifesto-desc,
.manifesto-line {
  grid-area: stack;
}


.manifesto-text,
.manifesto-desc {
  align-self: center;
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  line-height: 1.5;
  color: #323232;
  font-weight: 100;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 800px;
}

/* =========================================================
   POSZCZEGÓLNE ELEMENTY I ICH ANIMACJE
   ========================================================= */
.manifesto-pre {
  align-self: start;
  z-index: 20;
  margin-top: 2rem;
  font-size: 1rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #5a5a5a;
  font-weight: 600;
  font-family: var(--font-head);
}

.manifesto-text {
  z-index: 5;
  opacity: clamp(0, (0.55 - var(--progress)) * 10, 1);
  transform: translateY(calc(0px - (var(--progress) * 80px)));
  filter: blur(calc((var(--progress) - 0.4) * 10px));
}

.manifesto-desc {
  z-index: 6;
  opacity: clamp(0, (var(--progress) - 0.55) * 10, 1);
  transform: translateY(calc(80px - ((var(--progress) - 0.55) * 200px)));
}

.manifesto-line {
  align-self: end;
  z-index: 20;
  margin-bottom: 0;
  opacity: 0.5;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, #967D3D, transparent);
}

/* =========================================================
   INTERAKCJE - HIGHLIGHT (LINKE)
   ========================================================= */
.highlight {
  position: relative;
  display: inline-block;
  color: #967D3D;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
}

a.highlight {
  cursor: pointer;
  transition: color 0.5s ease-out;
  font-weight: 300;
}

a.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(150, 125, 61, 0.0) 20%, rgba(150, 125, 61, 0.0) 80%, transparent 100%);
  filter: blur(2px);
  transform: translateY(2px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  pointer-events: none;
}

a.highlight:hover {
  color: #B59A4A;
}

a.highlight:hover::after {
  opacity: 0.7;
  transform: translateY(0);
  background: linear-gradient(90deg, transparent 0%, rgba(181, 154, 74, 0.6) 30%, rgba(181, 154, 74, 0.6) 70%, transparent 100%);
  filter: blur(3px);
  height: 4px;
}

a.highlight:active {
  color: #856E33;
  transition-duration: 0.1s;
}

a.highlight:active::after {
  opacity: 0.3;
  width: 90%;
  left: 5%;
  transition-duration: 0.1s;
}

.manifesto-desc,
.manifesto-line {
  grid-area: stack;
  opacity: clamp(0, (var(--progress) - 0.6) * 5, 1);
  transform: translateY(calc(50px - ((var(--progress) - 0.6) * 250px)));
  z-index: 10;
}

.manifesto-desc {
  opacity: clamp(0, (var(--progress) - 0.55) * 10, 1);
  transform: translateY(calc(80px - ((var(--progress) - 0.55) * 250px)));
  z-index: 6;
}

.manifesto-text,
.manifesto-desc {
  grid-area: stack;
  align-self: center;
  /* font-family: 'Cormorant Garamond', serif; */
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(1rem, 3.5vw, 1.7rem);
  line-height: 1.5;
  color: #323232;
  font-weight: 100;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
  margin: 0;
  max-width: 800px;
}

.manifesto-line {
  grid-area: stack;
  align-self: end;
  margin-bottom: 0;
  z-index: 20;
  opacity: 0.5;
  transform: none;
  filter: none;
  transition: none;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, #967D3D, transparent);
}

.private-layout,
.business-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.business-layout {
  grid-template-columns: 1.2fr 0.8fr;
}

.arch-wrapper,
.mirror-arch-wrapper {
  position: relative;
  height: 700px;
  width: 100%;
}

.arch-main {
  width: 85%;
  height: 100%;
  border-radius: 400px 400px 0 0;
  position: absolute;
  right: 0;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}

.arch-main-left {
  width: 85%;
  height: 100%;
  border-radius: 400px 400px 0 0;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 40px 80px -20px rgba(43, 38, 35, 0.3);
}

.pebble-container {
  position: absolute;
  z-index: 5;
  padding: 10px;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50% 50% 50% 0;
  box-shadow: var(--shadow-float);
  transform: translate(0, 0);
  animation: pebble-float 6s ease-in-out infinite;
}

.arch-wrapper .pebble-container {
  right: 8%;
  left: auto;
  bottom: 8%;
}

.mirror-arch-wrapper .pebble-container {
  left: -10%;
  right: auto;
  bottom: -10%;
}

.pebble-float {
  width: 200px;
  height: 200px;
  border-radius: inherit;
}

@keyframes pebble-float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -14px);
  }
}

.corp-old-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 100px;
  opacity: 0.9;
}

.panorama-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 30px;
  position: relative;
  box-shadow: var(--shadow-lux);
}

.corp-overlay-card {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #fff;
  padding: 40px;
  width: 400px;
  border-radius: 20px;
  box-shadow: var(--shadow-lux);
  z-index: 10;
}

.corp-overlay-card::after {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid var(--bg-sand);
  border-radius: 15px;
  pointer-events: none;
}


@media(max-width: 900px) {
  /* .section-wrapper {
    padding: 60px 0; 
  } */

  .about-layout,
  .private-layout,
  .business-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: auto;
  }

  .stone {
    width: 100%;
    height: 350px !important;
    flex-shrink: 0;
    margin: 0 !important;
    align-self: center !important;
    position: relative;
  }

  .stone:nth-child(1) {
    border-radius: 40px 40px 50% 50% / 40px 40px 60px 60px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    overflow: hidden;
    object-position: center 20% !important;
  }

  .stone:nth-child(2) {
    border-radius: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: -45px !important;
    margin-bottom: -45px !important;
    z-index: 1;
    -webkit-mask-image:
      radial-gradient(50% 60px at 50% 0%, transparent 98%, black 100%),
      radial-gradient(50% 60px at 50% 100%, transparent 98%, black 100%);
    mask-image:
      radial-gradient(50% 60px at 50% 0%, transparent 98%, black 100%),
      radial-gradient(50% 60px at 50% 100%, transparent 98%, black 100%);

    -webkit-mask-size: 100% 50%, 100% 50%;
    mask-size: 100% 50%, 100% 50%;

    -webkit-mask-position: top, bottom;
    mask-position: top, bottom;

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 20px;
  }

  .stone:nth-child(3) {
    border-radius: 50% 50% 40px 40px / 60px 60px 40px 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    overflow: hidden;
  }


  .private-layout,
  .business-layout {
    display: flex;
    flex-direction: column-reverse;
  }

  .arch-wrapper,
  .mirror-arch-wrapper {
    height: 450px;
  }

  .arch-main,
  .arch-main-left {
    width: 100%;
    border-radius: 200px 200px 0 0;
  }

  .pebble-container {
    width: 140px;
    height: 140px;
    bottom: -20px;
    left: -10px;
  }

  .pebble-container-right {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -10px;
  }

  .pebble-float {
    width: 100%;
    height: 100%;
  }

  .corp-overlay-card {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: -50px;
  }

  h2 {
    font-size: 38px;
  }

  .mirror-arch-wrapper .pebble-container {
    left: 0;
    right: auto;
    bottom: -8%;
  }

  .content-section p {
    line-height: 1.6;
    font-size: 1rem;
  }

  .parallax-img {
    transform: none !important;
    background-attachment: scroll !important;
    transition: none !important;
    will-change: auto !important;
  }
}


.media-frame {
  position: relative !important;
  overflow: hidden;
  display: block;
}

.motto-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding-bottom: 0;
  background: linear-gradient(to top, rgba(20, 18, 16, 0.5) 0%, transparent 50%);
  z-index: 20;
  pointer-events: none;
}

.steam-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, black 0%, black 75%, transparent 100%);
  mask-image: linear-gradient(to top, black 0%, black 75%, transparent 100%);
}

.steam-particle {
  position: absolute;
  bottom: -900px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(35px);
  mix-blend-mode: screen;
  opacity: 0;
}

.particle-1 {
  left: -5%;
  width: 350px;
  height: 600px;
  animation: steam-rise-1 16s infinite ease-in-out 0s;
}

.particle-2 {
  left: 15%;
  width: 450px;
  height: 750px;
  animation: steam-rise-2 19s infinite ease-in-out 2s;
}

.particle-3 {
  left: 25%;
  width: 300px;
  height: 500px;
  animation: steam-rise-3 15s infinite ease-in-out 5s;
}

.particle-4 {
  left: 40%;
  width: 500px;
  height: 850px;
  animation: steam-rise-1 21s infinite ease-in-out 1s;
}

.particle-5 {
  left: 55%;
  width: 380px;
  height: 650px;
  animation: steam-rise-2 17s infinite ease-in-out 4s;
}

.particle-6 {
  left: 70%;
  width: 420px;
  height: 700px;
  animation: steam-rise-3 18s infinite ease-in-out 3s;
}

.particle-7 {
  left: 85%;
  width: 320px;
  height: 550px;
  animation: steam-rise-1 16s infinite ease-in-out 6s;
}

.particle-8 {
  left: 95%;
  width: 400px;
  height: 600px;
  animation: steam-rise-2 20s infinite ease-in-out 1.5s;
}

.particle-9 {
  left: 10%;
  width: 340px;
  height: 580px;
  animation: steam-rise-3 17s infinite ease-in-out 8s;
}

.particle-10 {
  left: 80%;
  width: 360px;
  height: 620px;
  animation: steam-rise-1 18s infinite ease-in-out 7s;
}


@keyframes steam-rise-1 {
  0% {
    transform: translateY(0) scale(0.9) translateX(-20px);
    opacity: 0;
  }

  25% {
    opacity: 0.75;
  }

  100% {
    transform: translateY(-2000px) scale(1.3) translateX(50px);
    opacity: 0;
  }
}

@keyframes steam-rise-2 {
  0% {
    transform: translateY(0) scale(0.8) translateX(30px);
    opacity: 0;
  }

  30% {
    opacity: 0.65;
  }

  100% {
    transform: translateY(-2200px) scale(1.5) translateX(-40px);
    opacity: 0;
  }
}

@keyframes steam-rise-3 {
  0% {
    transform: translateY(0) scale(1) translateX(0px);
    opacity: 0;
  }

  20% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-1900px) scale(1.4) translateX(30px);
    opacity: 0;
  }
}

.motto-text {
  font-family: 'Playfair Display', serif !important;
  color: #fff !important;
  line-height: 1.4 !important;
  font-weight: 100 !important;
  font-size: 1.7rem !important;
  letter-spacing: 1.2px !important;
  text-align: center !important;
  position: relative !important;
  margin: 0 !important;
  z-index: 10 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;

}

.motto-text::before {
  content: '“' !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 3rem;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: -10%;
  transform: translateX(-50%);
  color: var(--accent-gold);
  opacity: 0.6;
  z-index: -1;
}


.motto-text--big {
  font-size: 2.3rem !important;
  transform: translateY(14vh) !important;
}




@media (min-width: 901px) {
  .motto-overlay {
    padding-bottom: 0 !important;
    padding-left: 40px;
    padding-right: 40px;
  }

  .motto-text {
    font-size: 25px;
    max-width: 600px;
  }

  .motto-text::before {
    font-size: 80px;
    top: -50px;
  }
}

@media (max-width: 900px) {
  .motto-overlay {
    padding-bottom: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .motto-text {
    display: none;
    /* font-size: 16px !important;
    max-width: 100% !important; */
  }

  .motto-text::before {
    display: none;
    /* font-size: 60px;
    top: -35px; */
  }

  .motto-overlay p {
    font-size: 1.4rem !important;
    font-weight: 400 !important;
  }

  .motto-text--big {
    /* font-size: 2.1rem !important; */
    transform: translateY(8vh) !important;
  }
}

.specs-container {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
  box-shadow: var(--shadow-float);
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spec-label {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.spec-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #997F55;
  font-style: italic;
}

.spec-separator {
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.1);
}

@media(max-width: 900px) {
  .specs-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .spec-separator {
    width: 30px;
    height: 1px;
  }
}


@media (max-width: 768px) {
  .manifesto-bg-wrapper {
    transform: translate(-50%, -50%) scale(calc(0.9 + (0.1 * var(--progress))));
    border-radius: calc(40px - (40px * var(--progress)));

  }


  .manifesto-container {
    height: calc(85vh + (15vh * var(--progress)));
    padding: 2rem;

  }


  .manifesto-pre {
    margin-top: 1rem;
    font-size: 0.85rem;
    letter-spacing: 4px;
  }


  .manifesto-text,
  .manifesto-desc {
    font-size: clamp(1.2rem, 4.5vw, 1.15rem);
  }


  .manifesto-line {
    height: 40px;
  }
}

section.gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;

  background:
    radial-gradient(at 40% 45%, #d7c8ae 0px, transparent 60%),
    radial-gradient(at 70% 40%, #f3e4cc 0px, transparent 60%),
    radial-gradient(at 0% 5%, #b2a191 0px, transparent 60%),
    radial-gradient(at 100% 95%, #b68340 0px, transparent 60%);
  opacity: 0.5;
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

section.gradient>* {
  position: relative;
  z-index: 1;
}

.section__title {
  font-size: var(--big-font-size);
  color: var(--title-color);
  text-align: center;
}

.section__subtitle {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--sand-color);
  margin-top: -3.5rem;
}

.section__description {
  font-size: var(--normal-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 2rem;
}

.text-container.shadow-box {
  background-color: var(--opacity-color-40);
  /* background: linear-gradient(135deg, #f8fafc, #e6fcf5); */
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
  margin: 2rem auto 4rem auto;
  max-width: 90vw;
  width: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  color: var(--white-color);
  transition: background-color 0.4s;
  box-sizing: border-box;
  font-weight: 400;
}

.shadow-box h3 {
  margin-top: 0;
  color: #333;
}

.shadow-box strong {
  font-weight: 600;
}

.shadow-box p {
  line-height: 1.6;
  /* color: #2d3436; */
  color: var(--text-color);
  margin-bottom: 1rem;
  text-align: left;
  font-weight: 300;
  font-size: var(--normal-font-size);
}

.shadow-box p+p {
  margin-top: 1rem;
}

.shadow-box hr {
  border: none;
  border-top: 1px solid #d7cfc3;
  margin: 1.5rem 0;
  opacity: 0.3;
}


main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #FBF9F6, #ECE5DD);
}

/*=============== HEADER & NAV ===============*/
/* .header {
  position: fixed;
  width: 100%;
  top: 45px;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
  transition: background-color .4s, box-shadow .4s, top .4s;
} */

.promo-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 20;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  font-family: 'Marcellus', sans-serif;
  margin-bottom: 20px;
}

.promo-content {
  display: flex;
  gap: 15px;
  align-items: center;
  text-align: center;
  animation: fadeSlide 6s infinite ease-in-out;
}

@keyframes fadeSlide {

  0%,
  45% {
    opacity: 1;
    transform: translateY(0);
  }

  50%,
  95% {
    opacity: 0;
    transform: translateY(-10px);
  }


  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width: 1024px) {
  .promo-messages {
    width: 70vw;
    font-size: 0.85em;
  }

  .promo-btn {
    padding: 7px 20px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 768px) {
  .promo-bar {
    gap: 1rem;
    height: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
  }

  .promo-messages.mobile {
    width: 95vw;
    font-size: 0.8em;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }

  .promo-messages.mobile .promo-message {
    position: static;
    transform: none;
    opacity: 1;
    display: inline-block;
  }

  .promo-messages.mobile .scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 30s linear infinite;
    animation-delay: -5s;
    will-change: transform;
    color: var(--white-color);
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

@media screen and (max-width: 480px) {
  .promo-messages.mobile {
    width: 90vw;
  }

  .promo-messages.mobile .scrolling-text {
    animation-duration: 25s;
    color: var(--white-color);
  }
}


@media screen and (max-width: 1150px) {
  /* .nav__menu {
    position: fixed;
    top: -120%;
    left: 0;
    background-color: var(--body-color);
    width: 100%;
    padding-block: 4rem;
    box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
    border-radius: 0 0 1.5rem 1.5rem;
    transition: top .4s;
  } */

  .numbered-section {
    max-width: 90%;
    margin: 35px 30px;
    padding: 22px 28px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-description {
    font-size: .9rem;
  }

  .fancy-list li {
    margin-bottom: 24px;
  }

  .number-circle {
    min-width: 32px;
    height: 32px;
    font-size: .95rem;
  }

  .fancy-list li:not(:last-child)::after {
    left: 16px;
    top: 38px;
    bottom: -18px;
    width: 2px;
  }

  .content {
    margin-left: 16px;
  }

}



.show-menu {
  top: 0;
}


.bg-header {
  background-color: var(--body-color);
  box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
}

/* .bg-header :is(.nav__logo, .nav__toggle, .nav__theme) {
  color: var(--title-color);
} */

/* .bg-header .nav__logo img {
  filter: invert(100%);
} */

/* Active link */
.active-link::after {
  width: 60%;
}

/*=============== HOME ===============*/
.home {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.home {
  padding-top: 12rem;
}

/* .home {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20rem;

} */
.home__bg,
.home__blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


}

.home__bg {
  object-fit: cover;
  object-position: center 30%;
}

.home__blur {
  background-color: rgba(0, 0, 0, 0.10);
  backdrop-filter: none;
  transition: background-color 0.4s;

}

.home__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--white-color);
  gap: 1rem;
}

.home__container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  z-index: 2;
  height: 100vh;
}

/* .home__text {
  background-color: rgba(1, 68, 33, 0.7);
  padding: 1.5rem 1rem;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  color: var(--white-color);
} */

.home__text {
  background-color: rgba(1, 68, 33, 0.7);
  backdrop-filter: blur(10px);
  color: var(--white-color);
  padding: 1.5rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 1.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.50);
}

.home__data {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.home__title {
  font-size: 1.8rem;
  font-weight: var(--font-bold);
  line-height: 130%;
  margin: 0;
  color: var(--white-color);
  opacity: .95;
}

.home__description {
  max-width: 800px;
  margin: 0;
  font-weight: 200;
  color: var(--white-color);
  opacity: .95;
}

.home__swiper {
  max-width: 320px;
  border-radius: 1.5rem;
  opacity: .95;
}


.home__swiper .swiper-button-prev::after,
.home__swiper .swiper-button-next::after {
  content: '';
}

.home__swiper :is(.swiper-button-prev, .swiper-button-next) {
  color: var(--white-color);
  font-size: 1.5rem;
  background-color: var(--opacity-color-30);
  backdrop-filter: blur(24px);
  width: 2rem;
  height: 2rem;
  border-radius: .25rem;
  top: initial;
  bottom: 1.25rem;
  transition: background-color .4s;
}

.scrollIcon {
  width: 30px;
  height: 45px;
  border: 1px solid #BFBFBF;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  position: relative;
}

.scrollIcon:after {
  content: 'Scroll down';
  color: #BFBFBF;
  font-family: 'Marmelad', serif;
  font-weight: 100;
  font-size: 0.65rem;
  width: 100px;
  display: block;
  position: absolute;
  bottom: 0;
  text-align: center;
  animation: scrollText 2s infinite;
}

i.scroll {
  background: #BFBFBF;
  width: 3px;
  height: 8px;
  display: block;
  border-radius: 40px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(40%);
  }

  100% {
    opacity: .7;
    transform: translateY(130%);
  }
}

@keyframes scrollText {
  0% {
    opacity: 1;
    transform: translateY(120%);
  }

  100% {
    opacity: .0;
    transform: translateY(180%);
  }
}

.home__swiper .swiper-button-prev {
  left: initial;
  right: 4rem;
}

.home__swiper .swiper-button-next {
  right: 1.25rem;
}


.button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: linear-gradient(to bottom,
      hsl(164, 100%, 35%),
      hsl(164, 100%, 21%));
  color: white;
  border-radius: 1.5rem;
  /* font-weight: 600; */
  font-size: 1.15rem;
  border: none;
  cursor: pointer;
  max-width: 600px;
  box-sizing: border-box;
}

.button-text {
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}

.button i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.button:hover i {
  transform: translateX(.5rem);

}

.button__opa-30 {
  background-color: rgba(1, 68, 33, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}



.button_bottom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: .5rem;
  color: var(--white-color);
  padding: 1rem 2rem;
  font-size: var(--smaller-font-size);
  border-radius: .5rem;
  transition: background-color .4s;
}


.button_bottom i {
  font-weight: initial;
  font-size: .9rem;
  transition: transform .4s;
}

.button_bottom:hover i {
  transform: translateY(.5rem);
  color: var(--white-color);
}

.button_bottom:hover,
.button_bottom:active,
.button_bottom:focus {
  color: var(--white-color) !important;
}


/*=============== ABOUT US ===============*/
.about-section .content-column .text p {
  margin-bottom: 1em;
}

.about-section .content-column .text p strong {
  color: var(--sand-color);
  font-weight: 700;
}



.custom-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

.custom-col-6 {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.about-section .content-column {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 40px;
}

.about-section .image-column {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .custom-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .about-section .image-column {
    margin-top: 50px;
    padding-top: 0;
    margin-bottom: 50px;
  }

  .about-section .content-column {
    padding-right: 30px;
    margin-bottom: 0;
  }

  .about-section .image-column {
    padding-left: 30px;
  }

  .about-section .content-column .inner-column {
    padding-top: 50px;
    padding-right: 15px;
  }

  .about-section .image-column .inner-column {
    margin-left: 15px;
  }
}



.about-section {
  position: relative;
  padding: 0 0 5rem 0;
  overflow: hidden;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-right: 0;
  padding-top: 50px;
}

.about-section .content-column .text {
  position: relative;
  /* color:#777777; */
  font-size: 15px;
  line-height: 2em;
  margin-bottom: 40px;
  text-align: justify;
}

.about-section .content-column .email {
  position: relative;
  color: #252525;
  font-weight: 700;
  margin-bottom: 50px;
}

.about-section .image-column .inner-column {
  position: relative;
  padding: 40px 40px 0px 0px;
  margin-left: 0px;
}

.about-section .image-column .inner-column:after {
  position: absolute;
  content: '';
  right: 0px;
  top: 0px;
  left: 40px;
  bottom: 100px;
  z-index: -1;
  border: 2px solid var(--sand-color);
  border-radius: 1.5rem;
}

.about-section .image-column .inner-column .image {
  position: relative;
}

.about-section .image-column .inner-column .image:before {
  position: absolute;
  content: '';
  left: 0px;
  bottom: -50px;
  width: 299px;
  height: 299px;
  background: url(../img/pattern-2.png) no-repeat;
}

.about-section .image-column .inner-column .image img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.about-section .image-column .inner-column .image .overlay-box {
  position: absolute;
  left: 40px;
  bottom: 48px;
}

.about-section .image-column .inner-column .image .overlay-box .year-box {
  position: relative;
  color: var(--white-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  padding-left: 125px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);


}

.about-section .image-column .inner-column .image .overlay-box .year-box .number {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 110px;
  height: 110px;
  color: var(--sand-color);
  font-size: 68px;
  font-weight: 700;
  line-height: 105px;
  text-align: center;
  background-color: var(--white-color);
  border: 1px solid var(--sand-color);
  opacity: .9;
  border-radius: 1.5rem;
}

.about-section .btn-style-three:before {
  position: absolute;
  content: '';
  left: 10px;
  top: 10px;
  z-index: -1;
  right: -10px;
  bottom: -10px;
  background: url(../img/pattern-1.jpg) repeat;
  border-radius: 1.5rem;
}

.about-section .btn-style-three:hover {
  color: #ffffff;
  background: var(--sand-color);
}

.about-section .btn-style-three {
  position: relative;
  line-height: 24px;
  color: #252525;
  font-size: 15px;
  font-weight: 700;
  background: none;
  display: inline-block;
  padding: 11px 40px;
  background-color: #ffffff;
  text-transform: capitalize;
  border: 2px solid var(--sand-color);
  font-family: 'Marmelad', serif;
  border-radius: 1.5rem;
}

.sec-title2 {
  color: #fff;
}

.sec-title {
  position: relative;
  padding-bottom: 40px;
}

.sec-title .title {
  position: relative;
  color: var(--sand-color);
  font-size: var(--h3-font-size);
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
}

.sec-title .title:before {
  position: absolute;
  content: '';
  right: 0px;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbbbbb;
}


/*=============== O NAS KAFELKI TESTOWE ===============*/

.content-grid {
  max-width: 1400px;
  margin: 40px auto 20px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  z-index: 2;
  position: relative;
}

.info-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 35px;
  text-align: left;
  transition: all 0.3s ease-out;
  overflow: hidden;
  position: relative;
  color: #2C3E50;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.2);
}

.info-card i {
  font-size: 3em;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
  text-align: center;
}

.info-card:hover i {
  transform: scale(1.1);
}

.info-card:nth-child(1) i {
  color: #A5D6A7;
  text-shadow: 0 0 10px rgba(165, 214, 167, 0.8);
}

.info-card:nth-child(1) h2 {
  color: #A0522D;
}

.info-card:nth-child(1) li::before {
  color: #A5D6A7;
}

.info-card:nth-child(2) i {
  color: #E0BBE4;
  text-shadow: 0 0 10px rgba(224, 187, 228, 0.8);
}

.info-card:nth-child(2) h2 {
  color: #A0522D;
}

.info-card:nth-child(2) li::before {
  color: #E0BBE4;
}

.info-card:nth-child(3) i {
  color: #A7C7E7;
  text-shadow: 0 0 10px rgba(167, 199, 231, 0.8);
}

.info-card:nth-child(3) h2 {
  color: #A0522D;
}

.info-card:nth-child(3) li::before {
  color: #A7C7E7;
}

.info-card h2 {
  font-family: 'Marmelad', sans-serif;
  margin: 10px 0 15px 0;
  color: #A0522D;
  font-weight: 700;
  font-size: 1.6em;
  letter-spacing: 0.5px;
  text-align: center;
}

.info-card p {
  line-height: 1.7;
  margin-bottom: 25px;
  color: #5B4F4F;
  font-weight: 400;
  text-align: center;
}

.info-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 0;
  border-top: 1px solid #D2B48C;
  padding-top: 15px;
}

.info-card li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #5B4F4F;
  line-height: 1.6;
  font-weight: 400;
  transition: color 0.3s ease;
}

.info-card li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #A0522D;
  font-size: 1.1em;
  top: 0;
  transition: transform 0.3s ease;
}

.info-card li:hover {
  color: #2C3E50;
}


@media (max-width: 1024px) {
  .content-grid {
    margin: 35px auto 20px auto;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
  }

  .info-card {
    padding: 30px;
    border-radius: 1.25rem;
  }

  .info-card i {
    font-size: 2.5em;
  }

  .info-card li::before {
    font-size: 1em;
  }
}

@media (max-width: 768px) {


  .content-grid {
    margin: 25px auto 15px auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .info-card {
    padding: 25px;
    margin-bottom: 10px;
    border-radius: 1rem;
  }

  .info-card h2 {
    font-size: 1.4em;
  }

  .info-card p {
    font-size: 0.95em;
  }

  .info-card li {
    margin: 10px 0;
    padding-left: 25px;
    font-size: 0.95em;
  }

  .info-card i {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .info-card li::before {
    font-size: 1em;
  }

  .info-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .content-grid {
    margin: 20px auto 10px auto;
    gap: 15px;
    padding: 0 5px;
  }

  .info-card {
    padding: 20px;
    border-radius: 0.75rem;
  }

  .info-card h2 {
    font-size: 1.3em;
    margin: 8px 0 12px 0;
  }

  .info-card p {
    margin-bottom: 20px;
    font-size: 0.9em;
    line-height: 1.5;
  }

  .info-card li {
    margin: 8px 0;
    padding-left: 22px;
    font-size: 0.9em;
  }

  .info-card li::before {
    font-size: 0.95em;
    left: -2px;
  }

  .info-card i {
    font-size: 2em;
    margin-bottom: 12px;
  }

}

@media (max-width: 320px) {
  .content-grid {
    margin: 20px auto 10px auto;
  }

  .info-card {
    padding: 15px;
    border-radius: 0.5rem;
  }

  .info-card h2 {
    font-size: 1.2em;
  }

  .info-card p {
    font-size: 0.85em;
  }

  .info-card li {
    padding-left: 20px;
    font-size: 0.85em;
  }

  .info-card li::before {
    font-size: 0.9em;
  }
}

/*=============== SWIPER ===============*/

.main-container {
  display: grid;
  grid-template-columns: 35% 40%;
  height: 70vh;
  /* background: radial-gradient(at 40% 45%, #f2f2f2 0px, transparent 50%),
    radial-gradient(at 70% 40%, #d9b8ad 0px, transparent 50%),
    radial-gradient(at 0% 5%, #92aebb 0px, transparent 50%),
    radial-gradient(at 100% 95%, #b3bee3 0px, transparent 50%) #f2f2f2; */
  overflow: hidden;

  justify-content: center;
  align-items: center;
}

.swiper {
  width: 340px;
  aspect-ratio: 2/3;
  padding: 30px 0;
  justify-self: end;
}

.swiper-slide {
  position: relative;
  border-radius: 10px;
  box-shadow: 3px 8px 15px rgba(51, 55, 55, 0.8);
  user-select: none;
}

.swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.context {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: rgba(51, 55, 55, 1);
  justify-self: start;
  padding-left: 5px;
}

.context h1 {
  font-family: "Tilt Neon", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -2px !important;
  margin-bottom: 60px;
  color: #0b158d;
}

.context h1,
.list {
  width: 450px;
  max-width: 100%;
}

.list-item {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.icon-box {
  width: var(--x);
  height: var(--x);
  border-radius: 50%;
  background-color: rgba(11, 21, 141, 0.1);
  border: 1px solid rgba(11, 21, 141, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, border-color 0.3s ease;

  margin-right: calc(var(--m) + 15px);
}

.icon-box img {
  width: var(--icon-size);
  height: var(--icon-size);
  display: block;
  filter: invert(1) grayscale(100%) brightness(100%);
  opacity: 0.8;
}

.list-item.active .icon-box {
  background-color: var(--sand-color);
  border-color: var(--sand-color);
}

.list-item .icon-box {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.list-item.active .icon-box {
  opacity: 1;
  transform: translateX(0%);

}

.list-item p {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
  opacity: 0.4;
  margin-left: calc(-1 * (var(--x) * var(--m)));
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-item.active p {
  opacity: 1;
  margin-left: 0;
}

@media (max-width: 1200px) {
  :root {
    --x: 20px;
    --icon-size: 1rem;
    --m: 5px;
  }

  .main-container {
    grid-template-columns: 40% 45%;
  }

  .swiper {
    width: 300px;
    justify-self: end;
  }

  .context {
    justify-self: start;
    padding-left: 5px;
  }

  :root {
    --x: 20px;
    --m: 5px;
  }

  .icon-box {
    margin-right: calc(var(--m) + 10px);
  }

  .icon-box i {
    font-size: 1rem;
  }

  .context h1,
  .list {
    width: 380px;
  }

  .context h1 {
    margin-bottom: 40px;
  }

  .list-item {
    margin-bottom: 16px;
  }
}

@media (max-width: 950px) {
  .main-container {
    grid-template-columns: 45% 45%;
  }

  .swiper {
    width: 250px;
    margin-right: 0;
  }
}


@media (max-width: 770px) {
  :root {
    --icon-size: 0.9rem;
  }

  .main-container {
    grid-template-columns: 100%;
    grid-template-rows: 50% 50%;
    grid-template-areas:
      "slider"
      "context";
    place-items: center;
    justify-content: center;
    align-content: center;
  }

  .swiper {
    justify-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 250px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .slider {
    grid-area: slider;
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .context {
    grid-area: context;
    justify-self: center;
    align-items: center;
    padding-left: 0;
    margin-top: 0 !important;
  }

  .context h1,
  .list {
    width: 100%;
    white-space: normal;
    text-overflow: clip;
  }

  .list-item p {
    font-size: 1.2rem;
    opacity: 1;
    white-space: normal;
    text-overflow: clip;
  }

  .list {
    padding-left: 10%;
    padding-right: 10%;
  }

  .swiper-slide {
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .swiper {
    width: 220px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0 !important;
  }

  .list-item p {
    font-size: 1rem;
  }

  .context h1 {
    text-align: center;
  }
}



/*=============== GALLERY ===============*/
.gallery__options {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100vh;
  transition: .25s;
  margin: 0;
}

.gallery__options .credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}

.steam-corner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -160px;
  width: 180px;
  height: 135px;
  z-index: 1;
  pointer-events: none;
}

.steam-corner svg .bench {
  opacity: 0;
}

.steam-corner svg .steam {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) blur(0.5px);
  opacity: 0;
  animation: steamUp 8s infinite cubic-bezier(0.5, 0, 0.5, 1);
  will-change: transform, opacity;
}

.steam-corner svg .steam:nth-child(4) {
  animation-delay: 0s;
  animation-duration: 8s;
}

.steam-corner svg .steam:nth-child(5) {
  animation-delay: 1.5s;
  animation-duration: 8.3s;
}

.steam-corner svg .steam:nth-child(6) {
  animation-delay: 3s;
  animation-duration: 7.8s;
}

.steam-corner svg .steam:nth-child(7) {
  animation-delay: 4.5s;
  animation-duration: 8.2s;
}

@keyframes steamUp {
  0% {
    transform: translateY(0px) translateX(0px) scaleY(1);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) blur(0.5px);
  }

  50% {
    opacity: 0.3;
    transform: translateY(-25px) translateX(0.3px) scaleY(0.95);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.95)) blur(1px);
  }

  100% {
    transform: translateY(-50px) translateX(0px) scaleY(0.8);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) blur(0.5px);
  }
}

.gallery__options .options {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-width: 800px;
  max-width: 1200px;
  width: calc(100% - 60px);
  height: 50vh;
  max-height: 50vh;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 40px;
}

@media screen and (max-width: 768px) {
  .gallery__options {
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
    align-items: stretch;
  }

  .gallery__options .options {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    flex-shrink: 0;
    min-width: 280px;
    max-width: 100%;
    width: 100%;
    height: auto;
    gap: 3px;
    padding: 8px;
  }

  .gallery__options .options .option {
    width: 100%;
    box-sizing: border-box;
    min-width: 100%;
    flex: 0 0 auto;
    margin: 0;
    border-radius: 20px;
    height: 35px;
    padding: 4px 8px;
    background-size: cover;
    background-position: center center;
    pointer-events: auto;
    z-index: 2;
    will-change: height, background-size;
  }

  .gallery__options .options .option.active {
    height: 25px;
    padding: 4px 12px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: auto;
    z-index: 3;
    transition: height 0.8s cubic-bezier(0.05, 0.61, 0.41, 0.95),
      background-size 0.8s ease,
      transform 0.6s ease,
      padding 0.8s ease;
  }

  .gallery__options .options .option .label {
    height: 25px;
  }

  .gallery__options .options .option .label .icon {
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .gallery__options .options .option .label .info .main {
    font-size: 0.6rem;
  }

  .gallery__options .options .option .label .info .sub {
    font-size: 8px;
  }

  .gallery__options .options .option:not(.active) .label {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    transition: top 0.5s ease, transform 0.5s ease;
  }

  .gallery__options .options .option.active .label {
    bottom: 4px;
    top: auto;
    transform: none;
    transition: bottom 0.5s ease, top 0.5s ease, transform 0.5s ease;
  }
}

@media screen and (max-width: 480px) {
  .gallery__options .options {
    padding: 6px;
    border-radius: 15px;
    gap: 2px;
  }

  .gallery__options .options .option {
    height: 30px;
    padding: 3px 6px;
  }

  .gallery__options .options .option.active {
    height: 21px;
    padding: 3px 10px;
    transition: height 0.8s cubic-bezier(0.05, 0.61, 0.41, 0.95),
      background-size 0.8s ease,
      transform 0.6s ease,
      padding 0.8s ease;
  }

  .gallery__options .options .option .label {
    height: 22px;
  }

  .gallery__options .options .option .label .icon {
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }

  .gallery__options .options .option .label .info .main {
    font-size: 0.55rem;
  }

  .gallery__options .options .option .label .info .sub {
    font-size: 7px;
  }

  .gallery__options .options .option.active .label {
    bottom: 3px;
  }
}

.gallery__options .options .option {
  position: relative;
  overflow: hidden;
  border-radius: 30px !important;
  min-width: 90px;
  flex-basis: 90px;
  margin: 10px 5px;
  background: var(--optionBackground, var(--defaultBackground, #E6E9ED));
  background-size: cover;
  background-position: center center;
  cursor: pointer;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    background-size .5s ease,
    margin .5s ease,
    flex-basis .5s ease,
    height 0.8s ease;
  flex: 1 1 90px;
  pointer-events: auto;
  z-index: 1;
}

.gallery__options .options .option:nth-child(1) {
  --defaultBackground: #ED5565;
}

.gallery__options .options .option:nth-child(2) {
  --defaultBackground: #FC6E51;
}

.gallery__options .options .option:nth-child(3) {
  --defaultBackground: #FFCE54;
}

.gallery__options .options .option:nth-child(4) {
  --defaultBackground: #2ECC71;
}

.gallery__options .options .option:nth-child(5) {
  --defaultBackground: #5D9CEC;
}

.gallery__options .options .option.active {
  flex-grow: 10000;
  flex-basis: 1000px;
  transform: scale(1);
  max-width: 1000px;
  margin: 10px 0;
  border-radius: 40px !important;
  background-size: cover;
  background-position: center center;
}

.gallery__options .options .option.active .shadow {
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}

.gallery__options .options .option.active .label {
  bottom: 20px;
  left: 20px;
  right: auto;
  width: auto;
  justify-content: flex-start;
}

.gallery__options .options .option.active .label .info>div {
  left: 0px;
  opacity: 1;
  transform: translateX(0);
}

.gallery__options.options .option:not(.active) {
  flex-grow: 1;
  flex-basis: 90px;
  border-radius: 30px !important;
}

.gallery__options .options .option:not(.active) .shadow {
  bottom: -40px;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}

.gallery__options .options .option:not(.active) .label {
  bottom: 20px;
  left: 0;
  right: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.gallery__options .option:not(.active) .label .info {
  display: none !important;
  max-width: 0;
  margin-left: 0;
  visibility: hidden;
  opacity: 0;
}

.gallery__options .options .option:not(.active) .label .info>div {
  left: 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease-out, transform .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.gallery__options .options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.gallery__options .options .option .label {
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    bottom .5s ease,
    left .5s ease,
    right .5s ease,
    width .5s ease,
    justify-content .5s ease,
    top .5s ease,
    transform .5s ease;
}

.gallery__options .options .option .label .icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
  transition: .5s ease;
  opacity: 0.8;
}

.gallery__options .options .option .label .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
  max-width: 250px;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95),
    max-width .5s ease,
    opacity .5s ease-out,
    transform .5s ease-out,
    visibility .5s ease;
}

.gallery__options .options .option .label .info>div {
  position: relative;
  transition: .5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity .5s ease-out, transform .5s ease-out;
}

.gallery__options .options .option .label .info .main {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.gallery__options .options .option .label .info .sub {
  transition-delay: .1s;
  font-weight: 100;
  font-size: 15px;
}


/*=============== JOIN ===============*/
.join__container {
  row-gap: 3rem;
  padding-bottom: 3rem;
}

.join__data {
  text-align: center;
}

.join__data .section__title {
  margin-bottom: 1rem;
}

.join__description {
  margin-bottom: 2rem;
}

.join__description {
  font-size: var(--h2-font-size);
  color: var(--sand-color);
}

.join__form {
  display: grid;
  row-gap: 1rem;
}

.join__input {
  width: 100%;
  background-color: var(--container-color);
  color: var(--text-color);
  padding: 1.5rem 1rem;
  border-radius: .5rem;
  transition: background-color .4s;
}

.join__button {
  padding-block: 1.25rem;
  cursor: pointer;
}

.join__img {
  width: 300px;
  border-radius: 1.5rem;
  justify-self: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.carousel-video-box {
  max-width: 1100px;
  margin: 20px auto;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}


.carousel-video-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.carousel-video-header-row h2 {
  font-size: var(--h2-font-size);
}

.counter {
  font-size: 1.5em;
  font-weight: 700;
  color: var(--sand-color);
  margin-right: 5px;
  letter-spacing: -1px;
}

.sortowanie select {
  padding: 6px 10px;
  border-radius: 6px;
  border: 1.5px solid #cacaca;
  font-size: 0.9em;
  color: #232323;
  /* box-shadow: 0 1px 3px #007bff25; */
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 160px;

}

/* .sortowanie select:focus {
  border: sold 1 px red;
  box-shadow: 0 0 0 3px #38383833;
} */

.opinion {
  padding: 20px;
  display: grid;
  grid-template-columns: 200px 1fr 100px;
  gap: 20px;
  align-items: start;
}

.col1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.gwiazdki-big {
  color: var(--sand-color);
  font-size: 1.6em;
  line-height: 1;
}

.autor {
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 4px;
}

.zweryfikowany {
  margin-top: 6px;
  color: #519e51;
  font-size: 0.7em;
  display: flex;
  align-items: center;
  gap: 5px;
}

.zweryfikowany svg {
  width: 1em;
  height: 1em;
}

.col2 {
  text-align: left;
}

.naglowek {
  font-weight: 700;
  font-size: 1.17em;
  margin-bottom: 6px;
  color: #212121;
}

.opinion-tresc {
  font-size: 1.05em;
  color: #222;
  margin: 0;
}

.col3 {
  text-align: right;
  color: #888;
  font-size: 0.8em;
  font-weight: var(--font-semi-bold);
  white-space: nowrap;
}


/* --- IKONY SOCIAL MEDIA W MENU --- */
.social-icons-menu-wrapper {
  margin-top: 30px;
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(74, 64, 58, 0.3);
  border-radius: 50%;
  color: #4a403a;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle i {
  font-size: 16px;
}

.social-circle:hover {
  border-color: #4a403a;
  background-color: #4a403a;
  color: #fff;
  transform: translateY(-3px);
}


/* ==================== FOOTER ==================== */


/* 
.footer__logo span:hover {
  background-position: 100%; 
  text-shadow: 0 0 12px rgba(255,255,255,0.9);
} */


/*=============== KARUZELA VIDEO ===============*/
.carousel-video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3rem 0 0 0;
  position: relative;
}

.carousel {
  max-width: 1300px;
  position: relative;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-leniss-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.carousel-scroll-wrapper {
  overflow-x: auto;
  /* scroll-behavior: smooth; */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
  scroll-snap-type: x mandatory;
  padding-left: 30px;
  padding-right: 30px;
}

.carousel-scroll-wrapper.dragging {
  cursor: grabbing;
  user-select: none;
}

.carousel-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: inline-flex;
  gap: 15px;
  width: max-content;
  scroll-snap-type: x mandatory;
}

.video-tile-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  background: #006A4E;
  border-radius: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 285px;
  height: 450px;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.video-tile-video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1.5rem 1.5rem 0 0;
}

.video-tile-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(to top, rgba(1, 68, 33, 0.85) 50%, rgba(1, 68, 33, 0.0) 100%);
  color: #fff;
  font-size: 1rem;
  user-select: none;
  text-overflow: ellipsis;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 4px 0;
  white-space: nowrap;
  text-align: center;
  letter-spacing: .5px;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
  transition: background 0.3s, box-shadow 0.3s, opacity 0.3s ease;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
  z-index: 99;
  opacity: 0.85;
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-button:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  opacity: 0.85;
}

.carousel-button.is-disabled {
  display: none;
}

.carousel-button.hidden {
  opacity: 0;
  pointer-events: none;
}

.carousel-button--prev {
  left: 15px;
  transform: translateY(-50%) translateX(30px);
}

.carousel-button--next {
  right: 15px;
  transform: translateY(-50%) translateX(-30px);
}


.tile-play-pause-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: default;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  user-select: none;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  opacity: .85;
}

.tile-play-pause-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.tile-play-pause-btn svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}


.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  user-select: none;
  z-index: 20;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  transform: none;
}

.close-btn svg {
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.play-pause-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 1.5rem;
  font-weight: normal;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  user-select: none;
  z-index: 20;
  line-height: 1;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
  transform: none;
}

.play-pause-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.play-pause-btn svg {
  display: block;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 2rem;
  z-index: 20;
}

.carousel-dots button {
  background: transparent;
  border: none;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  border: 2px solid #006A4E;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  padding: 0;
}

.carousel-dots button.active,
.carousel-dots button:hover {
  background-color: #006A4E;
  border-color: #006A4E;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(18, 22, 20, 0.9);
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal-content {
  display: flex;
  max-width: 1300px;
  width: 25vw;
  height: 600px;
  max-height: 90vh;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  padding: 0;
  background-color: transparent;
}

.modal-video-wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}


.modal-video-wrapper>video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(64, 42, 35, 0.25);
  object-position: center center;
}

.modal-description {
  display: none;
}

.modal-video-wrapper>video {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 1.5rem 0 0 1.5rem;
  box-shadow: 0 8px 24px rgba(64, 42, 35, 0.25);
  object-position: center 30%;
}

.video-poster {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  display: block;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.video-tile-video-preview {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 1.5rem 1.5rem 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  pointer-events: none;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.no-scroll {
  overflow: hidden !important;
}

#overlayBlocker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  z-index: 9999;
  pointer-events: auto;
  display: none;
}


@media (min-width: 768px) {

  .carousel-video-section {
    padding: 5rem 2rem 3rem 2rem;
  }

  /* .carousel {
    padding: 0 2rem;
    margin: 0 2rem;
  } */

  .carousel {
    width: 95vw;
  }

  .destination__container {
    grid-template-columns: repeat(2, 350px);
    gap: 2rem;
  }

}

@media (max-width: 767px) {
  .carousel-button {
    width: 50px;
    height: 50px;
    font-size: 2rem;
    right: 30px;

  }

  .carousel-button svg {
    width: 24px;
    height: 24px;
  }

  .carousel {
    width: 90vw;
  }

  .carousel-scroll-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }

  .testimonial__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
  }

  .testimonial__img {
    height: auto;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .testimonial__swiper {
    padding: 3rem;
  }

  .video-tile-card {
    width: 70vw;
    height: calc(70vw * 4 / 3);
    scroll-snap-align: center;
    margin-right: 10px;
    z-index: 1;
  }

  .carousel-track {
    gap: 0;
  }

  .modal-content {
    max-width: 360px;
    width: 50vw;
    max-height: 85vh;
    height: auto;
    border-radius: 12px;
    /* padding: 15px; */
    /* background: #fff; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    margin: 0;
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 1.5rem;
  }

  .play-pause-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 30px;
    height: 30px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
    z-index: 30;
    transform: none;
  }

  .close-btn {
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  }

  .modal-video-wrapper {
    width: 100%;
    height: 60vh;
    border-radius: 10px 10px 0 0;
    box-shadow: none;
    margin-bottom: 15px;
  }

  .modal-description {
    width: 100%;
    max-height: 25vh;
    overflow-y: auto;
    padding: 10px;
    font-size: 0.9rem;
    line-height: 1.3;
    color: #402a23;
  }

  .modal-video-wrapper>video {
    border-radius: 1.5rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 8px 24px rgba(64, 42, 35, 0.25);
    object-position: center 20%;
  }

  .video-tile-video-preview {
    display: none !important;
  }

  .video-poster {
    display: block !important;
  }

}




@media screen and (min-width: 769px) and (max-width: 1149px) {
  .testimonial__container {
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
    margin: 0 auto;
  }

  .consultations-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 2rem;
    max-width: 900px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .tile-square,
  .tile-horizontal {
    grid-column: auto;
    grid-row: auto;
  }

  .tile-square .text-raised-white {
    font-size: 2.3rem;
  }

  .button-wrapper {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

  .button-consultation {
    max-width: 100%;
  }

  #tile-horizontal-1,
  #tile-horizontal-2,
  #tile-horizontal-3 {
    width: 100%;
    box-sizing: border-box;
  }

  .carousel-video-box {
    max-width: 1100px;
    margin: 20px 20px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .section__subtitle {
    margin-top: .2rem;
  }

  h2.section__title {
    margin: 0 0 2rem 0;
  }

  .preparation-after h2.section__title {
    margin: 0;
  }

  .preparation-after h3.section__subtitle {
    font-size: 18px;
  }
}


/* 
@media (max-width: 480px) {
  .faq-header {
    padding: 30px 15px;
  }

  .faq-header h1 {
    font-size: 1.6rem;
  }

  .search-box {
    padding: 8px 15px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
} */

::-webkit-scrollbar {
  width: 16px;
}

::-webkit-scrollbar-track {
  background: rgba(176, 125, 36, 0.03);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(138, 109, 59, 0.5);
  border: 6px solid transparent;

  background-clip: content-box;
  border-radius: 20px;
  transition: background-color 0.3s ease, border-width 0.3s ease;
}

/* --- SCROLLBAR HOVER: DARK MODE (Przyciemnianie) --- */
::-webkit-scrollbar-thumb:hover {
  background-color: #f88800 !important;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5) !important;
}

.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: var(--body-color);
  box-shadow: 0 8px 16px hsla(0, 0%, 0%, .1);
  color: var(--title-color);
  display: inline-flex;
  padding: 6px;
  font-size: 1.25rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s, background-color .4s;
}

.scrollup:hover {
  transform: translateY(-.5rem);
}

/* #scroll-up {
  z-index: 999;
  transition: opacity 0.3s ease;
}

.modal[style*="display: flex"] + #scroll-up {
  display: none !important; 
} */


/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}

.modal-content.active .scrollup {
  display: none;
}

/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 320px) {
  .container {
    margin-inline: 1rem;
  }

  .home {
    height: auto;
    padding: 9rem 0;
  }


  .home__title {
    font-size: 1.1rem;
  }

  .home__description {
    font-size: 0.9rem;
    font-weight: 200;
  }

  .home__text {
    padding: 1.2rem 1rem;
    margin: 0 10px;
  }

  .text-container.shadow-box {
    padding: 15px 16px;
    margin: 1rem 1rem;
    font-size: 0.9rem;
    max-width: 90vw;
  }

  .consultations-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
    margin: 0 auto;
  }

  .tile h3 {
    font-size: 1.2rem;
  }

  .numbered-section {
    max-width: 100%;
    margin: 20px 15px;
    padding: 15px 18px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-description {
    font-size: .75rem;
    margin-bottom: 15px;
  }

  .fancy-list li {
    margin-bottom: 18px;
  }

  .number-circle {
    min-width: 28px;
    height: 28px;
    font-size: .85rem;
  }

  .fancy-list li:not(:last-child)::after {
    left: 14px;
    top: 34px;
    bottom: -15px;
    width: 1.8px;
  }

  .content {
    margin-left: 12px;
  }

  .content h3 {
    font-size: .9rem;
  }

  .content p {
    font-size: .7rem;
  }

  .testimonial__swiper {
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .destination__container,
  .gallery__container {
    grid-template-columns: 250px;
  }

  .faq-container {
    width: calc(100% - 20px);
  }

  .faq-content {
    padding-left: 10px;
    padding-right: 0;
    direction: rtl;
  }

  .faq-category,
  .faq-question,
  .faq-answer {
    direction: ltr;
  }

  .carousel-video-box {
    max-width: 100%;
    margin: 10px 10px;
    padding-left: 10px;
    padding-right: 10px;
  }


}

/* @media screen and (min-width: 375px) {
  .container {
    margin-inline: 1rem;
  }

  .home {
    height: auto;
    padding: 7rem 4rem;

  }
} */


/* ========== BREAKPOINT 576 px ========== */
@media screen and (max-width: 576px) {
  main {
    padding-top: 40px;
  }

  .section {
    padding-block: 1rem 1rem;
  }

  .home {
    padding-top: 12rem;
  }

  /* .home__text {
    backdrop-filter: none;
  } */

  .home__title {
    font-size: 1.4rem;
  }

  .home__description {
    font-size: .9rem;
  }

  .shadow-box h3 {
    margin-top: 0;
  }

  .shadow-box p {
    line-height: 1.6;
    font-size: .8rem;
  }

  h2.section__title {
    font-size: 1.4rem;
    margin: 1rem 0 2rem 0;
  }

  h2.section__subtitle {
    font-size: .9rem;
    margin-bottom: 1rem;
  }


  .text-container.shadow-box {
    padding: 2rem;
  }

  .preparation.section h2.section__title {
    padding: 0 3rem;
  }

  .faq h2.section__title {
    padding: 0 3rem;
  }

  .consultations-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 1rem;
    max-width: 100%;
    margin: 0 auto;
  }

  .tile {
    width: 100%;
    padding: 1.5rem;
  }

  .tile-square {
    grid-column: 1 / 2;
    grid-row: auto;
  }

  .tile-horizontal {
    grid-row: auto;
  }

  .button-wrapper {
    grid-column: 1 / 2;
  }

  .button-consultation {
    max-width: 100%;
  }

  .tile h3 {
    font-size: 1.1rem;
    min-height: 3.4rem;
  }

  .tile h3#three {
    min-height: 1rem;
  }

  .tile-square .text-raised-white {
    font-size: 1.6rem;
    margin-top: 2rem;
  }

  .tile-square .text-raised-white-1 {
    padding: .6rem 0 0 0;
    font-size: .8rem;
  }

  .tile-square .text-raised-white-1 span {
    font-size: 1rem;
    font-weight: bold;
  }

  .tile-square .text-raised-white-2 {
    font-size: .7rem;
    margin: 0;
    font-weight: 100;
  }

  .testimonial__title {
    font-size: 1.1rem;
  }

  .testimonial__subtitle {
    font-size: .7rem;
  }

  .testimonial__description {
    font-size: .8rem;
    /* text-align: justify; */
  }

  .numbered-section {
    max-width: 90%;
    margin: 30px 20px;
    padding: 2rem 1.5rem;
  }

  .content h3 {
    font-size: .9rem;
  }


  .content p {
    font-size: .8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-description {
    font-size: .85rem;
  }

  .fancy-list li {
    margin-bottom: 22px;
  }


  .tile ul.liststyle li {
    line-height: 1.5;
    font-size: .8rem;
    padding: .1rem 0 .3rem 1.2rem;
    color: #343434;
  }

  #tile-horizontal-3 p strong {
    margin-bottom: 0;
  }

  #tile-horizontal-2 p strong {
    margin-bottom: 1rem;
    font-size: .9rem;
    text-align: left;
  }


  .tile ul.liststyle li strong {
    font-size: .8rem;
  }

  .number-circle {
    min-width: 30px;
    height: 30px;
    font-size: .9rem;
  }

  .fancy-list li:not(:last-child)::after {
    left: 15px;
    top: 36px;
    bottom: -16px;
    width: 1.9px;
  }

  .join__button {
    margin: 1rem;
    font-size: .8rem;
  }


  .join__button i {
    font-size: 1rem;
  }

  .control-tile__data {
    padding: 2rem;
  }

  .modal-content {
    max-width: 460px;
    width: 80vw;
    max-height: 95vh;
    /* height: auto; */

  }

  .carousel-button {
    width: 35px;
    height: 35px;
    font-size: 1rem;
    right: 15px;
    bottom: 100px;
  }

  .video-tile-caption {
    font-size: .8rem;
  }

  .content {
    margin-left: 15px;
  }

  .faq-container {
    width: calc(100% - 30px);
  }

  .faq-content {
    padding-left: 10px;
    padding-right: 0;
    direction: rtl;
  }

  .faq-category,
  .faq-question,
  .faq-answer {
    direction: ltr;
  }

  .faq-question h4 {
    font-size: .85rem;
  }

  .faq-answer p {
    margin: 1rem 1rem 1rem 1.5rem;
  }

  .destination__container {
    grid-template-columns: 90%;
  }

  .destination__title {
    font-size: 1.1rem;
  }

  h2.destination__title {
    font-size: 1rem;
    padding-bottom: .2rem;
  }

  .destination__country span {
    font-size: .7rem;
    line-height: 1.3;
  }


  .control-tile span {
    font-size: var(--smaller-font-size);
  }

  .testimonial__img {
    width: 100%;
    max-width: 500px;
  }

  .testimonial__swiper {
    width: 100%;
    max-width: 500px;
    padding: 2.5rem 2rem 3rem 1.25rem;
    border-radius: 0 0 1.5rem 1.5rem;
    min-height: 350px;
  }

  .testimonial__description {
    margin-top: 1rem;
  }

  .faq-container {
    margin-left: 15px;
    margin-right: 15px;
  }

  .faq-content {
    padding: 0;
    margin: 0;
    direction: rtl;
  }

  .faq-category,
  .faq-question,
  .faq-answer {
    direction: ltr;
  }

  .carousel-video-box {
    max-width: 540px;
    margin: 15px 15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ========== BREAKPOINT > 576 px ========== */
@media screen and (min-width: 576px) {


  .home__title {
    font-size: 1.8rem;
  }

  .home__description {
    font-size: .9rem;
    font-weight: 200;
  }

  .home__text {
    padding: 1.5rem 1.5rem;
    margin: 0 20px;
  }

  .text-container.shadow-box {
    padding: 18px 20px;
    margin: 2rem auto;
    max-width: 540px;
    font-size: 1rem;
  }

  .home__swiper {
    max-width: 400px;
  }


  .join__container {
    grid-template-columns: 380px;
    justify-content: center;
  }

  .join__img {
    width: 380px;
  }


  .consultations-grid {
    padding: 0 2rem;
    grid-template-columns: 1fr 1fr;
    max-width: 900px;
  }

  .tile h3 {
    min-height: 6rem;
  }

  .tile h3#three {
    min-height: 1rem;
  }

  .destination__container {
    grid-template-columns: 550px;
  }

  .button {
    width: auto;
  }

  .control-tile span {
    line-height: normal;
  }

  .carousel-video-box {
    max-width: 1100px;
    margin: 20px 20px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }


}


@media screen and (min-width: 577px) and (max-width: 1149px) {

  .text-container.shadow-box {
    padding: 30px 30px;
    margin: 2rem auto;
    max-width: 90vw;
    font-size: 1rem;
  }

  .testimonial__img {
    width: 100%;
    max-width: 500px;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .testimonial__swiper {
    width: 100%;
    max-width: 500px;
    min-height: 400px;
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .faq-container {
    width: calc(100% - 40px);
  }

  .faq-content {
    padding-left: 10px;
    padding-right: 0;
    direction: rtl;
  }

  .faq-category,
  .faq-question,
  .faq-answer {
    direction: ltr;
  }

  .carousel-video-box {
    width: calc(100% - 40px);
    margin: 20px auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .numbered-section {
    margin: 2rem;
  }

  .tile-square .text-raised-white-1 {
    font-size: .9rem;
  }

  .tile-square .text-raised-white-2 {
    font-size: .7rem;
  }


}

/* ========== DESKTOP >1 150 px ========== */

@media screen and (min-width: 1150px) {

  .home__title {
    font-size: 3.5rem;
  }

  .home__description {
    font-size: .9rem;
    font-weight: 200;
  }

  .home__text {
    padding: 2.5rem 3rem;
    max-width: 950px;
  }

  .container {
    margin-inline: auto;
  }

  /* 
  .section {
    padding-block: 7rem 2rem;
  } */

  .section__title {
    margin-bottom: 4rem;
  }

  /* .nav {
    height: calc(var(--header-height) + 2rem);
    column-gap: 4rem;
    width: 1500px;
  } */


  .bg-header .nav__link {
    color: var(--title-color);
  }

  .bg-header .nav__link::after {
    background-color: var(--title-color);
  }

  .home {
    padding-top: 15rem;
  }

  .home__text {
    padding: 2rem 3rem;
    width: 85%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .home__title {
    font-size: 2.5rem;
    line-height: 130%;
    margin: 0;
  }

  .home__description {
    font-size: 1rem;
    max-width: 900px;
    font-weight: 200;
  }

  .home__swiper {
    max-width: 500px;
    transform: translateX(-3rem);
  }

  .home .swiper-button-prev,
  .home .swiper-button-next {
    bottom: 2rem;
  }

  .home .swiper-button-prev {
    right: 4.5rem;
  }

  .home .swiper-button-next {
    right: 2rem;
  }

  .section__subtitle {
    margin-top: 1rem;
  }

  .text-container.shadow-box {
    font-size: .7rem;
  }

  .text-container.shadow-box {
    padding: 2.5rem 2.5rem;
    max-width: 1200px;
    font-size: 1.05rem;
    margin-bottom: 5rem;
    margin-top: 3rem;
  }

  .consultations-grid {
    padding: 0 3rem;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1300px;
  }

  .tile-square .text-raised-white {
    font-size: 2.5rem;
  }

  .tile ul.liststyle li {
    padding: .2rem 0 .4rem 1.5rem;
    /* line-height: 1.4; */
  }

  .tile h3 {
    /* font-size: 1.1rem; */
    min-height: 5rem;
  }

  .tile h3#three {
    min-height: 1rem;
  }

  .tile-square .text-raised-white-1 span {
    font-size: 1rem;
    font-weight: bold;
  }

  .numbered-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px;
  }

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

  h2.section__subtitle {
    margin-top: 1rem;
  }

  h3.section__subtitle {
    margin-top: -4rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .fancy-list li {
    margin-bottom: 27px;
  }

  .number-circle {
    min-width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  /* .content h3 {
    font-size: 1rem;
  } */

  .content p {
    font-size: .9rem;
  }

  .fancy-list li:not(:last-child)::after {
    left: 16px;
    top: 42px;
    bottom: -20px;
    width: 2px;
  }

  .content {
    margin-left: 16px;
  }

  .destination__container {
    grid-template-columns: repeat(2, 550px);
    gap: 2rem;
  }

  .join__button {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
  }

  .testimonial__container {
    grid-template-columns: 600px 700px;
    margin-bottom: 4rem;
  }

  .testimonial__img {
    width: 600px;
    border-radius: 1.5rem 0 0 1.5rem;
  }

  .testimonial__swiper {
    border-radius: 0 1.5rem 1.5rem 0;
    max-width: 550px;
    padding: 5rem 2rem 3rem 2rem;
    min-height: 500px;
  }

  .testimonial__title {
    margin-bottom: .4rem;
    font-size: 1.6rem;
  }

  .testimonial__subtitle {
    margin-bottom: 1rem;
  }

  .testimonial__description {
    margin-bottom: 3rem;
    margin-top: 2rem;
  }

  .testimonial .swiper-button-prev,
  .testimonial .swiper-button-next {
    bottom: 2.5rem;
  }

  .testimonial .swiper-button-prev {
    right: 5rem;
  }

  .testimonial .swiper-button-next {
    right: 3rem;
  }

  .gallery__container {
    grid-template-columns: repeat(2, 500px);
    gap: 2rem;
  }

  .gallery__data {
    left: 2rem;
    bottom: 2rem;
  }

  .gallery__title {
    font-size: var(--h1-font-size);
  }

  .join__container {
    grid-template-columns: 360px 500px;
    align-items: center;
    column-gap: 10rem;
  }

  .join__data {
    text-align: initial;
  }

  .join__data .section__title {
    margin-bottom: 1.5rem;
    text-align: initial;
  }

  .join__description {
    margin-bottom: 3rem;
  }

  .faq-container {
    width: calc(100% - 40px);
  }

  .carousel {
    max-width: 65vw;
  }

  .faq-content {
    direction: rtl;
    padding-left: 10px;
    padding-right: 0;
  }

  .faq-category,
  .faq-question,
  .faq-answer {
    direction: ltr;
  }

  .join__img {
    width: 500px;
  }

  .carousel-video-box {
    max-width: 1100px;
    margin: 20px auto;
    padding-left: 20px;
    padding-right: 20px;
  }



  .scrollup {
    right: 3rem;
  }

  .testimonial__swiper {
    max-width: 500px;
  }
}


@media screen and (min-width: 2048px) {
  body {
    zoom: 1.4;
  }

  .container {
    max-width: 1920px;
  }

  .home {
    height: 90vh;
  }

  .home__title {
    font-size: 4rem;
  }

  .home__description {
    font-size: 1.1rem;
    font-weight: 200;
  }

  .home__text {
    padding: 3rem 5rem;
    max-width: 1400px;
  }

  .home__swiper {
    max-width: 1300px;
    transform: translateX(-6rem);
  }

  .text-container.shadow-box {
    padding: 30px;
    max-width: 1300px;
    font-size: 1.2rem;
    margin: 40px auto;
  }

  .consultations-grid {
    padding: 0 7vw;
    max-width: 1800px;
  }

  .tile {
    padding: 40px;
  }

  .tile h3 {
    font-size: 2rem;
  }

  .testimonial__container {
    grid-template-columns: 600px 700px;
    max-width: 1300px;
    margin: 0 auto;
  }

  .carousel-video-box {
    max-width: 1100px;
    margin: 20px auto;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1149px) {
  .testimonial__container {
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
    margin: 0 auto;
  }

  .testimonial__img {
    border-radius: 1.5rem 0 0 1.5rem;
  }

  .testimonial__swiper {
    border-radius: 0 1.5rem 1.5rem 0;
  }

  .destination__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
  }

  .join__button {
    grid-column: 1 / -1;
    justify-self: center;
    width: auto;
  }

  .faq-answer ul {
    padding-left: 1.25rem;
  }

  .faq-answer ul li {
    font-size: var(--small-font-size);
  }
}


@media screen and (min-width: 2048px) {
  .testimonial__container {
    grid-template-columns: 600px 700px;
  }

  .testimonial__img {
    width: 800px;
  }

  .testimonial__swiper {
    max-width: 650px;
    padding: 8rem 6rem 3rem 2rem;
    min-height: 600px;
  }

  .testimonial__subtitle {
    margin-bottom: 1rem;
  }

  .testimonial__description {
    margin-top: 2.5rem;
  }

  .destination__container {
    grid-template-columns: repeat(2, 600px);
    gap: 3rem;
  }

  .faq-container {
    width: 100%;
    max-width: 1100px;
  }

  .faq-content {
    padding-right: 10px;
    padding-left: 0;
    direction: ltr;
  }

  /* .kafelek h3 {
  margin-top: 0;
  min-height: 7rem;

}  */
}

.hero-container {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0;
  margin: 0;
  background-color: var(--hero-bg-color, #E6DBC6);
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  background-color: var(--hero-bg-color, #E6DBC6);
  pointer-events: none;
}

#background-video.loaded {
  opacity: 1;
}

/* .video-overlay {
  background: radial-gradient(circle,
      rgba(43, 38, 35, 0.2) 0%,
      rgba(43, 38, 35, 0.7) 100%
    );
} */

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(138, 90, 30, 0.4);
  mix-blend-mode: multiply;

  z-index: 1;
  pointer-events: none;
}

/* .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;


  background: radial-gradient(circle at center,
      rgba(60, 50, 40, 0.4) 0%,

      rgba(40, 30, 20, 0.85) 100%

    );

} */

/* .main-header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  padding-bottom: 15px;
} */

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  box-sizing: border-box;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

/* .main-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
} */

.logo a {
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo img {
  display: block;
  width: 85px;
  max-width: 100%;
  height: auto;
  user-select: none;
  margin-top: .5rem;
}

.header-right-section {
  display: flex;
  align-items: center;
  gap: 25px;
}

.social-media a {
  display: inline-block;
  color: #fff;
  font-size: 1rem;
  margin-left: 10px;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#lang-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  color: #fff;
  border-radius: 30px;
  padding: 5px 10px;
  font-family: 'Marmelad', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  width: 50px;
  text-align: center;
}

body.nav-active #lang-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  border-radius: 30px;
  padding: 4px;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: 'Marmelad', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
  padding: 5.5px 12px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);

  will-change: transform, background, box-shadow, border-color;
}


.lang-btn.active {
  color: #ffffff;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.15),
    inset 0 0 5px rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);

  transform: scale(1);
}

.lang-btn:not(.active):hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 5;
  text-align: center;
  transform: translateY(0%);
  padding: 0 20px;
  text-transform: capitalize;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  /* font-family: 'Marcellus', serif; */
  font-family: var(--font-head);
}

/* .headings {
  margin-bottom: 10px;
} */

.hero-content h1 {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  /* text-shadow: 0 0 3px var(--white-color); */
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  /* animation: fadeInUps 1s 0.4s forwards; */
  color: #ffffff;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
}

.hero-content h2 {
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); */
  opacity: 0.9;
  /* background: linear-gradient(to right, #E8DCC0, #E8DCC0); */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* text-shadow:
    0 0 1px rgba(255, 195, 117, 0.7),
    0 0 3px rgba(255, 202, 111, 0.674); */
  opacity: 0;
  /* animation: fadeInUps 1s 0.5s forwards; */
  color: #f7dfaf;

}

.hero-content p {
  font-family: 'Playfair Display', sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 100;
  letter-spacing: 1px;
  text-transform: none !important;
  font-style: normal !important;
  opacity: 0;
  font-size: clamp(.75rem, 2vw, .85rem);
}



/* .cta-button {
  display: inline-block;
  padding: 17px 30px;
  border-radius: 50px;
  letter-spacing: 2px !important;
  font-weight: 400 !important;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInUps 1s 1s forwards;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cta-button:hover {
  background: #ffffff;
  color: #2B2623;
  border-color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-weight: 500 !important;
} */

.cta-wrapper {
  opacity: 0;
  display: inline-block;
  will-change: opacity, transform, filter;
}


/* ---  PRZYCISK (Odpowiada za wygląd i interakcję) --- */
.cta-button {
  position: relative;
  display: inline-block;
  padding: 18px 36px;
  background: transparent;
  border: none;
  font-family: var(--font-head) !important;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateZ(0);
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow:
    0 4px 30px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- INTERAKCJA HOVER --- */
.cta-button:hover {
  transform: translateY(-3px);
}

.cta-button:hover::before {
  transform: scale(1.04);
  /* background: rgba(255, 255, 255, 0.25); */
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.18),
    inset 0 0 20px rgba(255, 255, 255, 0.18);
}

/* ANIMACJE */
@keyframes fadeInUps {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-content h1 {
  animation: fadeInUps 1.8s 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content h2 {
  animation: fadeInUps 1.8s 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content p {
  animation: fadeInUps 1.8s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.cta-wrapper {
  /*  animation: fadeInUps 2.5s 2.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;*/
  animation: adeInUp 2.5s 3.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}


.hero-footer-bar {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
  padding-bottom: env(safe-area-inset-bottom, 20px);
  transition: none !important;
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.scroll-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  white-space: nowrap;
  /* transition: opacity 0.5s ease; */
  animation: pulseText 3s infinite ease-in-out;
  font-family: var(--font-head);
  /* transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; */
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.scroll-line-container {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.scroll-line-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(247, 223, 175, 0) 0%,
      rgba(247, 223, 175, 0.5) 40%,
      #ffffff 50%,
      rgba(247, 223, 175, 0.5) 60%,
      rgba(247, 223, 175, 0) 100%);
  filter: blur(0.5px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  animation: lightBeam 2.5s infinite;
}

@keyframes lightBeam {

  0% {
    transform: translateY(-100%);
  }

  10% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

#background-video {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-color: #000;
}

#background-video.loaded {
  opacity: 1;

}

/* .logo a:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
} */

.social-media a:hover {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.hero-content.translating {
  opacity: 0;
  transform: translateY(10px);
  animation-play-state: paused !important;
}

.hero-content.translating .scroll-text {
  animation: none !important;
}

.hero-stats-bar.translating {
  opacity: 0 !important;
  /* transform: translateY(10px); */
}

#lang-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

#lang-toggle.active {
  background-color: #fff;
  color: #000;
}


.mouse-down {
  position: absolute !important;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  z-index: 10;
  width: 22px;
  height: 38px;
  border: 1.2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  opacity: 0.7;
}

.bullet {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 5px;
  background: #fff;
  border-radius: 4px;
  animation: scrollFlow 2s infinite;
}

@keyframes scrollFlow {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
  }
}



/* PASTYLKA NAWIGACYJNA */

#smartNav {
  --sn-paper-bg: #fdfbf7;
  --sn-gold-dark: #8A6D3B;
  --sn-gold-matte: #9e7e4b;
  --sn-text-main: #4a403a;
  --sn-paper-texture: url('../img/cream-paper-2.png');
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: normal;
  text-align: left;
  box-sizing: border-box;
}

#smartNav *,
#smartNav *::before,
#smartNav *::after {
  box-sizing: border-box;
}

/* Główny kontener */
#smartNav.tactile-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  width: max-content;
  max-width: 90vw;
  transform: translate(-50%, -140%) scale(0.92);
  opacity: 0;
  pointer-events: none;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 12px 6px;
  border-radius: 64px;
  box-shadow:
    0 4px 6px -1px rgba(60, 45, 30, 0.12),
    0 10px 15px -3px rgba(60, 45, 30, 0.20),
    0 25px 50px -12px rgba(60, 45, 30, 0.35);
  z-index: 99999;
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.2, 1), opacity 0.3s ease-in;
}

/* Stan widoczny */
#smartNav.tactile-nav.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease;
}


/* --- BLOKADA SCROLLA  --- */
body.lock-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
}


/* --- PANEL REGULAMINU --- */
#etiquettePanel.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}

/* --- UKRYWANIE PASTYLKI--- */
#smartNav.force-hide {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s;
}

/* Tło papierowe */
#smartNav .nav-texture {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background-color: var(--sn-paper-bg, #fdfbf7);
  background-image: var(--sn-paper-texture);
  background-blend-mode: multiply;
  box-shadow:
    inset 0 4px 6px rgba(255, 255, 255, 0.95),
    inset 0 -4px 8px rgba(138, 109, 59, 0.12),
    0 0 0 1px rgba(138, 109, 59, 0.25);
}


/* Lista */
#smartNav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  flex: 1;
}

#smartNav .nav-item {
  position: relative;
  margin: 0;
  padding: 0;
}

#smartNav .nav-item a {
  text-decoration: none;
  font-family: var(--font-head);
  color: var(--sn-text-main);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 6px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Linki */
#smartNav .nav-item a,
#smartNav .dropdown-toggle {
  text-decoration: none !important;
  font-family: var(--font-head);
  color: var(--sn-text-main);
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  padding: 8px 4px;
}

#smartNav .nav-item a:hover,
#smartNav .dropdown-toggle:hover {
  color: var(--sn-gold-dark);
}

#smartNav .chevron {
  font-size: 10px;
  transition: transform 0.3s;
  opacity: 0.6;
}

#smartNav .nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* Submenu */
#smartNav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 170px;
  background: var(--sn-paper-bg);
  border-radius: 12px;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px rgba(60, 45, 30, 0.15);
  border: 1px solid rgba(138, 109, 59, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 100000;
}

#smartNav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

#smartNav .dropdown-menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: block;
}

#smartNav .dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  color: var(--sn-text-main);
  text-align: center;
  border-bottom: 1px solid rgba(138, 109, 59, 0.08);
  background: transparent;
}

#smartNav .dropdown-menu li:last-child a {
  border-bottom: none;
}

#smartNav .dropdown-menu li a:hover {
  background: rgba(138, 109, 59, 0.08);
  color: var(--sn-gold-dark);
}

/* Przycisk */
#smartNav .shop-return {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
  border-radius: 50%;
  background: rgba(138, 109, 59, 0.05);
  box-shadow:
    inset 0 2px 4px rgba(60, 45, 30, 0.08),
    0 1px 1px rgba(255, 255, 255, 0.8);
  margin-right: 10px;
  transition: background 0.3s ease;
}

#smartNav .shop-return:hover {
  background: rgba(138, 109, 59, 0.1);
  transform: none !important;
}

#smartNav .shop-return .pill-icon-custom {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
}

#smartNav .shop-return:hover .pill-icon-custom {
  transform: scale(1.08) !important;
  color: #b48811 !important;
}


#smartNav .shop-return::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, rgba(138, 109, 59, 0.3), transparent);
}


#smartNav .btn-inset-gold {
  background-color: var(--sn-paper-bg);
  background-image: var(--sn-paper-texture);
  background-blend-mode: multiply;
  color: var(--sn-text-main);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(138, 109, 59, 0.2);

  box-shadow:
    0 6px 12px -3px rgba(138, 109, 59, 0.15),
    inset 0 2px 0 rgba(255, 255, 255, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

#smartNav .btn-icon {
  font-size: 14px;
  color: var(--sn-gold-dark);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


#smartNav .btn-inset-gold:hover {
  border-color: rgba(138, 109, 59, 0.5);
  background-color: #fffefc;
  box-shadow:
    0 15px 30px -5px rgba(138, 109, 59, 0.2),
    inset 0 0 0 transparent,
    0 0 0 1px rgba(138, 109, 59, 0.1);
  color: var(--sn-gold-dark) !important;
}

#smartNav .btn-inset-gold:hover .btn-icon {
  transform: scale(1.01);
  color: #b48811;
}


#smartNav .btn-inset-gold:active {
  transform: translateY(1px);
  box-shadow:
    0 2px 10px rgba(60, 45, 30, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

#smartNav .pill-icon-custom {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
  color: #8A6D3B;
}

#smartNav .pill-icon-custom:hover {
  /* transform: scale(1.15) rotate(-10deg); */
  color: #b48811;
}

#smartNav .pill-icon-custom svg {
  stroke: currentColor;
  display: block;
}


#smartNav.tactile-nav {
  padding: 16px;

  border-radius: 64px;
}


#smartNav .brand-zone {
  display: flex;
  align-items: center;
  gap: 25px;
}


#smartNav .brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.8;

}

#smartNav .brand-icon:hover {
  transform: scale(1.1);
  opacity: 1;
}

#smartNav .nav-separator {
  width: 1px;
  height: 22px;
  background-color: rgba(138, 109, 59, 0.3);
}


/*  KURTYNA #hero */
.page-transition-curtain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


@media (hover: hover) {

  #smartNav .nav-item a:hover,
  #smartNav .dropdown-toggle:hover {
    color: var(--sn-gold-dark);
  }

  #smartNav .nav-item:hover .chevron {
    transform: rotate(180deg);
  }

  #smartNav .nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  #smartNav .btn-inset-gold:hover {
    transform: translateY(-2px);
    border-color: rgba(138, 109, 59, 0.5);
    background-color: #fffefc;
    box-shadow:
      0 15px 30px -5px rgba(138, 109, 59, 0.2),
      inset 0 0 0 transparent,
      0 0 0 1px rgba(138, 109, 59, 0.1);
  }

  #smartNav .btn-inset-gold:hover .btn-icon {
    transform: scale(1.15) rotate(-10deg);
    color: #b48811;
  }

  #smartNav .brand-icon:hover {
    transform: scale(1.1);
    opacity: 1;
    color: #b48811;
  }

  #smartNav .pill-icon-custom:hover {
    color: #b48811;
  }
}

/* Dostępność - stany focus */
#smartNav .nav-item a:focus-visible,
#smartNav .dropdown-toggle:focus-visible,
#smartNav .btn-inset-gold:focus-visible,
#smartNav .brand-icon:focus-visible {
  outline: 2px solid var(--sn-gold-matte);
  outline-offset: 4px;
  border-radius: 4px;

}

#smartNav .btn-inset-gold:focus-visible {
  border-radius: 40px;

}

/* RWD */
@media (max-width: 768px) {

  /* GŁÓWNA PASTYLKA */
  #smartNav.tactile-nav {
    top: auto;
    bottom: 24px;
    transform: translate(-50%, 150%) scale(0.95);
    width: max-content;
    max-width: 96vw;
    padding: 13px 12px;
    gap: 8px;
  }

  #smartNav.tactile-nav.is-visible {
    transform: translate(-50%, 0) scale(1);
  }

  /* LISTA LINKÓW */
  #smartNav .nav-list {
    gap: 10px;
    flex: 1 1 auto;
  }

  #smartNav .nav-item a,
  #smartNav .dropdown-toggle {
    font-size: 13px !important;
    padding: 4px 2px;
    transition: color 0.4s ease-in-out, transform 0.4s ease-in-out;
  }

  #smartNav .hide-mobile {
    display: none;
  }


  #smartNav .btn-inset-gold {
    flex-shrink: 0;
    padding: 8px 12px;
    font-size: 13px;
  }


  #smartNav .brand-zone {
    gap: 8px !important;
  }

  #smartNav .shop-return {
    padding: 8px;
    margin-right: 8px;
  }

  #smartNav .shop-return::after {
    display: none;
  }

  /* #smartNav .nav-separator {
    height: 18px;
  } */

  #smartNav .brand-icon svg,
  #smartNav .pill-icon-custom svg {
    width: 19px;
    height: 19px;
  }

  #smartNav .dropdown-menu {
    bottom: 100%;
    top: auto;
    margin-bottom: 10px;
  }

  .scroll-text {
    font-size: 0.5rem;
    letter-spacing: 2px;
  }

  #smartNav .nav-item a[target="_blank"] svg {
    display: none !important;

  }


  /* KONIEC PASTYLKi*/

  /* --- PRZYCISK POWROTU DO SKLEPU --- */
  .return-to-shop-btn {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 99998;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 15px;
    color: var(--sn-text-main, #4a403a);
    text-decoration: none !important;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    letter-spacing: 0.02em;
  }

  .return-to-shop-btn svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .return-to-shop-btn:hover {
    opacity: 1;
    color: var(--sn-gold-dark, #8a6d3b);
  }

  .return-to-shop-btn:hover svg {
    transform: translateX(-4px);
  }

}

/* RWD dla przycisku powrotu */
@media (max-width: 768px) {
  .return-to-shop-btn {
    top: 20px;
    left: 20px;
    font-size: 13px;
    gap: 6px;
  }

  .return-to-shop-btn svg {
    width: 16px;
    height: 16px;
  }
}


.stat-item:hover .stat-icon {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-stats-bar {
  position: absolute;
  bottom: 50px;
  left: 20px;
  right: 20px;
  z-index: 10;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  width: calc(100% - 40px);
  max-width: none;
  padding: 0;
  box-sizing: border-box;
  flex-wrap: nowrap;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


.stats-group-left,
.stats-group-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 50%;
}


.stats-group-left {
  align-items: flex-start;
}

.stats-group-left .stat-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: auto;
}

.stats-group-right {
  align-items: flex-end;
}

.stats-group-right .stat-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  width: auto;
}

.stat-item {
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}


.stat-item .stat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.stat-icon img {
  width: 0.7rem;
  height: 0.7rem;
  display: block;
  filter: invert(1) grayscale(100%) brightness(100%);
  opacity: 0.8;
}

.stat-item .stat-text {
  font-size: 0.7rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  opacity: 0.7;
  white-space: nowrap;
  line-height: 1.2;
  transition: opacity 0.3s ease-in-out;
}


.stats-group-left .stat-icon {
  order: 1;
  margin-right: 5px;
  margin-left: 0;
}

.stats-group-left .stat-text {
  order: 2;
  text-align: left;
  margin-left: 5px;
  margin-right: 0;
}

.stats-group-right .stat-icon {
  order: 1;
  margin-left: 5px;
  margin-right: 0;
}

.stats-group-right .stat-text {
  order: 2;
  text-align: right;
  margin-right: 5px;
  margin-left: 0;
}


/* HAMBURGER IKONA */
.nav-but-wrap {
  position: relative;
  width: 35px;
  height: 30px;
  z-index: 101;
  font-family: 'Tenor Sans', sans-serif;
}

.menu-icon {
  width: 35px;
  height: 30px;
  position: relative;
  top: auto;
  right: auto;
  z-index: 2;

  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #fff;
  margin-bottom: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.menu-icon__line:last-child {
  margin-bottom: 0;
}

.menu-icon__line-left {
  width: 16.5px;
  transition: all 200ms linear;
}

.menu-icon__line-right {
  width: 16.5px;
  float: right;
  transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}

body.nav-active .menu-icon__line {
  background-color: #4a403a !important;
  box-shadow: none;
}

body.nav-active .menu-icon__line-left {
  width: 30px;
  transform: translateY(8px) rotate(45deg);
}

body.nav-active .menu-icon__line:nth-child(2) {
  opacity: 0;
}

body.nav-active .menu-icon__line:nth-child(3) {
  width: 30px;
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-active .menu-icon__line-right {
  width: 30px;
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-active .menu-icon:hover .menu-icon__line-left,
body.nav-active .menu-icon:hover .menu-icon__line-right {
  width: 30px;
}


/* --- TŁO MENU (TU JEST TEKSTURA) --- */

nav {
  position: fixed;
  top: 5px;
  right: 15px;
  z-index: 9999;
  pointer-events: none;
}

.nav:before,
.nav:after {
  content: "";
  position: fixed;
  top: 45px;
  right: 60px;
  width: 0;
  height: 0;
  border-bottom-left-radius: 100%;
  z-index: 2;
  transition:
    width 0.5s cubic-bezier(0.65, 0.05, 0.36, 1),
    height 0.5s cubic-bezier(0.65, 0.05, 0.36, 1),
    border-radius 0.5s ease;

  transition-delay: 0.3s;
}

/* WARSTWA CIENIA (Spód) */
.nav:before {
  background-color: rgba(74, 64, 58, 0.2);
  transition-delay: 0.1s;
}

.nav:after {
  background-color: #f0ebe5;
  background-image: url('../img/cream-paper-2.png');
  background-blend-mode: multiply;
  box-shadow: -10px 15px 40px rgba(0, 0, 0, 0.2);
  transition-delay: 0s;
}

.nav:after {
  background-color: #f0ebe5;
  background-image: url('../img/cream-paper-2.png');
  background-blend-mode: multiply;
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.15);
  transition-delay: 0s;
}

/* body.nav-active .nav-but-wrap {
  position: fixed; 
  z-index: 101;
  top: auto;
  right: auto;
} */


body.nav-active .nav {
  pointer-events: auto;
}

body.nav-active .menu-icon {
  position: fixed;
  top: 67px;
  right: 87px;
  z-index: 10001;
  transform: none;
  transition: top 0.3s ease, right 0.3s ease, transform 0.3s ease;
}

@media (max-width: 1024px) {
  body.nav-active .menu-icon {
    top: 45px;
    right: 45px;
  }
}

@media (max-width: 768px) {
  body.nav-active .menu-icon {
    top: 25px;
    right: 25px;
    /* transform: scale(0.8); */
  }
}

/* --- STANY AKTYWNE (OTWARTE MENU) --- */
body.nav-active .nav:before,
body.nav-active .nav:after {
  width: 300px;
  height: 320px;
  border-radius: 1.5rem;
  transition-delay: 0s;
}

body.nav-active .nav:before {
  transition-delay: 0s;
}

body.nav-active .nav:after {
  transition-delay: 0.15s;
}

/* Animacja PODMENU */
body.nav-active.box-expanded .nav:before,
body.nav-active.box-expanded .nav:after {
  height: 430px !important;
  transition-delay: 0s;
}

/* --- ZAWARTOŚĆ MENU --- */
.nav__content {
  position: fixed;
  visibility: hidden;
  top: 120px;
  right: 70px;
  width: 280px;
  text-align: right;
  z-index: 20001;
}

body.nav-active .nav__content {
  visibility: visible;
}

.nav__list {
  position: relative;
  padding: 0;
  margin: 0;
  z-index: 2;
  list-style: none;
}

.nav__list-item {
  position: relative;
  display: block;
  opacity: 0;
  transform: translate(30px, 0%);
  transition: opacity .2s ease, transform .3s ease;
  margin-top: 5px;
  margin-bottom: 5px;
}

body.nav-active .nav__list-item {
  opacity: 1;
  transform: translateX(0%);
}

body.nav-active .nav__list-item:nth-child(1) {
  transition-delay: 0.5s;
}

body.nav-active .nav__list-item:nth-child(2) {
  transition-delay: 0.6s;
}

body.nav-active .nav__list-item:nth-child(3) {
  transition-delay: 0.7s;
}

body.nav-active .nav__list-item:nth-child(4) {
  transition-delay: 0.8s;
}

body.nav-active .nav__list-item:nth-child(5) {
  transition-delay: 0.9s;
}

body.nav-active .social-icons-menu-wrapper {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.0s;
}

.nav__list-item a {
  position: relative;
  text-decoration: none;
  color: #2b2623;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-right: 40px;
  padding-left: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  transition: all 200ms linear;
  text-transform: lowercase;
}

.nav__list-item a:after {
  position: absolute;
  color: #4a403a;
  content: '';
  top: 50%;
  right: 0;
  width: 5px;
  height: 0;
  opacity: 0;
  background-color: #8c7b70;
  transition: all 200ms linear;
  transform: translateY(-50%);
  content: none;
}

.nav__list-item.active-nav a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #cda45e;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

.nav__list-item.active-nav a {
  font-weight: 600;
  color: #000;
}

.nav__list-item a:hover:after,
.nav__list-item.active-nav a:after {
  height: 100%;
  opacity: 1;
}

/* PODMENU */
.nav__submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;

  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.3s cubic-bezier(0.65, 0.05, 0.36, 1),
    opacity 0.2s ease-out,
    transform 0.2s ease-out;

  transition-delay: 0s;
}

.nav__list-item.submenu-open .nav__submenu {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 0.5s cubic-bezier(0.65, 0.05, 0.36, 1),
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
  transition-delay: 0.2s;
}

.nav__submenu-item {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.nav__list-item.submenu-open .nav__submenu-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.nav__list-item.submenu-open .nav__submenu-item:nth-child(2) {
  transition-delay: 0.35s;
}

.nav__list-item.submenu-open .nav__submenu-item:nth-child(3) {
  transition-delay: 0.4s;
}

.nav__submenu-item a {
  font-size: 18px;
  padding: 5px 40px 5px 0;
  color: rgba(74, 64, 58, 0.5);
  font-weight: 400;
}

.nav__submenu-item a:hover {
  color: #4a403a;
  padding-right: 50px;
}

.nav__submenu-item a:before {
  content: '–';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #8c7b70;
  opacity: 0;
  transition: opacity 0.2s;
}

.nav__submenu-item a:hover:before {
  opacity: 1;
}

/* IKONY W MENU */
.social-icons-menu-wrapper {
  margin-top: 30px;
  padding-right: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #2b2623;
  border-radius: 50%;
  color: #2b2623;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle i {
  font-size: 16px;
}

.social-circle:hover {
  border-color: #4a403a;
  background-color: #4a403a;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-container {
    height: 100dvh;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-sizing: border-box;
  }

  .cta-button {
    margin-top: 1rem;
    padding: 18px 26px;
    font-size: 0.8rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }

}



@media (min-width: 768px) {
  .main-header {
    top: 30px;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
    /* margin-top: 2rem; */
  }

  .logo img {
    width: 85px !important;
    height: auto;
  }

  .header-right-section {
    gap: 20px;
  }

  .social-media a {
    font-size: 1rem;
    margin-left: 15px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-content h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .hero-content p {
    font-size: clamp(.9rem, 4vw, 1rem);
    margin-bottom: 25px;
  }

  /* .cta-button {
    padding: 10px 24px;
    font-size: 0.9rem;
  } */

  .hero-stats-bar {
    bottom: 70px;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
  }

  .stats-group-left,
  .stats-group-right {
    gap: 20px;
  }

  .stat-item .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon img {
    width: 0.9rem;
    height: 0.9rem;
  }

  .stat-item .stat-text {
    font-size: 0.7rem;
  }
}


@media (min-width: 992px) {
  .main-header {
    top: 30px;
    left: 5%;
    right: 5%;
    width: 90%;
    padding-bottom: 20px;
  }

  .logo img {
    width: 100px !important;
  }

  .header-right-section {
    gap: 25px;
  }

  .social-media a {
    font-size: 1.1rem;
    margin-left: 20px;
  }

  #lang-toggle {
    padding: 6px 14px;
    font-size: 0.8rem;
    width: 60px;
  }

  /* .headings {
    margin-bottom: 15px;
  } */

  .hero-content h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    letter-spacing: -2px;
  }

  .hero-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.4rem);
  }

  .hero-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    /* margin-bottom: 40px; */
  }

  /* .cta-button {
    padding: 12px 28px;
    font-size: .7rem;
  } */

  .hero-stats-bar {
    bottom: 80px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);

    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    width: 50%;
    padding: 0;
    gap: 20px !important;
  }

  .stats-group-left,
  .stats-group-right {
    display: contents;
    width: auto;
    gap: 0;
  }

  .stat-item {
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 120px;
    flex: 1 !important;
    max-width: none;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 15px !important;
  }

  .stat-item .stat-icon {
    width: 45px;
    height: 45px;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 10;
    order: 1;
    flex-shrink: 0;
  }

  .stat-icon img {
    width: 1.8rem !important;
    height: 1.8rem !important;
    margin: 0 !important;
  }

  .stats-group-left .stat-icon,
  .stats-group-right .stat-icon {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin: 0 !important;
  }


  .stats-group-left .stat-item,
  .stats-group-right .stat-item {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 15px !important;
  }


  .stat-item .stat-text {
    width: 100%;
    /* max-width: 180px; – usunięto, aby tekst mógł zawijać w pełnej szerokości item */
    line-height: 1.2;
    height: auto;
    overflow: visible;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    text-align: center !important;
    z-index: 5;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 5px !important;
    box-sizing: border-box !important;
    order: 2;
    flex-grow: 1;
  }

  .stat-item .stat-text[lang="en"] {
    hyphens: none !important;
    overflow-wrap: anywhere !important;
    max-width: 120px !important;
  }

  .stat-item .stat-text[lang="pl"] {
    overflow-wrap: break-word !important;
    max-width: none;
  }

  .stats-group-left .stat-text,
  .stats-group-right .stat-text {
    text-align: center !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
}


@media (min-width: 1024px) {

  .logo img {
    width: 100px;
  }

}

/* --- SEKCJA BOOKERO --- */

:root {
  --color-bg: #FDFBF7;
  --color-text-main: #2a2a2c;
  --color-text-sub: #6e6e73;
  --color-accent: #D4AF37;
  --color-accent-dark: #b59226;
  --card-radius: 24px;
  --font-head: 'Marmelad', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-quote: 'Playfair Display' . serif;
  --shadow-subtle: 0 10px 30px -10px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}

h2,
h3 {
  font-family: var(--font-head);
  font-weight: 400;
  margin: 0;
}

/* --- HERO SECTION STYLES --- */
.hero-intro {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url('https://images.unsplash.com/photo-1596178065887-1198b6148b2b?q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInHero 1.5s ease-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hero-subtitle {
  display: block;
  font-family: var(--font-head, sans-serif);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero-intro h1 {
  font-family: var(--font-head, sans-serif);
  font-size: 5rem;
  font-weight: 400;
  margin: 0 0 20px 0;
  line-height: 1.1;
}

.hero-intro p {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.9;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}

.scroll-indicator span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-indicator .line {
  width: 1px;
  height: 60px;
  background: #fff;
}

@keyframes fadeInHero {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-intro h1 {
    font-size: 3rem;
  }

  .magazine-section {
    padding: 60px 0 !important;
  }

  .section-header {
    margin-bottom: 40px !important;
  }
}


@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.8rem !important;
  }
}


.magazine-section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 2rem;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
  color: #111;
}

.section-header p {
  color: var(--color-text-sub);
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  font-family: "Nunito Sans", sans-serif;
}

/* --- FILTERS --- */
.filters-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 15px;
  background-color: #f4f4f4;
  border-radius: 8px;
}


.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-group label {
  font-weight: bold;
  margin-right: 5px;
}

#hostSelect {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  min-width: 150px;
  cursor: pointer;
}


.filter-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

/* .filter-btn:hover {
  background-color: #e9e9e9;
} */


.filter-btn.active {
  color: var(--sn-gold-dark);
  font-weight: 300;
  opacity: 1;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}


.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  min-height: 500px;
  transition: all 0.3s ease;
}

.control-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

:root {
  --nav-padding: 6px;
  --btn-ver-padding: 10px;
  --btn-hor-padding: 24px;
  --sn-paper-bg: #fdfbf7;
  --sn-paper-texture: url('../img/cream-paper-2.png');
  --sn-gold-dark: #b48811;
  /* --font-head: 'Marmelad', sans-serif; */
  --nav-padding: 7px;
}

.filter-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 6px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.02),
    0 8px 24px rgba(0, 0, 0, 0.02);
  isolation: isolate;
}

/* --- PASTYLKA (ACTIVE BACKGROUND) --- */
.sliding-pill {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 12px rgba(138, 109, 59, 0.08),
    0 1px 2px rgba(0, 0, 0, 0.04);
  transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    width 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
  pointer-events: none;
}

.filter-btn {
  position: relative;
  z-index: 2;
  background: transparent;
  border: none;
  height: 100%;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  outline: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover:not(.active) {
  color: #111;
}

.filter-btn.active {
  color: var(--sn-gold-dark);
  font-weight: 400;
}

/* --- DROPDOWN --- */
.custom-select-wrapper {
  position: relative;
  width: 240px;
  font-family: inherit;
  user-select: none;
  z-index: 100;
  outline: none;
}

/* Szklany przycisk (Trigger) */
.custom-select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  box-sizing: border-box;

  cursor: pointer;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-select-trigger:hover {
  background: rgba(255, 255, 255, 0.65);
  color: #111;
  border-color: rgba(255, 255, 255, 0.9);
}

.custom-select-trigger i {
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    color 0.3s ease;
}

.custom-select-wrapper.open .custom-select-trigger {
  color: var(--sn-gold-dark);
  border-color: rgba(138, 109, 59, 0.3);
}

.custom-select-wrapper.open .custom-select-trigger i {
  transform: rotate(180deg);
  color: var(--sn-gold-dark);
}


.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(138, 109, 59, 0.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 101;
  max-height: 300px;
  overflow-y: auto;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.custom-option {
  padding: 12px 20px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background-color: rgba(138, 109, 59, 0.05);
  color: #111;
  padding-left: 24px;
}

.custom-option.selected {
  background-color: rgba(138, 109, 59, 0.08);
  color: var(--sn-gold-dark);
  font-weight: 400;
}

.magazine-section,
.container,
.control-bar {
  overflow: visible !important;
}

.custom-select-wrapper {
  z-index: 100;
  position: relative;
}

.custom-options {
  z-index: 101;
}

/* --- GRID --- */
/* .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
} */

/* --- KARTA --- */
.mag-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
  position: relative;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  transform: translateZ(0);
  will-change: transform, opacity, filter;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}



.mag-card.show,
.load-more-container.show {
  animation: steamRise 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}


.mag-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.mag-card-img-wrap {
  position: relative;
  width: 100%;
  height: 70%;
  z-index: 0;
  overflow: hidden;
}

.mag-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);

}

.mag-card:hover .mag-card-img {
  transform: scale(1.08);
}

.mag-card.is-animating {
  pointer-events: none;
}

.date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 2;
  font-family: var(--font-head) !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.date-weekday {
  display: block;
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #000;
  opacity: 0.5;
  font-weight: 500;
  line-height: 1;
}

.date-day {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
  color: #000;
  font-weight: 400;
}

.date-month {
  display: block;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent-dark);
  font-weight: 600;
  line-height: 1;
}

.mag-card-content {
  position: relative;
  z-index: 10;
  margin-top: -80px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 20%,
      rgba(255, 255, 255, 0.95) 25%,
      #ffffff 90%);
  border-top: none;
  border-radius: 0;
  box-shadow: none;
  padding: 30px 24px 24px 24px;
  padding-top: 60px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.mag-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
  pointer-events: none;
  z-index: 1;
}

.mag-card-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-dark);
  margin-bottom: 8px;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  font-family: var(--font-head);
}

.mag-card h3 {
  font-size: 1.4rem;
  color: #111;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 15px;
}

.meta-strip {
  display: flex;
  gap: 16px;
  margin-bottom: .7rem;
  margin-top: 0;
  color: var(--color-text-sub);
  font-size: 11px;
  font-family: var(--font-head) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta-item i {
  color: var(--color-accent);
  margin-right: 6px;
}

.mag-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  font-family: var(--font-body);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.price-tag {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: #000;
  line-height: 1;
}

.price-label {
  font-size: 9px;
  color: #999;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-circle i {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.btn-circle:hover {
  background-color: var(--color-accent);
  transform: scale(1.05);
}

.btn-circle:hover i {
  transform: rotate(0deg);
}

/* --- PROMO CARD --- */
.mag-card.promo-card {
  background: linear-gradient(135deg, #e3c48b 0%, #d4af37 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
}

.promo-card h3 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-top: 10px;
  margin-bottom: 30px;
  z-index: 2;
  padding-bottom: 0;
}

.promo-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  z-index: 2;
  margin-bottom: 40px;
}

.promo-card .ideal-for-text {
  position: relative;
  margin: 0 0 25px 0;
  padding-top: 12px;
  width: 100%;
}

.promo-card .ideal-for-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  border: none;
}

.promo-card .ideal-for-text span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  display: block;
  font-weight: var(--font-body) !important;
}

.session-schedule {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.9rem;
}

.session-schedule td {
  padding: 4px 0;
  border: none;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.session-schedule tr:last-child td {
  border-bottom: none;
}

.session-schedule td:first-child {
  font-weight: 700;
  color: #111;
  width: 45%;
}

.session-schedule td:last-child {
  text-align: right;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.btn-promo-white {
  padding: 15px 30px;
  background: #fff;
  color: #b59226;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  z-index: 2;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-promo-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.load-more-container {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
  display: none;

  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translateZ(0);
  will-change: transform, opacity;
}

.load-more-container.show {
  display: flex;
  animation: steamRise 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.load-more-container::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
}

/* --- PRZYCISK (WERSJA SOFT / NO BORDER) --- */
.btn-load-more {
  color: #555;
  padding: 14px 44px;
  font-family: var(--font-head, sans-serif) !important;
  font-size: 15px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  z-index: 5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- EFEKT HOVER (UNIESIENIE I ROZŚWIETLENIE) --- */
.btn-load-more:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.85);
  color: var(--sn-gold-dark);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(138, 109, 59, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.03);
}

/* --- EFEKT KLIKNIĘCIA --- */
.btn-load-more:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(138, 109, 59, 0.06);
}

/* --- STAN ŁADOWANIA --- */
.btn-load-more.loading {
  opacity: 0.6;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: none;
  cursor: wait;
}

.btn-load-more i {
  margin-right: 10px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
  display: inline-block;
}

.mag-card.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- PREMIUM EMPTY STATE --- */
.empty-state-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 320px;
  padding: 60px 20px;
  margin: 40px 0;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);

  animation: fadeScaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.empty-state-icon-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 1);
}

.empty-state-icon-wrap i {
  font-size: 28px;
  color: var(--color-accent-dark, #a38a60);
}

.empty-state-title {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 12px;
}

.empty-state-desc {
  font-size: 1.05rem;
  color: #666;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: var(--font-body);
}


.empty-state-btn {
  padding: 12px 28px;
  background: transparent;
  border: 1px solid var(--color-accent-dark, #8B6F4E);
  color: var(--color-accent-dark, #8B6F4E);
  border-radius: 30px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.empty-state-btn:hover {
  background: var(--color-accent-dark, #8B6F4E);
  color: #fff;
  box-shadow: 0 6px 20px rgba(139, 111, 78, 0.2);
  transform: translateY(-2px);
}

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0.98) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 1600px) {
  .events-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .events-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 20px 20px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }

  .events-grid::-webkit-scrollbar {
    display: none;
  }

  /* KARTA NA MOBILE */
  .mag-card {
    min-width: 85vw;
    height: auto;
    min-height: 450px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0;
  }

  .mag-card-img-wrap {
    height: 220px;
  }

  .section-header p {
    font-size: .95rem;
    line-height: 1.3;
  }

  .btn-load-more {
    font-size: .90rem !important;
  }
}

@media (max-width: 600px) {
  .control-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .filter-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    border-radius: 24px;
    /* Zmniejszone dla mobile */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .filter-container::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    padding: 0 16px;
    scroll-snap-align: start;
  }

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

  .mag-card {
    height: auto;
    min-height: 480px;
  }

  .mag-card-img-wrap {
    height: 280px;
  }

  .custom-select-wrapper {
    width: 100%;
  }
}

/* --- BOOKING MODAL (POPUP) --- */
#floating-booking {
  position: fixed;
  z-index: 2147483647;
  bottom: 25px;
  right: 25px;
  width: 440px;
  height: auto !important;
  min-height: 200px;
  max-height: calc(100vh - 50px);
  background: #fff;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  transform: scale(0.95) translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

#floating-booking * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

#floating-booking *::-webkit-scrollbar {
  display: none !important;
}

#floating-booking.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}


.fb-header {
  background: #fff;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.fb-header h3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #111;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  width: max-content;
  max-width: 70%;
}

.fb-body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  background: #fff;
  padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.fb-body::-webkit-scrollbar {
  display: none;
}


#bookero-plugin,
#bookero-float {
  padding: 25px 28px !important;
  box-sizing: border-box !important;
  width: 100% !important;
  margin: 0 !important;
  height: auto !important;
  min-height: auto !important;
  display: block !important;
}


#bookero-plugin input[type="text"],
#bookero-plugin input[type="email"],
#bookero-plugin input[type="tel"],
#bookero-plugin select,
#bookero-plugin textarea {
  border: none !important;
  background: #f4f5f7 !important;
  border-radius: 12px !important;
  padding: 14px 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 18px !important;
  font-size: 15px !important;
  font-family: inherit !important;
  color: #111 !important;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

#bookero-plugin input:focus,
#bookero-plugin select:focus,
#bookero-plugin textarea:focus {
  background: #fff !important;
  box-shadow: 0 0 0 2px #111 !important;
  outline: none !important;
}

#bookero-plugin label {
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
  color: #555 !important;
  margin-bottom: 8px !important;
  display: block !important;
}


#bookero-plugin button,
#bookero-plugin input[type="submit"] {
  background: #111 !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 16px !important;
  width: 100% !important;
  margin-top: 10px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, background 0.2s ease;
}

#bookero-plugin button:hover,
#bookero-plugin input[type="submit"]:hover {
  transform: scale(1.02);
  background: #333 !important;
}

/* Notatki Bookero */
#bookero-plugin .required-fields-notice {
  font-size: 0.75rem !important;
  color: #888 !important;
  margin-bottom: 1rem !important;
}

#bookero-plugin .people-number-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: auto !important;
  min-width: 140px !important;
  background: #f4f5f7 !important;
  border-radius: 50px !important;
  padding: 6px !important;
  margin-bottom: 15px !important;
  box-sizing: border-box !important;
}

#bookero-plugin .people-number-wrapper input[type="number"] {
  order: 2 !important;
  width: 40px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #111 !important;
  padding: 0 !important;
  margin: 0 10px !important;
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

#bookero-plugin .people-number-wrapper input[type="number"]::-webkit-outer-spin-button,
#bookero-plugin .people-number-wrapper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}

#bookero-plugin .people-number-plus,
#bookero-plugin .people-number-minus {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  background: #fff !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #111 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
  user-select: none !important;
}


#bookero-plugin .people-number-minus {
  order: 1 !important;
}

#bookero-plugin .people-number-plus {
  order: 3 !important;
}



#bookero-plugin .people-number-plus:active,
#bookero-plugin .people-number-minus:active {
  transform: scale(0.9) !important;
  background: #f0f0f0 !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}


#bookero-plugin select#bookero-plugin-service,
#bookero-plugin select#bookero-plugin-termin,
#bookero-plugin select {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: #f4f5f7 !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 16px 45px 16px 18px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-bottom: 20px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #111 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 18px !important;
  transition: background-color 0.2s ease, box-shadow 0.2s ease !important;
}


#bookero-plugin select#bookero-plugin-service:focus,
#bookero-plugin select#bookero-plugin-termin:focus,
#bookero-plugin select:focus {
  background-color: #fff !important;
  box-shadow: 0 0 0 2px #111 !important;
  outline: none !important;
}

#bookero-plugin select option {
  font-weight: 500 !important;
  color: #111 !important;
  font-size: 15px !important;
  padding: 12px !important;
  background-color: #fff !important;
}

#bookero-plugin select option[value="0"],
#bookero-plugin select option:disabled {
  color: #a0a0a0 !important;
  font-style: italic !important;
}

#bookero-plugin select {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

#bookero-plugin select option,
#bookero-plugin select optgroup {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  padding-right: 15px !important;
}


#bookero-plugin .inquiry {
  background: #fff !important;
  border-radius: 20px !important;
  padding: 25px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  border: 1px solid #f4f5f7 !important;
  margin-bottom: 25px !important;
}


#bookero-plugin .inquiry-heading h3,
#bookero-plugin .inquiry-title {
  font-family: inherit !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #999 !important;
  margin: 0 0 10px 0 !important;
  font-weight: 600 !important;
  text-align: left !important;
}

#bookero-plugin .inquiry-price {
  font-family: var(--font-head);
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #111 !important;
  margin-bottom: 20px !important;
  line-height: 1.1 !important;
}


#bookero-plugin .inquiry-datetime,
#bookero-plugin .inquiry-service,
#bookero-plugin .inquiry-people-number {
  font-family: inherit !important;
  font-size: 15px !important;
  color: #333 !important;
  margin-bottom: 0 !important;
  padding: 10px 0 !important;
  line-height: 1.5 !important;
  display: block !important;
  text-align: left !important;
}

#bookero-plugin .inquiry-datetime,
#bookero-plugin .inquiry-service {
  border-bottom: 1px solid #f0f0f0 !important;
}

#bookero-plugin .inquiry-datetime>*,
#bookero-plugin .inquiry-service>*,
#bookero-plugin .inquiry-people-number>* {
  display: inline !important;
  margin: 0 !important;
}

#bookero-plugin .inquiry-datetime>*:first-child,
#bookero-plugin .inquiry-service>*:first-child,
#bookero-plugin .inquiry-people-number>*:first-child {
  font-weight: 600 !important;
  color: #111 !important;
  padding-right: 5px !important;
}



#bookero-plugin .inquiry-actions {
  margin-top: 25px !important;
  padding-top: 20px !important;
  border-top: 1px solid #f0f0f0 !important;
  display: flex !important;
  gap: 25px !important;
  flex-wrap: wrap !important;
}


#bookero-plugin .inquiry-actions a {
  color: #d4c5a9 !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.2s ease !important;
  border-bottom: 2px solid transparent !important;
  padding-bottom: 2px !important;
}


#bookero-plugin .inquiry-actions a:hover {
  color: #b3a07f !important;
  border-bottom-color: #b3a07f !important;
}


#bookero-plugin a.inquiries-list-add {
  display: block !important;
  text-align: center !important;
  margin-top: 30px !important;
  margin-bottom: 10px !important;
  padding: 16px !important;
  background: transparent !important;
  border: 2px solid #d4c5a9 !important;
  color: #d4c5a9 !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.2s ease-in-out !important;
}

#bookero-plugin a.inquiries-list-add:hover {
  background: #d4c5a9 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 197, 169, 0.3) !important;
}


#bookero-plugin a.cancel-button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 16px !important;
  margin-top: 12px !important;
  background: #f4f5f7 !important;
  color: #666 !important;
  border-radius: 50px !important;
  border: none !important;
  font-family: inherit !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
}

#bookero-plugin a.cancel-button:hover {
  background: #e5e7eb !important;
  color: #111 !important;
}


#bookero-plugin a.cancel-button:active {
  transform: scale(0.97) !important;
  background: #d1d5db !important;
}


#bookero-plugin .payment-methods-item {
  display: inline-flex;
  width: calc(50% - 10px);
  margin-bottom: 10px;
  box-sizing: border-box;
  vertical-align: top;
}

#bookero-plugin .payment-methods-item:nth-child(odd) {
  margin-right: 15px;
}

#bookero-plugin .payment-methods-item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px;
  text-align: center;
}

#bookero-plugin .payment-methods-item-wrapper img {
  width: 70px;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

#bookero-plugin .result-popup-content {
  font-family: inherit !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  color: #555 !important;
  text-align: center !important;
  margin-bottom: 20px !important;
}


#bookero-plugin .result-popup-content-payment-link {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important;
  margin: 25px 0 !important;
  padding: 20px !important;
  background-color: #fcfcfc !important;
  border: 1px solid #eee !important;
  border-radius: 10px !important;
}


#bookero-plugin .result-popup-content-payment-quote {
  width: 100% !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #111 !important;
  text-align: center !important;
  margin-bottom: 15px !important;
  display: block !important;
}

#bookero-plugin .result-popup-content-payment-quote b,
#bookero-plugin .result-popup-content-payment-quote strong,
#bookero-plugin .result-popup-content-payment-quote span {
  margin-right: 8px !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #666 !important;
}


#bookero-plugin .result-popup-content-paylink {
  display: inline-block !important;
  background-color: #111 !important;
  color: #fff !important;
  padding: 12px 30px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-decoration: none !important;
  border-radius: 8px !important;
  transition: background-color 0.2s ease !important;
}

#bookero-plugin .result-popup-content-paylink:hover {
  background-color: #444 !important;
  color: #fff !important;
}


#bookero-plugin .result-popup-content-payment-ssl {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: #888 !important;
  margin-top: 10px !important;
}

#bookero-plugin .result-popup-content-payment-ssl svg {
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
}

#bookero-plugin .error-block {
  background-color: #fdf2f2 !important;
  border: 1px solid #f8b4b4 !important;
  border-radius: 8px !important;
  padding: 15px 20px !important;
  margin-bottom: 20px !important;
  color: #c81e1e !important;
  font-family: inherit !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-align: left !important;
}

#bookero-plugin .errors-list {
  margin-top: 10px !important;
  font-weight: 400 !important;
  padding-left: 20px !important;
}

#bookero-plugin .errors-list>div {
  display: list-item !important;
  list-style-type: disc !important;
  margin-bottom: 5px !important;
  font-size: 14px !important;
  color: #d03838 !important;
}


#bookero-plugin .result-popup-header {
  font-family: var(--font-head, inherit) !important;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #111 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  margin-top: 40px !important;
  margin-bottom: 15px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}


#bookero-plugin .result-popup-header::before {
  content: "✓" !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 70px !important;
  height: 70px !important;
  background-color: #f0fdf4 !important;
  color: #16a34a !important;
  border-radius: 50% !important;
  font-size: 38px !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.25) !important;
}


#bookero-plugin h2.result-popup-header+.result-popup-content {
  font-size: 17px !important;
  font-weight: 500 !important;
  color: #444 !important;
  text-align: center !important;
  margin-bottom: 30px !important;
}



.fa-close,
.fa-multiply,
.fa-remove,
.fa-times,
.fa-xmark {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  color: #111 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}


.fa-close:before,
.fa-multiply:before,
.fa-remove:before,
.fa-times:before,
.fa-xmark:before {
  font-size: 1.5rem !important;
}

button:has(.fa-close),
button:has(.fa-times),
button:has(.fa-xmark),
a:has(.fa-close),
a:has(.fa-times),
a:has(.fa-xmark),
.fb-header button {
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}


@media (max-width: 600px) {
  #floating-booking {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 88vh;
    border-radius: 28px 28px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    padding-top: 12px;
  }


  #floating-booking::before {
    content: '';
    display: block;
    width: 48px;
    height: 5px;
    background: #e0e0e0;
    border-radius: 10px;
    margin: 0 auto 10px auto;
    flex-shrink: 0;
  }

  #floating-booking.active {
    transform: translateY(0);
  }

  #bookero-plugin,
  #bookero-float {
    padding: 20px 20px calc(30px + env(safe-area-inset-bottom)) 20px !important;
  }

  #bookero-plugin input[type="text"],
  #bookero-plugin input[type="email"],
  #bookero-plugin input[type="tel"],
  #bookero-plugin select,
  #bookero-plugin textarea {
    font-size: 16px !important;
    padding: 16px 18px !important;
    margin-bottom: 20px !important;
    border-radius: 14px !important;
  }

  #bookero-plugin label {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  #bookero-plugin button,
  #bookero-plugin input[type="submit"] {
    padding: 18px !important;
    font-size: 16px !important;
    margin-top: 20px !important;
  }

  #bookero-plugin button:hover,
  #bookero-plugin input[type="submit"]:hover {
    transform: none;
  }

  #bookero-plugin button:active,
  #bookero-plugin input[type="submit"]:active {
    transform: scale(0.97);
    background: #000 !important;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.modal-window {
  background: #fff;
  width: 100%;
  max-width: 600px;
  height: 80vh;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.modal-header {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
}

.modal-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin: 0;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text-sub);
  transition: color 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.modal-close-btn:hover {
  background-color: #f5f5f7;
  color: #000;
}

.modal-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  background-color: #FDFBF7;
}


#bookero-plugin {
  font-family: 'Tenor Sans', sans-serif !important;
  color: #1D1D1F !important;
  width: 100% !important;
  background: transparent !important;
  box-sizing: border-box !important;
}


#bookero-plugin h2,
#bookero-plugin h3,
#bookero-plugin .bookero-plugin-header {
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  text-align: center !important;
  margin-bottom: 30px !important;
  margin-top: 10px !important;
  color: #111 !important;
  border: none !important;
}

#bookero-plugin label {
  display: block !important;
  width: 100% !important;
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  color: #6e6e73 !important;
  margin-top: 20px !important;
  margin-bottom: 8px !important;
}

#bookero-plugin select,
#bookero-plugin input[type="text"],
#bookero-plugin input[type="date"],
#bookero-plugin input[type="tel"],
#bookero-plugin input[type="email"],
#bookero-plugin input[type="number"],
#bookero-plugin textarea {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  border-radius: 0 !important;
  padding: 12px 0 !important;
  font-family: 'Lora', serif !important;
  font-size: 16px !important;
  color: #111 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

#bookero-plugin select:focus,
#bookero-plugin input:focus {
  border-bottom: 1px solid #D4AF37 !important;
}


#bookero-plugin button,
#bookero-plugin input[type="submit"],
#bookero-plugin .btn {
  display: block !important;
  width: 100% !important;
  margin-top: 40px !important;
  padding: 18px 0 !important;
  background-color: #111 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.3s ease, transform 0.3s ease;
}

#bookero-plugin button:hover,
#bookero-plugin input[type="submit"]:hover {
  background-color: #D4AF37 !important;
  transform: translateY(-2px) !important;
}

#bookero-plugin .bookero-price,
#bookero-plugin .total-price {
  font-family: 'Tenor Sans', sans-serif !important;
  font-size: 1.4rem !important;
  color: #111 !important;
  margin-top: 20px !important;
  text-align: right !important;
  display: block !important;
}

#bookero-plugin .bookero-summary-list {
  width: 100% !important;
  margin-bottom: 20px !important;
  border-collapse: collapse !important;
}

#bookero-plugin .bookero-summary-list td {
  padding: 10px 0 !important;
  border-bottom: 1px solid #eee !important;
  font-family: 'Lora', serif !important;
  font-size: 14px !important;
}


#bookero-plugin .customer-section input,
#bookero-plugin .discount-code-section input {
  border: none !important;
  background: #f4f5f7 !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
  color: #111 !important;
  margin-top: 8px !important;
  margin-bottom: 20px !important;
  transition: background 0.2s ease, box-shadow 0.2s ease !important;
}

#bookero-plugin .customer-section input:focus,
#bookero-plugin .discount-code-section input:focus {
  background: #fff !important;
  box-shadow: 0 0 0 2px #111 !important;
  outline: none !important;
}

#bookero-plugin .customer-section label {
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 600 !important;
  color: #666 !important;
  display: block !important;
  margin-bottom: 4px !important;
}

#bookero-plugin .agreements-section {
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top: 1px solid #f0f0f0 !important;
}

#bookero-plugin .switcher-wrapper {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  margin-bottom: 16px !important;
  cursor: pointer !important;
}

#bookero-plugin .switcher {
  width: 24px !important;
  height: 24px !important;
  border-radius: 6px !important;
  border: 2px solid #d1d5db !important;
  background: #fff !important;
  position: relative !important;
  flex-shrink: 0 !important;
  transition: all 0.2s ease !important;
  margin-top: 2px !important;

}

#bookero-plugin .switcher.is-active {
  background: #d4c5a9 !important;
  border-color: #d4c5a9 !important;
}

#bookero-plugin .switcher.is-active::after {
  content: '' !important;
  position: absolute !important;
  left: 7px !important;
  top: 3px !important;
  width: 5px !important;
  height: 11px !important;
  border: solid #fff !important;
  border-width: 0 2px 2px 0 !important;
  transform: rotate(45deg) !important;
}

#bookero-plugin .switcher-label {
  font-size: 13px !important;
  line-height: 1.5 !important;
  color: #555 !important;
  font-weight: 400 !important;
}

#bookero-plugin .switcher-label a,
#bookero-plugin .agreements-section a {
  color: #d4c5a9 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

#bookero-plugin .switcher-label a:hover,
#bookero-plugin .agreements-section a:hover {
  color: #b3a07f !important;
  text-decoration: underline !important;
}


#bookero-plugin .payment-section {
  margin-top: 30px !important;
}


#bookero-plugin .payment-methods-item-icon img,
#bookero-plugin .payment-methods-item-icon svg {
  max-width: 50px !important;
  height: auto !important;
  max-height: 35px !important;
  object-fit: contain !important;
  margin-right: 15px !important;
}

#bookero-plugin .payment-methods,
#bookero-plugin .payment-methods-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;

}


#bookero-plugin .payment-methods-item {
  width: 48% !important;
  margin-bottom: 15px !important;
  margin-right: 0 !important;
  box-sizing: border-box;
  border-radius: 10px !important;
}

@media (hover: hover) {
  #bookero-plugin .payment-methods-item:hover {
    border-color: #d4c5a9 !important;
    background: #fcfbf9 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(212, 197, 169, 0.15) !important;
  }
}

#bookero-plugin .payment-methods-item:active {
  transform: scale(0.98) !important;
}


#bookero-plugin .payment-methods-item.is-active {
  border: 2px solid #d4c5a9 !important;
  background: #fcfbf9 !important;
}


#bookero-plugin .payment-summary-section table {
  width: 100% !important;
  border-collapse: collapse !important;
  margin-top: 25px !important;
  margin-bottom: 20px !important;
}


#bookero-plugin .payment-summary-section thead th {
  font-family: inherit !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-size: 12px !important;
  color: #888 !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid #f0f0f0 !important;
  text-align: left !important;
}

#bookero-plugin .payment-summary-section td {
  padding: 16px 0 !important;
  border-bottom: 1px solid #f9f9f9 !important;
  color: #333 !important;
  font-size: 15px !important;
}

#bookero-plugin .payment-summary-section tr:last-child td {
  border-bottom: none !important;
}

/* =========================================
   CENA GŁÓWNA ("RAZEM DO ZAPŁATY")
   ========================================= */
#bookero-plugin .temporary-price-quote {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 35px !important;
  margin-bottom: 25px !important;
  font-size: 16px !important;
  color: #666 !important;
}


#bookero-plugin .temporary-price-price {
  font-family: var(--font-head);
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #111 !important;
  margin: 0 !important;
  display: block !important;
  line-height: 1 !important;
}


#bookero-plugin .payment-methods-item {
  padding: 12px 16px !important;
  margin-bottom: 10px !important;
  min-height: auto !important;
}

#bookero-plugin .payment-methods-item-icon img,
#bookero-plugin .payment-methods-item-icon svg {
  max-width: 80px !important;
  max-height: 25px !important;
}

/* =========================================
    POLE TELEFONU 
   ========================================= */
#bookero-plugin .vue-tel-input {
  border: 2px solid transparent !important;
  background: #f4f5f7 !important;
  border-radius: 14px !important;
  transition: all 0.2s ease !important;
  box-shadow: none !important;
  padding: 0 !important;
}

#bookero-plugin .vue-tel-input input {
  background: transparent !important;
  border: none !important;
  padding: 16px 18px !important;
  font-size: 16px !important;
  color: #111 !important;
  box-shadow: none !important;
}

#bookero-plugin .vue-tel-input:focus-within {
  background: #fff !important;
  border-color: #d4c5a9 !important;
  box-shadow: 0 0 0 2px rgba(212, 197, 169, 0.3) !important;
}

#bookero-plugin .vti__dropdown {
  border: none !important;
  background: transparent !important;
  padding: 0 15px !important;
}

/* =========================================
   WYRÓWNANIE CHECKBOXA KODU RABATOWEGO
   ========================================= */
#bookero-plugin .discount-code-section .switcher-wrapper {
  align-items: center !important;
  margin-bottom: 15px !important;
}

#bookero-plugin .discount-code-section .switcher {
  margin-top: 0 !important;
}

/* =========================================
   OKIENKO "PODAJ KOD RABATOWY"
   ========================================= */
#bookero-plugin .bookero-plugin-discount-code-wrapper {
  margin-bottom: 30px !important;
  display: block !important;
  width: 100% !important;
}

#bookero-plugin .bookero-plugin-discount-code-wrapper input {
  border: none !important;
  background: #f4f5f7 !important;
  border-radius: 14px !important;
  padding: 16px 18px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  font-size: 16px !important;
  color: #111 !important;
  transition: all 0.2s ease !important;
}

#bookero-plugin .bookero-plugin-discount-code-wrapper input:focus {
  background: #fff !important;
  box-shadow: 0 0 0 2px #d4c5a9 !important;
  outline: none !important;
}

/* =========================================
    "RAZEM DO ZAPŁATY"
   ========================================= */
#bookero-plugin .payment-summary-section {
  margin-top: 10px !important;
  padding-top: 25px !important;
  border-top: 2px dashed #e5e7eb !important;
}

#bookero-plugin .payment-summary-quote {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin: 0 !important;
}

#bookero-plugin .payment-summary-quote {
  font-size: 16px !important;
  color: #666 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

#bookero-plugin .payment-summary-price {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #111 !important;
  font-family: var(--font-head);
  text-transform: none !important;
}

/*MAŁY KALENDARZ (gdyby się otworzył w popupie) */
body .ui-datepicker {
  background: #fff !important;
  border: 1px solid #f0f0f0 !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
  padding: 15px !important;
  z-index: 99999 !important;
  font-family: sans-serif !important;
}

body .ui-datepicker-header {
  background: #fff !important;
  border: none !important;
}

body .ui-state-default {
  background: transparent !important;
  border: none !important;
  text-align: center !important;
}

body .ui-state-active {
  background: #111 !important;
  color: #fff !important;
  border-radius: 50% !important;
}


.magazine-section {
  position: relative;
}


.sticky-action-wrapper {
  position: absolute;
  right: 20px;
  top: 350px;
  bottom: 0;
  width: max-content;
  pointer-events: none;
  z-index: 90;
}

.btn-glass-pill {
  position: sticky;
  top: calc(100vh - 100px);
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 10px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-family: var(--font-head, sans-serif);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6rem;
  font-weight: 600;
  color: #111;
  overflow: hidden;
}

.btn-glass-pill:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
}

.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  transition: background 0.4s ease, transform 0.4s ease;
}

.pill-text {
  white-space: nowrap;
}

.pill-icon svg {
  stroke: currentColor;
}

.btn-glass-pill:hover .pill-icon {
  background: #D4AF37;
  transform: scale(1.08);
}

/* --- DRAWER & OVERLAY (Panel boczny) --- */
.etiquette-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.8);
  /* backdrop-filter: blur(6px); */
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  /* display: flex; */
  /* justify-content: flex-end; */
}

.etiquette-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- PASEK BOCZNY (Rodzic) --- */
.etiquette-drawer {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100dvh;
  background: #FDFBF7;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
  transition: right 0.8s cubic-bezier(0.19, 1, 0.22, 1);

  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem 0 0 1rem;
}

/* --- TREŚĆ (Dziecko scrollowane) --- */
.drawer-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.etiquette-overlay.active .etiquette-drawer {
  right: 0;
}

.drawer-wrapper {
  width: 100%;
}


.drawer-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
  border-bottom: 1px solid rgb(238, 238, 238);
  background: rgb(253, 251, 247);
  min-height: 85px;
  box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.06);
}

.drawer-header h3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: #111;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  width: max-content;
  max-width: 70%;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #F2F0EB;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  color: #111;
  margin-left: 0;
  z-index: 2;
}

.drawer-close:hover {
  background: #EBE8E1;
  transform: rotate(90deg);
}

/* Treść Panelu */
.drawer-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 20px;
  scroll-behavior: smooth;
  outline: none;
  overscroll-behavior: contain;
}

.intro-text {
  margin: 0 auto 30px auto;
  max-width: 700px;
  padding: 16px 24px;
  color: #555;
  line-height: 1.6;
  /* text-align: center; */
  font-size: .95rem;
  font-family: var(--font-body);
  border: 1.5px dashed rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.02);
}

/* Lista zasad */
.manifesto-list {
  display: flex;
  flex-direction: column;
}

.manifesto-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.manifesto-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: #D4AF37;
  opacity: 0.6;
  min-width: 30px;
}

.manifesto-text h4 {
  margin: 0 0 8px 0;
  font-family: var(--font-head);
  font-weight: 300;
  font-size: 1.2rem;
  color: #111;
}

.manifesto-text p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  font-family: var(--font-body);
}

/* --- LEGAL BOX (Wyróżniony regulamin) --- */
.manifesto-legal-box {
  margin: 30px 0 20px 0;
  padding: 20px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
}

.legal-content h4 {
  margin: 0 0 8px 0;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: #111;
}

.legal-content p {
  margin: 0 0 15px 0;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  font-family: var(--font-body) !important;
}

.legal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head) !important;
  font-size: 0.95rem;
  color: #D4AF37;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.legal-btn:hover {
  color: #b5952f;
  border-bottom: 1px solid #b5952f;
}

.legal-btn svg {
  transition: transform 0.3s ease;
}

.legal-btn:hover svg {
  transform: translateX(4px);
}

.drawer-footer {
  padding: 15px;
  text-align: center;
  opacity: 0.6;
  box-shadow: 0px -8px 15px rgba(0, 0, 0, 0.06);
}

.drawer-footer p {
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.drawer-footer p.second {
  font-size: .9rem;
  font-family: var(--font-body);
}

/* --- LUXURY SUB-POINTS --- */
.luxury-sublist {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
}

.luxury-sublist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 300 !important;
}

.luxury-sublist li:last-child {
  margin-bottom: 0;
}

.luxury-sublist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #D4AF37;
  transform: rotate(45deg);
  opacity: 0.8;
}


.manifesto-scroll::-webkit-scrollbar {
  width: 6px;
}

.manifesto-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}


@media (max-width: 768px) {
  .sticky-action-wrapper {
    right: 15px;
    top: 1000px;
  }

  .btn-glass-pill {
    top: calc(100vh - 85px);
    padding: 0;
    width: 52px;
    height: 52px;
    justify-content: center;
    gap: 0;
  }

  .pill-text {
    display: none;
  }

  .pill-icon {
    width: 100%;
    height: 100%;
    background: transparent;
    color: #111;
    transform: scale(1.2);
  }

  .btn-glass-pill:hover .pill-icon,
  .btn-glass-pill:active .pill-icon {
    background: transparent;
    color: #D4AF37;
    transform: scale(1.1);
  }

  .etiquette-drawer {
    max-width: 100%;
  }

  .drawer-content {
    padding: 25px;
  }

  .drawer-header h3 {
    font-size: 1rem;
  }

  .intro-text {
    font-size: .95rem;
  }

  .manifesto-item {
    gap: 10px;
  }

  .manifesto-text h4 {
    font-weight: 200;
  }

  .manifesto-text p {
    font-size: .9rem;
  }

  .luxury-sublist li {
    color: #666;
  }

  .drawer-footer p {
    font-size: .9rem;
  }

  .drawer-footer p.second {
    font-size: .8rem;
  }

}


.journal-section {
  position: relative;
  background-color: #111;
  color: #fff;
  padding: 120px 0 80px 0;
  min-height: 800px;
  z-index: 100;
}

.journal-header {
  text-align: center;
  margin-bottom: 80px;
}

.journal-header .sub-title {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  display: block;
  margin-bottom: 20px;
}

.journal-header h2 {
  font-family: var(--font-head);
  font-size: 3rem;
  color: #fff;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}

.journal-item {
  cursor: pointer;
}

.j-img {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  margin-bottom: 25px;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.journal-item:hover .j-img {
  opacity: 1;
}

.journal-item h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.journal-item p {
  font-size: 0.95rem;
  color: #888;
  line-height: 1.6;
}

.footer-note {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  color: #555;
  font-size: 0.8rem;
}

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



/* --- SEKCJA MAPA FOOTER --- */

:root {
  --lux-bg: #F5F2EB;
  --lux-glass: rgba(255, 255, 255, 0.75);
  --lux-brown-dark: #4A403A;
  --lux-brown-light: #8C8279;
  --lux-gold: #BFA070;
  --lux-gold-hover: #A88B5D;
  --radius-card: 32px;
  --radius-btn: 100px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;
}

* {
  box-sizing: border-box;
}

.luxury-map-section {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  background-color: var(--lux-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* --- MAPA --- */
.map-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.google-map-styled {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) sepia(20%) brightness(105%) contrast(85%);
  mix-blend-mode: multiply;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.google-map-styled:hover {
  opacity: 0.9;
}

.map-fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--lux-bg) 0%, var(--lux-bg) 15%, rgba(245, 242, 235, 0) 60%);
  pointer-events: none;
  z-index: 2;
}

/* --- KARTA GLASSMORPHISM (ZMODYFIKOWANA) --- */
.glass-card {
  position: relative;
  z-index: 10;
  margin-left: 10%;
  width: 420px;
  background: var(--lux-glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-card);
  box-shadow:
    0 24px 48px rgba(74, 64, 58, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}

.card-content {
  padding: 56px 48px;
}


.card-top-decoration {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.line {
  width: 40px;
  height: 1px;
  background: var(--lux-gold);
}

.subtitle {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-gold);
  display: block;
  /* margin-bottom: 24px; */
  position: relative;
  padding-left: 40px;
  font-family: var(--font-head);
  line-height: 1.4;
}

.luxury-title {
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1.1;
  color: var(--lux-brown-dark);
  font-weight: 400;
  margin: 0 0 40px 0;
}

.italic-accent {
  font-style: italic;
  display: block;
  font-size: 0.9em;
  opacity: 0.9;
}

.details-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}


.detail-row.align-top {
  align-items: flex-start;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  margin-top: 5px;
}


.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(74, 64, 58, 0.1);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.hour-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.hour-row .day {
  flex-basis: 100px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--lux-brown-light);
  letter-spacing: 0.05em;
  text-align: left;
}

.hour-row .time,
.hour-row .status {
  text-align: right;
}

.hour-row .time {
  font-family: var(--font-head);
  font-size: 15px;
  color: var(--lux-brown-dark);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1.5px;
}

.hour-row .status {
  font-family: var(--font-head);
  font-size: 13px;
  color: var(--lux-brown-light);
  font-style: italic;
  font-weight: 500;
  opacity: 0.8;
}

.closed-row .time {
  font-style: italic;
  opacity: 0.7;
  font-size: 14px;
}

.icons-box {
  color: var(--lux-gold);
  padding-top: 0px;
}

.text-group .label {
  display: block;
  font-family: var(--font-head);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lux-brown-light);
  margin-bottom: 14px;
  font-weight: 600;
}

.text-group p {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--lux-brown-dark);
  font-weight: 100;
  margin: 0;
  line-height: 1.4;
}

.btn-luxury {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 32px;
  background-color: var(--lux-brown-dark);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-btn);

  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  box-shadow: 0 10px 20px rgba(74, 64, 58, 0.15);
}

.btn-luxury:hover {
  background-color: var(--lux-gold);
  padding-right: 28px;
  box-shadow: 0 15px 30px rgba(191, 160, 112, 0.25);
  transform: translateY(-2px);
}

.btn-luxury .arrow-icon {
  transition: transform 0.4s ease;
}

.btn-luxury:hover .arrow-icon {
  transform: translateX(5px);
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .luxury-map-section {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }

  .map-wrapper {
    position: relative;
    height: 50vh;
    width: 100%;
  }

  .map-fade-overlay {
    background: linear-gradient(180deg, rgba(245, 242, 235, 0) 0%, var(--lux-bg) 95%);
    top: auto;
    bottom: 0;
    height: 30%;
  }

  .glass-card {
    width: 90%;
    margin: -60px auto 40px auto;
    border-radius: 24px;

    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
  }

  .card-content {
    padding: 40px 32px;
  }

  .luxury-title {
    font-size: 32px;
  }
}


/* --- QUOTE  --- */
:root {
  --bg-color: #F2F0E9;
  --text-dark: #2C2A26;
  --gold-accent: #A48965;
  --quote-color: rgba(164, 137, 101, 0.25);
}


.section-steam-quote {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* margin-top: 20vh;
  margin-bottom: 20vh; */
}

.quote-wrapper {
  position: relative;
  padding: 0 5%;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.steam-text {
  font-family: 'Playfair Display', serif;
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
  margin: 0;
}

.steam-line {
  display: block;
  will-change: opacity, filter, transform;
  opacity: 0;
  filter: blur(25px);
  transition: none !important;
}

.steam-line.highlight-text {
  font-family: 'Playfair Display', serif;
  font-weight: 200;
  color: var(--gold-accent);
  margin-top: 10px;
}

.steam-line.highlight-text.author {
  margin-top: 30px;
  font-size: 1.3rem;
  text-align: right !important;
}

.quote-bg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 20vw, 20rem);
  color: var(--quote-color);
  position: absolute;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.quote-left {
  top: -10%;
  left: 0;
  transform: translateY(50px);
}

.quote-right {
  bottom: -10%;
  right: 0;
  transform: translateY(-50px);
}


@media (max-width: 768px) {
  .quote-right {
    right: 15px;
  }
}


.premium-bento-section {
  --pb-bg: #F5F3EF;
  --pb-text: #2B2623;
  --pb-muted: #6B635B;
  --pb-gold: #C2A87E;

  background-color: var(--pb-bg);
  color: var(--pb-text);
  font-family: 'Manrope', sans-serif;
  padding: 10vh 5vw;
  position: relative;
}

.premium-bento-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  gap: 5vw;
  align-items: flex-start;
}

.bento-sticky-sidebar {
  font-family: 'Manrope', sans-serif !important;
}

.bento-text-sidebar {
  width: 40%;
  position: sticky;
  top: 8vh;
}

.bento-text-sidebar::-webkit-scrollbar {
  display: none;
}

.bento-subtitle {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--pb-gold);
  display: block;
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
  font-family: var(--font-head);
}

.bento-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--pb-gold);
}

.bento-title {
  font-family: var(--font-head);
  /* font-size: 52px; */
  /* font-weight: 300; */
  /* line-height: 1.1; */
  margin-bottom: 40px;
  color: var(--pb-text);
}

.bento-title span {
  font-style: italic;
}


.bento-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;

}

.bento-paragraphs p.bento-lead {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-family: var(--font-body) !important;
  margin-bottom: 10px;
  line-height: 1.7;
  padding: 0;
}

.bento-drop-cap {
  font-family: var(--font-head);
  color: var(--pb-gold);
  font-weight: 100 !important;
  text-transform: uppercase;
  font-size: 52px;
  line-height: 0.8;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

/* --- STYLIZACJA TEKSTU OBOK INICJAŁU --- */
.bento-lead-text {
  color: var(--pb-muted);
  flex: 1;
  display: block;
}

.bento-paragraphs p {
  font-size: 16px;
  color: var(--pb-muted);
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
  font-family: 'Manrope', sans-serif !important;
}

.bento-lead {
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1.8;
  color: var(--pb-muted) !important;
}

.bento-lead::first-letter {
  float: left;
  font-family: var(--font-head);
  font-size: 52px;
  line-height: 48px;
  padding-top: 6px;
  padding-right: 12px;
  color: var(--pb-gold);
  font-weight: 100 !important;
  text-transform: uppercase;
}

.premium-bento-section .bento-premium-list {
  list-style: none;
  padding-left: 12px;
  padding-bottom: 15px;
  margin: 15px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-premium-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--pb-muted);
  line-height: 1.6;
  font-family: var(--font-body);
  font-weight: 300 !important;
}


.bento-premium-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pb-gold);
  animation: gentleSaunaPulse 3s infinite ease-in-out;
}


@keyframes gentleSaunaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(194, 168, 126, 0.5);
    transform: scale(0.9);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(194, 168, 126, 0);
    transform: scale(1.2);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(194, 168, 126, 0);
    transform: scale(0.9);
  }
}

.bento-premium-list strong {
  display: block;
  color: var(--pb-text);
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
  font-family: var(--font-head);
}

.bento-visual-grid {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 350px;
  gap: 20px;
  grid-auto-flow: dense;
}

.bento-square {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-landscape {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-portrait {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: #2B2623;
  opacity: 0;
  transform: translateY(40px);
  cursor: pointer;
}

.bento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  /* filter: saturate(0.8) contrast(1.05); 
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease; */
}


/* .bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pb-gold); 
  mix-blend-mode: color; 
  opacity: 0.25; 
  pointer-events: none;
  z-index: 1; 
  transition: opacity 0.8s ease;
} */

/* --- EFEKT PARY WODNEJ (SAUNA STEAM 2026) --- */
.bento-steam-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  background: linear-gradient(-45deg,
      rgba(43, 38, 35, 0.7),
      rgba(194, 168, 126, 0.15),
      rgba(43, 38, 35, 0.6));
  background-size: 200% 200%;

  transition: opacity 0.8s ease, backdrop-filter 0.8s ease;
  z-index: 1;
}

@keyframes slowSteam {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.bento-label {
  position: relative;
  z-index: 2;
  font-family: 'Marmelad', sans-serif;
  font-size: 30px;
  color: #F5F3EF;
  text-align: center;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.bento-card:hover img {
  transform: scale(1.08);
}

.bento-card:hover .bento-steam-overlay {
  opacity: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: slowSteam 6s ease infinite;
}

.bento-card:hover .bento-label {
  opacity: 1;
  transform: translateY(0) scale(1);
}


@media (max-width: 900px) {
  .premium-bento-section {
    padding: 6vh 5vw;
  }

  .premium-bento-container {
    flex-direction: column;
    gap: 40px;
  }

  .bento-text-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    height: auto;
    overflow-y: visible;
    padding-bottom: 0;
  }

  .bento-visual-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
    grid-auto-flow: dense;
  }

  .bento-card,
  .bento-square,
  .bento-landscape,
  .bento-portrait {
    grid-column: span 1;
    grid-row: span 1;
    height: 100% !important;
    min-height: unset;
  }

  .bento-card:nth-child(3n) {
    grid-column: span 2;
  }

  .bento-steam-overlay {
    opacity: 0;
    transition: all 0.4s ease;
    background: linear-gradient(-45deg,
        rgba(43, 38, 35, 0.8),
        rgba(43, 38, 35, 0.5));
  }

  .bento-label {
    opacity: 0;
    transform: translateY(10px);
    font-size: 15px;
    padding: 0 10px;
    line-height: 1.2;
  }

  .bento-card:active .bento-steam-overlay,
  .bento-card.is-tapped .bento-steam-overlay {
    opacity: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .bento-card:active .bento-label,
  .bento-card.is-tapped .bento-label {
    opacity: 1;
    transform: translateY(0);
  }

  .bento-paragraphs p.bento-lead {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-left: 0;
  }

  .bento-drop-cap {
    font-size: 44px;
  }

  .bento-lead-text {
    font-size: 16px;
    /* color: var(--pb-text) !important; */
    /* font-weight: 500 !important; */
  }
}


/* ---  SEKCJA KORZYŚCI SLIDER -----*/
:root {
  --heat-bg-dark: #F7F4EF;
  --heat-text-main: #3E3228;
  --heat-text-light: #F5F0EB;
  --heat-icon-subtle: #E6DCC3;
}

.heat-scrolly-section * {
  box-sizing: border-box;
}

.heat-section-context {
  position: absolute;
  top: 8vh;
  left: 8vw;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 20;
  opacity: 0.85;
  pointer-events: none;
}

.heat-context-line {
  display: block;
  width: 45px;
  height: 1px;
  background-color: #B68D40;
  box-shadow: 0 0 10px rgba(182, 141, 64, 0.4);
}

.heat-context-text {
  /* font-family: 'Cormorant Garamond', serif; */
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--heat-text-light);
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* .heat-spacer { */
/* height: 30vh; */
/* display: flex;
  align-items: center;
  justify-content: center;
  color: #B68D40;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-style: italic;
  background: var(--heat-bg-dark);
  position: relative;
  z-index: 20;
  text-align: center;
} */

/* --- KONTENER GŁÓWNY --- */
.heat-scrolly-section {
  height: 450vh;
  position: relative;
  width: 100%;
  z-index: 10;
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--heat-bg-dark);
  color: var(--heat-text-main);
  clip-path: inset(0 0 0 0);
}

.heat-sticky-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  padding: 0;
  background-color: var(--heat-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .heat-sticky-wrapper.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.heat-sticky-wrapper.is-ended {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
} */

/* --- TŁO --- */
.heat-bg-container {
  position: relative;
  width: 94%;
  height: 90%;
  margin: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 40px 100px -30px rgba(62, 50, 40, 0.2);
  will-change: transform;
}

.heat-bg-image {
  position: absolute;
  height: 130%;
  width: 100%;
  top: -15%;
  left: 0;
  /* background-image: url('https://images.pexels.com/photos/18647959/pexels-photo-18647959.jpeg'); */

  background-image: url('../img/home/sections/properties/properties-bg.jpg');

  background-image: -webkit-image-set(url('../img/home/sections/properties/properties-bg.avif') type('image/avif'),
      url('../img/home/sections/properties/properties-bg') type('image/jpeg'));

  background-image: image-set(url('../img/home/sections/properties/properties-bg.avif') type('image/avif'),
      url('v1.4.7-mdgiftproduct.zip') type('image/jpeg'));

  background-size: cover;
  background-position: 60%;
  will-change: transform;
  filter: brightness(0.9) contrast(1.1);
}

.heat-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 30, 20, 0.15);
  z-index: 2;
}

/* --- CONTENT GRID --- */
.heat-content-grid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6vw;
  padding-left: 8vw;
  padding-right: 5vw;
  pointer-events: none;
}

.heat-text-column {
  position: relative;
  height: 100%;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}

.heat-headline-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 1;
}

.heat-headline-text {
  font-size: 3.8rem;
  font-weight: 300;
  /* font-style: italic; */
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.01em;
  /* text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); */
  margin: 0;
  font-family: 'Marmelad', sans-serif;
  text-align: center;
}

/* Maskowanie linii */
.heat-line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 5px;
  padding-right: 0.15em;
  margin-right: -0.15em;
}

.heat-line-inner {
  display: block;
  transform: translateY(110%) rotateX(10deg);
  transform-origin: bottom right;
  will-change: transform;
  opacity: 0;
}

/* --- PRAWA KOLUMNA (KARTA) --- */
.heat-card-column {
  position: relative;
  height: 100%;
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  pointer-events: auto;
  z-index: 10;
}

#heat-floatingCard {
  position: absolute !important;
  top: 10% !important;
  right: 8% !important;
  left: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.8s ease;
}

#heat-floatingCard.heat-card-visible {
  opacity: 1;
}

.heat-glass-card {
  width: 380px;
  height: 300px;
  border-radius: 2rem;
  overflow: hidden;
  background: rgba(15, 12, 10, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.4);
}

.heat-card-track {
  height: 100%;
  width: 100%;
  will-change: transform;
  transition: none;
}

.heat-card-slide {
  height: 100%;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.heat-icon {
  color: var(--heat-icon-subtle);
  font-size: 1.8rem;
  margin-bottom: 25px;
  opacity: 0.8;
  filter: drop-shadow(0 0 12px rgba(230, 220, 195, 0.15));
}

.heat-card-p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 100;
  /* font-style: italic; */
  line-height: 1.35;
  color: var(--heat-text-light);
  margin: 0;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {

  .heat-headline-text {
    font-size: 2rem !important;
  }

  .heat-card-p {
    font-size: 1rem !important;
    font-weight: 100;
    line-height: 1.4;
  }
}

/* --- MOBILE & RESPONSIVE --- */
@media (max-width: 1024px) {
  .heat-bg-container {
    width: 100%;
    height: 100vh;
    top: 0;
    margin: 0;
    border-radius: 0;
  }

  .heat-content-grid {
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    justify-content: flex-start;
  }

  .heat-text-column {
    width: 100%;
    height: 40%;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  .heat-section-context {
    top: 50px;
    left: 0;
    width: 100%;
    justify-content: center;
    gap: 1rem;
  }

  .heat-context-line {
    width: 30px;
  }

  .heat-context-text {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .heat-headline-wrapper {
    text-align: center;
    align-items: center;
    top: auto;
    bottom: 30px;
    transform: none;
  }

  .heat-headline-text {
    font-size: 2.5rem;
    text-align: center;
  }

  .heat-line-inner {
    transform-origin: bottom center;
  }

  /* Dolna część - Karta */
  .heat-card-column {
    width: 100%;
    height: 45%;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
  }

  #heat-floatingCard {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 0 !important;
  }

  .heat-glass-card {
    width: 90vw;
    max-width: 360px;
    height: 240px;
    background: rgba(10, 10, 10, 0.65);
  }

  .heat-card-slide {
    padding: 30px 25px;
  }

  .heat-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .heat-card-p {
    font-size: 1.25rem;
  }
}


/* OPINIE*/
.stories-exp-header {
  text-align: center;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 2rem 2rem 1rem;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.stories-exp-header h2 {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 500;
  color: #4A403A;
  margin: 0 0 0.5rem 0;
  line-height: 1.1;
}

.stories-exp-header h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 100;
  letter-spacing: 2px;
  /* text-transform: uppercase; */
  color: #8C8077;
  margin: 0;
}

/* --- KONTENER GŁÓWNY & TRACK --- */
.stories-exp-container {
  width: 100%;
  position: relative;
  margin-top: 80px;
  z-index: 10;
}

.stories-exp-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(245, 242, 238, 0.8) 0%, rgba(230, 225, 220, 1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.stories-exp-track {
  display: flex;
  align-items: center;
  gap: 3vw;
  padding-left: 4vw;
  padding-right: 4vw;
  padding-top: 260px;
  padding-bottom: 3rem !important;
  width: 100%;
  overflow-x: auto;
  will-change: scroll-position;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 70px, black calc(100% - 70px), transparent 100%);

  mask-image: linear-gradient(to right, transparent 0%, black 70px, black calc(100% - 70px), transparent 100%);
}

.stories-exp-track::-webkit-scrollbar {
  display: none;
}

/* --- KARTA (WYGLĄD IG + FILTRY) --- */
.stories-exp-card {
  width: min(22rem, calc(100vw - 2rem));
  height: 25rem;
  flex: 0 0 auto;
  margin: 0;

  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: 0 10px 20px rgba(74, 64, 58, 0.1);
  transform: scale(0.98);
  filter: sepia(0.4) contrast(0.95) brightness(0.95);
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.6s ease,
    opacity 0.6s ease,
    box-shadow 0.6s ease;
}

/* Obrazek Parallax */
.stories-exp-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}

.stories-exp-img-wrap img,
.stories-exp-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.stories-exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 30%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

/*ELEMENTY WEWNĄTRZ KARTY (UI) --- */
.stories-exp-ui-top {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.stories-exp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stories-exp-info {
  display: flex;
  flex-direction: column;
}

.stories-exp-username {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.stories-exp-time {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

/* PRZYCISK @IG (Badge) */
.stories-exp-badge {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}


.stories-exp-ui-bottom {
  position: absolute;
  bottom: 25px;
  left: 20px;
  right: 20px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  pointer-events: auto;
}

.stories-exp-mention {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  align-self: flex-start;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stories-exp-mention:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.stories-exp-mention a,
.stories-exp-mention a:link,
.stories-exp-mention a:visited,
.stories-exp-mention a:hover,
.stories-exp-mention a:active {
  text-decoration: none;
  color: inherit;
}

.stories-exp-mention,
.stories-exp-mention a {
  pointer-events: auto;
}


.stories-exp-snippet {
  margin: 0;
  min-height: 60px;
  display: flex;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 200;
  color: #fff;
  line-height: 1.4;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.stories-exp-card:hover,
.stories-exp-card.is-center,
.stories-exp-card.active-card {
  transform: scale(1);
  filter: sepia(0) contrast(1) brightness(1);
  opacity: 1;
  box-shadow: 0 20px 40px rgba(74, 64, 58, 0.2);
  z-index: 20;
}


.stories-exp-card:hover .stories-exp-snippet,
.stories-exp-card.is-center .stories-exp-snippet {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}


.stories-exp-card:hover .stories-exp-badge,
.stories-exp-card.is-center .stories-exp-badge {
  transform: scale(0.8);
  opacity: 0.5;
}

@media (max-width: 767px) {

  .stories-exp-header {

    padding: 2rem;
  }

  .stories-exp-track {
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        black clamp(30px, 5vw, 70px),
        black calc(100% - clamp(30px, 5vw, 70px)),
        transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0%,
        black clamp(30px, 5vw, 70px),
        black calc(100% - clamp(30px, 5vw, 70px)),
        transparent 100%);
    padding: 280px 10vw 40px 10vw !important;
    gap: 4vw !important;
  }

  .stories-exp-card {
    width: 72vw !important;
    min-width: 260px !important;
    max-width: 320px !important;
    transform: scale(0.98) !important;
  }

  .stories-exp-section .carousel-navigation {
    margin-top: -10px !important;
    margin-bottom: 0.5rem !important;
  }

  .stories-exp-card.is-center,
  .stories-exp-card.active-card {
    transform: scale(1) !important;
  }

  .stories-exp-header h2 {
    font-size: 2rem;
  }

  .stories-exp-header h3 {
    font-size: 1rem;
  }

}

@media (min-width: 768px) {
  .stories-exp-track {
    padding-top: 200px !important;
    padding-bottom: 1.5rem !important;
  }

  .stories-exp-card {
    width: 280px !important;
    height: 460px !important;
  }
}

@media (min-width: 1024px) {

  .stories-exp-card.is-center:not(:hover),
  .stories-exp-card.active-card:not(:hover) {
    transform: scale(0.98) !important;
    filter: sepia(0.4) contrast(0.95) brightness(0.95) !important;
    opacity: 0.85 !important;
    box-shadow: 0 10px 20px rgba(74, 64, 58, 0.1) !important;
    z-index: 1 !important;
  }

  .stories-exp-card.is-center:not(:hover) .stories-exp-snippet,
  .stories-exp-card.active-card:not(:hover) .stories-exp-snippet {
    transform: translateY(20px) !important;
    opacity: 0 !important;
  }

  .stories-exp-card:hover {
    transform: scale(1) !important;
    filter: sepia(0) contrast(1) brightness(1) !important;
    opacity: 1 !important;
    box-shadow: 0 20px 40px rgba(74, 64, 58, 0.2) !important;
    z-index: 20 !important;
  }

  .stories-exp-card:hover .stories-exp-snippet {
    transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

@media (hover: none),
(pointer: coarse) {

  .carousel-navigation .carousel-btn:hover,
  .carousel-navigation .carousel-btn:focus,
  .carousel-navigation .carousel-btn:hover:not(:disabled),
  .carousel-navigation .carousel-btn:focus:not(:disabled) {
    background: rgba(197, 160, 89, 0.1) !important;
    color: #8b6b4a !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .carousel-navigation .carousel-btn:active:not(:disabled) {
    background: rgba(197, 160, 89, 0.2) !important;
    transform: scale(0.92) !important;
    transition: transform 0.1s ease, background 0.1s ease !important;
  }

  .carousel-navigation .carousel-btn {
    -webkit-tap-highlight-color: transparent !important;
  }
}

.stories-exp-snippet {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stories-exp-card:hover .stories-exp-snippet,
.stories-exp-card.is-center .stories-exp-snippet,
.stories-exp-card.active-card .stories-exp-snippet {
  transform: translateY(0);
  opacity: 1;
}

.sp-scope {
  --sp-bg-color: #F9F7F2;
  --sp-text-main: #2C2A29;
  --sp-text-light: #6D6A66;
  --sp-gold: #B08D55;
  --sp-font-head: 'Playfair Display', serif;
  --sp-font-body: 'Manrope', sans-serif;
  --sp-anim: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-scope * {
  box-sizing: border-box;
}

.sp-subtitle {
  font-family: var(--sp-font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sp-gold);
  margin-bottom: 15px;
  font-weight: 600;
  display: block;
  line-height: 1.4;
}

.sp-main-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  margin: 1rem 0;
  line-height: 1;
  color: var(--sp-text-main);
}

.sp-main-title span {
  /* font-style: italic; */
  color: var(--sp-gold);
}

.sp-text-p {
  font-family: var(--sp-font-body);
  color: var(--sp-text-light);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* --- SEKCJA 1: NIEZBĘDNIK (PREP) --- */
.sp-prep-section {
  background-color: var(--sp-bg-color);
  padding: 100px 20px 80px;
  position: relative;
  z-index: 5;
}

.sp-container {
  max-width: 1400px;
  margin: 0 auto;
}

.sp-prep-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.sp-sticky-head {
  position: sticky;
  top: 100px;
}

.sp-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.sp-list-item {
  position: relative;
  padding-left: 40px;
  opacity: 0.25;
  transition: opacity 0.5s ease;
}

.sp-list-item.is-active {
  opacity: 1;
}

.sp-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(44, 42, 41, 0.1);
  transition: background 0.4s ease, width 0.4s ease;
}

.sp-list-item.is-active::before {
  background: var(--sp-gold);
  width: 1px;
  opacity: 0.8;
  border-radius: 10px;
}

.sp-item-head {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--sp-text-main);
  margin: 0 0 15px 0;
  font-weight: 200;
}

.sp-link-hint {
  color: var(--sp-text-main);
  border-bottom: 1px solid var(--sp-gold);
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.sp-link-hint:hover {
  color: var(--sp-gold);
}

.sp-shop-section {
  background-color: var(--sp-bg-color);
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.sp-shop-bg-deco {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(176, 141, 85, 0.08) 0%, rgba(249, 247, 242, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.sp-center-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.sp-card {
  position: relative;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  cursor: pointer;
  background-color: #fff;
  opacity: 1;
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.sp-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
}

.sp-card:hover .sp-card-img {
  transform: scale(1.05);
}

.sp-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 50%);
  transition: var(--sp-anim);
  opacity: 0.7;
  z-index: 1;
}

.sp-card:hover .sp-card-overlay {
  opacity: 0.9;
  background: linear-gradient(to top, rgba(44, 42, 41, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.sp-card-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: #fff;
  z-index: 2;
  text-align: left;
}

.sp-prod-name {
  font-family: var(--font-head);
  font-size: 2rem;
  margin: 0 0 10px 0;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.sp-prod-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  margin: 0 0 20px 0;
  transform: translateY(10px);
  transition: var(--sp-anim);
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.sp-glass-btn {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--sp-anim);
  width: 100%;
  text-align: center;
}

.sp-card:hover .sp-glass-btn {
  transform: translateY(0);
  opacity: 1;
}

.sp-card:hover .sp-glass-btn:hover {
  background: #fff;
  color: var(--sp-text-main);
}

.sp-card:hover .sp-prod-desc {
  transform: translateY(0);
}

.sp-cta-box {
  text-align: center;
  margin-top: 40px;
}

.sp-main-btn {
  position: relative;
  display: inline-block;
  padding: 18px 45px;
  font-family: var(--sp-font-body);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--sp-text-main);
  border: 1px solid var(--sp-text-main);
  background: transparent;
  overflow: hidden;
  transition: color 0.4s ease;
  border-radius: 15px;
  z-index: 1;
}

.sp-main-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--sp-gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.sp-main-btn:hover {
  color: #fff;
  border-color: var(--sp-gold);
}

.sp-main-btn:hover::before {
  width: 100%;
}


@media (max-width: 1024px) {
  /* .sp-container {
    padding-left: 20px;
    padding-right: 20px;
  } */

  .sp-prep-layout {
    gap: 40px;
  }

  .sp-main-title {
    font-size: 2.5rem;
  }
}


@media (max-width: 900px) {
  .sp-prep-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    display: block;
  }

  .sp-sticky-head {
    position: static;
    margin-bottom: 40px;
    text-align: center;
  }

  .sp-grid {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 30px;
    grid-template-columns: none;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .sp-grid::-webkit-scrollbar {
    display: none;
  }


  .sp-card {
    flex: 0 0 60vw;
    width: 60vw;
    max-width: 260px;
    height: 420px;
    scroll-snap-align: start;
    margin: 0;
  }

  .sp-prod-name {
    font-size: 1.6rem;
  }

  .sp-prod-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    font-size: 0.9rem;
    line-height: 1.4;
    height: auto;
    transform: translateY(0);
  }

  .sp-glass-btn {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  .sp-card-overlay {
    opacity: 0.8;
  }

  .sp-item-head {
    font-size: 1.2rem;
  }

  .sp-text-p {
    font-size: .95rem;
  }
}

@media (max-width: 480px) {
  .sp-main-title {
    font-size: 2rem;
  }

  .sp-prep-section,
  .sp-shop-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .sp-card {
    flex: 0 0 82vw;
    width: 82vw;
    height: 380px;
  }

  .sp-card-content {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}

/* --- FAQ SECTION --- */
:root {
  --bg-color: #F5F0EB;
  --card-bg: #FFFFFF;
  --text-primary: #4A403A;
  --text-secondary: #8C8077;
  --accent: #B08D74;
  --radius: 16px;
}

body {
  background:
    radial-gradient(circle at 15% 25%, rgba(176, 141, 116, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(176, 141, 116, 0.15) 0%, transparent 45%),
    #F5F0EB;
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  min-height: 100vh;
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-header h2 {
  color: var(--text-primary);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 10px;
}

.faq-header p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 100;
}

.search-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
}

#searchInput {
  width: 100%;
  box-sizing: border-box;
  padding: 20px 50px 16px 24px;
  border-radius: 50px;
  border: 1px solid rgba(176, 141, 116, 0.1);
  outline: none;
  box-shadow: 0 4px 15px rgba(176, 141, 116, 0.08);
  background-color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

#searchInput:focus {
  border-color: var(--accent);
  box-shadow: 0 4px 25px rgba(176, 141, 116, 0.2);
}

.clear-search {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 20px;
  color: #8C8077;
  display: none;
}

.clear-search.visible {
  display: block;
}

/* Kategorie (Tabs) */
.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(176, 141, 116, 0.3);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}


.faq-content {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.faq-content.fading {
  opacity: 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(176, 141, 116, 0.15);

  border-radius: 16px;
  margin-bottom: 12px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.faq-item.hidden {
  display: none;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 40px 0 rgba(176, 141, 116, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 200;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  font-family: var(--font-head);
}

.faq-question .iconplus {
  font-size: 28px;
  font-weight: 400 !important;
  transition: transform 0.3s ease;
  color: var(--accent);
  font-family: var(--font-head);
}

.faq-item.active .faq-question .iconplus {
  transform: rotate(45deg);
  color: var(--text-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), opacity 0.4s ease;
  opacity: 0;
}

.faq-answer p {
  padding: 0 28px 28px;
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 200;
  color: #5d4e46;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s ease-in-out, opacity 0.4s ease 0.1s;
}

.no-results {
  text-align: center;
  color: var(--text-secondary);
  padding: 20px;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 100;
}

.no-results.hidden {
  display: none;
}

/* --- WSPÓLNE STYLE DLA LIST W FAQ --- */
.faq-answer ul,
.faq-answer ol {
  padding: 0 24px 24px 35px;
  margin: -10px 0 0 0;
  list-style: none;
}

.faq-answer ul li,
.faq-answer ol li {
  position: relative;
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  font-weight: 200 !important;
  color: #5d4e46;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- LISTA PUNKTOWA (Co jest do dyspozycji) --- */
.faq-answer ul li {
  padding-left: 20px;
  margin-bottom: 8px;
}

.faq-answer ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 8px rgba(176, 141, 116, 0.6);
}

/* --- LISTA NUMEROWANA (Co wziąć do sauny) --- */
.faq-answer ol {
  counter-reset: sauna-step;
}

.faq-answer ol li {
  padding-left: 36px;
  margin-bottom: 16px;
}

.faq-answer ol li::before {
  counter-increment: sauna-step;
  content: counter(sauna-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -3px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-primary);
  opacity: 0.5;
}


/*KOTANT SEKCJA*/
:root {
  --lux-bg: #F5F2EB;
  --lux-brown-dark: #4A403A;
  --lux-brown-light: #8C8279;
  --lux-gold: #BFA070;
  --radius-pill: 100px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;
}

.service-contact-strip {
  width: 100%;
  max-width: 100vw;
  padding: 80px 5%;
  background-color: var(--lux-bg);
  border-top: 1px solid rgba(191, 160, 112, 0.15);
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
  z-index: 10;
}

.contact-content-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: nowrap;
}

.contact-header {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.tiny-label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lux-gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-title {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--lux-brown-dark);
  margin: 0.5rem 0;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.contact-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--lux-brown-light);
  margin: 0;
  line-height: 1.5;
  text-wrap: balance;
  max-width: 100%;
}

.contact-actions-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
}

.action-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px 10px 10px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  min-width: 220px;
  box-sizing: border-box;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.action-label {
  font-family: var(--font-head);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
  margin-bottom: 2px;
}

.action-value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
}

.action-pill.primary {
  background-color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(74, 64, 58, 0.05);
}

.action-pill.primary .icon-circle {
  background-color: var(--lux-brown-dark);
  color: #fff;
}

.action-pill.primary .text-col {
  color: var(--lux-brown-dark);
}

.action-pill.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 64, 58, 0.1);
}

.action-pill.secondary {
  background-color: transparent;
  border: 1px solid rgba(74, 64, 58, 0.1);
}

.action-pill.secondary .icon-circle {
  background-color: rgba(191, 160, 112, 0.15);
  color: var(--lux-brown-dark);
}

.action-pill.secondary .text-col {
  color: var(--lux-brown-dark);
}

.action-pill.secondary:hover {
  background-color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(74, 64, 58, 0.05);
}

.social-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  border: none;
  padding: 0;
}

.social-label {
  font-family: var(--font-head) !important;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lux-gold);
  line-height: 1;
  margin-right: 5px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(74, 64, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lux-brown-dark);
  transition: all 0.3s ease;
  background-color: transparent;
}

.social-btn:hover {
  background-color: var(--lux-gold);
  border-color: var(--lux-gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(191, 160, 112, 0.3);
}

@media (max-width: 1024px) {

  .contact-content-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .contact-header {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-actions-grid {
    justify-content: center;
  }
}

.contact-desc {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .service-contact-strip {
    padding: 60px 20px;
  }

  .contact-content-wrapper {
    gap: 32px;
  }

  .contact-header {
    text-align: left;
  }


  .contact-actions-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .action-pill {
    width: 100%;
    justify-content: flex-start;
  }

  .social-group {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(74, 64, 58, 0.1);
    padding-top: 24px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .action-pill {
    padding: 6px 16px 6px 6px;

  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: .9rem;
  }

  .faq-answer ul li,
  .faq-answer ol li {
    font-size: .9rem;
  }

  .faq-question .iconplus {
    font-size: 1.5rem;
    /* padding-left: 1rem; */
  }
}


/* SAUNIARZE*/

.sauna-masters h2.sauna-masters-h2 {
  text-align: center;
  margin: 6rem 0 1rem 0;
}

.carousel-container {
  width: 100%;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  /* -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%); */
}

/* .carousel-container {
  width: 100%;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
} */


.carousel-container .card-carousel:active {
  cursor: grabbing;

}

.card {
  --bg: #fff;
  --title-color: #fff;
  --title-color-hover: #000;
  --text-color: #666;
  --button-color: #eee;
  --button-color-hover: #ddd;
  width: min(22rem, calc(100vw - 2rem));
  height: 33rem;
  flex-shrink: 0;
  margin: 0;
  cursor: pointer;
  background: none;
  font-family: Lato, Montserrat, Helvetica, Arial, sans-serif;
  /* scroll-snap-align: center; */
  transition: transform 4s ease-in-out;
  will-change: transform;
  transform-style: preserve-3d;
  -webkit-font-smoothing: antialiased;
}

/* --- WYMUSZENIE UKŁADU POZIOMEGO --- */
.carousel-navigation {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  margin-top: -10px !important;
  position: relative;
  z-index: 60;
  width: 100% !important;
}

.carousel-navigation .carousel-btn {
  position: static !important;
  transform: none !important;
  background: rgba(197, 160, 89, 0.1) !important;
  border: 1px solid rgba(197, 160, 89, 0.2) !important;
  border-radius: 50% !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  margin: 0 !important;
  display: flex !important;
}

.carousel-navigation .carousel-btn:hover:not(:disabled) {
  background: #fff !important;
  color: #c5a059 !important;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15) !important;
}

.carousel-navigation .carousel-dots {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
}

.carousel-btn {
  position: static !important;
  transform: none !important;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #8b6b4a;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 0 !important;
  left: auto !important;
  right: auto !important;
  display: none !important;
}


.carousel-btn i {
  margin: 0;
}

.carousel-btn:hover:not(:disabled) {
  background: #fff;
  color: #c5a059;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.15);
  transform: scale(1.05) !important;
}

.carousel-btn:hover {
  background: #fff;
  color: #c5a059;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: var(--arrow-offset);
}

.carousel-btn.next {
  right: var(--arrow-offset);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 4px !important;
  background-color: rgba(197, 160, 89, 0.3) !important;
  cursor: pointer !important;
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.4s ease !important;
}


.dot.active {
  width: 24px !important;
  background-color: rgba(197, 160, 89, 1) !important;
}

.dot:hover:not(.active) {
  background-color: rgba(197, 160, 89, 0.6) !important;
}

.card.expanded .info-row,
.card.expanded .card-front>section button,
.card.expanded .card-front::before,
.card.expanded .icon,
.card.expanded .card-front>img,
.card.expanded .card-front>section h2,
.card.expanded .card-front>section p,
.card.expanded .card-front>section>div {
  opacity: 1 !important;
  translate: 0 0 !important;
  transition: opacity 0.8s ease, translate 0.8s ease !important;
}

.card.expanded .card-front>img {
  aspect-ratio: 1 / 1 !important;
  object-position: 50% 10% !important;
  transition: aspect-ratio 0.25s, object-position 0.25s !important;
}

.card.expanded .card-front>section h2 {
  color: var(--title-color-hover) !important;
  margin-block-end: 0.1rem !important;
}

.card.active.expanded .info-row,
.card.active.expanded .card-front>section button {
  opacity: 1 !important;
  translate: 0 0 !important;
}


/* @media (max-width: 767px) {
    .card:hover .info-row,
    .card:hover .card-front > section button,
    .card:hover .card-front::before,
    .card:hover .icon,
    .card:hover .card-front > img,
    .card:hover .card-front > section h2,
    .card:hover .card-front > section p,
    .card:hover .card-front > section > div {
        opacity: 0 !important;
        translate: initial !important;
        aspect-ratio: initial !important;
        object-position: initial !important;
        color: initial !important;
    }
    
    .card,
    .card-inner {
        will-change: transform, opacity;
    }
    
    .card-front,
    .card-back {
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
    }
    
    .card.expanded,
    .card.active.expanded {
        z-index: 10 !important; 
    }
    
} */

/* --- MEDIA QUERIES (OD STANU MOBILE DO DESKTOP) --- */
@media (min-width: 386px) and (max-width: 767px) {
  .card {
    height: min(33rem, 90vh);
    min-height: 28rem;
    width: min(22rem, calc(100vw - 2rem));
  }

  .card-front::before {
    height: 18%;
    backdrop-filter: blur(0.8rem);
    bottom: 0.5rem;
  }

  .card-front>section {
    margin: 1rem 1rem 0.5rem;
    padding-bottom: 2rem;
  }

  .card-front>section h2 {
    font-size: 1.4rem;
  }

  .card-front>section p {
    font-size: 0.78rem;
  }

  .tags-column .tag {
    font-size: 0.72rem;
  }

  .card-front>section button {
    margin-bottom: 2rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.82rem;
  }

  .card-carousel {
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .carousel-container {
    padding: 1.5rem 1rem;
  }

  .carousel-btn.prev {
    left: 3rem;
  }

  .carousel-btn.next {
    right: 3rem;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 0.85rem;
  }

  .card-carousel::-webkit-scrollbar {
    display: none;
  }

  .card-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .carousel-dots {
    margin-top: 1.2rem;
    gap: 0.4rem;
  }

  .dot {
    width: 9px;
    height: 9px;
  }
}


@media (max-width: 385px) {
  body {
    overflow-y: auto;
  }

  .card {
    height: max(25rem, calc(90vh - 4rem));
    min-height: 25rem;
    width: calc(100vw - 1rem);
  }

  .card-front::before {
    height: 15%;
    backdrop-filter: blur(0.6rem);
    bottom: 0.25rem;
  }

  .card-front>section {
    margin: 0.5rem 0.5rem 0.5rem;
    padding-bottom: 1.5rem;
  }

  .card-front>section h2 {
    font-size: 1.3rem;
    margin-block-end: 0.3rem;
  }

  .card-front>section p {
    font-size: 0.75rem;
  }

  .tags-column .tag {
    font-size: 0.7rem;
  }

  .card-front>section button {
    margin-bottom: 1.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .card-carousel {
    padding: 0 0.25rem;
    gap: 0.5rem;
  }

  .carousel-container {
    padding: 1rem 0.75rem;
  }

  .carousel-btn.prev {
    left: 2rem;
  }

  .carousel-btn.next {
    right: 2rem;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .carousel-dots {
    margin-top: 1rem;
    gap: 0.3rem;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .card-carousel::-webkit-scrollbar {
    display: none;
  }

  .card-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

.carousel-btn.prev {
  left: var(--arrow-offset);
}

.carousel-btn.next {
  right: var(--arrow-offset);
}

.card-carousel.is-dragging {
  cursor: grabbing;
}

.card-carousel.is-dragging .card {
  pointer-events: none;
  transform: scale(0.98);
  transition: transform 0.2s;
}


.card-carousel.is-dragging .card,
.card-carousel.is-dragging .card * {
  pointer-events: none !important;
  transform: none !important;
  transition: none !important;
}

.card-carousel.is-dragging .card-inner {
  transform: rotateY(0deg) !important;
  transition: none !important;
}



@media (max-width: 767px) {

  .sauna-masters h2.sauna-masters-h2 {
    margin: 3rem 0 1rem 0;
  }

  .card-carousel::-webkit-scrollbar {
    display: none;
  }

  .card-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .carousel-container {
    --arrow-offset: 0;
  }

  .card-carousel {
    padding: 0 0.5rem;
  }

  .carousel-btn.prev {
    left: 1.5rem;
  }

  .carousel-btn.next {
    right: 1.5rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }

  .card-carousel {
    gap: 1rem;
  }

  .card {
    height: min(33rem, 90vh);
    min-height: 28rem;
  }

  .card-front::before {
    height: 18%;
    backdrop-filter: blur(0.8rem);
  }

  .card-front>section {
    padding-bottom: 2rem;
  }

  .card-front>section button {
    margin-bottom: 2rem;
  }
}

@media (min-width: 576px) {
  .card-carousel {
    padding: 0 2rem;
    gap: 2rem;
  }

  .card {
    min-height: 30rem;
  }

  .card-front::before {
    height: 20%;
  }

  .card-front>section {
    padding-bottom: 2.5rem;
  }

  .carousel-btn.prev {
    left: 0.5rem;
  }

  .carousel-btn.next {
    right: 0.5rem;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .card {
    width: 22rem;
  }

  .card-front::before {
    height: 25%;
  }

  .card-front>section {
    padding-bottom: 3.5rem;
  }

  .carousel-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 3rem;
  }

  .card-carousel {
    padding: 0;
    overflow-x: auto;
  }

  .carousel-btn {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (min-width: 1024px) {
  .carousel-container {
    max-width: 96vw !important;
    margin: 0 auto !important;
    /* -webkit-mask-image: linear-gradient(to right, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 100px, black calc(100% - 100px), transparent 100%); */
    contain: content;
  }

  .card-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2.5rem !important;
    padding: 1rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: default;
    scroll-behavior: auto !important;
    overscroll-behavior: contain;
    overflow-anchor: none;
  }

  .carousel-btn.prev {
    left: 20px;
  }

  .carousel-btn.next {
    right: 20px;
  }

  .card-carousel::-webkit-scrollbar {
    display: none;
  }

  .card-carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }

  .carousel-dots {
    margin-top: 1.5rem;
    z-index: 20;
  }

  .card {
    flex: 0 0 420px !important;
    width: 420px !important;
    height: 600px !important;
  }
}

@media (min-width: 1440px) {
  .carousel-container {
    max-width: 1400px !important;
  }

  .card {
    flex: 0 0 400px !important;
    width: 400px !important;
  }
}


@media (hover: hover) {

  .card:hover .card-front>section button,
  .card:focus-within .card-front>section button {
    opacity: 1;
    translate: 0 0;
    transform: rotate(360deg);
  }

  /* .card:hover .info-row,
    .card:focus-within .info-row {
        opacity: 1;
        translate: 0 0;
    
    } */

  .card:hover .card-front::before,
  .card:focus-within .card-front::before {
    translate: 0 100%;
  }

  .card:hover .icon,
  .card:focus-within .icon {
    opacity: 1;
  }

  .card:hover .card-front>img,
  .card:focus-within .card-front>img {
    aspect-ratio: 1 / 1;
    object-position: 50% 10%;
    transition: aspect-ratio 0.25s, object-position 0.25s;
  }

  .card:hover .card-front>section h2,
  .card:focus-within .card-front>section h2,
  .card:hover .card-front>section p,
  .card:focus-within .card-front>section p {
    translate: 0 0;
    margin-block-end: 0.1rem;
    opacity: 1;
  }

  .card:hover .card-front>section h2,
  .card:focus-within .card-front>section h2 {
    color: var(--title-color-hover);
  }

  .card:hover .card-front>section>div,
  .card:focus-within .card-front>section>div {
    translate: 0 0;
    opacity: 1;
    height: auto;
  }

}

@media (hover: none) {

  .card.expanded .card-front>img {
    aspect-ratio: 1 / 1 !important;
    object-position: 50% 10% !important;
    transition: aspect-ratio 0.3s, object-position 0.3s !important;
  }

  .card.expanded .card-front>section h2,
  .card.expanded .card-front>section p {
    translate: 0 0 !important;
    margin-block-end: 0.1rem !important;
    opacity: 1 !important;
    transition: opacity 0.4s ease 0.25s, translate 0.4s ease 0.25s, margin-block-end 0.3s !important;
  }

  .card.expanded .card-front>section>div {
    translate: 0 0 !important;
    opacity: 1 !important;
    transition: opacity 0.4s ease 0.25s, translate 0.4s ease 0.25s !important;
  }

  .card.expanded .card-front>section button {
    opacity: 1 !important;
    transform: translateZ(0) rotate(360deg) !important;
    -webkit-transform: translateZ(0) rotate(360deg) !important;

    transition: background 0.3s ease, color 0.3s ease,
      opacity 0.4s ease 0.35s, translate 0.4s ease 0.35s,
      transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1) 0.35s !important;
    -webkit-transition: background 0.3s ease, color 0.3s ease,
      opacity 0.4s ease 0.35s, translate 0.4s ease 0.35s,
      -webkit-transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1) 0.35s !important;

    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    perspective: 1000px;
    -webkit-perspective: 1000px;

    font-size: 1.2rem !important;
  }

  .card.expanded .card-front>section button i {
    display: inline-block;
    transform: rotate(360deg) !important;
    -webkit-transform: rotate(360deg) !important;
    transition: transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1) 0.35s !important;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1) 0.35s !important;
    will-change: transform;
  }

  .card.expanded .card-front::before {
    translate: 0 100% !important;
    transition: translate 0.3s !important;
  }

  .card.expanded .icon {
    opacity: 1 !important;
    transition: opacity 0.5s !important;
  }

  .card.expanded .info-row {
    opacity: 1 !important;
    translate: 0 0 !important;
    transition: opacity 0.3s ease, translate 0.3s ease !important;
  }

  .card.expanded .card-front>section h2 {
    color: var(--title-color-hover) !important;
  }

  .card.active.expanded .info-row,
  .card.active.expanded .card-front>section button {
    opacity: 1 !important;
    translate: 0 0 !important;
  }


}


.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform-origin: center center;
  transition: transform 1.2s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.card.is-flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: var(--bg);
  border-radius: 2rem;
  padding: 0.5rem;
  overflow: clip;
  box-sizing: border-box;
}

.card-back {
  background: linear-gradient(145deg, #ffffff, #f6f4f0);
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: 2rem;
  position: relative;
}

.card-back h2 {
  color: var(--accent-gold-dark);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.8rem;
  order: 1;
  font-family: var(--font-head);
  font-weight: 400;
}

.card-back::before {
  content: '';
  order: 2;
  display: block;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0) 0%, rgba(197, 160, 89, 0.8) 50%, rgba(197, 160, 89, 0) 100%);
  margin: 0.5rem 0 1.5rem 0;
  flex-shrink: 0;
}

.card-back p {
  color: #5c534c;
  text-align: center;
  margin-top: 2rem;
  flex-grow: 0;
  padding: 0 2rem;
  order: 3;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: 1.05rem;
}

.card-back::after {
  content: '';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 1.25rem;
  pointer-events: none;
}

.card-front {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-front::before {
  content: "";
  position: absolute;
  width: calc(100% - 1rem);
  height: 25%;
  bottom: 0.5rem;
  left: 0.5rem;
  mask: linear-gradient(#0000, #000f 80%);
  backdrop-filter: blur(1rem);
  border-radius: 0 0 1.5rem 1.5rem;
  translate: 0 0;
  transition: translate 0.25s;
}

.white-card .card-front>section {
  margin: 1.5rem 1rem 0.5rem;
  height: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  padding-bottom: 0;
}

.card-front>img {
  max-width: 100%;
  /* aspect-ratio: 2 / 3; */
  aspect-ratio: 2 / 4;
  object-fit: cover;
  object-position: 50% 5%;
  border-radius: 1.5rem;
  display: block;
  transition: aspect-ratio 0.25s, object-position 0.5s;
}

.card-front>section {
  margin: 1rem 1rem 0.5rem;
  height: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 3.5rem;
}

.card-front>section h2 {
  margin: 0;
  margin-block-end: 0.5rem;
  font-size: 1.5rem;
  opacity: 0;
  translate: 0 -250%;
  opacity: 1;
  color: var(--title-color);
  transition: color 0.5s, margin-block-end 0.25s, opacity 1s, translate 0.25s;
}

.card-front>section p {
  font-size: 0.8rem;
  line-height: 1.3;
  color: var(--text-color);
  opacity: 0;
  margin: 0;
  translate: 0 100%;
  transition: margin-block-end 0.25s, opacity 0.3s ease 0.2s, translate 0.3s ease 0.2s;
}

.card-front>section>div {
  translate: 0 100%;
  opacity: 0;
  transition: translate 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
  height: auto;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: .5rem;
}

.tags-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  /* padding: 0 0.1rem 0 0; */
}

.tags-column .tag {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: .5rem 0 0 0;
  margin: 0;
  color: var(--text-color);
  /* border-bottom: 1px solid rgba(102, 102, 102, 0.1); */
  width: 100%;
  font-family: var(--font-body);
  line-height: 1.5;
  font-size: .85rem;
}

.tags-column .tag:last-child {
  border-bottom: none;
}

.tags-column .tag {
  font-size: .85rem;
}

.tags-column .tag i {
  flex-shrink: 0;
  width: 1rem;
  text-align: center;
  margin-top: 0.25rem;
  color: var(--accent-gold-dark);
}

/* .tags-column hr {
  margin-top: 1rem;
  display: none;
} */

.card-front>section button.flip-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  padding: 0.5rem;
  margin: 0;
  position: absolute;
  bottom: .5rem;
  right: 0rem;
  opacity: 0.6;
}

.card-front>section button.flip-btn:hover {
  background: none;
  opacity: 1;
  color: var(--title-color-hover);
}


.info-row button {
  align-self: flex-end;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  border-radius: 1.5rem;
  cursor: pointer;
}

.card-front>section button {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 101;
  margin-right: .1rem;
  margin-bottom: 3.5rem;
  border-radius: 1.25rem 1.25rem 1.5rem 1.25rem;
  padding: .8rem 1.2rem;
  border: none;
  opacity: 0;
  translate: 0 100%;
  transform: rotate(0deg);
  transition: background 0.3s ease, color 0.3s ease,
    opacity 0.3s ease 0.25s, translate 0.3s ease 0.25s,
    transform 0.5s cubic-bezier(0.4, 0.2, 0.2, 1) 0.25s;
}

.card-front>section button:hover {
  background: var(--button-color-hover);
}

.card-front>section>div button:hover {
  background: var(--button-color-hover);
}

.follow-btn:focus,
.card-front>section>div button:focus {
  outline: none;
}

.card:hover .card-front>section button,
.card:focus-within .card-front>section button {
  opacity: 1;
  translate: 0 0;
}

/* .card:hover .info-row,
.card:focus-within .info-row {
    opacity: 1;
    translate: 0 0;
} */

.card-front>section>div .tag {
  color: var(--text-color);
}

.card-front>section>div button {
  font-size: 0.85rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  align-self: flex-start;
  margin-top: 0;
}

.icons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.icon {
  width: 1rem;
  height: 1rem;
  background: var(--button-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  flex-shrink: 0;
}

.card-front>section>div button::before,
.card-front>section>div button::after {
  content: "";
  width: 0.85rem;
  height: 0.1rem;
  background: currentcolor;
  position: absolute;
  top: 50%;
  left: 1.33rem;
  border-radius: 1rem;
}

.card-front>section>div button::after {
  rotate: 90deg;
  transition: rotate 0.15s;
}

.card-front>section>div button:focus-visible {
  outline: 2px solid var(--text-color);
}

.card:hover .card-front::before,
.card:focus-within .card-front::before {
  translate: 0 100%;
}

.card:hover .icon,
.card:focus-within .icon {
  opacity: 1;
}

.card:hover .card-front>img,
.card:focus-within .card-front>img {
  aspect-ratio: 1 / 1;
  object-position: 50% 10%;
  transition: aspect-ratio 0.25s, object-position 0.25s;
}

.card:hover .card-front>section h2,
.card:focus-within .card-front>section h2,
.card:hover .card-front>section p,
.card:focus-within .card-front>section p {
  translate: 0 0;
  margin-block-end: 0.1rem;
  opacity: 1;
}

.card:hover .card-front>section h2,
.card:focus-within .card-front>section h2 {
  color: var(--title-color-hover);
}

.card:hover .card-front>section>div,
.card:focus-within .card-front>section>div {
  translate: 0 0;
  opacity: 1;
  height: auto;
}

@keyframes arrowRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes arrowRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

.card:not(.expanded) .card-front>section button i {
  animation: none;
  -webkit-animation: none;
}

.card.expanded .card-front>section button i {
  display: inline-block !important;
  animation: arrowRotate 0.5s cubic-bezier(0.4, 0.2, 0.2, 1) 0.35s forwards !important;
  -webkit-animation: arrowRotate 0.5s cubic-bezier(0.4, 0.2, 0.2, 1) 0.35s forwards !important;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  font-size: 1.4rem !important;
}

.mag-card {
  transform: translateZ(0);
  will-change: transform;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

/* .carousel-btn,
.carousel-dots {
  display: none !important;
} */

.carousel-container {
  width: 100%;
  padding: 2rem 0;
  position: relative;
  overflow: visible;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 70px, black calc(100% - 70px), transparent 100%);

  mask-image: linear-gradient(to right, transparent 0%, black 70px, black calc(100% - 70px), transparent 100%);
}

.card-carousel {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  padding: 0 1rem;
  padding-right: 1rem !important;
  scroll-behavior: auto !important;
  touch-action: pan-y;
  /* -webkit-mask-image: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0px, black 40px, black calc(100% - 40px), transparent 100%); */

}

.card-carousel::-webkit-scrollbar {
  display: none;
}

.card-carousel:active {
  cursor: grabbing;
}


.card {
  flex: 0 0 auto;
  margin: 0;
  position: relative;
  cursor: pointer;
  background: none;
}

.card:first-child {
  margin-left: 1.5vw !important;
}

.card:last-child {
  margin-right: 1.5vw !important;
}

@media (max-width: 767px) {
  .carousel-container {
    padding: 1rem 0;
    mask-image: none;
    -webkit-mask-image: none;
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        black clamp(30px, 5vw, 70px),
        black calc(100% - clamp(30px, 5vw, 70px)),
        transparent 100%);
    mask-image: linear-gradient(to right,
        transparent 0%,
        black clamp(30px, 5vw, 70px),
        black calc(100% - clamp(30px, 5vw, 70px)),
        transparent 100%);
  }

  .carousel-navigation {
    margin-bottom: 3rem !important;
  }

  .carousel-container,
  .stories-exp-section {
    padding-bottom: 2rem !important;
  }

  .card-carousel {
    gap: 1rem;
    padding: 0 10vw;

    /* scroll-snap-type: x mandatory; */
  }

  .card {
    width: 80vw;
    max-width: 320px;
    height: 30rem;
    /* scroll-snap-align: center; */
  }

  .card-back h2 {
    font-size: 1.5rem;
  }

  .card-back p {
    font-size: .95rem;
  }

  .card:last-child {
    margin-right: 5vw !important;
  }
}


@media (min-width: 768px) {
  .carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    /* mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%); */
  }

  .card-carousel {
    gap: 2rem;
    padding: 1rem 2rem;
    /* scroll-snap-type: none; */
  }

  .card {
    width: 22rem;
    height: 33rem;
    transition: transform 0.3s ease;
  }

  .card:hover {
    transform: translateY(-5px);
  }
}

@media (max-height: 800px) {
  .stories-exp-track {
    padding-top: 140px !important;
  }

  .stories-exp-header {
    top: 20px;
  }
}


@media (min-width: 1024px) {
  .carousel-container {
    max-width: 95vw !important;
    margin: 0 auto !important;
  }

  .card-carousel {
    gap: 3.5rem !important;
    padding: 1rem 0 !important;
    justify-content: flex-start !important;
  }

  .card {
    flex: 0 0 22rem !important;
    width: 22rem !important;
    height: 34rem !important;
  }
}

.card-carousel.is-dragging .card-inner {
  transform: rotateY(0deg) !important;
  transition: none !important;
}

.card-carousel.is-dragging .card {
  transform: none !important;
  pointer-events: none !important;
}

/* --- KURSORY DO ŁAPANIA (DRAG & DROP) --- */
.card-carousel,
.stories-exp-track {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none;
  padding-bottom: 50px !important;

}

.card-carousel.is-dragging,
.stories-exp-track.is-dragging {
  cursor: grabbing !important;
}

/* Ukrywa pasek scrolla na Chrome/Safari */
.card-carousel::-webkit-scrollbar,
.stories-exp-track::-webkit-scrollbar {
  display: none;
}


.stories-exp-track {
  display: flex;
  overflow-x: auto;
  gap: 2rem;
  width: 100%;
  max-width: 97vw !important;
  margin: 0 auto;
  padding: 0 1rem;
  padding-top: 180px;
  padding-bottom: 1.5rem;
  scroll-behavior: auto !important;
  touch-action: pan-y;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.stories-exp-section .carousel-navigation {
  margin-top: 1rem !important;
  margin-bottom: 4rem !important;
  z-index: 60 !important;
}




.stories-exp-card:first-child {
  margin-left: 1.5vw !important;
}

.stories-exp-card:last-child {
  margin-right: 2vw !important;
}

/* BLOKADA NATYWNEGO PRZECIĄGANIA ZDJĘĆ --- */
.card-front>img,
.stories-exp-card img,
.stories-exp-card {
  -webkit-user-drag: none !important;
  user-select: none !important;
}

.card-front>img {
  pointer-events: none !important;
}

.card-carousel.is-dragging-active .card,
.stories-exp-track.is-dragging-active .stories-exp-card {
  pointer-events: none !important;
}