/* Tu Reserva — Booking App v2 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset ───────────────────────────────────────────────────────────────── */
.tr-app *, .tr-app *::before, .tr-app *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
.tr-app {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  background: #f7f7f7;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
.tr-app.step-services { background: #fff; }

/* ── Top Bar ─────────────────────────────────────────────────────────────── */
.tr-topbar {
  position: sticky; top: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.tr-topbar-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid #e8e8e8; background: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; color: #1a1a1a; flex-shrink: 0;
}
.tr-topbar-btn:hover { background: #f5f5f5; border-color: #d0d0d0; }
.tr-topbar-right { display: flex; justify-content: flex-end; flex: 1; }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.tr-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #aaa;
  padding: 20px 24px 0;
  max-width: 1100px; margin: 0 auto;
  flex-wrap: wrap;
}
.tr-bc-step { color: #aaa; }
.tr-bc-step.active { color: #1a1a1a; font-weight: 600; }
.tr-bc-sep { color: #ccc; font-size: 11px; }

/* ── Page ────────────────────────────────────────────────────────────────── */
.tr-page {
  max-width: 1100px; margin: 0 auto;
  padding: 24px;
}
.tr-page-single {
  max-width: 780px; margin: 0 auto;
  padding: 24px;
}
.tr-page-title { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.tr-page-subtitle { font-size: 14px; color: #888; margin-bottom: 24px; }

/* ── 2-column layout ─────────────────────────────────────────────────────── */
.tr-2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.tr-2col-md  { grid-template-columns: 1fr 360px; }
.tr-2col-lg  { grid-template-columns: 1fr 400px; }

/* ── Sidebar ─────────────────────────────────────────────────────────────── */
.tr-sidebar {
  position: sticky; top: 80px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  overflow: hidden;
}
.tr-sidebar-body { padding: 24px; }

.tr-sb-biz {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; margin-bottom: 16px;
}
.tr-sb-avatar {
  width: 52px; height: 52px; border-radius: 10px;
  background: #1a1a1a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; flex-shrink: 0; overflow: hidden;
}
.tr-sb-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tr-sb-biz-name { font-size: 14px; font-weight: 700; }
.tr-sb-biz-addr { font-size: 12px; color: #888; margin-top: 2px; }

.tr-sb-svcs { padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; margin-bottom: 14px; }
.tr-sb-svc-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 6px 0; gap: 8px;
}
.tr-sb-svc-name { font-size: 13px; font-weight: 500; }
.tr-sb-svc-detail { font-size: 12px; color: #888; margin-top: 1px; }
.tr-sb-svc-price { font-size: 13px; font-weight: 500; flex-shrink: 0; }

.tr-sb-dt { padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; margin-bottom: 14px; }
.tr-sb-dt-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #888; padding: 3px 0;
}
.tr-sb-dt-val { color: #1a1a1a; font-weight: 500; }

.tr-sb-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
}
.tr-sb-total-label { font-size: 13px; color: #888; font-weight: 500; }
.tr-sb-total-val { font-size: 15px; font-weight: 700; }

.tr-sidebar-footer { padding: 16px 24px; border-top: 1px solid #f0f0f0; }
.tr-mobile-bar { display: none; }

.tr-btn-back-text {
  display: block; width: 100%; margin-top: 8px;
  background: none; border: none; cursor: pointer;
  font-size: 13px; font-weight: 500; color: #888;
  text-align: center; padding: 6px 0;
  transition: color 0.15s; font-family: inherit;
}
.tr-btn-back-text:hover { color: #1a1a1a; }
.tr-sb-empty { font-size: 13px; color: #bbb; padding: 4px 0; }
.tr-sb-remove {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid #e0e0e0; background: #fff; color: #999;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; flex-shrink: 0;
}
.tr-sb-remove:hover { border-color: #dc2626; color: #dc2626; background: #fef2f2; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.tr-btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 24px;
  background: #1a1a1a; color: #fff;
  border: none; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.tr-btn-primary:hover { background: #333; }
.tr-btn-primary:disabled { background: #ccc; cursor: not-allowed; }
.tr-btn-primary.full { display: block; width: 100%; text-align: center; }

.tr-btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 22px;
  background: #fff; color: #1a1a1a;
  border: 1px solid #e0e0e0; border-radius: 8px;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.tr-btn-outline:hover { border-color: #1a1a1a; background: #fafafa; }
.tr-btn-outline.full { display: block; width: 100%; text-align: center; padding: 12px; }

.tr-btn-cancel {
  display: block; width: 100%; padding: 10px 22px;
  border: 1px solid #fecaca; border-radius: 8px;
  background: #fff; color: #dc2626;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.tr-btn-cancel:hover { background: #fef2f2; }

.tr-btn-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid #e0e0e0; background: #fff; color: #1a1a1a;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s; flex-shrink: 0;
}
.tr-btn-circle.active { background: #1a1a1a; border-color: #1a1a1a; color: #fff; }
.tr-btn-circle:hover:not(.active) { border-color: #1a1a1a; }

/* ── Alert / Empty ───────────────────────────────────────────────────────── */
.tr-alert {
  background: #fff3f3; border: 1px solid #fca5a5;
  border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: #b91c1c; margin-bottom: 14px;
}
.tr-empty { font-size: 13px; color: #999; padding: 6px 0; }

/* ── Loading / Error ─────────────────────────────────────────────────────── */
.tr-loading {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 80px 20px; color: #888;
}
.tr-spinner {
  width: 28px; height: 28px;
  border: 2.5px solid #e0e0e0; border-top-color: #1a1a1a;
  border-radius: 50%;
  animation: tr-spin .7s linear infinite; margin-bottom: 12px;
}
@keyframes tr-spin { to { transform: rotate(360deg); } }
.tr-error-screen { text-align: center; padding: 60px 20px; color: #888; }

/* ── Step 1: Branch ──────────────────────────────────────────────────────── */
.tr-branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px; margin-top: 8px;
}
.tr-branch-card {
  background: #fff; border: 1.5px solid #eaeaea;
  border-radius: 14px; overflow: hidden;
  transition: all 0.15s;
}
.tr-branch-card:hover { border-color: #ccc; }
.tr-branch-card.selected { border-color: #1a1a1a; box-shadow: 0 0 0 1px #1a1a1a; }
.tr-branch-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.tr-branch-ph {
  width: 100%; height: 200px; background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
}
.tr-branch-body { padding: 18px 20px; }
.tr-branch-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.tr-branch-addr {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: #888; margin-bottom: 14px;
}
.tr-branch-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.tr-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
}
.tr-status::before {
  content: ''; width: 7px; height: 7px;
  border-radius: 50%; background: #22c55e; flex-shrink: 0;
}
.tr-status.closed::before { background: #ef4444; }
.tr-branch-footer-cont { display: flex; justify-content: flex-end; margin-top: 20px; }

/* ── Step 2: Services ────────────────────────────────────────────────────── */
.tr-cats {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.tr-cat-pill {
  padding: 8px 18px; border-radius: 100px;
  border: 1px solid #e0e0e0;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  background: #fff; color: #1a1a1a; font-family: inherit;
}
.tr-cat-pill.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.tr-cat-pill:hover:not(.active) { border-color: #1a1a1a; }

.tr-svc-section { margin-bottom: 36px; scroll-margin-top: 80px; }
.tr-svc-section-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.tr-svc-section-desc { font-size: 13px; color: #888; margin-bottom: 14px; }

.tr-svc-list {
  border: 1px solid #f0f0f0; border-radius: 14px; overflow: hidden;
}
.tr-svc-item {
  display: flex; align-items: center;
  padding: 16px 18px; border-bottom: 1px solid #f0f0f0;
  gap: 12px; transition: background 0.15s;
}
.tr-svc-item:last-child { border-bottom: none; }
.tr-svc-item:hover { background: #fafafa; }
.tr-svc-item.selected { background: #f9f9f9; }
.tr-svc-photo {
  width: 64px; height: 64px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid #f0f0f0;
}
.tr-svc-item-info { flex: 1; min-width: 0; }
.tr-svc-item-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.tr-svc-item-dur { font-size: 12px; color: #999; margin-bottom: 3px; }
.tr-svc-item-desc {
  font-size: 12.5px; color: #888; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.tr-svc-item-right {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.tr-svc-item-price { font-size: 13px; font-weight: 600; }

/* ── Step 3: Staff ───────────────────────────────────────────────────────── */
.tr-staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
}
.tr-staff-card {
  background: #fff; border: 1.5px solid #eaeaea;
  border-radius: 14px; padding: 20px 16px 18px;
  cursor: pointer; transition: all 0.15s; text-align: center;
}
.tr-staff-card:hover { border-color: #d0d0d0; }
.tr-staff-card.selected { border-color: #1a1a1a; box-shadow: 0 0 0 1px #1a1a1a; }
.tr-staff-av-wrap { position: relative; width: 64px; height: 64px; margin: 0 auto 12px; }
.tr-staff-av {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; color: #fff; overflow: hidden;
}
.tr-staff-av img { width: 100%; height: 100%; object-fit: cover; }
.tr-staff-badge {
  position: absolute; bottom: -2px; right: -4px;
  background: #fff; border: 1px solid #eaeaea;
  border-radius: 10px; padding: 2px 5px;
  font-size: 11px; font-weight: 600;
  display: flex; align-items: center; gap: 2px;
}
.tr-staff-badge-star { color: #f5b100; }
.tr-staff-card-name { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.tr-staff-card-role { font-size: 13px; color: #999; margin-bottom: 8px; }
.tr-staff-card-btn {
  margin-top: 14px; width: 100%; padding: 10px;
  border-radius: 8px; border: 1px solid #e0e0e0;
  background: #fff; color: #1a1a1a;
  font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.tr-staff-card-btn:hover { border-color: #1a1a1a; background: #fafafa; }
.tr-staff-card.selected .tr-staff-card-btn { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }

/* ── Step 4: Date & Time ─────────────────────────────────────────────────── */
.tr-staff-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 8px;
  background: #fff; border: 1px solid #e0e0e0; border-radius: 100px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all 0.15s; margin-bottom: 24px;
}
.tr-staff-chip:hover { border-color: #1a1a1a; }
.tr-chip-av {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
  overflow: hidden; flex-shrink: 0;
}
.tr-chip-av img { width: 100%; height: 100%; object-fit: cover; }

.tr-dt-block { margin-bottom: 28px; }
.tr-dt-block-hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.tr-dt-block-title { font-size: 15px; font-weight: 700; }
.tr-week-arrows { display: flex; gap: 6px; }
.tr-arr-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid #e0e0e0; background: #fff; color: #1a1a1a;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.tr-arr-btn:hover { border-color: #1a1a1a; }
.tr-arr-btn:disabled { opacity: .4; cursor: not-allowed; }

.tr-week-strip {
  display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none;
}
.tr-week-strip::-webkit-scrollbar { display: none; }

.tr-date-item {
  flex: 0 0 52px; height: 72px; border-radius: 12px;
  border: 1px solid #eaeaea; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s; gap: 1px;
}
.tr-date-item:hover:not(.off):not(.sel) { border-color: #d0d0d0; background: #fafafa; }
.tr-date-item.sel { background: #1a1a1a; border-color: #1a1a1a; }
.tr-date-item.off { opacity: .4; cursor: not-allowed; }
.tr-d-dow { font-size: 10.5px; color: #999; font-weight: 500; }
.tr-d-num { font-size: 18px; font-weight: 700; color: #1a1a1a; }
.tr-d-mon { font-size: 10.5px; color: #999; }
.tr-date-item.sel .tr-d-dow,
.tr-date-item.sel .tr-d-num,
.tr-date-item.sel .tr-d-mon { color: #fff; }

.tr-time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
}
.tr-time-slot {
  padding: 14px 16px; text-align: center;
  border: 1px solid #eaeaea; border-radius: 10px;
  font-size: 14px; font-weight: 500; background: #fff;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.tr-time-slot:hover { border-color: #d0d0d0; background: #fafafa; }
.tr-time-slot.sel { border-color: #1a1a1a; background: #fffbe6; }

.tr-waitlist { margin-top: 16px; font-size: 13px; color: #888; }
.tr-waitlist a { color: #6b5ce7; text-decoration: underline; cursor: pointer; }

/* ── Step 5: Review ──────────────────────────────────────────────────────── */
.tr-review-title { font-size: 30px; font-weight: 700; margin-bottom: 24px; }
.tr-review-block { margin-bottom: 20px; }
.tr-review-block-label { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.tr-review-card {
  background: #fff; border: 1px solid #eaeaea;
  border-radius: 14px; padding: 18px 20px;
}
.tr-policy-title { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.tr-policy-desc { font-size: 13px; color: #888; }
/* ── Client form card ────────────────────────────────────────────────────── */
#tu-reserva-app .tr-cf-card {
  background: #fff !important;
  border: 1px solid #e8edf5 !important;
  border-radius: 24px !important;
  padding: 28px !important;
  box-shadow: 0 20px 60px rgba(7,17,31,.09) !important;
  margin-bottom: 20px !important;
}

#tu-reserva-app .tr-cf-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 7px 13px !important;
  border-radius: 999px !important;
  background: #f0f0f0 !important;
  color: #1a1a1a !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
  border: none !important;
}
#tu-reserva-app .tr-cf-badge-dot {
  width: 8px !important; height: 8px !important;
  border-radius: 50% !important;
  background: #1a1a1a !important;
  box-shadow: 0 0 0 4px rgba(26,26,26,.12) !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

#tu-reserva-app .tr-cf-title {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #07111f !important;
  letter-spacing: -0.8px !important;
  line-height: 1.1 !important;
  margin-bottom: 8px !important;
}
#tu-reserva-app .tr-cf-subtitle {
  font-size: 14px !important;
  color: #6b7685 !important;
  line-height: 1.5 !important;
  margin-bottom: 24px !important;
}

#tu-reserva-app .tr-cf-fields {
  display: grid !important;
  gap: 14px !important;
}
#tu-reserva-app .tr-cf-field {
  display: grid !important;
  gap: 6px !important;
}
#tu-reserva-app .tr-cf-lbl {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #172235 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  line-height: 1.4 !important;
}
#tu-reserva-app .tr-cf-inp {
  width: 100% !important;
  border: 1.5px solid #dde5f2 !important;
  background: #fff !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  color: #07111f !important;
  outline: none !important;
  transition: border-color .2s, box-shadow .2s !important;
  box-shadow: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  display: block !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
#tu-reserva-app .tr-cf-inp::placeholder { color: #9aa6b5 !important; }
#tu-reserva-app .tr-cf-inp:focus {
  border-color: #1a1a1a !important;
  box-shadow: 0 0 0 4px rgba(26,26,26,.08) !important;
  outline: none !important;
}

#tu-reserva-app .tr-cf-note {
  text-align: center !important;
  font-size: 12px !important;
  color: #9aa6b5 !important;
  margin-top: 18px !important;
  margin-bottom: 0 !important;
}

.tr-cf-req { color: #1a1a1a; }

.tr-notes-trigger {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
}
.tr-notes-hint { font-size: 13.5px; color: #888; }
.tr-notes-area {
  display: block; width: 100%; margin-top: 12px;
  padding: 12px 14px; border: 1px solid #e0e0e0; border-radius: 8px;
  font-size: 13px; color: #1a1a1a;
  resize: vertical; min-height: 80px; line-height: 1.5;
  font-family: inherit; outline: none; transition: border-color 0.15s;
}
.tr-notes-area:focus { border-color: #1a1a1a; }

/* ── Step 6: Success ─────────────────────────────────────────────────────── */
.tr-success-wrap {
  max-width: 520px; margin: 40px auto; padding: 0 24px; text-align: center;
}
.tr-check-svg { width: 72px; height: 72px; margin: 0 auto 24px; display: block; }
.tr-check-circle {
  fill: none; stroke: #1a1a1a; stroke-width: 2;
  stroke-dasharray: 220; stroke-dashoffset: 220;
  animation: tr-draw 0.6s ease forwards 0.3s;
}
.tr-check-tick {
  fill: none; stroke: #1a1a1a; stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: tr-draw 0.35s ease forwards 0.85s;
}
@keyframes tr-draw { to { stroke-dashoffset: 0; } }
@keyframes tr-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tr-success-title {
  font-size: 26px; font-weight: 700; margin-bottom: 8px;
  opacity: 0; animation: tr-fade-up 0.4s ease forwards 1s;
}
.tr-success-sub {
  font-size: 14px; color: #888; margin-bottom: 28px;
  opacity: 0; animation: tr-fade-up 0.4s ease forwards 1.1s;
}
.tr-success-card {
  background: #fff; border: 1px solid #eaeaea;
  border-radius: 14px; overflow: hidden; text-align: left; margin-bottom: 16px;
  opacity: 0; animation: tr-fade-up 0.4s ease forwards 1.2s;
}
.tr-success-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; border-bottom: 1px solid #f0f0f0;
}
.tr-success-biz-av {
  width: 44px; height: 44px; border-radius: 10px;
  background: #1a1a1a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; flex-shrink: 0; overflow: hidden;
}
.tr-success-biz-av img { width: 100%; height: 100%; object-fit: cover; }
.tr-success-biz-name { font-size: 14px; font-weight: 700; }
.tr-success-biz-addr { font-size: 12px; color: #888; margin-top: 2px; }

.tr-success-rows { padding: 4px 20px; }
.tr-success-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
}
.tr-success-row:last-child { border-bottom: none; }
.tr-success-row-icon { color: #bbb; flex-shrink: 0; margin-top: 2px; }
.tr-success-row-label {
  font-size: 11px; font-weight: 600; color: #aaa;
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 2px;
}
.tr-success-row-val { font-size: 13.5px; font-weight: 500; }

.tr-success-svc {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 20px; border-top: 1px solid #f0f0f0;
}
.tr-success-svc-name { font-size: 13px; font-weight: 500; }
.tr-success-svc-price { font-size: 13px; font-weight: 600; }
.tr-success-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 20px; background: #fafafa;
}
.tr-success-total-label { font-size: 13px; color: #888; }
.tr-success-total-val { font-size: 15px; font-weight: 700; }

.tr-success-actions {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px;
  opacity: 0; animation: tr-fade-up 0.4s ease forwards 1.3s;
}
.tr-success-policy {
  font-size: 12.5px; color: #aaa;
  opacity: 0; animation: tr-fade-up 0.4s ease forwards 1.4s;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .tr-2col, .tr-2col-md, .tr-2col-lg { grid-template-columns: 1fr; }

  .tr-sidebar { display: none !important; }

  .tr-mobile-bar {
    display: block;
    margin-top: 28px;
    padding-bottom: 32px;
  }

  .tr-app { padding-bottom: 0; }

  .tr-page, .tr-page-single { padding: 16px; }
  .tr-breadcrumb { padding: 14px 16px 0; }
  .tr-topbar { padding: 12px 16px; }
  .tr-page-title { font-size: 22px; }
  .tr-review-title { font-size: 22px; }

  .tr-branch-grid { grid-template-columns: 1fr; }
  .tr-staff-grid { grid-template-columns: repeat(2, 1fr); }

  .tr-success-wrap { margin: 20px auto; }
}
