/* Shorten row */

.shorten-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.shorten-row .shorten-pill {
  flex: 1;
  margin: 0;
}

/* Transform indicator */

.transform-indicator {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.transform-indicator svg {
  display: none;
}

.transform-indicator::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  background:
    repeating-linear-gradient(
      60deg,
      transparent 0%,
      #e11d48 10%,
      #f97316 20%,
      #6d28d9 30%,
      #06b6d4 35%,
      transparent 45%,
      transparent 100%
    ),
    linear-gradient(0deg, var(--color-primary), var(--color-primary));
  background-size: 200% 100%, 100% 100%;
  animation: gradient-slide 2s linear infinite;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M132.94,231.39A8,8,0,0,1,128,224V184H48a16,16,0,0,1-16-16V88A16,16,0,0,1,48,72h80V32a8,8,0,0,1,13.66-5.66l96,96a8,8,0,0,1,0,11.32l-96,96A8,8,0,0,1,132.94,231.39Z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath d='M132.94,231.39A8,8,0,0,1,128,224V184H48a16,16,0,0,1-16-16V88A16,16,0,0,1,48,72h80V32a8,8,0,0,1,13.66-5.66l96,96a8,8,0,0,1,0,11.32l-96,96A8,8,0,0,1,132.94,231.39Z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
}

@keyframes gradient-slide {
  0% { background-position: 200% 50%; }
  100% { background-position: 0% 50%; }
}

/* Result pill */

.result-pill {
  display: flex;
  align-items: center;
  flex: 1;
  height: 3.25rem;
  border-radius: 999px;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  padding: 0 1.25rem;
  white-space: nowrap;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 1.5rem;
  font-weight: 600;
}

.result-pill-domain {
  color: var(--color-text-muted);
}

.result-pill-slug {
  color: var(--color-primary);
}

/* Shorten pill */

.shorten-pill {
  display: flex;
  align-items: stretch;
  height: 3.25rem;
  border-radius: 999px;
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.shorten-pill:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.15);
}

.shorten-pill input[type="url"] {
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  padding: 0 1.25rem;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace;
  font-size: 0.9375rem;
  background: transparent;
  box-shadow: none;
  outline: none;
}

.shorten-pill input[type="url"]:focus {
  box-shadow: none;
  outline: none;
}

.shorten-pill-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  flex-shrink: 0;
  border: none;
  border-radius: 0 999px 999px 0;
  padding: 0;
  background: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.shorten-pill-button svg {
  width: 20px;
  height: 20px;
}

.shorten-pill-button:hover {
  background-color: var(--color-primary-hover);
}

.shorten-pill-button:active {
  transform: none;
}

