/* ============================================================
   MITYVO – products-page.css
   Styles exklusiv für produkte.html
   ============================================================ */

/* Active Nav State */
.nav-link.nav-active {
  color: #ECEEF2;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav-link.nav-active {
  color: #ECEEF2;
}

/* ============================================================
   PAGE HERO
   ============================================================ */

.page-hero {
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  color: #67E8F9;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 800;
  color: #ECEEF2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

/* Mobile-Untergrenze (Kanon 11.06.2026) — Klassen-Selektor schlägt
   die globale h1-Regel, daher hier eigene Override-Stufe */
@media (max-width: 480px) {
  .page-hero h1 {
    font-size: clamp(32px, 8.5vw, 40px);
  }
}

.page-hero p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  color: #A8B2C8;
}

/* ============================================================
   PRODUCT CARDS LIST
   ============================================================ */

.products-page-list {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-card-full {
  background: rgba(22, 22, 24, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 40px;
  transition: border-color 0.3s ease;
}

.product-card-full:hover {
  border-color: rgba(79, 156, 249, 0.25);
}

.product-card-full--links:hover {
  border-color: rgba(244, 114, 182, 0.35);
}

.product-card-full--wm {
  transition: transform 0.2s ease;
  animation: wm-card-glow 8s linear infinite;
}

.product-card-full--wm:hover {
  transform: translateY(-2px);
}

@keyframes wm-card-glow {
  0%   { box-shadow: 0 0 45px rgba(248,113,113,0.20), 0 0 90px rgba(248,113,113,0.07);  border-color: rgba(248,113,113,0.35); }
  16%  { box-shadow: 0 0 45px rgba(251,146,60,0.20),  0 0 90px rgba(251,146,60,0.07);   border-color: rgba(251,146,60,0.35);  }
  33%  { box-shadow: 0 0 45px rgba(250,204,21,0.20),  0 0 90px rgba(250,204,21,0.07);   border-color: rgba(250,204,21,0.35);  }
  50%  { box-shadow: 0 0 45px rgba(74,222,128,0.20),  0 0 90px rgba(74,222,128,0.07);   border-color: rgba(74,222,128,0.35);  }
  66%  { box-shadow: 0 0 45px rgba(96,165,250,0.20),  0 0 90px rgba(96,165,250,0.07);   border-color: rgba(96,165,250,0.35);  }
  83%  { box-shadow: 0 0 45px rgba(192,132,252,0.20), 0 0 90px rgba(192,132,252,0.07);  border-color: rgba(192,132,252,0.35); }
  100% { box-shadow: 0 0 45px rgba(248,113,113,0.20), 0 0 90px rgba(248,113,113,0.07);  border-color: rgba(248,113,113,0.35); }
}

.product-cta-banner--wm {
  background: rgba(250, 204, 21, 0.08);
  border-color: rgba(250, 204, 21, 0.20);
}

.product-cta-banner--wm:hover {
  background: rgba(250, 204, 21, 0.15);
  border-color: rgba(250, 204, 21, 0.35);
}

.badge-dev {
  background: rgba(244, 114, 182, 0.08);
  color: #F472B6;
  border: 1px solid rgba(244, 114, 182, 0.20);
}

.product-cta-banner--links {
  background: rgba(244, 114, 182, 0.08);
  border-color: rgba(244, 114, 182, 0.20);
}

.product-cta-banner--links:hover {
  background: rgba(244, 114, 182, 0.15);
  border-color: rgba(244, 114, 182, 0.35);
}

.product-card-full.dimmed {
  opacity: 0.65;
}

.product-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.product-card-title h2 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ECEEF2;
  margin: 0 0 4px 0;
}

.product-card-title p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #A8B2C8;
  margin: 0;
}

.product-card-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: #A8B2C8;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ============================================================
   FEATURE PILLS
   ============================================================ */

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.product-feature-pill {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #67E8F9;
  background: rgba(103, 232, 249, 0.08);
  border: 1px solid rgba(103, 232, 249, 0.20);
  border-radius: 100px;
  padding: 5px 14px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.product-cta-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(79, 156, 249, 0.08);
  border: 1px solid rgba(79, 156, 249, 0.20);
  border-radius: 12px;
  padding: 18px 24px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.product-cta-banner:hover {
  background: rgba(79, 156, 249, 0.14);
  border-color: rgba(79, 156, 249, 0.40);
}

.product-cta-banner .cta-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #67E8F9;
  font-weight: 600;
}

.product-cta-banner .cta-action {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ECEEF2;
}

.product-cta-banner.dimmed {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

/* ============================================================
   DASHBOARD NOTIFY FORM
   ============================================================ */

.dashboard-notify {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.notify-form {
  display: flex;
  gap: 8px;
  width: 100%;
}

.notify-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
  color: #ECEEF2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.notify-input:focus {
  border-color: rgba(245,158,11,0.50);
}

.notify-input--links:focus {
  border-color: rgba(244,114,182,0.50);
}

.notify-input::placeholder {
  color: #4a5878;
}

.notify-btn {
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.35);
  color: #F59E0B;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.notify-btn:hover {
  background: rgba(245,158,11,0.25);
  border-color: rgba(245,158,11,0.55);
}

.notify-btn--links {
  background: rgba(244,114,182,0.15);
  border-color: rgba(244,114,182,0.35);
  color: #F472B6;
}

.notify-btn--links:hover {
  background: rgba(244,114,182,0.25);
  border-color: rgba(244,114,182,0.55);
}

.notify-hint {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  color: #A8B2C8;
  margin: 0;
}

.notify-success {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: #22C55E;
  font-weight: 600;
  margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 640px) {
  /* Mobile Zentrierung (Kanon-Regel) */
  .product-card-full {
    padding: 24px 20px;
    text-align: center;
  }

  .product-card-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .product-features {
    justify-content: center;
  }

  .product-cta-banner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
