/* ============================================================
   Polaris Crescent — Client Portal & Admin Panel CSS
   Brand: Navy #1e3a5f | Gold #c9a227 | Fonts: Playfair + Inter
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy: #1e3a5f;
  --navy-dark: #152b47;
  --navy-light: #2a4f82;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-pale: #fdf6e3;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --green: #28a745;
  --red: #dc3545;
  --orange: #fd7e14;
  --blue: #0d6efd;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.2s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--gray-50);
  color: var(--gray-800);
  min-height: 100vh;
  line-height: 1.6;
}
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; }

/* ─── Portal Layout ──────────────────────────────────────────── */
.portal-layout {
  display: flex;
  min-height: 100vh;
}

/* ─── Sidebar ─────────────────────────────────────────────────── */
.sidebar {
  width: 260px;
  min-width: 260px;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
}
.sidebar-brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-brand .brand-text {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}
.sidebar-brand .brand-sub {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}
.sidebar-user {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.sidebar-user-info .user-name {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}
.sidebar-user-info .user-role {
  color: var(--gray-500);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.sidebar-nav {
  padding: 12px 0;
  flex: 1;
}
.sidebar-section-label {
  color: var(--gray-500);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 12px 20px 6px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: var(--gray-400);
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all var(--transition);
}
.sidebar-link i { width: 16px; text-align: center; font-size: 0.85rem; }
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.sidebar-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.sidebar-logout {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.825rem;
  cursor: pointer;
  padding: 8px 0;
  background: none;
  border: none;
  width: 100%;
  transition: color var(--transition);
}
.sidebar-logout:hover { color: var(--red); }

/* ─── Main Content ───────────────────────────────────────────── */
.portal-main {
  margin-left: 260px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.portal-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
}
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.portal-content {
  padding: 28px;
  flex: 1;
}

/* ─── Login Page ─────────────────────────────────────────────── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.login-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
}
.login-logo {
  text-align: center;
  margin-bottom: 28px;
}
.login-logo .logo-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.login-logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}
.login-logo p {
  color: var(--gray-600);
  font-size: 0.825rem;
  margin-top: 4px;
}
.login-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  transition: color var(--transition);
}
.login-back:hover { color: var(--navy); }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.12);
}
.form-control::placeholder { color: var(--gray-400); }
.form-control.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}
.form-error-msg {
  font-size: 0.775rem;
  color: var(--red);
  margin-top: 4px;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-light); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover { background: var(--gold-light); color: var(--navy-dark); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }
.btn-danger {
  background: var(--red);
  color: var(--white);
}
.btn-danger:hover { background: #b02a37; color: var(--white); }
.btn-sm { padding: 6px 14px; font-size: 0.8rem; }
.btn-lg { padding: 13px 28px; font-size: 0.95rem; width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-spinner { display: none; }
.btn.loading .btn-spinner { display: inline-block; }
.btn.loading .btn-text { display: none; }

/* ─── Alert Messages ─────────────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.alert-error { background: #fff5f5; border: 1px solid #fca5a5; color: #991b1b; }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-warning { background: #fffbeb; border: 1px solid #fcd34d; color: #92400e; }
.alert-info { background: #eff6ff; border: 1px solid #93c5fd; color: #1e40af; }
.alert i { margin-top: 1px; flex-shrink: 0; }

/* ─── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
}
.card-body { padding: 20px; }

/* ─── Stats Grid ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
}
.stat-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.stat-card-desc { font-size: 0.8rem; color: var(--gray-500); }
.stat-card-icon {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ─── Tool Tiles (Client Dashboard) ─────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.tool-tile {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.tool-tile.unlocked {
  border-color: var(--navy);
  cursor: pointer;
}
.tool-tile.unlocked:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tool-tile.locked {
  background: var(--gray-50);
  opacity: 0.75;
}
.tool-tile-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}
.tool-tile.unlocked .tool-tile-badge {
  background: #d1fae5;
  color: #065f46;
}
.tool-tile.locked .tool-tile-badge {
  background: var(--gray-200);
  color: var(--gray-600);
}
.tool-tile-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tool-tile.locked .tool-tile-icon {
  background: var(--gray-200);
  color: var(--gray-500);
}
.tool-tile-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
}
.tool-tile-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
  flex: 1;
}
.tool-tile-price {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tool-tile-cta {
  margin-top: 4px;
}

/* ─── Table ───────────────────────────────────────────────────── */
/* .card has overflow:hidden for border-radius clipping — override it
   when the card contains a scrollable table so columns aren't clipped */
.card:has(.table-wrap) { overflow: visible; }
.table-wrap { overflow-x: auto; border-radius: var(--radius-md); }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
thead th {
  background: var(--gray-50);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}
tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--gray-50); }

/* ─── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-active { background: #d1fae5; color: #065f46; }
.badge-inactive { background: var(--gray-200); color: var(--gray-600); }
.badge-admin { background: #dbeafe; color: #1e3a8a; }
.badge-client { background: var(--gold-pale); color: #92400e; }
.badge-granted { background: #d1fae5; color: #065f46; }
.badge-locked { background: var(--gray-200); color: var(--gray-600); }
.badge-free { background: #dbeafe; color: #1e3a8a; }

/* ─── Toggle Switch ───────────────────────────────────────────── */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 22px;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  left: 3px;
  top: 3px;
  transition: transform var(--transition);
  box-shadow: var(--shadow-sm);
}
.toggle-switch input:checked + .toggle-slider { background: var(--green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }

/* ─── Admin — Client Detail ──────────────────────────────────── */
.client-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.client-info-item .ci-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.client-info-item .ci-value {
  font-size: 0.9rem;
  color: var(--gray-800);
  font-weight: 500;
}
.tools-access-list { display: flex; flex-direction: column; gap: 10px; }
.tool-access-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  gap: 12px;
}
.tool-access-row.granted { background: #f0fdf4; border-color: #86efac; }
.tool-access-info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.tool-access-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.tool-access-row.granted .tool-access-icon { background: #059669; color: var(--white); }
.tool-access-name { font-size: 0.875rem; font-weight: 600; color: var(--gray-800); }
.tool-access-price { font-size: 0.75rem; color: var(--gray-500); }

/* ─── Page Header ─────────────────────────────────────────────── */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.page-header-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}
.page-header-left p { color: var(--gray-600); font-size: 0.875rem; }

/* ─── Add Client Form ─────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* ─── Welcome Banner ─────────────────────────────────────────── */
.welcome-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.welcome-banner::after {
  content: '✦';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  color: rgba(201,162,39,0.2);
}
.welcome-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.welcome-banner p { font-size: 0.875rem; opacity: 0.85; }

/* ─── Spinner ─────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.spinner-dark {
  border-color: rgba(30,58,95,0.2);
  border-top-color: var(--navy);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Tooltip ─────────────────────────────────────────────────── */
[data-tip] {
  position: relative;
  cursor: help;
}
[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-800);
  color: var(--white);
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 999;
}
[data-tip]:hover::after { opacity: 1; }

/* ─── Empty State ─────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--gray-500);
}
.empty-state i { font-size: 2.5rem; margin-bottom: 12px; opacity: 0.4; }
.empty-state p { font-size: 0.9rem; }

/* ─── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-260px); transition: transform 0.3s ease; }
  .sidebar.open { transform: translateX(0); }
  .portal-main { margin-left: 0; }
  .portal-content { padding: 16px; }
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-700);
    font-size: 1.1rem;
  }
  .login-card { padding: 28px 24px; }
  .tools-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 769px) {
  .mobile-menu-btn { display: none; }
}

/* ─── Overlay (mobile sidebar) ───────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99;
}
.sidebar-overlay.active { display: block; }

/* ─── Lori-Touch CTA Banner ──────────────────────────────────── */
.lori-touch-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, var(--navy) 0%, #1e3a5f 100%);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  border: 1px solid rgba(201,162,39,0.3);
  box-shadow: 0 4px 16px rgba(20,40,72,0.15);
}
.lori-touch-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.lori-touch-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.lori-touch-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lori-touch-text strong {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}
.lori-touch-text span {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
}
.lori-touch-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.1s;
}
.btn-gold:hover { background: #d4a920; transform: translateY(-1px); }
.btn-gold:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
@media (max-width: 640px) {
  .lori-touch-banner { flex-direction: column; align-items: flex-start; }
  .lori-touch-btn { width: 100%; justify-content: center; }
}
