/* Fry shower — falling fries overlay (see fry-shower-fries.js) */

.fp-tagline {
  margin: 0 0 1.25rem;
  font-family: var(--exp-font-body);
  font-size: var(--exp-size-sm);
  line-height: 1.4;
  color: #666;
  text-align: center;
  max-width: 20rem;
}

.fp-fry-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow: visible;
  pointer-events: none;
}

.fp-fry {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--fp-w, 8px);
  height: var(--fp-h, 52px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.fp-fry__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  /* Follows the fry silhouette (SVG alpha); soft elevation */
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.05))
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.04));
}

.fp-fry--reduced {
  animation: none;
  top: 50%;
  left: 50%;
  margin-left: 0;
  margin-top: 0;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
}

.fp-fry--toast {
  font-family: var(--exp-font-body, "Nunito Sans", sans-serif);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #6b5344;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
