/* =============================================================
   VR-Bank Würzburg – Internes Formular-Stylesheet
   vr-forms.css · v2.0 (CI-konform, BVR Digitale Markenwelt)
   Volksbank Raiffeisenbank Würzburg eG

   Entwickelt mit Unterstützung von Arthur (vAudience.ai)
   ============================================================= */


/* -------------------------------------------------------------
   0. CSS Custom Properties — BVR Digitale Markenwelt
   ------------------------------------------------------------- */
:root {
  /* Primärfarben (markenprägend) */
  --vr-white:          #ffffff;
  --vr-ultramarin:     #002d67;
  --vr-blue:           #0066b3;
  --vr-orange:         #ff6600;
  --vr-orange-a11y:    #F35E01;   /* Web-Orange, barrierefreie Elemente */

  /* Legacy-Aliase */
  --vr-blue-dark:      var(--vr-ultramarin);
  --vr-blue-light:     #e1ebf5;

  /* Sekundärfarben (Abstufungen, Grafiken) */
  --vr-blue-a:         #327dc8;
  --vr-blue-b:         #649bd7;
  --vr-blue-c:         #96bee6;
  --vr-blue-d:         #e1ebf5;

  /* Tertiärfarben (alternativ, Präsentationen) */
  --vr-violett:        #a0008c;
  --vr-dunkelgruen:    #006e73;
  --vr-rot:            #a20032;
  --vr-gruen:          #787800;

  /* Neutrals */
  --vr-bg:             #f0f2f5;
  --vr-gray-50:        #fafbfc;
  --vr-gray-100:       #f8f9fb;
  --vr-gray-200:       #e8ecf1;
  --vr-gray-300:       #e0e4ea;
  --vr-gray-400:       #cdd4de;
  --vr-gray-500:       #a0a8b4;
  --vr-gray-600:       #666666;
  --vr-gray-700:       #444444;
  --vr-gray-800:       #333333;
  --vr-gray-900:       #2d2d2d;

  /* Status */
  --vr-success:        #2e7d32;
  --vr-success-bg:     #e8f5e9;
  --vr-success-border: #a5d6a7;
  --vr-error:          #d32f2f;
  --vr-error-bg:       #fbe9e7;
  --vr-error-border:   #ef9a9a;
  --vr-warning-bg:     #fdf6ec;
  --vr-warning-border: #ff9800;

  /* Typografie */
  --vr-font:           'Segoe UI', system-ui, -apple-system, sans-serif;
  --vr-font-size:      0.95rem;

  /* Abstände & Radien */
  --vr-radius-sm:      6px;
  --vr-radius-md:      8px;
  --vr-radius-lg:      12px;
  --vr-shadow:         0 4px 24px rgba(0, 0, 0, 0.08);
  --vr-transition:     0.2s ease;
}


/* -------------------------------------------------------------
   1. Reset & Basis
   ------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.vr-form-page {
  font-family: var(--vr-font);
  font-size: var(--vr-font-size);
  background: var(--vr-bg);
  color: var(--vr-gray-900);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1rem;
}


/* -------------------------------------------------------------
   2. Form Wrapper
   ------------------------------------------------------------- */
.vr-form-wrapper {
  background: var(--vr-white);
  border-radius: var(--vr-radius-lg);
  box-shadow: var(--vr-shadow);
  max-width: 660px;
  width: 100%;
  overflow: hidden;
}


/* -------------------------------------------------------------
   3. Header
   ------------------------------------------------------------- */
.vr-form-header {
  background: linear-gradient(135deg, var(--vr-ultramarin), var(--vr-blue));
  color: var(--vr-white);
  padding: 2rem 2.5rem;
  position: relative;
}

.vr-form-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    var(--vr-orange), var(--vr-orange-a11y), var(--vr-orange));
}

.vr-form-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.vr-form-header p {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 300;
}


/* -------------------------------------------------------------
   4. Body
   ------------------------------------------------------------- */
.vr-form-body {
  padding: 2rem 2.5rem 2.5rem;
}


/* -------------------------------------------------------------
   5. Section Titles
   ------------------------------------------------------------- */
.vr-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vr-blue);
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--vr-gray-200);
}

.vr-section-title:not(:first-child) {
  margin-top: 2rem;
}


/* -------------------------------------------------------------
   6. Fields & Layout
   ------------------------------------------------------------- */
.vr-field-group {
  margin-bottom: 1.25rem;
}

.vr-field-row {
  display: flex;
  gap: 1rem;
}

.vr-field-row .vr-field-group {
  flex: 1;
}

/* Labels */
.vr-field-group label,
.vr-checkbox-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vr-gray-800);
  margin-bottom: 0.35rem;
}

.vr-required {
  color: var(--vr-error);
  margin-left: 2px;
}

.vr-optional {
  color: var(--vr-gray-500);
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 4px;
}


/* -------------------------------------------------------------
   7. Inputs, Selects, Textareas
   ------------------------------------------------------------- */
.vr-input,
.vr-select,
.vr-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: var(--vr-font);
  font-size: var(--vr-font-size);
  border: 1.5px solid var(--vr-gray-400);
  border-radius: var(--vr-radius-sm);
  background: var(--vr-gray-50);
  color: var(--vr-gray-900);
  transition: border-color var(--vr-transition),
              box-shadow var(--vr-transition);
}

.vr-input:focus,
.vr-select:focus,
.vr-textarea:focus {
  outline: none;
  border-color: var(--vr-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.12);
  background: var(--vr-white);
}

.vr-input::placeholder,
.vr-textarea::placeholder {
  color: var(--vr-gray-500);
}

/* Select arrow */
.vr-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

/* Textarea */
.vr-textarea {
  resize: vertical;
  min-height: 80px;
}


/* -------------------------------------------------------------
   8. Checkbox Group
   ------------------------------------------------------------- */
.vr-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: var(--vr-gray-100);
  border: 1.5px solid var(--vr-gray-300);
  border-radius: var(--vr-radius-md);
}

.vr-checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--vr-blue);
  cursor: pointer;
  flex-shrink: 0;
}

.vr-checkbox-group label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--vr-gray-700);
  line-height: 1.55;
  cursor: pointer;
}


/* -------------------------------------------------------------
   9. Hint Banners
   ------------------------------------------------------------- */
.vr-hint {
  font-size: 0.8rem;
  color: var(--vr-gray-600);
  margin: -0.75rem 0 1.25rem;
  padding: 0.5rem 0.75rem;
  background: var(--vr-warning-bg);
  border-left: 3px solid var(--vr-warning-border);
  border-radius: 0 var(--vr-radius-sm) var(--vr-radius-sm) 0;
}


/* -------------------------------------------------------------
   10. Validation & Errors
   ------------------------------------------------------------- */
.vr-error-msg {
  color: var(--vr-error);
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: none;
}

.vr-field-group.invalid .vr-input,
.vr-field-group.invalid .vr-select,
.vr-field-group.invalid .vr-textarea {
  border-color: var(--vr-error);
}

.vr-field-group.invalid .vr-error-msg {
  display: block;
}


/* -------------------------------------------------------------
   11. Buttons
   ------------------------------------------------------------- */
.vr-button-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.vr-btn {
  flex: 1;
  padding: 0.8rem 1.5rem;
  font-family: var(--vr-font);
  font-size: var(--vr-font-size);
  font-weight: 600;
  border: none;
  border-radius: var(--vr-radius-md);
  cursor: pointer;
  transition: background var(--vr-transition),
              transform 0.1s;
}

.vr-btn:active {
  transform: scale(0.98);
}

.vr-btn-primary {
  background: linear-gradient(135deg, var(--vr-blue), var(--vr-ultramarin));
  color: var(--vr-white);
}

.vr-btn-primary:hover {
  background: linear-gradient(135deg, #005a9e, #002050);
}

.vr-btn-primary:disabled {
  background: var(--vr-blue-c);
  cursor: not-allowed;
  transform: none;
}

.vr-btn-secondary {
  background: var(--vr-gray-200);
  color: var(--vr-gray-800);
}

.vr-btn-secondary:hover {
  background: #dce0e8;
}


/* -------------------------------------------------------------
   12. Spinner
   ------------------------------------------------------------- */
.vr-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--vr-white);
  border-radius: 50%;
  animation: vr-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes vr-spin {
  to { transform: rotate(360deg); }
}


/* -------------------------------------------------------------
   13. Status Banners
   ------------------------------------------------------------- */
.vr-status-banner {
  display: none;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  border-radius: var(--vr-radius-md);
  font-size: 0.9rem;
  line-height: 1.5;
}

.vr-status-banner.success {
  display: block;
  background: var(--vr-success-bg);
  color: var(--vr-success);
  border: 1px solid var(--vr-success-border);
}

.vr-status-banner.error {
  display: block;
  background: var(--vr-error-bg);
  color: #c62828;
  border: 1px solid var(--vr-error-border);
}


/* -------------------------------------------------------------
   14. Success Overlay
   ------------------------------------------------------------- */
.vr-success-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
}

.vr-success-overlay.visible {
  display: flex;
}

.vr-success-icon {
  width: 72px;
  height: 72px;
  background: var(--vr-success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.vr-success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--vr-success);
}

.vr-success-overlay h2 {
  color: var(--vr-success);
  margin-bottom: 0.5rem;
}

.vr-success-overlay p {
  color: var(--vr-gray-600);
  font-size: var(--vr-font-size);
  line-height: 1.6;
}


/* -------------------------------------------------------------
   15. Footer
   ------------------------------------------------------------- */
.vr-form-footer {
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  color: var(--vr-gray-500);
  border-top: 1px solid var(--vr-gray-200);
}


/* -------------------------------------------------------------
   16. Responsive (Basis)
   ------------------------------------------------------------- */
@media (max-width: 520px) {
  .vr-field-row    { flex-direction: column; gap: 0; }
  .vr-form-body    { padding: 1.5rem; }
  .vr-form-header  { padding: 1.5rem; }
}


/* =============================================================
   17. NPS / Bewertungsskala – Basis
   ============================================================= */
.vr-nps-container {
  margin-bottom: 1.5rem;
}

.vr-nps-question {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vr-gray-800);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.vr-nps-options {
  display: flex;
  gap: 6px;
}

.vr-nps-option {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.vr-nps-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.vr-nps-value {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  border-radius: var(--vr-radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vr-gray-600);
  background: var(--vr-gray-50);
  border: 2px solid var(--vr-gray-300);
  transition: all var(--vr-transition);
  user-select: none;
}

/* Basis-Hover (für nicht-Ampel-Skalen) */
.vr-nps-option:hover .vr-nps-value {
  border-color: var(--nps-color, var(--vr-blue));
  color: var(--nps-color, var(--vr-blue));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Basis-Selected (für nicht-Ampel-Skalen) */
.vr-nps-option input:checked ~ .vr-nps-value {
  background: var(--nps-color, var(--vr-blue));
  border-color: var(--nps-color, var(--vr-blue));
  color: var(--vr-white);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

/* Fokus (Barrierefreiheit) */
.vr-nps-option input:focus-visible ~ .vr-nps-value {
  outline: 3px solid var(--vr-blue);
  outline-offset: 2px;
}

/* Endpunkt-Labels */
.vr-nps-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--vr-gray-500);
  font-weight: 500;
  padding: 0 2px;
}

/* Fehler-Zustand Container */
.vr-nps-container.invalid .vr-nps-options {
  outline: 2px solid var(--vr-error);
  outline-offset: 4px;
  border-radius: var(--vr-radius-sm);
}

.vr-nps-container.invalid > .vr-error-msg {
  display: block;
}


/* =============================================================
   17a. NPS Ampel-Farbschema
   ============================================================= */

/* Detraktor (0–6): Rot */
.vr-nps-option[data-category="detractor"] .vr-nps-value {
  background: #ffebee;
  border-color: #ef9a9a;
  color: #c62828;
}

.vr-nps-option[data-category="detractor"]:hover .vr-nps-value {
  background: #ffcdd2;
  border-color: #e57373;
  color: #b71c1c;
}

.vr-nps-option[data-category="detractor"] input:checked ~ .vr-nps-value {
  background: #e53935;
  border-color: #e53935;
  color: var(--vr-white);
}

/* Indifferent / Passiv (7–8): Gelb */
.vr-nps-option[data-category="passive"] .vr-nps-value {
  background: #fff8e1;
  border-color: #ffe082;
  color: #e65100;
}

.vr-nps-option[data-category="passive"]:hover .vr-nps-value {
  background: #ffecb3;
  border-color: #ffd54f;
  color: #bf360c;
}

.vr-nps-option[data-category="passive"] input:checked ~ .vr-nps-value {
  background: #ffb300;
  border-color: #ffb300;
  color: var(--vr-white);
}

/* Promotor (9–10): Grün */
.vr-nps-option[data-category="promoter"] .vr-nps-value {
  background: #e8f5e9;
  border-color: #a5d6a7;
  color: #2e7d32;
}

.vr-nps-option[data-category="promoter"]:hover .vr-nps-value {
  background: #c8e6c9;
  border-color: #81c784;
  color: #1b5e20;
}

.vr-nps-option[data-category="promoter"] input:checked ~ .vr-nps-value {
  background: #43a047;
  border-color: #43a047;
  color: var(--vr-white);
}

/* Gemeinsamer Hover-Transform & Schatten für Ampel */
.vr-nps-option[data-category]:hover .vr-nps-value {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.vr-nps-option[data-category] input:checked ~ .vr-nps-value {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


/* =============================================================
   18. Bedingt sichtbare Sektionen (Slide-In)
   ============================================================= */
.vr-conditional {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease,
              margin-top 0.35s ease;
  margin-top: 0;
}

.vr-conditional.visible {
  max-height: 500px;
  opacity: 1;
  margin-top: 2rem;
}


/* =============================================================
   19. Einspaltige Buttons
   ============================================================= */
.vr-button-row--single {
  justify-content: center;
}

.vr-button-row--single .vr-btn {
  flex: 0 1 320px;
}


/* =============================================================
   20. Zukunftsthemen / Bewertungszeilen
   ============================================================= */

/* Einleitungstext */
.vr-rating-intro {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--vr-gray-700);
  margin-bottom: 1.75rem;
  padding: 1rem 1.25rem;
  background: var(--vr-gray-100);
  border-left: 4px solid var(--vr-blue);
  border-radius: 0 var(--vr-radius-sm) var(--vr-radius-sm) 0;
}

/* Einzelne Bewertungszeile */
.vr-rating-row {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--vr-gray-200);
}

.vr-rating-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Themen-Label */
.vr-rating-topic {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vr-gray-800);
  margin-bottom: 0.85rem;
}

.vr-rating-letter {
  display: inline-block;
  color: var(--vr-blue);
  font-weight: 700;
  min-width: 1.4em;
}

/* Fehler-Zustand für Bewertungszeile */
.vr-rating-row.invalid .vr-nps-options {
  outline: 2px solid var(--vr-error);
  outline-offset: 4px;
  border-radius: var(--vr-radius-sm);
}

.vr-rating-row.invalid > .vr-error-msg {
  display: block;
}


/* =============================================================
   21. NPS & Bewertungen – Responsive
   ============================================================= */
@media (max-width: 520px) {
  .vr-nps-options {
    gap: 3px;
  }

  .vr-nps-value {
    font-size: 0.7rem;
    border-width: 1.5px;
    border-radius: var(--vr-radius-sm);
  }

  .vr-nps-option:hover .vr-nps-value,
  .vr-nps-option[data-category]:hover .vr-nps-value {
    transform: translateY(-1px);
  }

  .vr-nps-option input:checked ~ .vr-nps-value,
  .vr-nps-option[data-category] input:checked ~ .vr-nps-value {
    transform: translateY(-2px) scale(1.05);
  }

  .vr-nps-labels {
    font-size: 0.65rem;
  }

  .vr-nps-option {
    padding: 3px 0;
  }

  .vr-rating-intro {
    font-size: 0.85rem;
    padding: 0.85rem 1rem;
  }
}


/* =============================================================
   22. Rechts- / Hinweistexte (formal)
   ============================================================= */
.vr-legal-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--vr-gray-700);
  margin-bottom: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--vr-gray-100);
  border: 1px solid var(--vr-gray-300);
  border-radius: var(--vr-radius-md);
}


/* =============================================================
   23. Legal Footer (Schlusstext + Links)
   ============================================================= */
.vr-legal-footer {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--vr-gray-600);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--vr-gray-200);
}

.vr-legal-footer p {
  margin-bottom: 0.75rem;
}

.vr-legal-footer a {
  color: var(--vr-blue);
  text-decoration: none;
  font-weight: 500;
}

.vr-legal-footer a:hover {
  text-decoration: underline;
}

.vr-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.vr-legal-links a::before {
  content: "→ ";
  color: var(--vr-gray-500);
}


/* =============================================================
   24. Bedingte Felder (sofort, ohne Animation)
   ============================================================= */
.vr-conditional-field {
  display: none;
}

.vr-conditional-field.active {
  display: block;
}


/* =============================================================
   25. Google-Review Karte (Promotoren-Erfolgsseite)
   ============================================================= */
.vr-review-card {
  margin: 1.75rem 0 0.5rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(145deg, #fffde7, #fff8e1, #fff3e0);
  border: 1px solid #ffe082;
  border-radius: var(--vr-radius-lg);
  text-align: center;
  animation: vrReviewFadeIn 0.7s ease 0.6s both;
}

@keyframes vrReviewFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vr-review-card h3 {
  font-size: 1.1rem;
  color: #e65100;
  margin-bottom: 0.85rem;
}

.vr-review-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--vr-gray-700);
  max-width: 440px;
  margin: 0 auto 1.25rem;
}

/* Dekorative Sterne */
.vr-review-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.vr-review-stars svg {
  width: 28px;
  height: 28px;
  color: #ffb300;
  animation: vrStarPop 0.4s ease both;
}

.vr-review-stars svg:nth-child(1) { animation-delay: 0.9s; }
.vr-review-stars svg:nth-child(2) { animation-delay: 1.0s; }
.vr-review-stars svg:nth-child(3) { animation-delay: 1.1s; }
.vr-review-stars svg:nth-child(4) { animation-delay: 1.2s; }
.vr-review-stars svg:nth-child(5) { animation-delay: 1.3s; }

@keyframes vrStarPop {
  0%   { opacity: 0; transform: scale(0.3) rotate(-30deg); }
  60%  { transform: scale(1.2) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* CTA-Button */
.vr-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--vr-font);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffca28, #ffb300);
  border: none;
  border-radius: var(--vr-radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--vr-transition);
  box-shadow: 0 3px 12px rgba(255, 179, 0, 0.35);
  animation: vrBtnPulse 2s ease-in-out 2s 2;
}

.vr-review-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.45);
  color: #1a1a1a;
}

.vr-review-btn:active {
  transform: translateY(0) scale(0.98);
}

.vr-review-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@keyframes vrBtnPulse {
  0%, 100% { box-shadow: 0 3px 12px rgba(255, 179, 0, 0.35); }
  50%      { box-shadow: 0 3px 24px rgba(255, 179, 0, 0.55); }
}

/* Hinweis unter Button */
.vr-review-hint {
  font-size: 0.75rem;
  color: var(--vr-gray-500);
  margin-top: 0.85rem;
}


/* =============================================================
   25a. Filial-Auswahl innerhalb der Review-Karte
   ============================================================= */
.vr-review-branch {
  margin: 1rem auto 1.25rem;
  max-width: 320px;
  text-align: left;
}

.vr-review-branch label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--vr-gray-600);
  margin-bottom: 0.35rem;
  text-align: center;
}

.vr-review-branch .vr-select {
  font-size: 0.9rem;
  background-color: var(--vr-white);
  border-color: #ffe082;
}

.vr-review-branch .vr-select:focus {
  border-color: #ffb300;
  box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.2);
}


/* =============================================================
   26. Google-Review & Filial-Auswahl – Responsive
   ============================================================= */
@media (max-width: 520px) {
  .vr-review-card {
    padding: 1.5rem 1.25rem;
  }

  .vr-review-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .vr-review-stars svg {
    width: 24px;
    height: 24px;
  }
}
