/* ===================================
   SBWL EATS — Admin Management System
   Color Palette:
   #e38804 — Amber Gold (primary accent)
   #e7e8eb — Platinum Silver (text/light)
   #15130f — Charcoal Black (base dark)
   =================================== */

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

/* ─── CSS Variables ─── */
:root {
  --gold:          #e38804;
  --gold-light:    #f0a030;
  --gold-dark:     #b86c00;
  --silver:        #e7e8eb;
  --silver-dim:    #a0a3ab;
  --silver-faint:  #5a5d66;
  --base:          #15130f;
  --base-mid:      #1e1b14;
  --base-card:     #23201a;
  --base-hover:    #2c2820;

  --glass-bg:      rgba(35, 32, 26, 0.65);
  --glass-border:  rgba(227, 136, 4, 0.18);
  --glass-blur:    blur(18px);

  --sidebar-w:     260px;
  --header-h:      70px;
  --radius:        14px;
  --radius-sm:     8px;

  --shadow-card:   0 8px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(227,136,4,0.08);
  --shadow-glow:   0 0 24px rgba(227,136,4,0.15);

  --font-head:     'Syne', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --transition:    0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--base);
  color: var(--silver);
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(227,136,4,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 100%, rgba(227,136,4,0.04) 0%, transparent 60%);
  background-attachment: fixed;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

ul, ol { list-style: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--base-mid); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; }
h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

.text-gold   { color: var(--gold); }
.text-silver { color: var(--silver); }
.text-dim    { color: var(--silver-dim); }
.text-sm     { font-size: 0.82rem; }
.text-xs     { font-size: 0.72rem; }
.fw-600      { font-weight: 600; }
.fw-700      { font-weight: 700; }

/* ─── Layout ─── */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
}

/* ─── Sidebar ─── */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-w);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: transform var(--transition);
}

.sidebar-logo {
  padding: 24px 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--base);
  flex-shrink: 0;
  box-shadow: var(--shadow-glow);
}

.sidebar-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.sidebar-logo .logo-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--silver);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.sidebar-logo .logo-sub {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.sidebar-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.nav-section-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-faint);
  font-weight: 600;
  padding: 12px 10px 6px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--silver-dim);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  margin-bottom: 2px;
  position: relative;
}

.nav-item:hover {
  background: rgba(227,136,4,0.08);
  color: var(--silver);
}

.nav-item.active {
  background: rgba(227,136,4,0.14);
  color: var(--gold);
  font-weight: 600;
}

.nav-item.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
}

.nav-item .nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}

.nav-item.active .nav-icon { opacity: 1; }

.nav-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--base);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  min-width: 20px;
  text-align: center;
}

.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid var(--glass-border);
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  cursor: pointer;
}

.sidebar-user:hover { background: var(--base-hover); }

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--base);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.user-info { flex: 1; min-width: 0; }
.user-name  { font-size: 0.85rem; font-weight: 600; color: var(--silver); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role  { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── Main Content ─── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ─── Top Header ─── */
.top-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.header-left {
  display: flex;
  flex-direction: column;
}

.header-breadcrumb {
  font-size: 0.72rem;
  color: var(--silver-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.header-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--silver);
  line-height: 1.2;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(231,232,235,0.06);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--silver-dim);
  transition: all var(--transition);
  position: relative;
}

.header-btn:hover {
  background: rgba(227,136,4,0.1);
  color: var(--gold);
  border-color: rgba(227,136,4,0.3);
}

.header-btn .dot {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  border: 1.5px solid var(--base);
}

/* ─── Page Content ─── */
.page-content {
  padding: 28px;
  flex: 1;
}

/* ─── Cards ─── */
.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.card-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--silver);
}

.card-body { padding: 20px 22px; }

/* Stat Cards */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card), var(--shadow-glow); }
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(227,136,4,0.12);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--silver-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--silver);
  line-height: 1;
}

.stat-change {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-change.up   { color: #4ade80; }
.stat-change.down { color: #f87171; }

/* ─── Tables ─── */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead th {
  background: rgba(21,19,15,0.6);
  color: var(--silver-faint);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 16px;
  text-align: left;
  white-space: nowrap;
  border-bottom: 1px solid var(--glass-border);
}

tbody tr {
  border-bottom: 1px solid rgba(227,136,4,0.06);
  transition: background var(--transition);
}

tbody tr:hover { background: rgba(227,136,4,0.04); }
tbody tr:last-child { border-bottom: none; }

tbody td {
  padding: 12px 16px;
  color: var(--silver);
  vertical-align: middle;
}

/* ─── Badges / Pills ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-gold    { background: rgba(227,136,4,0.15); color: var(--gold); border: 1px solid rgba(227,136,4,0.25); }
.badge-green   { background: rgba(74,222,128,0.1);  color: #4ade80;    border: 1px solid rgba(74,222,128,0.2); }
.badge-red     { background: rgba(248,113,113,0.1); color: #f87171;    border: 1px solid rgba(248,113,113,0.2); }
.badge-blue    { background: rgba(96,165,250,0.1);  color: #60a5fa;    border: 1px solid rgba(96,165,250,0.2); }
.badge-silver  { background: rgba(231,232,235,0.08); color: var(--silver-dim); border: 1px solid rgba(231,232,235,0.12); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--base);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 16px rgba(227,136,4,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: rgba(227,136,4,0.35);
}

.btn-outline:hover {
  background: rgba(227,136,4,0.1);
  border-color: var(--gold);
}

.btn-ghost {
  background: transparent;
  color: var(--silver-dim);
  border-color: var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(231,232,235,0.06);
  color: var(--silver);
}

.btn-danger {
  background: rgba(248,113,113,0.12);
  color: #f87171;
  border-color: rgba(248,113,113,0.25);
}

.btn-danger:hover {
  background: rgba(248,113,113,0.2);
}

.btn-sm { padding: 6px 12px; font-size: 0.78rem; }
.btn-icon { padding: 7px; width: 34px; height: 34px; justify-content: center; }

/* ─── Forms ─── */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--silver-dim);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-control {
  width: 100%;
  background: rgba(21,19,15,0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: rgba(227,136,4,0.5);
  background: rgba(21,19,15,0.7);
  box-shadow: 0 0 0 3px rgba(227,136,4,0.1);
}

.form-control::placeholder { color: var(--silver-faint); }

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a3ab' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.search-box {
  position: relative;
  min-width: 220px;
}

.search-box .search-icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--silver-faint);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.search-box .form-control { padding-left: 34px; }

/* ─── Pagination ─── */
.pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  background: rgba(231,232,235,0.05);
  border: 1px solid var(--glass-border);
  color: var(--silver-dim);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition);
}

.page-btn:hover { background: rgba(227,136,4,0.1); color: var(--gold); border-color: rgba(227,136,4,0.3); }
.page-btn.active { background: var(--gold); color: var(--base); border-color: var(--gold); font-weight: 700; }
.page-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ─── Alerts / Notices ─── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.alert-success { background: rgba(74,222,128,0.1);  border: 1px solid rgba(74,222,128,0.2);  color: #4ade80; }
.alert-error   { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); color: #f87171; }
.alert-warning { background: rgba(251,191,36,0.1);  border: 1px solid rgba(251,191,36,0.2);  color: #fbbf24; }
.alert-info    { background: rgba(96,165,250,0.1);  border: 1px solid rgba(96,165,250,0.2);  color: #60a5fa; }

/* ─── Avatar / Profile images ─── */
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--base-card));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--gold);
  border: 1.5px solid rgba(227,136,4,0.25);
  flex-shrink: 0;
}

.avatar-sm { width: 28px; height: 28px; font-size: 0.68rem; }
.avatar-lg { width: 52px; height: 52px; font-size: 1.1rem; }

/* ─── Divider ─── */
.divider {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin: 16px 0;
}

/* ─── Misc ─── */
.flex        { display: flex; }
.flex-col    { display: flex; flex-direction: column; }
.items-center{ align-items: center; }
.justify-between { justify-content: space-between; }
.gap-4       { gap: 16px; }
.gap-2       { gap: 8px; }
.gap-1       { gap: 4px; }
.mt-4        { margin-top: 16px; }
.mb-4        { margin-bottom: 16px; }
.w-full      { width: 100%; }

.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.three-col-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

@media (max-width: 900px) {
  .two-col-grid, .three-col-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .page-content { padding: 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Login Page ─── */
.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--base);
  background-image:
    radial-gradient(ellipse 70% 60% at 20% 20%, rgba(227,136,4,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 80% 80%, rgba(227,136,4,0.06) 0%, transparent 60%);
  padding: 24px;
}

.login-box {
  width: 100%;
  max-width: 420px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: var(--shadow-card), 0 0 80px rgba(227,136,4,0.08);
}

.login-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.login-logo .logo-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--base);
  box-shadow: var(--shadow-glow);
}

.login-logo .logo-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--silver);
}

.login-logo .logo-sub {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.login-heading {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--silver);
  margin-bottom: 6px;
}

.login-sub {
  color: var(--silver-faint);
  font-size: 0.875rem;
  margin-bottom: 28px;
}

/* ─── Page header row ─── */
.page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.page-header-left h1 { color: var(--silver); }
.page-header-left p  { color: var(--silver-faint); font-size: 0.875rem; margin-top: 2px; }

/* ─── Empty state ─── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--silver-faint);
}

.empty-state svg { margin: 0 auto 16px; opacity: 0.4; }
.empty-state h3 { font-size: 1rem; color: var(--silver-dim); margin-bottom: 6px; }

/* ─── Tabs ─── */
.tab-list {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 20px;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--silver-faint);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-btn:hover { color: var(--silver); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ─── Mini chart placeholder ─── */
.sparkline {
  height: 40px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}

.sparkline-bar {
  flex: 1;
  background: rgba(227,136,4,0.25);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  transition: background var(--transition);
}

.sparkline-bar:hover { background: var(--gold); }

/* ─── Loading spinner ─── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(227,136,4,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Toast notifications ─── */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: var(--base-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--silver);
  font-size: 0.875rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 280px;
  max-width: 380px;
  pointer-events: all;
  animation: toastIn 0.3s ease;
}

.toast.success { border-left: 3px solid #4ade80; }
.toast.error   { border-left: 3px solid #f87171; }
.toast.warning { border-left: 3px solid #fbbf24; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
