/* =========================================================================
   XEN TESUTO GROUPS — reviews.css
   Namespace: all classes prefixed xen-review- to avoid collisions when
   merged into the main XEN TESUTO GROUPS site.
   ========================================================================= */

.xen-review-app {
  --xen-bg: #050505;
  --xen-bg-alt: #0a0a0a;
  --xen-surface: #111110;
  --xen-surface-2: #171613;
  --xen-border: #262523;
  --xen-border-strong: #38352f;
  --xen-border-orange: rgba(255, 106, 26, 0.35);
  --xen-orange: #ff6a1a;
  --xen-orange-bright: #ff9142;
  --xen-orange-dim: #b84c10;
  --xen-text: #f2f1ed;
  --xen-text-secondary: #a5a29a;
  --xen-text-muted: #6c6a63;
  --xen-success: #3ddc84;
  --xen-danger: #ff4d4d;
  --xen-radius: 2px;
  --xen-font-display: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --xen-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --xen-font-mono: ui-monospace, "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;

  background: var(--xen-bg);
  color: var(--xen-text);
  font-family: var(--xen-font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.xen-review-app * { box-sizing: border-box; }
.xen-review-app img { max-width: 100%; display: block; }
.xen-review-app button { font-family: inherit; }
.xen-review-app a { color: inherit; }

.xen-review-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.xen-review-visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; padding: 0;
}

.xen-review-eyebrow {
  font-family: var(--xen-font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--xen-orange);
  display: flex;
  align-items: center;
  gap: 10px;
}
.xen-review-eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--xen-orange);
  display: inline-block;
}

/* ---------------------------------------------------------------------
   Skip link
   --------------------------------------------------------------------- */
.xen-review-skip-link {
  position: absolute; top: -60px; left: 12px;
  background: var(--xen-orange); color: #0a0a0a; font-weight: 700;
  padding: 10px 16px; z-index: 999; border-radius: var(--xen-radius);
  transition: top .2s ease;
  text-decoration: none;
}
.xen-review-skip-link:focus { top: 12px; }

/* ---------------------------------------------------------------------
   Navigation
   --------------------------------------------------------------------- */
.xen-review-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(5,5,5,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--xen-border);
}
.xen-review-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1200px; margin: 0 auto;
}
.xen-review-logo {
  display: flex; flex-direction: column; text-decoration: none; line-height: 1.1;
}
.xen-review-logo-mark {
  font-family: var(--xen-font-mono);
  font-weight: 700; font-size: 16px; letter-spacing: 0.12em;
  color: var(--xen-text);
}
.xen-review-logo-mark span { color: var(--xen-orange); }
.xen-review-logo-sub {
  font-size: 10px; letter-spacing: 0.14em; color: var(--xen-text-muted);
  text-transform: uppercase; margin-top: 2px;
}
.xen-review-nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
  margin: 0; padding: 0;
}
.xen-review-nav-links a {
  text-decoration: none; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--xen-text-secondary);
  padding: 6px 2px; border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.xen-review-nav-links a:hover,
.xen-review-nav-links a:focus-visible { color: var(--xen-text); border-color: var(--xen-orange); }
.xen-review-nav-cta {
  display: none;
}
.xen-review-nav-actions { display: flex; align-items: center; gap: 20px; }
.xen-review-nav-toggle {
  display: none;
  background: none; border: 1px solid var(--xen-border-strong); color: var(--xen-text);
  width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: var(--xen-radius); cursor: pointer;
}

@media (max-width: 860px) {
  .xen-review-nav-links { display: none; }
  .xen-review-nav-toggle { display: inline-flex; }
}

/* ---------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------- */
.xen-review-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--xen-font-mono);
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 22px; border-radius: var(--xen-radius);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.xen-review-btn:active { transform: translateY(1px); }
.xen-review-btn-primary {
  background: var(--xen-orange); color: #0a0700; border-color: var(--xen-orange);
  font-weight: 700;
}
.xen-review-btn-primary:hover, .xen-review-btn-primary:focus-visible { background: var(--xen-orange-bright); }
.xen-review-btn-outline {
  background: transparent; color: var(--xen-text); border-color: var(--xen-border-strong);
}
.xen-review-btn-outline:hover, .xen-review-btn-outline:focus-visible {
  border-color: var(--xen-orange); color: var(--xen-orange-bright);
}
.xen-review-btn-ghost {
  background: transparent; color: var(--xen-text-secondary); border-color: transparent;
}
.xen-review-btn-ghost:hover { color: var(--xen-text); }
.xen-review-btn-danger {
  background: var(--xen-danger); color: #1a0505; border-color: var(--xen-danger); font-weight: 700;
}
.xen-review-btn:focus-visible, .xen-review-app a:focus-visible, .xen-review-app input:focus-visible,
.xen-review-app textarea:focus-visible, .xen-review-app select:focus-visible {
  outline: 2px solid var(--xen-orange-bright); outline-offset: 2px;
}
.xen-review-btn-block { width: 100%; }
.xen-review-btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.xen-review-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 24px 80px;
  border-bottom: 1px solid var(--xen-border);
  background: var(--xen-bg);
}
.xen-review-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,106,26,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,26,0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 40%, transparent 90%);
}
.xen-review-hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,106,26,0.16), transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}
.xen-review-hero-scan {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,145,66,0.55), transparent);
  animation: xen-review-scan 7s linear infinite;
  pointer-events: none;
}
@keyframes xen-review-scan {
  0% { top: 0%; opacity: 0; }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.xen-review-hero-svg {
  position: absolute; right: -60px; top: 20px; width: 460px; height: 460px;
  opacity: 0.5; pointer-events: none;
}
@media (max-width: 900px) { .xen-review-hero-svg { display: none; } }

.xen-review-hero-inner { position: relative; max-width: 1200px; margin: 0 auto; }
.xen-review-hero-content { max-width: 720px; }
.xen-review-hero-title {
  font-family: var(--xen-font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 22px 0 20px;
  text-transform: uppercase;
}
.xen-review-hero-title .xen-review-accent { color: var(--xen-orange); }
.xen-review-hero-text {
  color: var(--xen-text-secondary);
  font-size: 17px;
  max-width: 560px;
  margin: 0 0 36px;
}
.xen-review-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.xen-review-hero-readout {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-family: var(--xen-font-mono); font-size: 11px; color: var(--xen-text-muted);
  letter-spacing: 0.08em; border-top: 1px solid var(--xen-border); padding-top: 18px;
}
.xen-review-hero-readout b { color: var(--xen-orange-bright); font-weight: 600; }

/* ---------------------------------------------------------------------
   Reveal animation
   --------------------------------------------------------------------- */
.xen-review-reveal {
  opacity: 0; transform: translateY(16px);
  animation: xen-review-reveal 0.7s cubic-bezier(.2,.7,.2,1) forwards;
}
@keyframes xen-review-reveal { to { opacity: 1; transform: translateY(0); } }
.xen-review-reveal-1 { animation-delay: .05s; }
.xen-review-reveal-2 { animation-delay: .16s; }
.xen-review-reveal-3 { animation-delay: .27s; }
.xen-review-reveal-4 { animation-delay: .38s; }

/* ---------------------------------------------------------------------
   Section shell
   --------------------------------------------------------------------- */
.xen-review-section { padding: 72px 24px; }
.xen-review-section-alt { background: var(--xen-bg-alt); border-top: 1px solid var(--xen-border); border-bottom: 1px solid var(--xen-border); }
.xen-review-section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.xen-review-section-title {
  font-family: var(--xen-font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(26px, 3.4vw, 36px); margin: 16px 0 0; letter-spacing: -0.01em;
}
.xen-review-section-head .xen-review-eyebrow { justify-content: center; }
.xen-review-section-head .xen-review-eyebrow::before { display: none; }

/* ---------------------------------------------------------------------
   Rating summary
   --------------------------------------------------------------------- */
.xen-review-summary {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center;
}
@media (max-width: 760px) { .xen-review-summary { grid-template-columns: 1fr; gap: 32px; } }

.xen-review-summary-score {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.xen-review-summary-number {
  font-family: var(--xen-font-mono); font-weight: 700;
  font-size: 72px; color: var(--xen-orange); line-height: 1;
}
.xen-review-summary-outof { font-family: var(--xen-font-mono); color: var(--xen-text-muted); font-size: 22px; }
.xen-review-summary-meta { margin-top: 10px; }
.xen-review-summary-count { color: var(--xen-text-secondary); font-size: 14px; margin-top: 6px; }

.xen-review-stars { display: inline-flex; gap: 3px; }
.xen-review-stars svg { width: 20px; height: 20px; }
.xen-review-stars .xen-review-star-fill { color: var(--xen-orange); }
.xen-review-stars .xen-review-star-empty { color: var(--xen-border-strong); }

.xen-review-dist-row {
  display: grid; grid-template-columns: 44px 1fr 34px; align-items: center; gap: 12px;
  margin-bottom: 8px; font-family: var(--xen-font-mono); font-size: 12px; color: var(--xen-text-secondary);
}
.xen-review-dist-bar-track {
  height: 6px; background: var(--xen-surface-2); border: 1px solid var(--xen-border); border-radius: 3px; overflow: hidden;
}
.xen-review-dist-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--xen-orange-dim), var(--xen-orange)); width: 0%;
  transition: width .6s ease;
}

/* ---------------------------------------------------------------------
   Featured review
   --------------------------------------------------------------------- */
.xen-review-featured-card {
  position: relative;
  background: var(--xen-surface);
  border: 1px solid var(--xen-border-orange);
  border-radius: var(--xen-radius);
  padding: 44px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .xen-review-featured-card { grid-template-columns: 1fr; padding: 28px; text-align: center; } }
.xen-review-featured-card::before,
.xen-review-featured-card::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border-color: var(--xen-orange); border-style: solid; opacity: .7;
}
.xen-review-featured-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.xen-review-featured-card::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.xen-review-avatar {
  width: 78px; height: 78px; border-radius: 50%;
  background: #0c0c0c; border: 1px solid var(--xen-border-strong);
  display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
}
.xen-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.xen-review-avatar-initials {
  font-family: var(--xen-font-mono); font-weight: 700; color: var(--xen-orange); font-size: 22px; letter-spacing: 0.02em;
}
.xen-review-featured-card .xen-review-avatar { width: 96px; height: 96px; }
.xen-review-featured-card .xen-review-avatar-initials { font-size: 28px; }
@media (max-width: 700px) { .xen-review-featured-card .xen-review-avatar { margin: 0 auto; } }

.xen-review-featured-quote {
  font-size: 20px; line-height: 1.55; color: var(--xen-text); margin: 14px 0 20px; font-weight: 400;
}
.xen-review-featured-name { font-weight: 700; font-size: 16px; }
.xen-review-featured-role {
  font-family: var(--xen-font-mono); color: var(--xen-orange); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 3px;
}
.xen-review-featured-footer {
  display: flex; align-items: center; gap: 16px; margin-top: 18px; flex-wrap: wrap;
  font-family: var(--xen-font-mono); font-size: 12px; color: var(--xen-text-muted);
}
@media (max-width: 700px) { .xen-review-featured-footer { justify-content: center; } }
.xen-review-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--xen-font-mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(255,106,26,0.12); color: var(--xen-orange-bright); border: 1px solid var(--xen-border-orange);
  padding: 5px 10px; border-radius: 20px;
}

/* ---------------------------------------------------------------------
   Toolbar: search / sort / filters
   --------------------------------------------------------------------- */
.xen-review-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  margin-bottom: 36px; padding: 18px; background: var(--xen-surface); border: 1px solid var(--xen-border); border-radius: var(--xen-radius);
}
.xen-review-search {
  position: relative; flex: 1 1 260px; min-width: 220px;
}
.xen-review-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--xen-text-muted);
}
.xen-review-input, .xen-review-select, .xen-review-textarea {
  background: var(--xen-bg-alt); border: 1px solid var(--xen-border-strong); color: var(--xen-text);
  border-radius: var(--xen-radius); padding: 12px 14px; font-size: 14px; width: 100%;
  font-family: var(--xen-font-body);
}
.xen-review-search .xen-review-input { padding-left: 38px; }
.xen-review-input::placeholder, .xen-review-textarea::placeholder { color: var(--xen-text-muted); }
.xen-review-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.xen-review-select { min-width: 150px; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%23ff9142'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 30px;
}

/* ---------------------------------------------------------------------
   Review grid + cards
   --------------------------------------------------------------------- */
.xen-review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 980px) { .xen-review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .xen-review-grid { grid-template-columns: 1fr; } }

.xen-review-card {
  position: relative;
  background: var(--xen-surface);
  border: 1px solid var(--xen-border);
  border-radius: var(--xen-radius);
  padding: 24px;
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(14px);
  animation: xen-review-reveal .5s ease forwards;
  transition: border-color .2s ease, transform .2s ease;
}
.xen-review-card:hover { border-color: var(--xen-border-orange); transform: translateY(-2px); }
.xen-review-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.xen-review-card .xen-review-avatar { width: 48px; height: 48px; }
.xen-review-card .xen-review-avatar-initials { font-size: 16px; }
.xen-review-card-name { font-weight: 700; font-size: 14.5px; }
.xen-review-card-date { font-family: var(--xen-font-mono); font-size: 11px; color: var(--xen-text-muted); margin-top: 2px; }
.xen-review-card-rating { margin-bottom: 12px; }
.xen-review-card-text {
  color: var(--xen-text-secondary); font-size: 14.5px; line-height: 1.6; flex: 1; margin: 0 0 16px;
}
.xen-review-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--xen-border);
}
.xen-review-service-tag {
  font-family: var(--xen-font-mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--xen-orange-bright); background: rgba(255,106,26,0.08); border: 1px solid var(--xen-border-orange);
  padding: 4px 9px; border-radius: 3px;
}
.xen-review-helpful-btn {
  display: inline-flex; align-items: center; gap: 6px; background: transparent; border: 1px solid var(--xen-border-strong);
  color: var(--xen-text-secondary); font-family: var(--xen-font-mono); font-size: 11.5px; padding: 7px 11px;
  border-radius: var(--xen-radius); cursor: pointer; transition: all .2s ease;
}
.xen-review-helpful-btn:hover { border-color: var(--xen-orange); color: var(--xen-orange-bright); }
.xen-review-helpful-btn[data-voted="true"] { color: var(--xen-success); border-color: var(--xen-success); cursor: default; }
.xen-review-helpful-btn svg { width: 14px; height: 14px; }
.xen-review-card-featured-badge { position: absolute; top: -10px; right: 16px; }
.xen-review-card-edit-link {
  margin-top: 10px; font-family: var(--xen-font-mono); font-size: 11px; color: var(--xen-orange-bright);
  background: none; border: none; cursor: pointer; text-decoration: underline; padding: 0; text-align: left;
}

/* ---------------------------------------------------------------------
   Load more / empty states
   --------------------------------------------------------------------- */
.xen-review-load-more { display: flex; justify-content: center; margin-top: 36px; }
.xen-review-empty {
  text-align: center; padding: 70px 24px; border: 1px dashed var(--xen-border-strong); border-radius: var(--xen-radius);
}
.xen-review-empty-icon { width: 52px; height: 52px; margin: 0 auto 18px; color: var(--xen-orange); }
.xen-review-empty h3 {
  font-family: var(--xen-font-display); text-transform: uppercase; font-size: 20px; margin: 0 0 10px; letter-spacing: 0.02em;
}
.xen-review-empty p { color: var(--xen-text-secondary); margin: 0 0 22px; }

/* ---------------------------------------------------------------------
   Modal
   --------------------------------------------------------------------- */
.xen-review-modal-overlay {
  position: fixed; inset: 0; background: rgba(3,3,3,0.82); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 200;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.xen-review-modal-overlay.xen-review-open { opacity: 1; pointer-events: auto; }
.xen-review-modal {
  background: var(--xen-surface); border: 1px solid var(--xen-border-orange); border-radius: var(--xen-radius);
  width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
  padding: 32px; position: relative;
  transform: translateY(18px) scale(.98); transition: transform .25s ease;
}
.xen-review-modal-overlay.xen-review-open .xen-review-modal { transform: translateY(0) scale(1); }
.xen-review-modal-close {
  position: absolute; top: 18px; right: 18px; background: none; border: 1px solid var(--xen-border-strong);
  color: var(--xen-text-secondary); width: 34px; height: 34px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.xen-review-modal-close:hover { color: var(--xen-orange-bright); border-color: var(--xen-orange); }
.xen-review-modal-title {
  font-family: var(--xen-font-display); text-transform: uppercase; font-size: 22px; margin: 0 0 6px; letter-spacing: 0.01em;
}
.xen-review-modal-sub { color: var(--xen-text-secondary); font-size: 13.5px; margin: 0 0 26px; }

.xen-review-field { margin-bottom: 20px; }
.xen-review-label {
  display: block; font-family: var(--xen-font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--xen-text-secondary); margin-bottom: 8px;
}
.xen-review-label .xen-review-optional { color: var(--xen-text-muted); text-transform: none; letter-spacing: 0; }
.xen-review-textarea { resize: vertical; min-height: 110px; }
.xen-review-charcount { text-align: right; font-family: var(--xen-font-mono); font-size: 11px; color: var(--xen-text-muted); margin-top: 6px; }

.xen-review-photo-row { display: flex; align-items: center; gap: 16px; }
.xen-review-photo-preview {
  width: 64px; height: 64px; border-radius: 50%; overflow: hidden; background: var(--xen-bg-alt);
  border: 1px solid var(--xen-border-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.xen-review-photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.xen-review-file-btn {
  font-family: var(--xen-font-mono); font-size: 12px; border: 1px dashed var(--xen-border-strong); color: var(--xen-text-secondary);
  background: transparent; padding: 10px 14px; border-radius: var(--xen-radius); cursor: pointer;
}
.xen-review-file-btn:hover { border-color: var(--xen-orange); color: var(--xen-orange-bright); }

.xen-review-star-picker { display: inline-flex; gap: 6px; }
.xen-review-star-picker button {
  background: none; border: none; cursor: pointer; padding: 2px; color: var(--xen-border-strong);
  transition: transform .12s ease, color .12s ease;
}
.xen-review-star-picker button svg { width: 30px; height: 30px; }
.xen-review-star-picker button:hover { transform: scale(1.12); }
.xen-review-star-picker button.xen-review-active,
.xen-review-star-picker button[aria-checked="true"] { color: var(--xen-orange); }

.xen-review-form-note {
  font-size: 12px; color: var(--xen-text-muted); background: var(--xen-bg-alt); border: 1px solid var(--xen-border);
  padding: 12px 14px; border-radius: var(--xen-radius); margin-bottom: 22px; line-height: 1.55;
}
.xen-review-form-error {
  color: var(--xen-danger); font-size: 12.5px; margin-top: 6px; display: none;
}
.xen-review-form-error.xen-review-show { display: block; }
.xen-review-field.xen-review-invalid .xen-review-input,
.xen-review-field.xen-review-invalid .xen-review-textarea,
.xen-review-field.xen-review-invalid .xen-review-select { border-color: var(--xen-danger); }

/* Success state inside modal */
.xen-review-success {
  text-align: center; padding: 20px 0 4px;
}
.xen-review-success-icon {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 20px;
  background: rgba(61,220,132,0.1); border: 1px solid var(--xen-success);
  display: flex; align-items: center; justify-content: center; color: var(--xen-success);
}
.xen-review-success-icon svg { width: 32px; height: 32px; }
.xen-review-success h3 {
  font-family: var(--xen-font-display); text-transform: uppercase; font-size: 22px; margin: 0 0 10px;
}
.xen-review-success p { color: var(--xen-text-secondary); margin: 0 0 20px; }
.xen-review-edit-link-box {
  display: flex; gap: 8px; align-items: center; background: var(--xen-bg-alt); border: 1px solid var(--xen-border);
  border-radius: var(--xen-radius); padding: 10px 12px; margin: 0 0 22px; text-align: left;
}
.xen-review-edit-link-box input {
  flex: 1; background: transparent; border: none; color: var(--xen-text-secondary); font-family: var(--xen-font-mono); font-size: 11.5px;
}

/* ---------------------------------------------------------------------
   Toast notification
   --------------------------------------------------------------------- */
.xen-review-toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--xen-surface); border: 1px solid var(--xen-success);
  color: var(--xen-text); padding: 14px 18px; border-radius: var(--xen-radius); z-index: 300;
  display: flex; align-items: center; gap: 10px; font-size: 13.5px;
  transform: translateY(20px); opacity: 0; pointer-events: none; transition: all .25s ease;
  max-width: 320px;
}
.xen-review-toast.xen-review-show { transform: translateY(0); opacity: 1; }
.xen-review-toast svg { width: 18px; height: 18px; color: var(--xen-success); flex-shrink: 0; }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.xen-review-footer { border-top: 1px solid var(--xen-border); padding: 48px 24px 28px; }
.xen-review-footer-inner {
  max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px;
}
.xen-review-footer-brand p { color: var(--xen-text-secondary); font-size: 13px; margin: 8px 0 0; max-width: 320px; }
.xen-review-footer-links { display: flex; gap: 22px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.xen-review-footer-links a { text-decoration: none; color: var(--xen-text-secondary); font-size: 13px; }
.xen-review-footer-links a:hover { color: var(--xen-orange-bright); }
.xen-review-footer-bottom {
  max-width: 1200px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid var(--xen-border);
  font-family: var(--xen-font-mono); font-size: 11.5px; color: var(--xen-text-muted);
}

/* ---------------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .xen-review-app * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .xen-review-reveal, .xen-review-card { opacity: 1; transform: none; }
}
