.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card {
  margin-bottom: 20px;
}


.rootsbuy-btn {
  background: linear-gradient(45deg, #ff7e5f, rgb(21, 255, 0));
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.rootsbuy-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.6);
  text-decoration: none;
}

@media (max-width: 768px) {
  .rootsbuy-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

.carousel-fade .carousel-item {
  transition: opacity 2s ease-in-out;
}

.footer a:hover {
    color: #c8e6c9 !important;
  }


/* SECTION BASE */
.spice-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  color: #fff;
}

/* BACKGROUND VIDEO */
.spice-section .bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* DARK OVERLAY */
.spice-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* CONTENT WRAPPER */
.spice-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  backdrop-filter: blur(5px);
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* TITLE */
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #ffe09b, #cfb66d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TEXT */
.section-text {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* PARALLAX HOVER IMAGE */
.spice-img {
  transition: transform .4s ease;
  cursor: pointer;
}
.spice-img:hover {
  transform: translateY(-10px) scale(1.03);
}

/* FLOATING PARTICLES */
.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: #ffe09b;
  border-radius: 50%;
  animation: float_particle 6s infinite ease-in-out;
  z-index: 1;
}
.floating-particles::after {
  animation-duration: 8s;
  left: 85%;
}

/* PARTICLE KEYFRAMES */
@keyframes float_particle {
  0%   { transform: translateY(0) ; opacity: .4; }
  50%  { transform: translateY(-80px); opacity: 1; }
  100% { transform: translateY(0); opacity: .4; }
}

/* SCROLL ANIMATION */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s, transform .7s;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


 