@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=DM+Sans:wght@300;400;700&display=swap');

.vr-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background-color: #0F1929;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
  text-align: center;
}
.vr-section::before,
.vr-section::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #C8A84B, #E4B86A, #C8A84B);
}
.vr-inner {
  padding: 80px clamp(24px, 17.36vw, 250px) 90px;
}
.vr-badge {
  display: inline-block;
  border: 1.5px solid #C5933A;
  color: #C8A84B;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 22px;
  margin-bottom: 24px;
  background: rgba(197, 147, 58, 0.50);
}
.vr-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.2vw, 50px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}
.vr-sub {
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 300;
  color: rgba(200, 215, 235, 0.70);
  margin-bottom: 44px;
  line-height: 1.6;
}

/* FORMULÁR */
.vr-form {
  max-width: 600px;
  margin: 0 auto 36px;
  background: #162035;
  border: 1px solid rgba(197, 147, 58, 0.20);
  transition: opacity 0.3s;
}
.vr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(197, 147, 58, 0.12);
}
.vr-row:last-child { border-bottom: none; }
.vr-label {
  font-size: 14px;
  font-weight: 700;
  color: #D8CCBA;
  text-align: left;
}

/* HVIEZDY */
.vr-stars {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
}
.vr-stars input { display: none; }
.vr-stars label {
  font-size: 28px;
  color: rgba(197, 147, 58, 0.25);
  cursor: pointer;
  transition: color 0.12s, transform 0.12s;
  line-height: 1;
}
.vr-stars label:hover,
.vr-stars label:hover ~ label,
.vr-stars input:checked ~ label { color: #E4B86A; }
.vr-stars label:hover { transform: scale(1.15); }

/* TLAČIDLO */
.vr-btn {
  background: #FDB913;
  color: #080F1A;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 48px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-bottom: 12px;
}
.vr-btn:hover { background: #FFC534; transform: translateY(-2px); }
.vr-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.vr-msg {
  font-size: 13px;
  color: #E4B86A;
  min-height: 20px;
  margin-bottom: 52px;
}

/* SÚHRN */
.vr-summary {
  max-width: 600px;
  margin: 0 auto;
  background: #162035;
  border: 1px solid rgba(197, 147, 58, 0.20);
  padding: 36px 40px;
  text-align: left;
  box-shadow: 0 0 50px rgba(197,147,58,0.07);
}
.vr-sum-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}
.vr-big {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: #E4B86A;
  line-height: 1;
}
.vr-big span { font-size: 22px; color: rgba(197,147,58,0.60); }
.vr-stars-disp { font-size: 20px; color: #E4B86A; letter-spacing: 2px; margin: 6px 0; }
.vr-count { font-size: 12px; color: rgba(200,215,235,0.45); letter-spacing: 1px; }
.vr-pct-wrap { text-align: right; }
.vr-pct-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(197,147,58,0.55); margin-bottom: 4px;
}
.vr-pct {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 700; color: #E4B86A; line-height: 1;
}
.vr-pct-sub { font-size: 11px; color: rgba(197,147,58,0.55); margin-top: 4px; }

/* BARY */
.vr-bars { display: flex; flex-direction: column; gap: 10px; }
.vr-bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 36px;
  align-items: center;
  gap: 12px;
}
.vr-bar-label { font-size: 12px; color: rgba(200,215,235,0.65); }
.vr-bar-track { height: 4px; background: rgba(197,147,58,0.15); border-radius: 2px; overflow: hidden; }
.vr-bar-fill {
  height: 100%;
  background: linear-gradient(to right, #C8A84B, #E4B86A);
  border-radius: 2px;
  transition: width 0.8s ease;
  width: 0%;
}
.vr-bar-val { font-size: 13px; font-weight: 700; color: #E4B86A; text-align: right; }

/* MOBIL */
@media (max-width: 600px) {
  .vr-inner { padding: 56px 24px 64px; }
  .vr-row { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
  .vr-stars label { font-size: 32px; }
  .vr-btn { width: 100%; }
  .vr-summary { padding: 28px 20px; }
  .vr-bar-row { grid-template-columns: 120px 1fr 30px; }
  .vr-big { font-size: 42px; }
  .vr-pct { font-size: 40px; }
}
