/* Empty state under RECENT SEARCHES (landing + components preview) */
.recent-searches-empty-cta {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 0.5rem 0.75rem;
  box-sizing: border-box;
  text-align: center;
}

.recent-searches-empty-cta[hidden] {
  display: none !important;
}

.recent-searches-empty-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.recent-searches-empty-cta__tagline {
  margin: 0;
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--black-color, #111);
}

.recent-searches-empty-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Shiny orange CTA — aligned with dynamic product checkout (.buy-button + .shine) */
.rs-empty-cta-shine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  min-width: min(100%, 17rem);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--background, #fff);
  background: linear-gradient(
    180deg,
    rgba(var(--color-rgb, 255, 162, 92), 1) 0%,
    rgba(var(--color-alt-rgb, 255, 143, 51), 1) 100%
  );
  box-shadow:
    0 4px 16px rgba(var(--color-rgb, 255, 162, 92), 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}

.rs-empty-cta-shine:hover,
.rs-empty-cta-shine:focus-visible {
  filter: brightness(1.04);
  transform: scale(1.02);
  outline: none;
}

.rs-empty-cta-shine:active {
  transform: scale(0.99);
}

/* Shine sweep (same idea as utility.css .shine + product checkout) */
.rs-empty-cta-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100px;
  width: 40px;
  height: 100%;
  opacity: 1;
  filter: blur(10px);
  transform: skewX(-30deg);
  pointer-events: none;
  animation: rs-empty-cta-shine-slide 3s ease-in-out infinite;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}

@keyframes rs-empty-cta-shine-slide {
  0% {
    left: 0;
    top: 0;
  }
  30% {
    left: 120%;
    top: 0;
  }
  100% {
    left: 120%;
    top: 0;
  }
}

.rs-empty-cta-shine__arrow {
  display: inline-block;
  font-size: 1.15rem;
  animation: rs-empty-cta-arrow-nudge 2s ease-in-out infinite;
}

@keyframes rs-empty-cta-arrow-nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

.recent-searches-empty-cta--preview {
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px dashed rgba(17, 17, 17, 0.2);
  background: rgba(255, 255, 255, 0.6);
}
