/* Ensure full-viewport sizing works */
html, body { 
  height: 100%; 
  margin: 0; 
  background: url('../img/frontpage_bg.jpg') fixed center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overscroll-behavior: none; /* prevent pull-to-refresh / overscroll chaining */
}
.fp { 
  background: transparent;
  color: var(--fp-fg); 
  height: 100svh; 
  height: 100dvh; 
  min-height: 100vh; 
  overflow: clip; 
  overscroll-behavior: none;
}
.fp-swiper { width: 100%; height: 100%; }
.fp-swiper-vertical { overscroll-behavior: none; }
.swiper-wrapper, .swiper-slide { height: 100%; }
.swiper-slide { position: relative; }

/* Media fill */
.fp-slide-media { 
  position: absolute; 
  inset: 0; 
  background: transparent;
}
.fp-slide-media { z-index: 1; }
.fp-slide-media > * { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.fp-slide-media img { object-fit: cover; }
.vimeo-embed { width: 100%; height: 100%; border: 0; position: relative; z-index: 0; /* z-index: 2 */ }

/* Vimeo controls - let them show naturally */
.fp-embed .vimeo-embed {
  position: relative;
  overflow: hidden;
}

.fp-embed .vimeo-embed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px; /* Height of Vimeo control bar */
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Allow clicks on volume button area (right side) */
.fp-embed .vimeo-embed::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px; /* Width of volume button area */
  height: 60px;
  z-index: 2;
  pointer-events: auto;
  background: transparent;
}

/* Self-hosted video cover */
.fp-slide-media video { width: 100%; height: 100%; object-fit: cover; display: block; }


/* Overlay and UI */
.fp-slide-overlay {
  position: absolute; inset: 0; display: grid; place-content: center; text-align: center;
  padding: 2rem; gap: .75rem; pointer-events: none; z-index: 2;
}
.fp-title { font-size: clamp(26px, 6vw, 84px); line-height: 1; }
.fp-subtitle { font-size: clamp(14px, 2.4vw, 22px); opacity: .95; max-width: 80ch; margin-inline: auto; }
/* Hide big project title overlay to prevent covering inner slides */
.fp-slide-project > .fp-slide-overlay { display: none; }
.fp-button { pointer-events: auto; display: inline-block; margin-top: 1rem; color: var(--fp-fg); border: 1px solid currentColor; padding: .5rem 1rem; text-decoration: none; }

.fp-nav { position: absolute; inset: auto 0 1.25rem 0; display: flex; justify-content: space-between; padding: 0 1.25rem; z-index: 3; }
.fp-nav button { color: var(--fp-fg); background: transparent; border: 1px solid currentColor; padding: .5rem 1rem; cursor: pointer; }
.fp-pagination { position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%); z-index: 3; }

/* Landing slide: show only one Vimeo based on orientation/aspect */
.fp-slide-landing .vimeo-desktop { display: block; }
.fp-slide-landing .vimeo-mobile { display: none; }

@media (orientation: portrait) {
  .fp-slide-landing .vimeo-desktop { display: none; }
  .fp-slide-landing .vimeo-mobile { display: block; }
}

/* Aspect-ratio fallback */
@media (max-aspect-ratio: 1/1) {
  .fp-slide-landing .vimeo-desktop { display: none; }
  .fp-slide-landing .vimeo-mobile { display: block; }
}
@media (min-aspect-ratio: 1/1) {
  .fp-slide-landing .vimeo-desktop { display: block; }
  .fp-slide-landing .vimeo-mobile { display: none; }
}

/* When using self-hosted videos on landing */
.fp-slide-landing .fp-video-desktop { display: block; }
.fp-slide-landing .fp-video-mobile { display: none; }
@media (orientation: portrait) {
  .fp-slide-landing .fp-video-desktop { display: none; }
  .fp-slide-landing .fp-video-mobile { display: block; }
}
@media (max-aspect-ratio: 1/1) {
  .fp-slide-landing .fp-video-desktop { display: none; }
  .fp-slide-landing .fp-video-mobile { display: block; }
}
@media (min-aspect-ratio: 1/1) {
  .fp-slide-landing .fp-video-desktop { display: block; }
  .fp-slide-landing .fp-video-mobile { display: none; }
}

/* Prevent interacting with all Vimeo background iframes - controls are via postMessage */
.vimeo-embed { pointer-events: none; }
/* Responsive video detection for intro */
.fp-intro .fp-video-desktop { display: block; }
.fp-intro .fp-video-mobile { display: none; }

/* Prefer orientation/aspect-ratio to decide intro video */
@media (orientation: portrait) {
  .fp-intro .fp-video-desktop { display: none; }
  .fp-intro .fp-video-mobile { display: block; }
}

@media (max-aspect-ratio: 1/1) {
  .fp-intro .fp-video-desktop { display: none; }
  .fp-intro .fp-video-mobile { display: block; }
}

@media (min-aspect-ratio: 1/1) {
  .fp-intro .fp-video-desktop { display: block; }
  .fp-intro .fp-video-mobile { display: none; }
}

/* Dissolve/blur crossover: JS toggles .fp-is-transitioning on .fp */
.fp-is-transitioning .fp-slide-media {
  filter: blur(10px) contrast(1.05) saturate(1.05);
  transition: filter 320ms ease;
  will-change: filter;
}

/* Intro modal */
.fp-intro { position: fixed; inset: 0; z-index: 20;
  background: #000;
  /* background: url('../img/frontpage_bg.jpg') fixed center/cover;
  background-size: cover; background-position: center;
   background-repeat: no-repeat; */
   display: grid; place-items: center; }
.fp-intro[aria-hidden="true"] { display: none; }
.fp-intro-media { position: absolute; inset: 0; }
.fp-intro-media > * { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Preloader overlay - sits above intro, below nav */
.fp-preloader {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  /* background: url('../img/frontpage_bg.jpg') fixed center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease, filter .6s ease;
}

.fp-preloader[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  filter: blur(6px);
}

.fp-preloader-logo {
  width: min(45vw, 220px);
  height: auto;
  /* filter: brightness(0) invert(1); */
  animation: fp-pulse 3.8s ease-in-out infinite;
}

@keyframes fp-pulse {
  0% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: .7; }
}

/* Intro controls */
.fp-intro-controls { 
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2; 
  display: flex; 
  gap: 1rem; 
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 500;
}

.fp-intro-controls.visible {
  opacity: 1;
}
.fp-intro-unmute { 
  background: transparent;
  color: var(--primary-text-color);
  border: none;
  outline: none;
  padding: .75rem;
  border-radius: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.fp-intro-enter { 
  background: transparent; 
  color: var(--primary-text-color); 
  border: none; 
  padding: .75rem 1.25rem;
  letter-spacing: .1em; 
  font-size: 18px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Make entire intro clickable except volume button */

.fp-intro-controls {
  pointer-events: none;
}

.fp-intro-unmute {
  pointer-events: auto;
}

.fp-intro-enter {
  pointer-events: auto;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.fp-intro-enter.visible {
  opacity: 1;
}

/* Global Navigation Overlay */
@media all and (max-width: 767px) {
  .fp-menu {
    display: flex !important;
    flex-wrap: wrap;
    gap: 5px 10px !important;
    /* list-style: none;
    padding: 0;
    margin: 0; */
  }
  
  .fp-menu > li {
    float: none !important;
    flex: 0 0 auto; 
    order: 3;
  }
  
  .fp-menu > li:nth-child(-n + 2) {
    order: 1;
  }
  
  .fp-menu::after {
    content: "";
    flex-basis: 100%;
    order: 2;
  }
  
  .fp-nav-unmute-btn {
    margin-right: 0 !important;
  }
}



.fp-nav-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 15;
}

.fp-nav-overlay > * {
  pointer-events: auto;
}

/* Top Center: Logo */
.fp-nav-top-center {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bottom Center: Scroll icon */
.fp-nav-bottom-center {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
}
.icon-scroll {
  width: 40px;
  height: 70px;
  margin-left: -20px;
  top: 50%;
  margin-top: -35px;
  box-shadow: inset 0 0 0 1px var(--primary-text-color);
  border-radius: 25px;
}
.icon-scroll:before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary-text-color);
  margin-left: -4px;
  top: 8px;
  border-radius: 4px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
          animation-name: scroll;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(46px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(46px);
  }
}


/* Top Left: Menu only */
.fp-nav-top-left {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.fp-logo img {
  height: 50px;
  width: auto;
  /* filter: brightness(0) invert(1);  */
}

.fp-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.fp-menu li {
  margin: 0;
}

.fp-menu a {
  color: var(--primary-text-color);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* Top Right: Project Title */
@media all and (max-width: 500px){
  .fp-nav-top-right {flex-direction: column !important;}
  .fp-nav-unmute-btn {order: 2; width: 100% !important; justify-content: end; margin-top: 5px; margin-top: 12px;}
}



.fp-nav-top-right {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: row;
}

.fp-project-title {
  color: var(--primary-text-color);
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 300;
}

/* Bottom Left: Text Animation */
.fp-nav-bottom-left {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}

.fp-text-animation {
  position: relative;
  height: 1.5em;
  overflow: hidden;
  min-width: 200px;
}

.fp-text-word {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--primary-text-color);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0);
  transition: none;
}

.fp-text-word.active {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom Center: Scroll Icon - removed duplicate */
 
.scrolldown {
  border: 1px solid var(--primary-text-color);
  border-radius: 30px;
  height: 46px;
  margin: 0 auto 8px;
  text-align: center;
  width: 25px;
}

.scrolldown-p1,
.scrolldown-p2 {
  animation-duration: 2s;
  animation-name: scrolldown;
  animation-iteration-count: infinite;
  fill: var(--primary-text-color);
}
  
.scrolldown-p2 {
  animation-delay: 1.75s;
}

@keyframes scrolldown {
  0% {
    opacity: 0;
    transform: translate(0, -8px);
  }
  50% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 0;
    transform: translate(0, 8px);
  }
}

/* Bottom Right: Slide Info */
.fp-nav-bottom-right {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.fp-slide-info {
  color: var(--primary-text-color);
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: right !important;
}

/* Manifesto Modal */
.fp-manifesto-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: url('../img/manifesto_bg.jpg') center/cover;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  filter: blur(20px) contrast(5) saturate(1.5);
  transition: opacity 0.8s ease, visibility 0.8s ease, filter 0.8s ease;
}

.fp-manifesto-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  filter: blur(0px) contrast(1) saturate(1);
}

.fp-manifesto-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 3rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.fp-manifesto-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--manifesto-text-color);
  font-size: 16px;
  padding: 0.5rem;
  z-index: 1;
}

.fp-manifesto-text {
  color: var(--manifesto-text-color);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  /* max-width: 800px; */
  /* margin: 0 auto; */
  /* padding-top: 2rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: 50vw
}

.manifesto-footer {
  position: absolute;
  bottom: 1rem;
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

@media all and (max-width: 767px) {
  .fp-manifesto-text {
    max-width: 100vw;
  }
}

.fp-manifesto-text h1,
.fp-manifesto-text h2,
.fp-manifesto-text h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--manifesto-text-color);
  font-size: 1.5rem;
  font-weight: 300;
}

.fp-manifesto-text p {
  margin-bottom: 1rem;
  color: var(--manifesto-text-color);
}

.fp-manifesto-text a {
  color: var(--manifesto-text-color);
  text-decoration: none;
}

.fp-manifesto-text a:hover {
  color: var(--manifesto-text-color);
  text-decoration: none;
}
.manifesto-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  color: var(--manifesto-text-color);
  display: inline-block;
  transition: all 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  background: transparent;
}

/* .manifesto-btn:hover {
  background: var(--manifesto-text-color);
  color: #000;
  text-decoration: none;
} */

/* Join the pulse section */
.join-pulse-section {
  position: relative;
  top: 2rem;
  min-height: 50px; /* Reserve space to prevent jumping */
}

/* Mailchimp form container */
.mailchimp-form-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow: hidden;
}

.mailchimp-form-container.show {
  opacity: 1;
  visibility: visible;
}

/* Mailchimp signup form */
.mailchimp-signup-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
  max-width: 250px;
}

.form-group {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  align-items: start;
  flex-direction: column;
}

.mailchimp-signup-form input[type="email"],
.mailchimp-signup-form input[type="text"]  {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 1px solid var(--manifesto-text-color);
  border-radius: 50px;
  background: transparent;
  color: var(--manifesto-text-color);
  outline: none;
  transition: all 0.3s ease;
  font-size: 1em;
  font-weight: 200;
}

.mailchimp-signup-form input[type="email"]:focus,
.mailchimp-signup-form input[type="text"]:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--manifesto-text-color);
}

.mailchimp-signup-form input[type="email"]::placeholder,
.mailchimp-signup-form input[type="text"]::placeholder {
  color: rgba(248, 248, 247, 0.7);
}

.mailchimp-signup-form .manifesto-btn {
  position: static;
  top: auto;
  padding: 10px;
  white-space: nowrap;
  min-width: 120px;
  background: transparent;
  font-size: 1em;
  font-weight: 200;
  color: var(--manifesto-text-color);
}

/* Form message */
.form-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  min-height: 1.2rem;
  text-align: center;
}

.form-message.success {
  color: #4CAF50;
}

.form-message.error {
  color: #f44336;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .mailchimp-signup-form .manifesto-btn {
    width: 100%;
  }
}

/* Button label styling */
.button-label-slides {
  border: 1px solid var(--primary-text-color);
  padding: 3px 5px 3px 6px;
  color: var(--primary-text-color) !important;
  border-radius: 30px !important;
  margin: 0 16px;
  line-height: .7;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
}

.button-label-slides svg {
  width: 20px;
  height: 20px;
}

/* Navigation arrow styling */
.nav-arrow {
  fill: var(--primary-text-color);
}

/* Arrow rotations - new SVG points left by default */
.nav-arrow-left {
  transform: rotate(0deg); /* Already pointing left */
}

.nav-arrow-right {
  transform: rotate(180deg); /* Rotate 180° to point right */
}

/* .nav-arrow-up {
  transform: rotate(90deg);
} */

/* .nav-arrow-down {
  transform: rotate(-90deg);
} */

.nav-hidden {
  opacity: 0;
}

/* Horizontal navigation - positioned at 50% height */
.fp-nav-horizontal { 
  position: fixed; 
  left: 0; 
  right: 0; 
  top: 50%; 
  transform: translateY(-50%); 
  display: flex; 
  justify-content: space-between; 
  padding: 0 2rem; 
  z-index: 10; 
  pointer-events: none;
}

.fp-nav-horizontal button {
  pointer-events: auto;
  transition: opacity 0.3s ease;
  background: transparent;
  border: 1px solid var(--primary-text-color);
  padding: 3px 5px 3px 6px;
  color: var(--primary-text-color) !important;
  border-radius: 30px !important;
  margin: 0 16px;
  line-height: .7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 25px;
}

.fp-nav-horizontal button svg{
  width: 20px;
  height: 20px;
  fill: var(--primary-text-color);
}

/* .fp-nav-horizontal .fp-right {
  opacity: 1;
} */

/* Vertical navigation - positioned at center bottom */
.fp-nav-vertical { 
  position: fixed; 
  left: 50%; 
  transform: translateX(-50%); 
  bottom: 1.25rem; 
  display: grid; 
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem; 
  z-index: 10; 
  pointer-events: none;
}

.fp-nav-vertical button {
  pointer-events: auto;
  transition: opacity 0.3s ease;
  background: transparent;
  border: 1px solid var(--primary-text-color);
  padding: 2px 3px 2px 3px;
  color: var(--primary-text-color) !important;
  border-radius: 30px !important;
  margin: 0 16px;
  line-height: .7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 45px;
}

.fp-nav-vertical button svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-text-color);
}


/* Project inner swiper */
.project-swiper { position: absolute; inset: 0; }
.project-swiper .swiper-wrapper { height: 100%; }
.project-swiper .swiper-slide { width: 100%; height: 100%; }

/* Hide old horizontal navigation buttons */
.project-nav {
  display: none !important;
}

.project-swiper .swiper-slide { 
  position: relative; 
  overflow: hidden; 
}

/* Repeater slide content layout */
.fp-overlay-content { max-width: min(92vw, 1000px); margin: 0 auto; }
.project-content { 
  position: absolute; 
  inset: 15%; 
  z-index: 2; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 1.5rem; 
  padding: 0; 
  pointer-events: none; 
}
.project-content * { pointer-events: auto; }
.project-text { 
  font-size: clamp(14px, 2.4vw, 22px); 
  opacity: .95; 
  max-width: 80ch; 
  text-align: center; 
  line-height: 1.6;
}
@media all and (max-width: 767px) {
  .fp-embed {
    height: 100vh !important;
  }  
}
.fp-embed { 
  width: 100%; 
  /* max-width: min(90vw, 800px);  */
  aspect-ratio: 16/9; 
  margin: 3em;
  z-index: 1;
}
.fp-embed iframe { 
  width: 100%; 
  height: 100%; 
  border: 0; 
  display: block; 
  object-fit: cover;
  pointer-events: auto;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Intro video containers - ensure full viewport coverage */
.fp-intro .fp-video-desktop,
.fp-intro .fp-video-mobile {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%) scale(1.12);
  transform-origin: center center;
  border: 0;
  display: block;
  z-index: 1;
  overflow: hidden;
  background: #000;
  object-fit: cover;
}

/* Ensure iframe container is positioned for overlays */
.fp-embed {
  position: relative;
}

/* Add wheel event overlay for iframes */
.fp-embed::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; /* above iframe (z-index:1), below Vimeo gradient (::after on .vimeo-embed has z-index:3) */
  pointer-events: auto; /* capture wheel to allow slide scroll over video */
  background: transparent;
  transition: opacity 0.1s ease;
}


/* Hide overlay during transitions to allow GSAP effects */
.fp-is-transitioning .fp-embed::after {
  opacity: 0;
  pointer-events: none;
}

/* Video unmute button */
/* .fp-unmute-btn {
  position: absolute !important;
  top: 1.5rem !important;
  right: 1.5rem !important;
  z-index: 10000 !important;
  width: 50px !important;
  height: 50px !important;
  border: none !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  color: white !important;
  cursor: pointer !important;
  display: grid !important;
  place-items: center !important;
  transition: all 0.3s ease !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

.fp-unmute-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.fp-unmute-btn:active {
  transform: scale(0.95);
}

.fp-unmute-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
} */

/* Hide unmute button during transitions */
.fp-is-transitioning .fp-unmute-btn {
  opacity: 0;
  pointer-events: none;
}

/* Navigation unmute button - positioned in top-right nav */
.fp-nav-unmute-btn {
  opacity: 1; 
  visibility: visible;
  display: inline-grid;
  
  margin-right: 1rem;
  width: 40px;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  color: var(--primary-text-color);
  display: inline-flex !important;
  place-items: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* .fp-nav-unmute-btn:hover {
  background: rgba(139, 139, 139, 1);
} */

.fp-nav-unmute-btn svg {
  width: 16px;
  height: 16px;
  fill: var(--primary-text-color);
}

.fp-nav-unmute-btn.is-hidden {
  opacity: 0;
  display: none;
  visibility: hidden;
  pointer-events: none;
}

/* Product slide styling - Two column layout */
.fp-slide-product .product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.fp-slide-product .product-image-column {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-slide-product .product-featured-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}

.fp-slide-product .product-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.fp-slide-product .product-featured-image:hover img {
  transform: scale(1.02);
}

.fp-slide-product .product-details-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1rem;
}

.fp-slide-product .product-title {
  font-size: 2.5rem;
  font-weight: 200;
  margin-bottom: 1.5rem;
  color: var(--primary-text-color);
  line-height: 1.2;
}

.fp-slide-product .product-price {
  font-size: 1.25rem;
  font-weight: 200;
  margin-bottom: 2rem;
  color: var(--primary-text-color);
}

.fp-slide-product .product-sizes {
  margin-bottom: 2rem;
}

.fp-slide-product .product-sizes h4 {
  font-size: 1em;
  font-weight: 200;
  margin-bottom: 1rem;
  color: var(--primary-text-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fp-slide-product .size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.fp-slide-product .size-option {
  display: inline-block;
  padding: 8px 16px;
  background: transparent;
  color: var(--primary-text-color);
  border: 1px solid var(--primary-text-color);
  border-radius: 20px;
  font-size: 1em;
  font-weight: 200;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.fp-slide-product .size-option:hover {
  background: var(--primary-text-color);
  color: #000;
}

.fp-slide-product .product-short-description {
  font-size: 1em;
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--primary-text-color);
  opacity: 0.9;
}

.fp-slide-product .product-actions {
  margin-top: auto;
}

.fp-slide-product .product-link {
  display: inline-block;
  padding: 14px 28px;
  background: transparent;
  color: var(--primary-text-color);
  border: 1px solid var(--primary-text-color);
  text-decoration: none;
  border-radius: 30px;
  font-size: 1em;
  font-weight: 200;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.fp-slide-product .product-link:hover {
  background: var(--primary-text-color);
  color: #000;
  transform: translateY(-2px);
}

/* Responsive adjustments for product slide */
@media (max-width: 768px) {
  .fp-slide-product .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .fp-slide-product .product-details-column {
    padding-left: 0;
    text-align: center;
  }
  
  .fp-slide-product .size-list {
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .fp-is-transitioning .fp-slide-media { filter: none !important; }
}