.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-left 32s linear infinite;
}

.marquee-text {
  padding-right: 2rem;
  font-weight: 700; 
  font-size: 1rem; 
}

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

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

 body {
  font-family: "Bricolage Grotesque", sans-serif;
 }

 .faq-arrow {
   transition: transform 0.3s ease;
 }

 .faq-item.active .faq-arrow {
   transform: rotate(90deg);
 }
   .tab-btn {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    transition: 200ms ease;
    border: 1px solid rgba(255,255,255,0.4);
  }
.glass-box {
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 40px -12px rgba(0,0,0,0.4);
}

  .tab-btn:hover {
    background: rgba(255,255,255,0.8);
  }

  .active-tab {
    background: #56bf36 !important;
    color: white;
    box-shadow: 0 8px 20px -4px rgba(86,191,54,0.4);
  }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease-in-out;
}

.glass-box {
  position: relative;
  backdrop-filter: blur(12px) saturate(180%);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.glass-box .ripple {
  position: absolute;
  width: 0px;
  height: 0px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,0.35) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.8s ease;
}

.cookie-card {
  position: fixed;
  bottom: 25px;
  right: 25px;
  padding: 18px 22px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px) saturate(200%);
  -webkit-backdrop-filter: blur(14px) saturate(200%);
  
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);

  max-width: 280px;
  color: white;
  z-index: 999999999;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
}

.cookie-card.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.9rem;
  line-height: 1.4rem;
  margin-bottom: 12px;
  color: black;
}

.cookie-btn {
  background: #56bf36;
  padding: 10px 14px;
  border-radius: 10px;
  width: 100%;
  color: white;
  font-weight: bold;
  transition: background 0.25s ease, transform 0.2s ease;
}

.cookie-btn:hover {
  background: #48a82f;
  transform: scale(1.05);
}

.hidden {
  display: none;
}
