/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6c63ff;
  --primary-dark: #574fd6;
  --accent: #ff6584;
  --bg: #f7f8fc;
  --white: #ffffff;
  --text: #2d2d3a;
  --text-light: #6e6e8a;
  --border: #e4e4f0;
  --shadow: 0 8px 32px rgba(108,99,255,0.10);
  --radius: 18px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  text-decoration: none;
}

.logo-icon { font-size: 1.5rem; }

.logo-img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.nav { display: flex; gap: 1.8rem; }

.nav a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav a:hover { color: var(--primary); }

.cart-btn {
  position: relative;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background var(--transition), transform var(--transition);
}

.cart-btn:hover { background: var(--primary-dark); transform: scale(1.05); }

.cart-count {
  background: var(--accent);
  color: #fff;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 0.45rem;
  min-width: 20px;
  text-align: center;
}

/* ===========================
   HERO
=========================== */
.hero {
  background: linear-gradient(135deg, #6c63ff 0%, #a89cff 50%, #ff6584 100%);
  padding: 100px 2rem 90px;
  text-align: center;
  color: #fff;
}

.hero-content { max-width: 700px; margin: 0 auto; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-highlight {
  background: rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 0 0.3em;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.btn-hero {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ===========================
   PRODUCTS SECTION
=========================== */
.products-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 2rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--primary);
  border-radius: 4px;
  margin: 0.6rem auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  justify-items: center;
}

/* ===========================
   PRODUCT CARD
=========================== */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
  max-width: 370px;
  display: flex;
  flex-direction: column;
}

.product-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #ede9ff 0%, #fce4ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-emoji {
  font-size: 5rem;
  line-height: 1;
}

.product-info {
  padding: 1.5rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.btn-add {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Poppins', sans-serif;
}

.btn-add:hover { background: var(--primary-dark); }

/* ===========================
   CONTACT SECTION
=========================== */
.contact-section {
  background: var(--white);
  padding: 80px 2rem;
  text-align: center;
}

.contact-sub {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }

/* ===========================
   BUTTONS (shared)
=========================== */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.85rem;
}

/* ===========================
   CART PANEL
=========================== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 200;
}

.cart-overlay.open { display: block; }

.cart-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 95vw;
  height: 100%;
  background: var(--white);
  z-index: 201;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  border-radius: var(--radius) 0 0 var(--radius);
}

.cart-panel.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); }

.cart-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--transition);
}

.cart-close:hover { color: var(--accent); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-empty { color: var(--text-light); font-size: 0.95rem; text-align: center; padding: 2rem 0; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.cart-item-emoji { font-size: 2.2rem; }

.cart-item-info { flex: 1; }

.cart-item-name { font-weight: 600; font-size: 0.9rem; }

.cart-item-price { color: var(--primary); font-weight: 600; font-size: 0.85rem; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

 qty-btn {
  background: var(--border);
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

 qty-btn:hover { background: var(--primary); color: #fff; }

 qty-num { font-weight: 700; font-size: 0.95rem; min-width: 20px; text-align: center; }

.cart-footer {
  padding: 1.4rem 1.6rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.cart-total strong { font-size: 1.3rem; color: var(--text); }

.btn-checkout { width: 100%; justify-content: center; display: flex; gap: 0.5rem; }
.btn-whatsapp { background: #25D366 !important; }
.btn-whatsapp:hover { background: #1ebe5a !important; }

/* ===========================
   MODAL DE PAGO
=========================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 300;
}

.modal-overlay.open { display: block; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  opacity: 0;
  pointer-events: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  width: 95%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 301;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s;
}

.modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color var(--transition);
}

.modal-close:hover { color: var(--accent); }

.modal-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-form { display: flex; flex-direction: column; gap: 0.9rem; }

.payment-form label { font-size: 0.82rem; font-weight: 600; color: var(--text-light); margin-bottom: -0.4rem; }

.payment-form input {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.payment-form input:focus { border-color: var(--primary); }

.card-input-wrap { position: relative; }

.card-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #1a1f71;
  pointer-events: none;
}

.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.order-summary {
  background: var(--bg);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

.order-summary strong { color: var(--text); }

.btn-pay { margin-top: 0.5rem; width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }

.secure-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

/* ===========================
   TOAST
=========================== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--text);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 400;
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
  pointer-events: none;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===========================
   FOOTER ADMIN BUTTON
=========================== */
.footer { position: relative; }

.admin-access-btn {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.4);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-access-btn:hover {
  background: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}

/* ===========================
   PANEL ADMINISTRADOR
=========================== */
.admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 500;
}

.admin-overlay.open { display: block; }

.admin-panel {
  position: fixed;
  top: 0;
  left: -520px;
  width: 480px;
  max-width: 95vw;
  height: 100%;
  background: var(--white);
  z-index: 501;
  box-shadow: 8px 0 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow-y: auto;
}

.admin-panel.open { left: 0; }

.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1;
}

.admin-panel-header h3 { font-size: 1.05rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 0.5rem; }

.admin-panel-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.admin-panel-close:hover { background: rgba(255,255,255,0.35); }

.admin-section {
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid var(--border);
}

.admin-section-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.admin-form label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: -0.4rem;
}

.admin-form input,
.admin-form textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
  width: 100%;
}

.admin-form input:focus,
.admin-form textarea:focus { border-color: var(--primary); }

.img-upload-wrap {
  border: 2px dashed var(--border);
  border-radius: 12px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  overflow: hidden;
  position: relative;
  background: var(--bg);
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  gap: 0.3rem;
}

.img-upload-wrap:hover { border-color: var(--primary); background: #f0eeff; }

.img-upload-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 10px;
}

#adminImgPlaceholder { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; font-size: 1.5rem; }

/* Lista de productos en admin */
.admin-product-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 0.7rem;
}

.admin-product-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  background: #ede9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  overflow: hidden;
}

.admin-product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.admin-product-info { flex: 1; }

.admin-product-name { font-weight: 600; font-size: 0.9rem; }

.admin-product-price { color: var(--primary); font-size: 0.85rem; font-weight: 600; }

.btn-delete {
  background: #fff0f3;
  border: 1px solid #ffd6e0;
  color: var(--accent);
  border-radius: 8px;
  padding: 0.45rem 0.8rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-delete:hover { background: #ffe0e8; }

.btn-logout {
  margin: 1.5rem 1.8rem;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.7rem 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.btn-logout:hover { border-color: var(--accent); color: var(--accent); }

.admin-login-error {
  color: var(--accent);
  font-size: 0.82rem;
  min-height: 1rem;
  font-weight: 500;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 600px) {
  .nav { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { max-width: 100%; }
  .cart-panel { width: 100%; border-radius: 0; }
  .admin-panel { width: 100%; border-radius: 0; }
}

/* ===========================
   ADMIN - NUEVAS SECCIONES
=========================== */
.sortable-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sortable-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: grab;
  transition: box-shadow var(--transition);
}

.sortable-item:hover {
  box-shadow: var(--shadow);
}

.sortable-item.dragging {
  opacity: 0.7;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Categorías */
.admin-category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.6rem;
}

.admin-category-item .btn-delete {
  background: #fff0f3;
  border: 1px solid #ffd6e0;
  color: var(--accent);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--transition);
}

.admin-category-item .btn-delete:hover {
  background: #ffe0e8;
}
/* ===========================
   MODAL PEDIDO CONFIRMADO
=========================== */
.order-confirm-icon {
  font-size: 3.5rem;
  text-align: center;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.order-confirm-number {
  background: linear-gradient(135deg, #f0eeff, #ffe8f0);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0.8rem 0 0.5rem;
}

.order-confirm-number strong {
  display: block;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.order-confirm-summary {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-top: 0.5rem;
}

/* ===========================
   PEDIDOS EN ADMIN
=========================== */
.admin-order-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
}

.admin-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-order-id {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.admin-order-date {
  font-size: 0.78rem;
  color: var(--text-light);
}

.admin-order-customer {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.admin-order-products {
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

.admin-order-total {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.admin-order-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.order-status-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}

.order-status-select:focus { border-color: var(--primary); }

.order-status-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.status-pending   { background: #fff3cd; color: #856404; }
.status-making    { background: #cff4fc; color: #055160; }
.status-shipped   { background: #d1e7dd; color: #0f5132; }
.status-delivered { background: #e8d5ff; color: #5a189a; }