/* DRC MALL 2026 High-Rich Corporate Enterprise App Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,800&display=swap');

:root {
  --primary: #10b981;
  --primary-dark: #047857;
  --primary-light: #ecfdf5;
  --primary-gradient: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  --secondary: #4f46e5;
  --accent: #f59e0b;
  --danger: #ef4444;
  --danger-gradient: linear-gradient(135deg, #ff4757 0%, #dc2626 100%);
  --dark: #0f172a;
  --dark-surface: #1e293b;
  --surface: #ffffff;
  --background: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.14);
  --whatsapp-green: #25d366;
  --whatsapp-dark: #128c7e;
  --whatsapp-gradient: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  --header-height: 62px;
  --ribbon-height: 52px;
  --header-total-height: 148px;
  --bottom-nav-height: 64px;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--text-main);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  display: block;
}

body {
  padding-top: var(--header-total-height);
  padding-bottom: 0;
}

@media (max-width: 768px) {
  body {
    padding-top: 144px;
    padding-bottom: calc(var(--bottom-nav-height) + 14px);
  }
}

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

/* ----------------------------------------------------
   1. HIGH-RICH GLASSMORPHISM HEADER
   ---------------------------------------------------- */
.app-header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.app-top-header {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.btn-icon-nav {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--dark);
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}

.btn-icon-nav:hover, .btn-icon-nav:active {
  background: #e2e8f0;
  transform: scale(1.05);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon-bubble {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--primary-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  flex-shrink: 0;
}

.brand-text-box {
  display: flex;
  flex-direction: column;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.brand-badge-speed {
  background: var(--danger-gradient);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}

.brand-subtitle-location {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  white-space: nowrap;
}

/* Integrated Header Search Container */
.app-header-search-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 10px;
}

.search-form-app {
  display: flex;
  position: relative;
  width: 100%;
}

.input-search-app {
  width: 100%;
  height: 44px;
  padding: 0 44px 0 42px;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  font-size: 0.88rem;
  font-weight: 700;
  background: #ffffff;
  outline: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.input-search-app:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
}

.search-icon-left {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--text-muted);
  pointer-events: none;
}

.btn-search-app {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-wa-hotline-header {
  background: var(--whatsapp-gradient);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 900;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  white-space: nowrap;
}

/* ----------------------------------------------------
   2. CATEGORY CHIPS SCROLL RIBBON
   ---------------------------------------------------- */
.app-category-ribbon {
  height: var(--ribbon-height);
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  display: flex;
  align-items: center;
  -webkit-overflow-scrolling: touch;
}

.app-category-ribbon::-webkit-scrollbar {
  display: none;
}

.category-ribbon-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f1f5f9;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-main);
  transition: all 0.2s;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.chip-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.app-chip:hover, .app-chip.active {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.app-chip.active .chip-icon {
  background: rgba(255, 255, 255, 0.25);
  color: white;
}

/* ----------------------------------------------------
   3. CORPORATE SIDE NAVIGATION DRAWER (ALIGNED PERFECTLY)
   ---------------------------------------------------- */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.side-app-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #ffffff;
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
}

.drawer-overlay.active .side-app-drawer {
  transform: translateX(0);
}

.drawer-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #047857 100%);
  color: white;
  padding: 26px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-user-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.drawer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.drawer-title {
  font-size: 1.15rem;
  font-weight: 900;
}

.drawer-subtitle {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
}

.btn-drawer-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

.drawer-menu {
  padding: 16px 12px;
  flex: 1;
}

.drawer-section-label {
  padding: 10px 14px 6px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.08em;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text-main);
  transition: all 0.2s;
  margin-bottom: 2px;
}

.drawer-item-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f1f5f9;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.drawer-item:hover, .drawer-item.active {
  background: linear-gradient(135deg, #e6f4ea 0%, #d1fae5 100%);
  color: var(--primary-dark);
}

.drawer-item:hover .drawer-item-icon-box, .drawer-item.active .drawer-item-icon-box {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.drawer-badge {
  margin-left: auto;
  background: #f1f5f9;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 10px;
}

.drawer-item.active .drawer-badge {
  background: var(--primary);
  color: white;
}

.drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: #f8fafc;
}

/* ----------------------------------------------------
   4. HERO CAROUSEL BANNER (3D HIGH-RICH SLIDER)
   ---------------------------------------------------- */
.app-hero-section {
  max-width: 1280px;
  width: 100%;
  margin: 16px auto 10px;
  padding: 0 16px;
}

.app-slider-container {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.app-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.app-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 36px 30px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.app-slide-content {
  max-width: 650px;
  z-index: 2;
}

.app-slide-content h1 {
  font-size: 1.95rem;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.app-slide-content p {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 18px;
  font-weight: 600;
}

.app-slide-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  padding: 4px 14px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.app-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  color: var(--dark);
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.app-slider-arrow.prev { left: 14px; }
.app-slider-arrow.next { right: 14px; }

.app-slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.25s;
}

.app-dot.active {
  width: 26px;
  border-radius: 8px;
  background: white;
}

/* ----------------------------------------------------
   5. CATEGORY BUBBLES SECTION (INSTAMART 3D CARDS)
   ---------------------------------------------------- */
.category-bubbles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
}

@media (max-width: 576px) {
  .category-bubbles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
}

.category-bubble-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 8px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.category-bubble-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.category-bubble-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 8px;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.8);
}

.category-bubble-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----------------------------------------------------
   6. HIGH-RICH PRODUCT CARDS SYSTEM
   ---------------------------------------------------- */
.app-section-container {
  max-width: 1280px;
  width: 100%;
  margin: 28px auto;
  padding: 0 16px;
}

.app-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-section-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.4px;
}

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

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

.product-card {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
}

.card-media {
  position: relative;
  width: 100%;
  padding-top: 95%;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

.card-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s;
}

.product-card:hover .card-img {
  transform: scale(1.06);
}

.card-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.badge-discount {
  background: var(--danger-gradient);
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.btn-wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-wishlist:hover, .btn-wishlist.active {
  background: #ffe4e6;
  border-color: #fda4af;
  color: #ef4444;
}

.card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 4px;
}

.card-category {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.card-unit-tag {
  background: #f1f5f9;
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.star-pill {
  color: #d97706;
  font-weight: 800;
}

.review-count {
  color: #94a3b8;
  font-size: 0.72rem;
}

.card-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}

.card-pricing {
  display: flex;
  flex-direction: column;
}

.price-discounted {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.price-mrp {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-top: 2px;
}

/* MORPHING ADD STEPPER BUTTON */
.app-add-container {
  display: flex;
  align-items: center;
}

.btn-app-add {
  background: #ffffff;
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-app-add:hover, .btn-app-add:active {
  background: var(--primary-gradient);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
}

.qty-control-box {
  background: var(--primary-gradient);
  color: white;
  border-radius: 10px;
  padding: 3px 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-qty {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.btn-qty:hover, .btn-qty:active {
  background: rgba(255, 255, 255, 0.4);
}

.qty-input {
  width: 28px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 900;
  font-size: 0.88rem;
  color: white;
}

.card-actions-wrapper {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-single-wa {
  width: 100%;
  background: var(--whatsapp-gradient);
  color: white;
  border: none;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s;
}

.btn-single-wa:hover {
  transform: translateY(-1px);
}

.product-select-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
}

/* ----------------------------------------------------
   7. ULTRA-RICH DARK SLATE FOOTER
   ---------------------------------------------------- */
.app-footer {
  background: #0b0f19;
  color: #94a3b8;
  padding: 48px 20px 24px;
  border-top: 1px solid #1e293b;
  width: 100%;
  margin-top: 60px;
}

.footer-inner-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

.footer-brand-title {
  color: white;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-heading {
  color: white;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 800;
}

.footer-links-list {
  list-style: none;
  line-height: 2.2;
  font-size: 0.88rem;
}

.footer-links-list a {
  color: #94a3b8;
  transition: color 0.2s;
}

.footer-links-list a:hover {
  color: var(--primary);
}

.footer-wa-hotline-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-gradient);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

@media (max-width: 768px) {
  .app-footer {
    padding-bottom: calc(var(--bottom-nav-height) + 16px) !important;
  }
}

/* ----------------------------------------------------
   8. PURE APP FIXED BOTTOM TAB BAR (IOS GLASS)
   ---------------------------------------------------- */
.app-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--bottom-nav-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.06);
}

@media (min-width: 769px) {
  .app-bottom-nav {
    display: none !important;
  }
}

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  position: relative;
  padding: 6px 14px;
  border-radius: 16px;
  transition: all 0.2s;
}

.nav-tab.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.nav-tab-icon {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.tab-badge {
  position: absolute;
  top: 2px;
  right: 8px;
  background: var(--danger);
  color: white;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 10px;
}

/* ----------------------------------------------------
   9. STICKY WHATSAPP ORDER BAR
   ---------------------------------------------------- */
.sticky-whatsapp-bar {
  position: fixed;
  z-index: 1050 !important;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: white;
  padding: 12px 18px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: slideUp 0.3s ease;
}

@media (max-width: 768px) {
  .sticky-whatsapp-bar {
    bottom: calc(var(--bottom-nav-height) + 10px);
    left: 12px;
    right: 12px;
    width: auto;
  }
}

@media (min-width: 769px) {
  .sticky-whatsapp-bar {
    bottom: 24px;
    right: 24px;
    left: auto;
    width: 420px;
  }
}

.whatsapp-bar-info {
  display: flex;
  flex-direction: column;
}

.whatsapp-bar-count {
  font-size: 0.8rem;
  color: #94a3b8;
}

.whatsapp-bar-total {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--whatsapp-green);
}

.btn-whatsapp-send {
  background: var(--whatsapp-gradient);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* ----------------------------------------------------
   10. WHATSAPP ORDER MODAL & TOASTS
   ---------------------------------------------------- */
.whatsapp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.whatsapp-modal-card {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  background: linear-gradient(135deg, var(--dark), #1e293b);
  color: white;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.modal-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-body {
  padding: 20px;
}

.modal-items-container {
  max-height: 180px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 12px;
}

.modal-order-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.88rem;
}

.modal-summary-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary-light);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-bottom: 14px;
}

.modal-summary-total {
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  outline: none;
}

.btn-whatsapp-submit {
  width: 100%;
  background: var(--whatsapp-gradient);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 900;
  cursor: pointer;
  margin-top: 6px;
}

/* Toast Messages */
.drc-toast-msg {
  position: fixed;
  top: 155px;
  right: 16px;
  background: var(--dark);
  color: white;
  padding: 10px 18px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s;
  pointer-events: none;
}

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

/* Mobile Breakpoints */
@media (max-width: 576px) {
  .app-slide {
    padding: 24px 18px;
    flex-direction: column;
    text-align: center;
  }
  .app-slide-content h1 {
    font-size: 1.35rem;
  }
  .app-slide-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  .btn-wa-hotline-header span {
    display: none;
  }
}
