/* ==========================================================================
   Rama Retail Store - Mobile Web App & Kiosk Styling (Updated)
   Dirancang optimal untuk Smartphone (PWA/Mobile Web), Kiosk, dan Layar Font Besar
   ========================================================================== */

:root {
  /* Brand Colors */
  --primary: #d9232d;
  /* Merah Khas Rama */
  --primary-hover: #b51a23;
  --primary-light: #fff1f2;
  --accent: #ffbc0d;
  /* Kuning Emas */
  --accent-hover: #e5a700;
  --dark: #1e293b;
  --gray-900: #0f172a;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-200: #e2e8f0;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --success: #10b981;
  --success-dark: #059669;
  --success-light: #ecfdf5;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 6px 16px -2px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 24px -4px rgba(0, 0, 0, 0.12);
  --shadow-float: 0 -4px 20px rgba(0, 0, 0, 0.08);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  min-height: 100%;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f1f5f9;
  color: var(--dark);
  line-height: 1.5;
}

body {
  display: flex;
  justify-content: center;
}

/* Main App Shell Container */
.kiosk-app {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  max-width: 1200px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.08);
}

/* Top Navigation Bar */
.kiosk-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 30;
  flex-shrink: 0;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.brand-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary) 0%, #ef4444 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 3px 8px rgba(217, 35, 45, 0.3);
  flex-shrink: 0;
}

.brand-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--gray-900);
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-title span {
  color: var(--primary);
}

.brand-subtitle {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-admin-link:active {
  transform: scale(0.95);
}

/* Horizontal Scrollable Category Bar for Mobile / Kiosk */
.mobile-category-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.5rem 0.75rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: 0.5rem;
  z-index: 20;
  flex-shrink: 0;
  scrollbar-width: none;
}

.mobile-category-nav::-webkit-scrollbar {
  display: none;
}

.cat-chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  color: var(--gray-700);
  font-size: 0.825rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-bounce);
  flex-shrink: 0;
}

.cat-chip-btn i {
  font-size: 0.95rem;
  color: var(--gray-500);
}

.cat-chip-btn:active {
  transform: scale(0.94);
}

.cat-chip-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 3px 8px rgba(217, 35, 45, 0.3);
}

.cat-chip-btn.active i {
  color: var(--white);
}

/* Main Body Content */
.kiosk-body {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Search Bar Area */
.kiosk-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f8fafc;
}

.main-topbar {
  padding: 0.75rem 1rem 0.5rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.category-dropdown {
  flex-shrink: 0;
}

.category-select {
  padding: 0.65rem 2rem 0.65rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 1em;
}

.category-select:focus {
  background-color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 35, 45, 0.12);
}

.search-box {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-box i {
  position: absolute;
  left: 0.95rem;
  color: var(--gray-500);
  font-size: 0.95rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}

.search-input:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 35, 45, 0.12);
}

/* Products Grid View - Flexible min-height to prevent text clipping */
.products-container {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.85rem 1rem 6.5rem 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* Product Card - Edge to edge full-width image styling */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  user-select: none;
  min-height: 250px;
  overflow: hidden;
  /* Clips image top corners seamlessly */
}

.product-card:active {
  transform: scale(0.97);
}

.product-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  width: 100%;
}

/* Full Width Bigger Product Image Container (1:1 Aspect Ratio) */
.product-icon-wrap {
  width: calc(100% + 1.5rem);
  /* Spans full width across card padding */
  aspect-ratio: 1 / 1;
  /* Exactly square (width == height) */
  margin-top: -0.85rem;
  /* Offsets card top padding */
  margin-left: -0.75rem;
  /* Offsets card left padding */
  margin-right: -0.75rem;
  /* Offsets card right padding */
  margin-bottom: 0.75rem;
  background: var(--gray-100);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--primary);
  transition: var(--transition);
  overflow: hidden;
  flex-shrink: 0;
}

.product-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card:hover .product-icon-wrap {
  transform: scale(1.02);
}

.product-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.25;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  min-height: 2.25em;
  padding: 0 0.25rem;
}

.product-desc {
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  margin-bottom: 0.5rem;
  padding: 0 0.25rem;
}

.product-card-bottom {
  margin-top: auto;
  width: 100%;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.4rem;
  word-break: break-word;
}

.product-price-original {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 0.85em;
}

.product-discount {
  font-size: 0.75em;
  font-weight: bold;
}

.product-price-sale {
  font-weight: bold;
}

.product-unit {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 500;
}

.btn-add-kiosk {
  width: 100%;
  padding: 0.6rem 0.5rem;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #1e293b;
  border: none;
  font-weight: 800;
  font-size: 0.825rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: 0 2px 5px rgba(255, 188, 13, 0.4);
  transition: var(--transition);
}

.btn-add-kiosk:active {
  background: var(--accent-hover);
  transform: scale(0.95);
}

.product-stock-tag {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 5;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-700);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-xs);
}

.product-stock-tag.low {
  background: #fee2e2;
  color: #dc2626;
}

/* Empty Catalog State */
.empty-catalog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem;
  color: var(--gray-500);
  text-align: center;
  gap: 0.75rem;
}

.empty-catalog i {
  font-size: 3rem;
  color: var(--gray-300);
}

/* Sticky Mobile Bottom Floating Order Bar - Safe for large text */
.kiosk-footer-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-float);
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom, 0px)) 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  z-index: 40;
}

.cart-summary-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  min-width: 0;
  flex-shrink: 1;
}

.cart-summary-pill:active {
  background: var(--gray-100);
}

.cart-icon-bubble {
  position: relative;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: #1e293b;
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

.cart-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cart-meta-label {
  font-size: 0.625rem;
  color: var(--gray-500);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-meta-total {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-actions {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  flex-shrink: 0;
}

.btn-checkout {
  padding: 0.7rem 1.1rem;
  background: linear-gradient(135deg, var(--primary) 0%, #c0131d 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(217, 35, 45, 0.35);
  transition: var(--transition-bounce);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-checkout:active {
  transform: scale(0.96);
}

.btn-checkout:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-clear-cart {
  width: 38px;
  height: 38px;
  background: var(--gray-100);
  color: var(--gray-700);
  border: none;
  border-radius: 50%;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-clear-cart:active {
  background: #fee2e2;
  color: var(--danger);
}

/* Bottom Sheet / Modal for Mobile & Desktop */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 0;
}

@media (min-width: 640px) {
  .modal-overlay {
    align-items: center;
    padding: 1rem;
  }
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
}

@media (min-width: 640px) {
  .modal-card {
    border-radius: var(--radius-xl);
    transform: scale(0.95);
  }
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .modal-overlay.active .modal-card {
    transform: scale(1);
  }
}

.modal-drag-indicator {
  width: 36px;
  height: 4px;
  background: var(--gray-300);
  border-radius: var(--radius-full);
  margin: 0.5rem auto 0 auto;
}

.modal-header {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.btn-close-modal {
  background: var(--gray-100);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-close-modal:active {
  background: var(--gray-200);
}

.modal-body {
  padding: 1.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}

.modal-footer {
  padding: 0.85rem 1.25rem calc(0.85rem + env(safe-area-inset-bottom, 0px)) 1.25rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

/* Kirim Pesanan via Whatsapp scrollable */
#checkout-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

#checkout-form .modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

#product-form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

#product-form .modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

/* Cart Items in Drawer */
.cart-item-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  gap: 0.65rem;
  flex-wrap: wrap;
}

.cart-item-info {
  flex: 1 1 180px;
  min-width: 0;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gray-900);
  word-break: break-word;
}

.cart-item-sub {
  font-size: 0.75rem;
  color: var(--gray-500);
}

.cart-item-note {
  font-size: 0.7rem;
  color: var(--primary);
  font-style: italic;
  margin-top: 2px;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 2px;
  flex-shrink: 0;
}

.btn-qty {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--dark);
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
}

.btn-qty:active {
  background: var(--primary);
  color: var(--white);
}

.qty-val {
  min-width: 26px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.cart-item-price {
  font-weight: 800;
  font-size: 0.875rem;
  min-width: 60px;
  text-align: right;
  color: var(--gray-900);
  flex-shrink: 0;
}

/* Forms */
.form-group {
  margin-bottom: 0.85rem;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.3rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-300);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 35, 45, 0.12);
}

/* WhatsApp Order Preview Box */
.order-preview-box {
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.775rem;
  white-space: pre-wrap;
  color: var(--gray-900);
  max-height: 180px;
  overflow-y: auto;
  line-height: 1.4;
  margin-bottom: 0.85rem;
  user-select: text;
  word-break: break-all;
}

.copy-success-badge {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: var(--success-light);
  border: 1px solid var(--success);
  border-radius: var(--radius-sm);
  color: var(--success-dark);
  font-weight: 700;
  font-size: 0.825rem;
  margin-bottom: 0.85rem;
}

.copy-success-badge.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.copy-btn-large {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
  transition: var(--transition);
}

.copy-btn-large:active {
  transform: scale(0.97);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}

.toast {
  cursor: pointer;
  background: var(--dark);
  color: var(--white);
  padding: 0.65rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition-bounce);
  text-align: center;
}

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

.toast-success {
  background: #065f46;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
