/* ================================
   CSS Variables & Reset
================================ */
:root {
  --primary: #c45c26;
  --primary-dark: #a34a1e;
  --secondary: #2d5a27;
  --accent: #d4a574;
  --background: #0f0f0f;
  --surface: #1a1a1a;
  --surface-elevated: #242424;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --border: #2a2a2a;
  --success: #22c55e;
  --warning: #eab308;
  --danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #121212;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
}

/* ================================
   Mobile Container
================================ */
.mobile-container {
  width: 100%;
  max-width: 430px;
  min-height: 100vh;
  background-color: var(--background);
  position: relative;
  overflow-x: hidden;
  box-shadow: 0 0 60px rgba(196, 92, 38, 0.1);
}

/* ================================
   Header
================================ */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--background) 0%, rgba(15, 15, 15, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-icon {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.btn-icon:hover {
  background: var(--surface-elevated);
  transform: scale(1.05);
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo i {
  font-size: 1.4rem;
  color: var(--primary);
}

/* ================================
   Sidebar
================================ */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: var(--surface);
  z-index: 999;
  transition: var(--transition);
  padding: 20px;
  overflow-y: auto;
}

.sidebar.active {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.btn-close-sidebar {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--surface-elevated);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-close-sidebar:hover {
  background: var(--primary);
  color: var(--text-primary);
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 8px;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: var(--transition);
  font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--text-primary);
}

.sidebar-menu a i {
  font-size: 1.2rem;
}

/* ================================
   Main Content
================================ */
.main-content {
  padding-bottom: 80px;
}

/* ================================
   Promo Slider
================================ */
.promo-slider {
  padding: 16px;
}

.slider-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: var(--radius-lg);
  min-height: 160px;
  position: relative;
  overflow: hidden;
}

.slide-content::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.slide-text {
  position: relative;
  z-index: 1;
  flex: 1;
}

.promo-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.slide-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.slide-text p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 4px;
}

.slide-text small {
  font-size: 0.75rem;
  opacity: 0.7;
}

.slide-image {
  position: relative;
  z-index: 1;
}

.slide-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

/* ================================
   Ad Banner
================================ */
.ad-banner {
  padding: 0 16px;
  margin-bottom: 16px;
}

.ad-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--surface-elevated) 0%, var(--surface) 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.ad-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ad-text {
  flex: 1;
  min-width: 0;
}

.ad-title {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.ad-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ad-btn {
  padding: 8px 16px;
  background: var(--primary);
  color: var(--text-primary);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.ad-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
}

/* ================================
   Table Info
================================ */
.table-info {
  padding: 0 16px;
  margin-bottom: 20px;
}

.table-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.table-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a3d15 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.table-details {
  flex: 1;
}

.table-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.table-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-badge.active {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

/* ================================
   Menu Section
================================ */
.menu-section {
  padding: 0 16px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.btn-search {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-search:hover {
  background: var(--surface-elevated);
  color: var(--primary);
}

/* ================================
   Category Tabs
================================ */
.category-tabs {
  margin-bottom: 20px;
}

.category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 25px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.category-tab i {
  font-size: 1rem;
}

.category-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.category-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: var(--primary);
  color: var(--text-primary);
}

/* ================================
   Menu List
================================ */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.menu-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-item.hidden {
  display: none;
}

.item-image {
  position: relative;
  flex-shrink: 0;
}

.item-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.item-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.item-badge.bestseller {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
}

.item-badge.promo {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
}

.item-badge.new {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
}

.item-details {
  flex: 1;
  min-width: 0;
}

.item-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.item-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.item-price-old {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.item-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--warning);
}

.item-rating span {
  color: var(--text-secondary);
}

.btn-add-item {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-add-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(196, 92, 38, 0.4);
}

.btn-add-item:active {
  transform: scale(0.95);
}

/* ================================
   Floating Cart Button
================================ */
.floating-cart {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 30px;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(196, 92, 38, 0.4);
  transition: var(--transition);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
}

.floating-cart.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-cart:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(196, 92, 38, 0.5);
}

.floating-cart i {
  font-size: 1.3rem;
}

.cart-count {
  background: var(--text-primary);
  color: var(--primary);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ================================
   Bottom Navigation
================================ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  display: flex;
  justify-content: space-around;
  padding: 10px 8px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  border-radius: var(--radius-sm);
}

.nav-item i {
  font-size: 1.3rem;
}

.nav-item:hover {
  color: var(--text-secondary);
}

.nav-item.active {
  color: var(--primary);
}

.nav-item.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
}

.cart-icon-wrapper {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.cart-badge.visible {
  opacity: 1;
  transform: scale(1);
}

/* ================================
   Bottom Spacer
================================ */
.bottom-spacer {
  height: 30px;
}

/* ================================
   Animations
================================ */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-item {
  animation: slideUp 0.4s ease-out forwards;
}

.menu-item:nth-child(1) {
  animation-delay: 0.05s;
}
.menu-item:nth-child(2) {
  animation-delay: 0.1s;
}
.menu-item:nth-child(3) {
  animation-delay: 0.15s;
}
.menu-item:nth-child(4) {
  animation-delay: 0.2s;
}
.menu-item:nth-child(5) {
  animation-delay: 0.25s;
}
.menu-item:nth-child(6) {
  animation-delay: 0.3s;
}

/* ================================
   Add to Cart Animation
================================ */
@keyframes addToCart {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.btn-add-item.adding {
  animation: addToCart 0.3s ease-out;
}

/* ================================
   Responsive Adjustments
================================ */
@media (min-width: 431px) {
  .mobile-container {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
}


/* ================================
   Scan Table Section - Menambahkan styling untuk card scan meja
================================ */
.scan-table-section {
  padding: 20px 16px;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.scan-table-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  width: 100%;
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scan-illustration {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 40px rgba(196, 92, 38, 0.3);
}

.phone-mockup i {
  font-size: 2.8rem;
  color: var(--text-primary);
}

.scan-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: ringPulse 2.5s ease-out infinite;
}

.ring-1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.ring-2 {
  width: 120px;
  height: 120px;
  animation-delay: 0.5s;
}

.ring-3 {
  width: 140px;
  height: 140px;
  animation-delay: 1s;
}

@keyframes ringPulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.scan-info {
  margin-bottom: 28px;
}

.scan-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.scan-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.scan-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--surface-elevated);
  border-radius: var(--radius-lg);
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.step-number {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}

.step-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.btn-scan-qr {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(196, 92, 38, 0.3);
  margin-bottom: 16px;
}

.btn-scan-qr:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 92, 38, 0.4);
}

.btn-scan-qr:active {
  transform: translateY(0);
}


/* Card */
.qr-card {
  max-width: 420px;
  width: 100%;
  background: var(--surface-elevated);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.qr-card:hover {
  transform: translateY(-4px);
}

/* Icon */
.qr-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.qr-icon {
  font-size: 36px;
  color: #fff;
}

/* Text */
.text-primary-custom {
  color: var(--text-primary);
}

.text-secondary-custom {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Steps */
.qr-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.step-badge {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card */
.success-card {
  max-width: 420px;
  width: 100%;
  background: var(--surface-elevated);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.success-card:hover {
  transform: translateY(-4px);
}

/* Icon */
.success-icon-wrapper {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--success),
    var(--secondary)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.success-icon {
  font-size: 36px;
  color: #ffffff;
}

/* Text */
.text-success-custom {
  color: var(--success);
}

.text-secondary-custom {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Note */
.success-note {
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.25);
  color: var(--text-secondary);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

/* Button */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
