.scissors-animation-section {
  position: relative;
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: var(--primary-gold);
  overflow: hidden;
}

.scissors-animation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 135, 0.3) 0%,
    rgba(201, 162, 160, 0.3) 100%
  );
  z-index: 1;
}

.scissors-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.scissors-scroll {
  position: relative;
  width: 100%;
  height: 10rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}

.scissors-scroll::before,
.scissors-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.scissors-content {
  display: flex;
  flex-shrink: 0;
  min-width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: scrollScissors 40s linear infinite;
}

.scissors-item {
  white-space: nowrap;
  padding: 0 4rem;
  flex-shrink: 0;
  font-size: 10rem;
  color: var(--neutral-light);
  opacity: 0.9;
  animation: snip 2s ease-in-out infinite;
}

@keyframes snip {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(15deg) scale(1.05);
  }
  75% {
    transform: rotate(-15deg) scale(0.95);
  }
}

@keyframes scrollScissors {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 1024px) {
  .scissors-scroll {
    height: 9rem;
  }

  .scissors-item {
    padding: 0 3.5rem;
    font-size: 8rem;
  }
}

@media (max-width: 900px) {
  .scissors-scroll {
    height: 8rem;
  }

  .scissors-item {
    padding: 0 3rem;
    font-size: 7rem;
  }
}

@media (max-width: 768px) {
  .scissors-scroll {
    height: 7rem;
  }

  .scissors-item {
    padding: 0 2.5rem;
    font-size: 6rem;
  }
}

@media (max-width: 480px) {
  .scissors-scroll {
    height: 6rem;
  }

  .scissors-item {
    padding: 0 2rem;
    font-size: 5rem;
  }
}

@media (max-width: 375px) {
  .scissors-scroll {
    height: 5rem;
  }

  .scissors-item {
    padding: 0 1.5rem;
    font-size: 4rem;
  }
}
