:root {
  --color-primary: #3a4bde;
  --color-primary-dark: #2c39ad;
  --color-accent: #25d366;
  --color-bg: #f7f8fc;
  --color-surface: #ffffff;
  --color-text: #1c1e2a;
  --color-text-muted: #6b7080;
  --color-border: #e6e8f0;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(20, 25, 60, 0.06);
  --shadow-hover: 0 8px 24px rgba(20, 25, 60, 0.12);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
}

.brand .logo-emoji {
  font-size: 1.6rem;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img.logo-img-sm {
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

.brand small {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.header-contact {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.header-contact a:hover {
  color: var(--color-primary);
}

.btn-header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--color-accent);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.btn-header-whatsapp:hover {
  filter: brightness(0.95);
  color: #fff !important;
}

@media (max-width: 480px) {
  .btn-header-whatsapp span.label {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header .container {
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
    font-size: 1rem;
    gap: 8px;
  }

  .brand > span {
    min-width: 0;
    overflow: hidden;
  }

  .brand [data-store-name] {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    display: none;
  }

  .logo-img {
    height: 28px;
  }

  .header-contact {
    flex: 0 0 auto;
    gap: 10px;
  }

  .header-contact [data-store-phone] {
    display: none;
  }
}

/* Hero carousel */
.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 20px auto 0;
  max-width: 1200px;
  box-shadow: var(--shadow);
}

.hero-track {
  display: flex;
  transition: transform 0.5s ease;
}

.hero-slide {
  min-width: 100%;
  aspect-ratio: 16 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
}

.hero-dots button.active {
  background: #fff;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow.prev {
  left: 12px;
}
.hero-arrow.next {
  right: 12px;
}

@media (max-width: 480px) {
  .hero-slide {
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 14px 46px;
  }

  .hero-arrow {
    width: 26px;
    height: 26px;
    font-size: 0.85rem;
  }

  .hero-arrow.prev {
    left: 6px;
  }
  .hero-arrow.next {
    right: 6px;
  }
}

/* Layout: filters + grid */
.catalog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  margin-top: 28px;
}

@media (max-width: 800px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }
}

.filters {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px;
  align-self: start;
  position: sticky;
  top: 90px;
}

.filters h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

.filters .filter-group {
  margin-bottom: 22px;
}

.filters label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  cursor: pointer;
}

.filters select,
.filters input[type="number"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9rem;
}

.price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.filters button.clear {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-border);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  color: var(--color-text-muted);
}

.filters button.clear:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Product grid */
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  padding-bottom: 60px;
}

.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.product-card .thumb {
  aspect-ratio: 1 / 1;
  background: #f0f2fa;
  overflow: hidden;
  position: relative;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-out {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.product-card .info {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card .category {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.product-card .name {
  font-weight: 600;
  font-size: 0.98rem;
  min-height: 2.4em;
}

.product-card .price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-top: auto;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  flex: 1;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-whatsapp {
  background: var(--color-accent);
  color: #fff;
  flex: 1;
}

.btn-whatsapp:hover {
  filter: brightness(0.95);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.empty-state {
  text-align: center;
  color: var(--color-text-muted);
  padding: 60px 20px;
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding-bottom: 40px;
  }

  .product-card .info {
    padding: 9px 10px 10px;
    gap: 4px;
  }

  .product-card .category {
    font-size: 0.62rem;
  }

  .product-card .name {
    font-size: 0.82rem;
    min-height: 2.1em;
  }

  .product-card .price {
    font-size: 0.92rem;
  }

  .card-actions {
    flex-direction: column;
    gap: 6px;
  }

  .card-actions .btn {
    width: 100%;
    padding: 8px;
    font-size: 0.78rem;
  }

  .card-actions .btn.icon-only {
    width: 100%;
  }
}

/* Floating WhatsApp button */
.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--color-accent);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 100;
}

.float-whatsapp:hover {
  filter: brightness(0.96);
}

@media (max-width: 640px) {
  /* En móvil el header ya tiene su propio botón de WhatsApp siempre visible */
  .float-whatsapp {
    display: none;
  }
}

/* Footer */
.site-footer {
  background: #1c1e2a;
  color: #c9cbdb;
  margin-top: 40px;
  padding: 36px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.site-footer p,
.site-footer a {
  font-size: 0.88rem;
  color: #c9cbdb;
  margin: 0 0 8px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 0.78rem;
  color: #8a8da3;
  text-align: center;
}

/* Product detail page */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 32px 0 60px;
}

@media (max-width: 800px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

.product-detail .gallery img {
  width: 100%;
  border-radius: var(--radius);
  background: #f0f2fa;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumb-strip {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}

.thumb-btn {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f2fa;
  cursor: pointer;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumb-btn.active {
  border-color: var(--color-primary);
}

.product-video {
  margin: 40px 0;
}

.product-video h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.product-detail .category {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.product-detail h1 {
  margin: 6px 0 10px;
  font-size: 1.8rem;
}

.product-detail .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.stock-status {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.stock-status.in {
  color: #1e8449;
}
.stock-status.out {
  color: #c0392b;
}

.product-detail .description {
  color: var(--color-text-muted);
  margin-bottom: 22px;
  white-space: pre-line;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-control button {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-bg);
  cursor: pointer;
  font-size: 1.1rem;
}

.qty-control input {
  width: 46px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  height: 36px;
  font-size: 1rem;
}

.detail-actions {
  display: flex;
  gap: 12px;
}

.detail-actions .btn {
  padding: 12px 18px;
  font-size: 0.95rem;
}

.breadcrumb {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.related h2 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

/* Buttons: icon-only + disabled */
.btn.icon-only {
  flex: 0 0 auto;
  width: 40px;
  padding: 0;
  font-size: 1.1rem;
}

.btn:disabled,
.btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Draft preview banner */
.draft-banner {
  background: #fff3cd;
  color: #7a5b00;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-bottom: 1px solid #f0d98c;
}

.draft-banner a {
  font-weight: 700;
  text-decoration: underline;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 90px;
  right: 22px;
  background: #1c1e2a;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 200;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Cart header toggle */
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Cart drawer */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 30, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 150;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(380px, 92vw);
  background: var(--color-surface);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 160;
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer-header h3 {
  margin: 0;
}

.cart-drawer-header button {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 18px;
}

.empty-cart {
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 40px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #f0f2fa;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-info .name {
  font-size: 0.9rem;
  font-weight: 600;
}

.cart-item-info .price {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.qty-control.small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-control.small button {
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  border-radius: 6px;
  cursor: pointer;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 1rem;
}

.cart-remove:hover {
  color: #c0392b;
}

.cart-drawer-footer {
  padding: 16px 18px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ---------- Admin panel ---------- */
.admin-body {
  background: var(--color-bg);
}

.admin-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 14px 0;
}

.admin-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h1 {
  font-size: 1.15rem;
  margin: 0;
}

.admin-notice {
  background: #eaf1fb;
  color: #1c3f66;
  font-size: 0.85rem;
  padding: 12px 16px;
  border-radius: var(--radius);
  margin: 18px 0;
  line-height: 1.5;
}

.admin-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  margin: 20px 0 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }
}

.admin-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 20px;
}

.admin-panel h2 {
  margin-top: 0;
  font-size: 1.05rem;
}

.form-field {
  margin-bottom: 14px;
}

.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input[type="text"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
}

.form-field textarea {
  min-height: 90px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.admin-image-gallery:empty {
  margin-bottom: 0;
}

.gallery-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f2fa;
  border: 1px solid var(--color-border);
}

.gallery-thumb.is-main {
  border: 2px solid var(--color-primary);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(58, 75, 222, 0.85);
  color: #fff;
  font-size: 0.6rem;
  text-align: center;
  padding: 1px 0;
}

.gallery-thumb-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.form-actions .btn {
  flex: 1;
}

.admin-list-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-list-toolbar .btn {
  white-space: nowrap;
}

.admin-table-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow-x: auto;
}

table.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

table.admin-table th,
table.admin-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

table.admin-table img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  background: #f0f2fa;
}

table.admin-table .desc-cell {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-text-muted);
}

.stock-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}

.stock-pill.in {
  background: #eafaf1;
  color: #1e8449;
}

.stock-pill.out {
  background: #fdeaea;
  color: #c0392b;
}

.row-actions {
  display: flex;
  gap: 6px;
}

.row-actions button {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 6px;
  padding: 5px 9px;
  font-size: 0.8rem;
  cursor: pointer;
}

.row-actions button:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.row-actions button.danger:hover {
  border-color: #c0392b;
  color: #c0392b;
}

.unpublished-pill {
  background: #fff3cd;
  color: #7a5b00;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Admin login gate */
.admin-login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  padding: 20px;
}

.admin-login-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.admin-login-logo {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.admin-login-box h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.admin-login-box p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin: 0 0 18px;
}

.admin-login-box input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.admin-login-box .btn {
  width: 100%;
}

.admin-login-error {
  color: #c0392b;
  font-size: 0.85rem;
  min-height: 1.2em;
  margin: 10px 0 0;
}

.admin-login-back {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.admin-login-back:hover {
  color: var(--color-primary);
}
