/* ==========================================================================
   GLOWWA Hair-Check — WordPress Plugin Styles
   Alle Klassen mit ghc- Präfix gegen Theme-Konflikte
   ========================================================================== */

.ghc-container {
  --ghc-pink-soft: #F5D5DD;
  --ghc-pink-deep: #E8B4C2;
  --ghc-lilac-soft: #DDD5E8;
  --ghc-lilac-deep: #B8A8CC;
  --ghc-bg: #FBF6F8;
  --ghc-white: #FFFFFF;
  --ghc-ink: #1A1A1A;
  --ghc-ink-soft: #4A4A4A;
  --ghc-muted: #8A8A8A;
  --ghc-line: #EAE3E7;
  --ghc-shadow: 0 12px 40px rgba(120, 80, 100, 0.08);
  --ghc-shadow-strong: 0 20px 60px rgba(120, 80, 100, 0.15);
  --ghc-radius: 24px;
  --ghc-radius-sm: 14px;

  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ghc-ink);
  line-height: 1.6;
  max-width: 720px;
  margin: 32px auto;
  padding: 0 16px;
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, var(--ghc-pink-soft) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, var(--ghc-lilac-soft) 0%, transparent 40%),
    var(--ghc-bg);
  border-radius: var(--ghc-radius);
}

.ghc-container *,
.ghc-container *::before,
.ghc-container *::after {
  box-sizing: border-box;
}

/* Header */
.ghc-header {
  text-align: center;
  margin-bottom: 32px;
  padding: 32px 16px 0;
}
.ghc-logo {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--ghc-ink);
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}
.ghc-logo::after {
  content: '™';
  font-size: 12px;
  position: absolute;
  top: 4px;
  right: -14px;
  font-weight: 600;
}
.ghc-tagline {
  font-size: 14px;
  color: var(--ghc-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Card */
.ghc-card {
  background: var(--ghc-white);
  border-radius: var(--ghc-radius);
  box-shadow: var(--ghc-shadow);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  margin: 0 0 32px;
}
.ghc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--ghc-pink-deep), var(--ghc-lilac-deep));
}

/* Progress */
.ghc-progress-wrap {
  margin-bottom: 40px;
}
.ghc-progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--ghc-muted);
  font-weight: 500;
}
.ghc-progress-bar {
  height: 6px;
  background: var(--ghc-line);
  border-radius: 3px;
  overflow: hidden;
}
.ghc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ghc-pink-deep), var(--ghc-lilac-deep));
  border-radius: 3px;
  width: 0%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Steps */
.ghc-step { display: none; }
.ghc-step.active { display: block; animation: ghc-fadeIn 0.4s ease-out; }

@keyframes ghc-fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Welcome */
.ghc-welcome-icon {
  width: 96px; height: 96px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--ghc-pink-soft), var(--ghc-lilac-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  animation: ghc-pulse 3s ease-in-out infinite;
}
@keyframes ghc-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.ghc-h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  color: var(--ghc-ink);
}
.ghc-h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
  color: var(--ghc-ink);
}
.ghc-h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--ghc-ink);
}
.ghc-lead {
  text-align: center;
  color: var(--ghc-ink-soft);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 32px;
}
.ghc-multi-hint {
  color: var(--ghc-muted);
  font-size: 14px;
  margin: 0 0 8px;
}

.ghc-question-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--ghc-pink-deep);
  background: var(--ghc-pink-soft);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Options */
.ghc-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.ghc-option {
  background: var(--ghc-white);
  border: 2px solid var(--ghc-line);
  border-radius: var(--ghc-radius-sm);
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ghc-ink);
  text-align: left;
  width: 100%;
  font-family: inherit;
  line-height: 1.4;
}
.ghc-option:hover {
  border-color: var(--ghc-pink-deep);
  background: var(--ghc-pink-soft);
  transform: translateX(4px);
}
.ghc-option.selected {
  border-color: var(--ghc-lilac-deep);
  background: linear-gradient(135deg, var(--ghc-pink-soft), var(--ghc-lilac-soft));
  transform: translateX(4px);
}
.ghc-option-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ghc-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background 0.25s ease;
}
.ghc-option:hover .ghc-option-icon,
.ghc-option.selected .ghc-option-icon {
  background: var(--ghc-white);
}
.ghc-option-text {
  flex: 1;
  display: block;
}
.ghc-option-sub {
  font-size: 13px;
  color: var(--ghc-muted);
  font-weight: 400;
  margin-top: 2px;
  display: block;
}

/* Multi-select checkbox */
.ghc-options.multi .ghc-option::after {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 2px solid var(--ghc-line);
  border-radius: 6px;
  transition: all 0.2s ease;
}
.ghc-options.multi .ghc-option.selected::after {
  background-color: var(--ghc-lilac-deep);
  border-color: var(--ghc-lilac-deep);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Buttons */
.ghc-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.ghc-btn {
  flex: 1;
  padding: 16px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: inherit;
  letter-spacing: 0.3px;
  line-height: 1;
}
.ghc-btn-primary {
  background: var(--ghc-ink);
  color: var(--ghc-white);
}
.ghc-btn-primary:hover {
  background: var(--ghc-ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.ghc-btn-primary:disabled {
  background: var(--ghc-line);
  color: var(--ghc-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.ghc-btn-secondary {
  background: transparent;
  color: var(--ghc-ink);
  border: 2px solid var(--ghc-line);
}
.ghc-btn-secondary:hover {
  border-color: var(--ghc-ink);
}
.ghc-btn-large {
  padding: 18px 36px;
  font-size: 16px;
}

/* Result */
.ghc-result-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--ghc-pink-soft), var(--ghc-lilac-soft));
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ghc-ink);
}

.ghc-product-card {
  background: linear-gradient(135deg, var(--ghc-pink-soft) 0%, var(--ghc-lilac-soft) 100%);
  border-radius: var(--ghc-radius);
  padding: 32px;
  margin: 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ghc-product-card.dual {
  background: linear-gradient(135deg, var(--ghc-pink-soft) 0%, var(--ghc-lilac-soft) 50%, var(--ghc-pink-soft) 100%);
}
.ghc-product-visual {
  width: 140px; height: 140px;
  margin: 0 auto 20px;
  background: var(--ghc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ghc-shadow);
  position: relative;
}
.ghc-product-can {
  width: 80px; height: 100px;
  background: linear-gradient(180deg, var(--ghc-pink-deep), var(--ghc-pink-soft));
  border-radius: 8px 8px 6px 6px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.ghc-product-can.meno {
  background: linear-gradient(180deg, var(--ghc-lilac-deep), var(--ghc-lilac-soft));
}
.ghc-product-can::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 86px; height: 8px;
  background: var(--ghc-ink);
  border-radius: 4px;
  opacity: 0.15;
}
.ghc-product-can::after {
  content: 'GLOWWA™';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 800;
  color: var(--ghc-ink);
  letter-spacing: 0.5px;
}
.ghc-product-pair {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: flex-end;
}
.ghc-product-pair .ghc-product-can {
  width: 60px; height: 75px;
}
.ghc-product-pair .ghc-product-can::after {
  font-size: 8px;
}

.ghc-product-name {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
  color: var(--ghc-ink);
}
.ghc-product-tagline {
  color: var(--ghc-ink-soft);
  font-size: 15px;
  margin-bottom: 20px;
}

.ghc-reason-box {
  background: var(--ghc-white);
  border: 1px solid var(--ghc-line);
  border-radius: var(--ghc-radius-sm);
  padding: 24px;
  margin: 20px 0;
  text-align: left;
}
.ghc-reason-box .ghc-h3 {
  font-size: 15px;
  color: var(--ghc-pink-deep);
  margin: 0 0 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-weight: 700;
}
.ghc-reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ghc-reason-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--ghc-ink-soft);
  font-size: 14px;
}
.ghc-reason-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px; height: 20px;
  background: var(--ghc-lilac-deep);
  color: var(--ghc-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.ghc-ingredients-box {
  background: var(--ghc-bg);
  border-radius: var(--ghc-radius-sm);
  padding: 20px;
  margin: 16px 0;
}
.ghc-ingredients-box h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--ghc-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.ghc-ingredient-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ghc-ingredient-tag {
  background: var(--ghc-white);
  color: var(--ghc-ink);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--ghc-line);
}

/* Stats */
.ghc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.ghc-stat {
  background: var(--ghc-white);
  border-radius: var(--ghc-radius-sm);
  padding: 16px 12px;
  text-align: center;
  border: 1px solid var(--ghc-line);
}
.ghc-stat-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--ghc-ink);
  line-height: 1;
}
.ghc-stat-label {
  font-size: 11px;
  color: var(--ghc-muted);
  margin-top: 6px;
  line-height: 1.3;
}

/* CTA */
.ghc-cta-box {
  background: var(--ghc-ink);
  color: var(--ghc-white);
  border-radius: var(--ghc-radius);
  padding: 28px;
  margin-top: 24px;
  text-align: center;
}
.ghc-cta-box .ghc-h3 {
  color: var(--ghc-white);
  margin: 0 0 8px;
}
.ghc-cta-box p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  margin: 0 0 20px;
}
.ghc-cta-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.ghc-cta-link {
  background: var(--ghc-white);
  color: var(--ghc-ink);
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.ghc-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--ghc-ink);
}
.ghc-cta-link.ghc-whatsapp {
  background: #25D366;
  color: var(--ghc-white);
  padding: 14px 28px;
  font-size: 15px;
}
.ghc-cta-link.ghc-whatsapp:hover {
  background: #1DA851;
  color: var(--ghc-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

/* Trust */
.ghc-trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.ghc-trust-item {
  text-align: center;
  font-size: 11px;
  color: var(--ghc-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.ghc-trust-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}

/* Footer */
.ghc-footer {
  text-align: center;
  margin-top: 32px;
  padding: 0 16px 32px;
  color: var(--ghc-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .ghc-container { margin: 16px auto; }
  .ghc-card { padding: 32px 24px; }
  .ghc-h1 { font-size: 26px; }
  .ghc-h2 { font-size: 20px; }
  .ghc-product-name { font-size: 24px; }
  .ghc-stats { gap: 8px; }
  .ghc-stat-num { font-size: 20px; }
  .ghc-btn-row { flex-direction: column-reverse; }
}
