/* style.css – skupni stili za review stran in dashboard */

:root {
  --green: #1d9e75;
  --green-dark: #178862;
  --blue: #185fa5;
  --blue-dark: #134e88;
  --accent: #5b6ef5;
  --accent-dark: #4a5ce6;
  --star-off: #d4d7dd;
  --star-on: #ef9f27;
  --text: #1a1d21;
  --text-muted: #6b7280;
  --border: #e6e8ec;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --danger: #d64545;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ============================================================
   REVIEW STRAN
   ============================================================ */

.review-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: var(--bg);
}

.card {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.card h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.25;
}

.card .subtitle {
  color: var(--text-muted);
  margin: 0 0 28px;
  font-size: 0.98rem;
}

/* zvezde */
.stars {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 8px 0 20px;
}

.star {
  background: none;
  border: none;
  padding: 4px;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--star-off);
  transition: transform 0.12s ease, color 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

.star:hover {
  transform: scale(1.12);
}

.star.active {
  color: var(--star-on);
}

/* hint pod zvezdami */
.hint {
  min-height: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: -8px 0 18px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hint.show {
  opacity: 1;
}

/* gumbi */
.btn {
  display: inline-block;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 15px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: var(--green);
  transition: background 0.15s ease, transform 0.05s ease;
}

.btn:hover {
  background: var(--green-dark);
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-google {
  background: var(--blue);
}

.btn-google:hover {
  background: var(--blue-dark);
}

.btn-link {
  display: inline-block;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.98rem;
  padding: 14px;
  margin-top: 6px;
  text-decoration: underline;
}

.btn-link:hover {
  color: var(--text);
}

/* feedback textarea */
textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 16px;
}

textarea:focus {
  outline: none;
  border-color: var(--green);
}

/* prikaz/skritje korakov */
.step {
  display: none;
}

.step.active {
  display: block;
  animation: fade 0.25s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* zahvalna ikona */
.thanks-icon {
  font-size: 3rem;
  margin-bottom: 8px;
}

/* statična prikazana ocena (read-only zvezde) */
.stars-static {
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.stars-static .on {
  color: var(--star-on);
}
.stars-static .off {
  color: var(--star-off);
}

/* ============================================================
   DASHBOARD
   ============================================================ */

.dash {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.dash-header h1 {
  font-size: 1.5rem;
  margin: 0;
}

.dash-header .muted {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 2px 0 0;
}

.logout {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.9rem;
  color: var(--text);
}
.logout:hover {
  background: #eceef1;
}

.section {
  margin-bottom: 32px;
}

.section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 14px;
}

/* metrične kartice */
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.metric .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.metric .value {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
}

.metric .value small {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.metric .sub {
  font-size: 0.82rem;
  color: var(--danger);
  margin-top: 4px;
  min-height: 1em;
}

/* panel okvir */
.panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

/* horizontalni barchart razporeditve ocen */
.dist-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.dist-row:last-child {
  margin-bottom: 0;
}
.dist-label {
  width: 34px;
  flex: none;
  font-weight: 600;
  color: var(--star-on);
  font-size: 0.95rem;
  white-space: nowrap;
}
.dist-track {
  flex: 1;
  background: var(--bg-soft);
  border-radius: 6px;
  height: 22px;
  overflow: hidden;
}
.dist-bar {
  height: 100%;
  background: var(--star-on);
  border-radius: 6px;
  width: 0;
  transition: width 0.4s ease;
}
.dist-count {
  width: 38px;
  flex: none;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* tabela lokacij */
table.locations {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
table.locations th,
table.locations td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
table.locations th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
table.locations tr:last-child td {
  border-bottom: none;
}
table.locations th.num,
table.locations td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* filter chipi */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.9rem;
  color: var(--text);
}
.chip:hover {
  background: var(--bg-soft);
}
.chip.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* seznam slabih mnenj */
.review-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 10px;
  background: var(--bg);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.review-item:hover {
  border-color: #cfd3da;
}
.review-item.unread {
  border-left: 4px solid var(--danger);
}
.review-item.read {
  opacity: 0.7;
}
.review-item .top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.review-item .ri-stars {
  color: var(--star-on);
  font-size: 1rem;
  letter-spacing: 1px;
}
.review-item .ri-loc {
  font-weight: 600;
  font-size: 0.92rem;
}
.review-item .ri-time {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-left: auto;
}
.review-item .ri-comment {
  color: var(--text);
  font-size: 0.95rem;
  white-space: pre-wrap;
  word-break: break-word;
}
.badge-new {
  background: var(--danger);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.badge-google {
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.lang-tag {
  display: inline-block;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 5px;
  border: 1px solid var(--border);
  vertical-align: middle;
}

/* prazno stanje / nalaganje */
.empty {
  color: var(--text-muted);
  text-align: center;
  padding: 28px 12px;
  font-size: 0.95rem;
}

/* ============================================================
   ADMIN – obrazec za lokacije
   ============================================================ */
.loc-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}
.loc-form label .muted {
  font-weight: 400;
}
.loc-form input,
.loc-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 0.98rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}
.loc-form input:focus,
.loc-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 110, 245, 0.12);
}
.loc-form input:disabled {
  background: var(--bg-soft);
  color: var(--text-muted);
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-actions .btn {
  width: auto;
  padding: 12px 22px;
}
.form-actions .btn-link {
  width: auto;
  margin-top: 0;
  padding: 12px 8px;
}
.form-msg {
  margin: 2px 0;
  font-size: 0.9rem;
  min-height: 1.1em;
  color: var(--text-muted);
}
.form-msg.ok {
  color: var(--green-dark);
}
.form-msg.err {
  color: var(--danger);
}

/* gumbi v vrstici tabele */
.row-btn {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 10px;
  font-size: 0.84rem;
  color: var(--text);
}
.row-btn:hover {
  background: #eceef1;
}
.row-btn.danger {
  color: var(--danger);
  border-color: #f1c9c9;
}
.row-btn.danger:hover {
  background: #fbeaea;
}

/* izbirnik teme v tabeli lokacij */
.row-select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.86rem;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.row-select:focus {
  outline: none;
  border-color: var(--accent);
}
.row-select.saved {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 110, 245, 0.18);
}

/* login zaslon */
.login-overlay {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-box {
  width: 100%;
  max-width: 340px;
  text-align: center;
}
.login-box h1 {
  font-size: 1.3rem;
  margin: 0 0 18px;
}
.login-box input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 12px;
}
.login-box input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 110, 245, 0.15);
}
.login-error {
  color: var(--danger);
  font-size: 0.9rem;
  min-height: 1.2em;
  margin-bottom: 10px;
}

.hidden {
  display: none !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 640px) {
  .metrics {
    grid-template-columns: repeat(4, 1fr);
  }
  .dash-header h1 {
    font-size: 1.7rem;
  }
}

/* ============================================================
   LANDING STRAN (svetla, prijazna, barvita)
   ============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.lp {
  --lp-text: #1b2233;
  --lp-muted: #5b6577;
  --lp-border: #e7eaf3;
  --lp-bg: #ffffff;
  --lp-soft: #f5f7fd;
  --lp-indigo: #5b6ef5;
  --lp-indigo-d: #4a5ce6;
  --lp-green: #1d9e75;
  --lp-amber: #ef9f27;
  --lp-pink: #ec5c8d;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
}
.lp-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
}

/* barvni pomocniki za ikone / oznake */
.lp-c-indigo {
  background: #eaecfe;
  color: var(--lp-indigo);
}
.lp-c-green {
  background: #e3f6ee;
  color: var(--lp-green);
}
.lp-c-amber {
  background: #fdf0db;
  color: #c9821a;
}
.lp-c-pink {
  background: #fce4ed;
  color: var(--lp-pink);
}

/* navigacija */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.lp-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.lp-logo img {
  height: 34px;
  width: auto;
  display: block;
}
.lp-logo-sep {
  font-size: 0.55rem;
  color: #000;
  line-height: 1;
  flex: none;
}
.lp-logo-star {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1;
}
.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lp-nav-links a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}
.lp-nav-links a:hover {
  color: var(--lp-text);
}
.lp-login {
  color: var(--lp-text) !important;
  font-weight: 600;
}
@media (max-width: 620px) {
  .lp-nav-links a.lp-nav-text {
    display: none;
  }
  .lp-nav-links {
    gap: 16px;
  }
}

/* gumbi */
.lp-btn {
  display: inline-block;
  background: var(--lp-indigo);
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(91, 110, 245, 0.25);
}
.lp-btn:hover {
  background: var(--lp-indigo-d);
  box-shadow: 0 10px 26px rgba(91, 110, 245, 0.32);
}
.lp-btn:active {
  transform: translateY(1px);
}
.lp-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.lp-btn-sm {
  padding: 9px 16px;
  font-size: 0.92rem;
}
.lp-btn-lg {
  padding: 15px 28px;
  font-size: 1.04rem;
}
.lp-btn-ghost {
  background: #fff;
  color: var(--lp-text) !important;
  border: 1px solid var(--lp-border);
  box-shadow: none;
}
.lp-btn-ghost:hover {
  background: var(--lp-soft);
  box-shadow: none;
}

/* hero */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
  background: radial-gradient(620px 420px at 8% 0%, rgba(91, 110, 245, 0.14), transparent 60%),
    radial-gradient(620px 460px at 100% 8%, rgba(29, 158, 117, 0.12), transparent 60%),
    radial-gradient(520px 420px at 60% 100%, rgba(239, 159, 39, 0.1), transparent 60%),
    #ffffff;
}
.lp-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.lp-eyebrow {
  display: inline-block;
  background: #fff;
  color: var(--lp-indigo);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #dfe3f7;
  box-shadow: 0 2px 8px rgba(27, 34, 51, 0.05);
  margin-bottom: 24px;
}
.lp-stars {
  width: 360px;
  max-width: 86%;
  margin: 0 auto 22px;
  cursor: pointer;
}
.lp-stars svg {
  display: block;
}
.lp-hero h1 {
  font-size: 2.7rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 800;
}
.lp-hero-lead {
  font-size: 1.16rem;
  line-height: 1.6;
  color: var(--lp-muted);
  margin: 0 auto 30px;
  max-width: 34em;
}
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.lp-hero-note {
  margin: 18px 0 0;
  font-size: 0.92rem;
  color: var(--lp-muted);
}

/* platforme – pas z logotipi */
.lp-platforms {
  padding: 32px 0;
  background: var(--lp-soft);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp-platforms-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin: 0 0 20px;
}
.lp-platforms-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 36px;
}
.lp-plat {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.lp-plat img {
  display: block;
  opacity: 0.85;
}

/* sekcije */
.lp-section {
  padding: 84px 0;
  background: var(--lp-bg);
}
.lp-section-alt {
  background: var(--lp-soft);
}
.lp-h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 10px;
  font-weight: 800;
}
.lp-sub {
  text-align: center;
  color: var(--lp-muted);
  margin: 0 auto 48px;
  font-size: 1.08rem;
  max-width: 40em;
}

/* koraki */
.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.lp-step {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(40, 50, 90, 0.05);
}
.lp-step-num {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 1.05rem;
}
.lp-step h3,
.lp-benefit h3 {
  font-size: 1.16rem;
  margin: 0 0 8px;
  color: var(--lp-text);
}
.lp-step p,
.lp-benefit p {
  color: var(--lp-muted);
  margin: 0;
  line-height: 1.6;
}

/* prednosti */
.lp-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.lp-benefit {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(40, 50, 90, 0.05);
}
.lp-benefit-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border-radius: 14px;
  margin-bottom: 16px;
}

/* kontakt */
.lp-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.lp-contact-info h2 {
  font-size: 2rem;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  font-weight: 800;
}
.lp-contact-info p {
  color: var(--lp-muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 34em;
}
.lp-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.lp-contact-ico {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #eaecfe;
}
.lp-contact-line a {
  color: var(--lp-indigo);
  text-decoration: none;
  font-weight: 600;
}
.lp-contact-line a:hover {
  text-decoration: underline;
}

/* obrazec */
.lp-form {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(40, 50, 90, 0.08);
}
.lp-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lp-text);
}
.lp-field input,
.lp-field textarea {
  background: var(--lp-soft);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--lp-text);
  width: 100%;
}
.lp-field textarea {
  min-height: 120px;
  resize: vertical;
}
.lp-field input::placeholder,
.lp-field textarea::placeholder {
  color: #9aa3b5;
}
.lp-field input:focus,
.lp-field textarea:focus {
  outline: none;
  border-color: var(--lp-indigo);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91, 110, 245, 0.15);
}
.lp-form .lp-btn {
  width: 100%;
}
.lp-form-msg {
  min-height: 1.2em;
  font-size: 0.92rem;
  color: var(--lp-muted);
  margin: 0;
  text-align: center;
}
.lp-form-msg.ok {
  color: var(--lp-green);
}
.lp-form-msg.err {
  color: #d64545;
}

/* noga */
.lp-footer {
  background: var(--lp-soft);
  border-top: 1px solid var(--lp-border);
  padding: 32px 0;
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-footer .lp-logo {
  text-decoration: none;
}
.lp-footer img {
  height: 24px;
  width: auto;
  display: block;
}
.lp-footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lp-footer-right a {
  color: var(--lp-muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.lp-footer-right a:hover {
  color: var(--lp-text);
}
.lp-footer-copy {
  color: #8b94a6;
  font-size: 0.82rem;
}

/* responsive */
@media (min-width: 820px) {
  .lp-hero {
    padding: 96px 0 104px;
  }
  .lp-hero h1 {
    font-size: 3.4rem;
  }
  .lp-stars {
    width: 420px;
  }
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .lp-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .lp-contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
@media (min-width: 1040px) {
  .lp-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   PLATFORM BUTTONS (review stran – izbira platforme)
   ============================================================ */
.platform-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
  width: 100%;
}
.btn-platform {
  display: block;
  width: 100%;
  border: none;
  border-radius: var(--radius);
  padding: 15px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent, #5b6ef5);
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.05s ease;
  font-family: inherit;
}
.btn-platform:hover {
  filter: brightness(0.9);
}
.btn-platform:active {
  transform: translateY(1px);
}
.btn-platform:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================================
   PLATFORM MODAL (admin + dashboard)
   ============================================================ */
.pm-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15, 20, 32, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pm-overlay.hidden {
  display: none;
}
.pm-modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  width: 100%;
  max-width: 580px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(15, 20, 32, 0.3);
}
.pm-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}
.pm-close:hover {
  color: var(--text);
}
.pm-title {
  font-size: 1.15rem;
  margin: 0 0 18px;
  color: var(--text);
}
.pm-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.pm-row:last-child {
  border-bottom: none;
}
.pm-platform-name {
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 110px;
  flex: none;
}
.pm-url {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pm-add {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.pm-add-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.pm-add-row select {
  flex: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}
.pm-add-row input[type="url"] {
  flex: 1;
  min-width: 180px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}
.pm-add-row select:focus,
.pm-add-row input:focus {
  outline: none;
  border-color: var(--accent);
}
.pm-msg {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 8px 0 0;
  min-height: 1.1em;
}

/* ============================================================
   QR modal (admin + dashboard)
   ============================================================ */
.qr-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15, 20, 32, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.qr-overlay.hidden {
  display: none;
}
.qr-modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px 24px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(15, 20, 32, 0.3);
}
.qr-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
}
.qr-close:hover {
  color: var(--text);
}
.qr-title {
  font-size: 1.15rem;
  margin: 0 0 16px;
  color: var(--text);
}
.qr-box {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.qr-box canvas,
.qr-box svg {
  width: 260px !important;
  height: 260px !important;
  display: block;
}
.qr-url {
  font-size: 0.78rem;
  color: var(--text-muted);
  word-break: break-all;
  margin: 0 0 18px;
}
.qr-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qr-btn {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}
.qr-btn:hover {
  background: #eceef1;
}
.qr-btn-primary {
  background: #5b6ef5;
  border-color: #5b6ef5;
  color: #fff;
}
.qr-btn-primary:hover {
  background: #4a5ce6;
}

/* ============================================================
   TEME REVIEW STRANI (po lokaciji, html[data-theme="..."])
   Opomba: --green deluje kot "primarna barva" gumba na review strani.
   classic = privzete vrednosti iz :root.
   ============================================================ */
html[data-theme="ocean"] {
  --green: #0ea5a4;
  --green-dark: #0c8e8d;
}

html[data-theme="sunset"] {
  --green: #ef7c1a;
  --green-dark: #d96a0e;
  --bg: #fff8f1;
}

html[data-theme="indigo"] {
  --green: #5b6ef5;
  --green-dark: #4a5ce6;
}

html[data-theme="dark"] {
  --bg: #0e1320;
  --text: #eef1f7;
  --text-muted: #9aa5b8;
  --border: #2a3346;
  --green: #6c7cf5;
  --green-dark: #5563ec;
  --blue: #3b82f6;
  --blue-dark: #2f6fe0;
  --star-off: #3a4358;
}
html[data-theme="dark"] textarea {
  background: #161c2b;
  color: var(--text);
}
html[data-theme="dark"] textarea::placeholder {
  color: #6b7689;
}
