/* IBERPESCA — Tienda placeholder "Próximamente" */

.tienda-placeholder-page {
  overflow-x: hidden;
}

.tienda-placeholder {
  position: relative;
  min-height: calc(100vh - 180px);
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Fondo con ondas y burbujas */
.placeholder-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%23e8f4ed' fill-opacity='0.6' d='M0,60 C300,120 600,0 900,60 C1050,90 1150,90 1200,60 L1200,120 L0,120 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 600px 120px;
  animation: wave 12s linear infinite;
}

.wave-2 {
  bottom: 10px;
  opacity: 0.5;
  animation-duration: 15s;
  animation-direction: reverse;
}

.wave-3 {
  bottom: 20px;
  opacity: 0.3;
  animation-duration: 18s;
}

@keyframes wave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.bubbles {
  position: absolute;
  inset: 0;
}

.bubble {
  position: absolute;
  bottom: -20px;
  left: var(--x);
  width: calc(6px + var(--i) * 2px);
  height: calc(6px + var(--i) * 2px);
  background: rgba(26, 139, 74, 0.2);
  border-radius: 50%;
  animation: bubble-up var(--d) ease-in infinite;
  animation-delay: calc(var(--i) * -0.5s);
}

@keyframes bubble-up {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-100vh) scale(0.3);
    opacity: 0;
  }
}

/* Hero */
.placeholder-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.hero-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  animation: float 4s ease-in-out infinite;
}

.hero-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.placeholder-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.title-line {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.title-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--logo-green) 0%, var(--logo-green-bright) 100%);
  border-radius: 100px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(13, 107, 61, 0.35);
  animation: pulse-badge 2.5s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 14px rgba(13, 107, 61, 0.35); }
  50% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(13, 107, 61, 0.4); }
}

.placeholder-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Barra de progreso */
.progress-wrap {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 40px;
}

.progress-bar {
  height: 6px;
  background: rgba(13, 107, 61, 0.12);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  width: 35%;
  background: linear-gradient(90deg, var(--logo-green), var(--logo-green-bright));
  border-radius: 100px;
  animation: progress-move 2s ease-in-out infinite;
}

@keyframes progress-move {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(200%); }
  100% { transform: translateX(-100%); }
}

.progress-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Tarjeta avísame */
.notify-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.notify-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.notify-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.notify-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notify-form.hidden {
  display: none;
}

.notify-input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-input:focus {
  outline: none;
  border-color: var(--logo-green);
  box-shadow: 0 0 0 3px rgba(13, 107, 61, 0.12);
}

.notify-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.8;
}

.notify-btn {
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--logo-green);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.notify-btn:hover {
  background: var(--logo-green-bright);
}

.notify-btn:active {
  transform: scale(0.98);
}

.notify-success {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--logo-green);
  margin: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.notify-success.visible {
  opacity: 1;
}

/* Teaser: lo que vendrá */
.placeholder-teaser {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 40px;
}

.teaser-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  text-align: center;
}

.teaser-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-align: center;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 12px;
  justify-content: center;
}

.teaser-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  opacity: 0;
  animation: fade-in-up 0.5s ease forwards;
  animation-delay: calc(0.3s + var(--delay, 0) * 0.1s);
  transition: transform 0.2s, box-shadow 0.2s;
}

.teaser-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13, 107, 61, 0.1);
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.teaser-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.teaser-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

/* CTA */
.placeholder-cta {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--logo-green);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-link:hover {
  color: var(--logo-green-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 480px) {
  .tienda-placeholder {
    padding: 32px 16px 48px;
  }

  .notify-form {
    flex-direction: column;
  }

  .notify-input {
    min-width: 100%;
  }

  .teaser-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
