.matcha-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.matcha-slider-wrapper {
    min-height: 720px;
}

.matcha-slider-wrapper {
    background: #ffffff70;
    backdrop-filter: blur(5px);
	  -webkit-backdrop-filter: blur(5px);
    border-radius: 24px;
}

.matcha-slider-wrapper {
  position: relative;
}

.matcha-slide {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px;
  gap: 20px;
  color: #805E9B;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.matcha-slide.active {
  display: flex;
  flex-direction: column;
  animation: fadeSlide 1.2s ease forwards;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.matcha-slide-image {
  flex: 1 1 40%;
  text-align: center;
}

.matcha-slide-image img {
  width: 85%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  transform: scale(0.9);
  opacity: 0;
  animation: imagePop 1s ease 0.3s forwards;
}

@keyframes imagePop {
  0% { transform: scale(0.85) rotate(-20deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.matcha-slide-content {
  flex: 1 1 55%;
  animation: textFade 1s ease 0.4s forwards;
  opacity: 0;
}

@keyframes textFade {
  0% { transform: translateX(30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

.matcha-slide-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #805E9B;
}

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

/* NAVIGATION ARROWS */
.matcha-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.3s ease, background 0.3s ease;
}

.matcha-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-top: 2px solid #805E9B;
  border-right: 2px solid #805E9B;
  transform: rotate(45deg);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.matcha-nav.prev::after {
  transform: rotate(225deg);
  left: 4px;
}

.matcha-nav.next::after {
  transform: rotate(45deg);
  right: 4px;
}

.matcha-nav:hover {

  transform: translateY(-50%) scale(1.01);
}

.matcha-nav:hover::after {
  border-color: #f0a0c6;

  transform: scale(1.01) rotate(45deg);
}

.matcha-nav.prev:hover::after {
  transform: scale(1.15) rotate(225deg);
}

.matcha-nav.prev { left: 20px; }
.matcha-nav.next { right: 20px; }

/* DOTS */
.matcha-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.matcha-dots button {
  width: 30px;
  height: 1px;
  background: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.matcha-dots button.active {
  background: #f0a0c6;
 
}





/* RESPONSIVE */
@media (max-width: 900px) {
    
    .matcha-slider-wrapper {
    min-height: 680px;
}
  .matcha-slide {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .matcha-slide-image img {
    width: 100%;
  }

  .matcha-nav {
    width: 45px;
    height: 45px;
  }

  .matcha-nav::after {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }
}