@use "../../../../styles/abstracts/variables" as *;

.empty {
  position: relative;

  width: 100%;
  min-height: 340px;
  height: 100%;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 3rem 2rem;

  border-radius: 20px;

  background:
    radial-gradient(
      circle at top,
      rgba(255,255,255,0.03),
      transparent 50%
    ),
    var(--card);

  border: 1px solid var(--border);

  overflow: hidden;

  &::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    border-radius: 50%;

    background:
      radial-gradient(
        circle,
        rgba(247,147,24,0.08),
        transparent 70%
      );

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;
  }

  h3 {
    position: relative;

    margin: 0;

    color: var(--text-primary);

    font-size: 1rem;

    font-weight: 600;

    letter-spacing: -0.02em;
  }

  p {
    position: relative;

    max-width: 420px;

    margin-top: 0.7rem;

    color: #FFF !important;
    font-weight: 400 !important;

    font-size: 0.85rem;

    line-height: 1.8;
  }
}

.badge {
  position: relative;

  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  margin-bottom: 1.25rem;

  color: #f79318;

  background:
    linear-gradient(
      180deg,
      rgba(247,147,24,0.12),
      rgba(247,147,24,0.04)
    );

  border: 1px solid
    rgba(247,147,24,0.14);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.25);
}

.action {
  position: relative;

  margin-top: 1.5rem;

  display: flex;
  align-items: center;
  justify-content: center;

  button,
  a {
    height: 40px;

    padding: 0 1rem;

    border-radius: 10px;

    border: none;

    cursor: pointer;

    font-size: 0.82rem;
    font-weight: 600;

    transition: all 0.2s ease;

    &:hover {
      transform: translateY(-1px);
    }
  }
}

@media (max-width: 768px) {
  .empty {
    min-height: 260px;

    padding: 2rem 1.25rem;
  }

  .badge {
    width: 40px;
    height: 40px;
  }

  .empty h3 {
    font-size: 0.95rem;
  }

  .empty p {
    font-size: 0.82rem;
  }
}