:root {
  --bg: #ffffff;
  --card: #fff9f0;
  --muted: #666666;
  --text: #333333;
  --brand: #ff8c00;
  --brand-700: #e67300;
  --accent: #ffcc00;
  --danger: #ff3333;
  --success: #28a745;
  --warning: #ff9933;
  --shadow: 0 5px 15px rgba(0,0,0,0.1);
  --radius: 16px;
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: "Cairo", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Layout */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
  padding: 0 4vw;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--brand);
  white-space: nowrap;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.logo-badge {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}

.logo svg {
  width: 22px;
  height: 22px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.btn {
  border: 1px solid rgba(0,0,0,.1);
  background: white;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0,0,0,.05);
  font-size: 20px;
  font-weight: 600;
  outline: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.btn:active {
  transform: translateY(0);
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  border-color: transparent;
  color: white;
  font-weight: 700;
}

.btn.icon {
  padding: 10px;
}

.btn.danger {
  background: var(--danger);
  color: white;
  border-color: transparent;
}

.btn.success {
  background: var(--success);
  color: white;
  border-color: transparent;
}

.btn.warning {
  background: var(--warning);
  color: white;
  border-color: transparent;
}

.btn.block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn.whatsapp {
  background: #25d366;
  color: white;
  border-color: transparent;
}

.btn.whatsapp:hover {
  background: #128c7e;
}

/* Loading state */
.btn.loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}

.btn.loading:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid rgba(255,255,255,.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
}

.hero-card {
  background: radial-gradient(1200px 600px at 100% -100%, rgba(255,140,0,.1), transparent 55%), 
              linear-gradient(180deg, var(--card), white);
  border: 1px solid rgba(255,140,0,.2);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(24px, 6vw, 44px);
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--text);
}

.hero p {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: clamp(14px, 3vw, 16px);
}

.hero .cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-banner {
  position: relative;
  margin-top: 20px;
}

.hero-banner img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.chip {
  font-size: .84rem;
  color: #5c3b00;
  background: linear-gradient(135deg, #ffe0b3, #ffcc66);
  border: 1px solid #ffcc66;
  padding: 8px 12px;
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Toolbar */
.toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 16px 0 22px;
}

.input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,.1);
  background: white;
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,.05);
  transition: var(--transition);
}

.input:focus-within {
  border-color: var(--brand);
  box-shadow: 0 2px 8px rgba(255,140,0,.2);
}

.input input {
  all: unset;
  direction: rtl;
  flex: 1;
  width: 100%;
  font-size: 14px;
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
}

.filters::-webkit-scrollbar {
  display: none;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.1);
  cursor: pointer;
  background: white;
  font-size: .95rem;
  box-shadow: 0 2px 5px rgba(0,0,0,.05);
  white-space: nowrap;
  transition: var(--transition);
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,.1);
}

.pill.active {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
  box-shadow: 0 2px 8px rgba(255,140,0,.3);
}

/* Products Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

@media (min-width: 600px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: white;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.thumb {
  aspect-ratio: 4/3;
  background: #f5f5f5;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .thumb img {
  transform: scale(1.05);
}

.thumb .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #fff2cc, #ffe699);
  color: #7a5c00;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: .85rem;
  border: 1px solid #ffe699;
  z-index: 1;
}

.content {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.title {
  font-weight: 800;
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}

.price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.price del {
  color: var(--muted);
  font-size: 13px;
}

/* Product Details Page */
.product-details-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .product-details-container {
    grid-template-columns: 1fr 1fr;
  }
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.main-image {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.1);
}

.thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) rgba(0,0,0,.1);
}

.thumbnails::-webkit-scrollbar {
  height: 4px;
}

.thumbnails::-webkit-scrollbar-thumb {
  background-color: var(--brand);
  border-radius: 2px;
}

.thumbnails::-webkit-scrollbar-track {
  background: rgba(0,0,0,.1);
  border-radius: 2px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.thumbnail:hover {
  border-color: var(--brand);
  transform: scale(1.05);
}

.thumbnail.active {
  border-color: var(--brand);
}

.product-info {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.1);
}

.product-title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--text);
}

.product-price {
  font-size: 22px;
  color: var(--brand);
  font-weight: 800;
  margin: 10px 0;
}

.product-old-price {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 10px;
}

.product-badge {
  display: inline-block;
  background: var(--accent);
  color: #5c3b00;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 15px;
}

.product-description {
  color: var(--muted);
  line-height: 1.6;
  margin: 15px 0;
}

.back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  cursor: pointer;
  color: var(--brand);
  font-weight: 600;
  transition: var(--transition);
  padding: 8px 0;
}

.back-btn:hover {
  color: var(--brand-700);
}

.back-btn svg {
  width: 18px;
  height: 18px;
}

.customer-form {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.1);
  margin-bottom: 20px;
}

.customer-form h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--brand);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  transition: var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,140,0,.2);
}

.field textarea {
  resize: vertical;
  min-height: 80px;
}

.cart-status {
  background: rgba(0,0,0,.05);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.cart-status.in-cart {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.cart-status.in-cart i {
  color: var(--success);
}

.cart-status.not-in-cart {
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.2);
}

.cart-status.not-in-cart i {
  color: var(--brand);
}

.details-actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 10px;
  flex: 1;
  min-width: 150px;
  justify-content: space-between;
}

.qty-selector button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--text);
}

.qty-selector button:hover {
  background: rgba(0,0,0,.05);
}

.qty-selector button:active {
  background: rgba(0,0,0,.1);
}

.qty-selector span {
  min-width: 30px;
  text-align: center;
  font-weight: 700;
}

/* Checkout Page */
.checkout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .checkout {
    grid-template-columns: 1fr 1fr;
  }
}

.pane {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.1);
}

.pane h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.items {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.05);
}

.cart-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item > div {
  flex: 1;
}

.cart-item strong {
  font-weight: 700;
  color: var(--brand);
}

.cart-item-actions {
  display: flex;
  gap: 8px;
}

.cart-item-actions button {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-item-actions button i {
  font-size: 12px;
}

.totals {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.1);
}

.totals div {
  display: flex;
  justify-content: space-between;
}

/* Footer */
.footer {
  padding: 24px 0;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(0,0,0,.1);
  margin-top: 28px;
  font-size: 14px;
  background: rgba(0,0,0,.02);
}

.footer a {
  color: var(--brand);
  font-weight: 600;
}

.muted {
  color: var(--muted);
  font-size: 14px;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 40px 20px;
  grid-column: 1 / -1;
}

.empty-state i {
  font-size: 48px;
  color: rgba(0,0,0,.1);
  margin-bottom: 16px;
}

.empty-state p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideUp 0.3s ease;
}

.toast i {
  font-size: 18px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

/* Mobile specific fixes */
@media (max-width: 480px) {
  .logo-badge {
    width: 40px;
    height: 40px;
  }
  
  .btn {
    padding: 8px 12px;
    font-size: 13px;
  }
  
  .hero-card {
    padding: 16px;
  }
  
  .chip {
    font-size: 12px;
    padding: 6px 10px;
  }
  
  .product-title {
    font-size: 20px;
  }
  
  .product-price {
    font-size: 20px;
  }
  
  .details-actions {
    flex-direction: column;
  }
  
  .qty-selector {
    justify-content: space-between;
  }
  
  .cart-item {
    flex-wrap: wrap;
  }
  
  .cart-item > div {
    flex: 1 0 60%;
  }
  
}

/* Admin Panel */
.admin-panel {
  display: none;
  padding: 20px 0;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0,0,0,.1);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.admin-table th {
  background-color: var(--brand);
  color: white;
  text-align: right;
  padding: 12px 15px;
  font-weight: 700;
}

.admin-table td {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0,0,0,.05);
  text-align: right;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:nth-child(even) {
  background-color: rgba(0,0,0,.01);
}

.admin-table tr:hover {
  background-color: rgba(255,140,0,.05);
}

.admin-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.admin-form {
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.1);
  margin-top: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.form-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--brand);
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  padding-bottom: 10px;
}

.admin-tab {
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  background: rgba(0,0,0,.03);
  transition: var(--transition);
}

.admin-tab.active {
  background: var(--brand);
  color: white;
}

.admin-content {
  display: none;
}

.admin-content.active {
  display: block;
}

.image-uploader {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.image-uploader input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.image-preview {
  width: 100%;
  height: 200px;
  border: 2px dashed rgba(0,0,0,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.02);
  overflow: hidden;
}

.image-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.image-preview-placeholder {
  text-align: center;
  color: var(--muted);
}

.image-preview-placeholder i {
  font-size: 48px;
  margin-bottom: 10px;
  display: block;
}

.product-images-manager {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.product-image-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.1);
}

.product-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-remove {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(255,0,0,.7);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
}

.add-image-btn {
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(0,0,0,.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.02);
  cursor: pointer;
  color: var(--muted);
  transition: var(--transition);
}

.add-image-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.add-image-btn i {
  font-size: 24px;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.stat-card {
  background: white;
  border-radius: var(--radius);
  padding: 15px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,.1);
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--brand);
  margin: 5px 0;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
}

.dashboard-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.admin-search {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.admin-search .input {
  flex: 1;
}

.url-input-group {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.url-input-group .btn {
  flex-shrink: 0;
}

.admin-access-info {
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.3);
  border-radius: var(--radius);
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.admin-access-info h3 {
  color: var(--brand);
  margin-bottom: 10px;
}

.admin-access-info p {
  color: var(--muted);
  margin-bottom: 10px;
}

.admin-access-info code {
  background: rgba(0,0,0,0.05);
  padding: 5px 10px;
  border-radius: 6px;
  font-family: monospace;
  color: var(--brand);
}

/* Login Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-header h2 {
  color: var(--brand);
  margin-bottom: 10px;
}

.modal-body {
  margin-bottom: 20px;
}

.modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.login-info {
  background: rgba(255,140,0,0.1);
  border: 1px solid rgba(255,140,0,0.3);
  border-radius: var(--radius);
  padding: 15px;
  margin-bottom: 20px;
  text-align: center;
}

.login-info h3 {
  color: var(--brand);
  margin-bottom: 10px;
}

.login-info p {
  color: var(--muted);
  margin-bottom: 5px;
}

.login-info code {
  background: rgba(0,0,0,0.05);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--brand);
}