:root {
  --green:      #09af11;
  --green-dk:   #067a0b;
  --green-dim:  rgba(9,175,17,0.12);
  --forest:     #0d1f06;
  --dark:       #0e0e0e;
  --panel:      #0d1f06;
  --card:       #1a2e10;
  --border:     rgba(9,175,17,0.15);
  --text:       #e8ede4;
  --muted:      rgba(232,237,228,0.55);
  --radius:     20px;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Poppins', sans-serif;
  --shadow-sm:  0 8px 24px rgba(0,0,0,0.25);
  --shadow-md:  0 16px 40px rgba(0,0,0,0.35);
  --shadow-lg:  0 24px 56px rgba(0,0,0,0.45);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.6;
  padding-top: 62px;
}

/* ── GRAIN OVERLAY ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url;
  opacity: 0.025;
}

/* ============================================================
   NAVBAR - PRECISE GRID ALIGNMENT
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 26, 14, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: 0.4s;
  box-shadow: var(--shadow);
  z-index: 1000;
  
  /* Use grid with minmax for balanced columns */
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  padding: 0.6rem 1rem;
  gap: 0.5rem;
}

/* ── LOGO (left) ──────────────────────────────────────────── */
.logo-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  justify-self: start;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.logo span {
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* ── NAV LINKS (center) ──────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  justify-self: center;
  margin: 0;
}

.nav-links a {
  padding: 0.4rem 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--green);
  background: rgba(9,175,17,0.08);
}

.nav-links a.active {
  color: var(--green);
}

/* ── NAV RIGHT ICONS ──────────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  justify-self: end;
  min-width: 120px; /* Match the approximate width of the logo */
}

.nav-right .icon-img-btn,
.nav-right .cart-icon {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.nav-right .icon-img-btn:hover,
.nav-right .cart-icon:hover {
  background: rgba(255,255,255,0.05);
}

.nav-right .nav-icon-img,
.nav-right .cart-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── CART BADGE ──────────────────────────────────────────── */
.cart-icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
  background: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cart-badge.hidden {
  opacity: 0;
  visibility: hidden;
}

#cart-count.pop {
  transform: scale(1.4);
  transform-origin: top right;
}

/* ── NOTIFICATION BADGE ──────────────────────────────────── */
.account-icon {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.notification-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 50%;
  background: red;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.notification-badge.hidden {
  opacity: 0;
  visibility: hidden;
}

.notification-count.pop {
  transform: scale(1.4);
  transform-origin: top right;
}

/* ── MOBILE MENU BUTTON ──────────────────────────────────── */
.menu-btn {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}

.menu-btn:hover {
  background: rgba(255,255,255,0.05);
}

.menu-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ── MOBILE SLIDE MENU ───────────────────────────────────── */
.slide-menu {
  position: fixed;
  top: 0; left: -280px;
  width: 260px; height: 100%;
  background: rgba(13, 26, 14, 0.85);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(4px);
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
  gap: 1.5rem;
  transition: left 0.3s ease;
  z-index: 1001;
}
.slide-menu.show { left: 0; }
.slide-menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.slide-menu a:hover,
.slide-menu a.active { color: var(--green); }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}
.overlay.show { opacity: 1; visibility: visible; backdrop-filter: blur(3px); }



/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--panel);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero h1 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
}

.hero h1 em {
  color: var(--green);
  font-style: italic;
}

.hero p {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.3rem;
}

/* ── DASHBOARD LAYOUT ────────────────────────────────────── */
.dashboard-container {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 2rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2rem;
}

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-sm);
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--text);
  border-left: 3px solid var(--green);
  padding-left: 0.8rem;
}
.card-title i { color: var(--green); }

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 0.5rem;
  flex-wrap: wrap;
}
.info-label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.info-value {
  font-weight: 500;
  color: var(--text);
  font-size: 0.92rem;
}

/* ── VERIFICATION BOX ─────────────────────────────────────── */
.verification-box {
  margin-top: 1.2rem;
  background: rgba(230,126,34,0.15);
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  border-left: 3px solid #e67e22;
}

.verification-box .btn-sm {
  flex-shrink: 0;
}

/* ── BADGES ──────────────────────────────────────────────── */
.badge-warning {
  background: rgba(196,123,46,0.18);
  color: #e8a84a;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(196,123,46,0.35);
  white-space: nowrap;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--green);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(9,175,17,0.3);
}
.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(9,175,17,0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--green);
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--green);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  background: transparent;
  border: 1px solid rgba(9,175,17,0.5);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  color: var(--green);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-sm:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* ── PRODUCT ITEMS ───────────────────────────────────────── */
.product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 0.5rem;
}
.product-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}
.product-status {
  font-size: 0.75rem;
  color: rgba(9,175,17,0.7);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* ── VIDEO + MISSION ─────────────────────────────────────── */
.video-mission {
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #0d0707;
}
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mission-text {
  padding: 2rem;
}
.mission-text h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.mission-text h3 em { font-style: italic; color: var(--green); }
.mission-text p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.mission-text p strong { color: var(--text); font-weight: 600; }

.highlight-stats {
  background: rgba(9,175,17,0.07);
  border: 1px solid rgba(9,175,17,0.2);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
  margin: 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.stat-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}
.stat-item i { color: var(--green); margin-bottom: 0.3rem; }
.stat-item strong { color: var(--text); }
.stat-item br + * { color: var(--muted); font-size: 0.78rem; }

.mission-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.mission-buttons .btn-primary,
.mission-buttons .btn-secondary {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

/* ── GIFT / DONATE SECTION ───────────────────────────────── */
.gift-section {
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.gift-section h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--text);
  margin: 0.6rem 0 0.8rem;
}
.gift-section p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}
.gift-section p strong { color: var(--text); font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--panel);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2rem;
  text-align: center;
}
footer p {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.2s, background 0.2s;
}
.socials a:hover { border-color: var(--green); background: rgba(9,175,17,0.1); }
.socials a img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

/* ============================================================
   CHAT WIDGET - UPDATED WITH CUSTOM ICON
   ============================================================ */

.eden-chat-toggle {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #09af11;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 24px rgba(9, 175, 17, 0.35), 0 0 0 0 rgba(9, 175, 17, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
  overflow: visible;
}

.eden-chat-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(9, 175, 17, 0.5), 0 0 20px rgba(9, 175, 17, 0.2);
}

.eden-chat-toggle:active {
  transform: scale(0.92);
}

/* Pulse animation for attention */
.eden-chat-toggle.has-unread {
  animation: chatPulse 2s ease-in-out infinite;
}

@keyframes chatPulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(9, 175, 17, 0.35);
  }
  50% {
    box-shadow: 0 6px 32px rgba(9, 175, 17, 0.6), 0 0 40px rgba(9, 175, 17, 0.15);
  }
}

/* Chat icon image */
.chat-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
  transition: transform 0.3s ease;
}

.eden-chat-toggle:hover .chat-icon-img {
  transform: rotate(-10deg) scale(1.05);
}

/* Chat notification badge */
.eden-chat-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
  border: 2px solid #0e0e0e;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: scale(0);
  opacity: 0;
}

.eden-chat-badge.visible {
  transform: scale(1);
  opacity: 1;
}

.eden-chat-badge.pop {
  animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  60% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* ── CHAT PANEL ────────────────────────────────────────────── */
.eden-chat-panel {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 340px;
  max-width: calc(100vw - 44px);
  height: 440px;
  max-height: 70vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
  font-family: 'Poppins', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eden-chat-panel.open {
  display: flex;
  animation: chatSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes chatSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Chat header */
.eden-chat-hdr {
  background: #09af11;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.eden-chat-hdr h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eden-chat-hdr h4::before {
  content: '💬';
  font-size: 1.1rem;
}

.eden-chat-hdr span {
  font-size: 0.7rem;
  opacity: 0.85;
  display: block;
  margin-top: 2px;
}

.eden-chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}

.eden-chat-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Chat body */
.eden-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f6f8f5;
}

/* Message styles */
.eden-msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  animation: msgFadeIn 0.3s ease;
}

@keyframes msgFadeIn {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.eden-msg.customer {
  align-self: flex-end;
  background: #09af11;
  color: #fff;
  border-bottom-right-radius: 4px;
}

.eden-msg.admin {
  align-self: flex-start;
  background: #eef1ec;
  color: #243027;
  border-bottom-left-radius: 4px;
}

.eden-msg .eden-mt {
  display: block;
  font-size: 0.6rem;
  opacity: 0.6;
  margin-top: 4px;
}

.eden-chat-empty {
  opacity: 0.5;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 30px;
  color: #666;
}

/* Chat input row */
.eden-chat-input-row {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid #eee;
  background: #fff;
  flex-shrink: 0;
}

.eden-chat-input-row input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 9px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}

.eden-chat-input-row input:focus {
  border-color: #09af11;
  box-shadow: 0 0 0 3px rgba(9, 175, 17, 0.1);
}

.eden-chat-send {
  background: #09af11;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eden-chat-send:hover {
  background: #0bb814;
  transform: scale(1.05);
}

.eden-chat-send:active {
  transform: scale(0.92);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── TABLETS (768px - 1024px) ────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .dashboard-container {
    padding: 0 1.5rem;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  
  .card[style*="grid-column: span 2"] {
    grid-column: span 2 !important;
  }
  
  .card {
    padding: 1.4rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .info-row {
    flex-wrap: wrap;
  }
  
  .mission-text {
    padding: 1.5rem;
  }
  
  .mission-text h3 {
    font-size: 1.4rem;
  }
  
  .highlight-stats {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .stat-item {
    flex: 1;
    min-width: 80px;
  }
  
  .mission-buttons {
    flex-wrap: wrap;
  }
  
  .mission-buttons .btn-primary,
  .mission-buttons .btn-secondary {
    flex: 1;
    min-width: 160px;
  }
  
  .gift-section {
    padding: 2rem 1.5rem;
  }
  
  .gift-section h3 {
    font-size: 1.3rem;
  }
  
  .hero h1 {
    font-size: 2rem !important;
  }
  
  .verification-box > div {
    flex-wrap: wrap;
  }
}

/* ── PHONES (up to 767px) ────────────────────────────────── */
@media (max-width: 767px) {
  .dashboard-container {
    padding: 0 1rem;
  }
  
  .dashboard-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .card[style*="grid-column: span 2"] {
    grid-column: span 1 !important;
  }
  
  .card {
    padding: 1.2rem;
  }
  
  .card-title {
    font-size: 1rem;
  }
  
  .info-row {
    flex-wrap: wrap;
    gap: 0.3rem;
  }
  
  .info-value {
    font-size: 0.85rem;
    word-break: break-word;
  }
  
  .mission-text {
    padding: 1.2rem;
  }
  
  .mission-text h3 {
    font-size: 1.2rem;
  }
  
  .highlight-stats {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 0.3rem 0;
  }
  
  .mission-buttons {
    flex-direction: column;
  }
  
  .mission-buttons .btn-primary,
  .mission-buttons .btn-secondary {
    min-width: unset;
    width: 100%;
  }
  
  .gift-section {
    padding: 1.5rem 1rem;
  }
  
  .gift-section h3 {
    font-size: 1.2rem;
  }
  
  .verification-box > div {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  .verification-box .btn-sm {
    width: 100%;
    text-align: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: 1.4rem !important;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  body {
    overflow-x: hidden;
  }
  
  .dashboard-grid {
    overflow-x: hidden;
  }
}

/* ── SMALL PHONES (up to 480px) ──────────────────────────── */
@media (max-width: 480px) {
  .dashboard-container {
    padding: 0 0.8rem;
  }
  
  .card {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .card-title {
    font-size: 0.95rem;
    padding-left: 0.6rem;
    margin-bottom: 0.8rem;
  }
  
  .card-title i {
    font-size: 1rem;
  }
  
  .info-row {
    padding: 0.5rem 0;
  }
  
  .info-label {
    font-size: 0.7rem;
    width: 100%;
  }
  
  .info-value {
    font-size: 0.8rem;
  }
  
  .btn-sm {
    font-size: 0.6rem;
    padding: 0.15rem 0.6rem;
    margin-left: auto;
  }
  
  .badge-warning {
    font-size: 0.6rem;
    padding: 0.1rem 0.5rem;
  }
  
  .hero {
    padding: 1.5rem 0 !important;
  }
  
  .hero h1 {
    font-size: 1.2rem !important;
  }
  
  .hero p {
    font-size: 0.8rem;
  }
  
  .verification-box {
    padding: 0.6rem 0.8rem;
  }
  
  .verification-box p {
    font-size: 0.7rem !important;
  }
  
  .verification-box .btn-sm {
    width: 100%;
    text-align: center;
    margin-top: 0.3rem;
  }
  
  .notification-item {
    flex-wrap: wrap;
    padding: 0.5rem 0;
  }
  
  .notification-content p {
    font-size: 0.75rem;
  }
  
  .notification-content .notification-time {
    font-size: 0.6rem;
  }
  
  .video-mission {
    border-radius: 12px;
  }
  
  .mission-text {
    padding: 1rem;
  }
  
  .mission-text h3 {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  .mission-text p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  
  .highlight-stats {
    padding: 0.8rem;
    margin: 0.8rem 0;
  }
  
  .stat-item strong {
    font-size: 1.1rem;
  }
  
  .stat-item br + * {
    font-size: 0.7rem;
  }
  
  .mission-buttons {
    gap: 0.6rem;
  }
  
  .mission-buttons .btn-primary,
  .mission-buttons .btn-secondary {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  
  .gift-section {
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
  }
  
  .gift-section h3 {
    font-size: 1.1rem;
  }
  
  .gift-section p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  
  .gift-section .btn-primary {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
  }
  
/* ── Floating Chat Button ── */
.eden-chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #09af11;
  border: none;
  box-shadow: 0 4px 16px rgba(9, 175, 17, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0;
}
.eden-chat-toggle:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 24px rgba(9, 175, 17, 0.45);
}
.eden-chat-toggle:active {
  transform: scale(0.94);
}
.eden-chat-toggle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

/* ── Badge ── */
.eden-chat-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #e74c3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  min-width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  border-radius: 22px;
  padding: 0 6px;
  box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
  display: none;
  border: 2px solid #fff;
}
.eden-chat-badge.show {
  display: block;
}

/* ── Chat Panel ── */
.eden-chat-panel {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 380px;
  max-width: 92vw;
  height: 480px;
  max-height: 75vh;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
  font-family: 'Poppins', sans-serif;
  border: 1px solid rgba(0,0,0,0.04);
  animation: panelFadeIn 0.25s ease;
}
.eden-chat-panel.open {
  display: flex;
}
@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Header ── */
.eden-chat-hdr {
  background: #09af11;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.eden-chat-hdr .hdr-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eden-chat-hdr .hdr-left .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}
.eden-chat-hdr .hdr-text {
  display: flex;
  flex-direction: column;
}
.eden-chat-hdr h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.eden-chat-hdr .sub {
  font-size: 0.7rem;
  opacity: 0.85;
  margin-top: 1px;
}
.eden-chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
  line-height: 1;
  padding: 0 6px;
}
.eden-chat-close:hover {
  opacity: 1;
}

/* ── Messages Body ── */
.eden-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f5f7f6;
  scroll-behavior: smooth;
}
.eden-chat-body::-webkit-scrollbar {
  width: 4px;
}
.eden-chat-body::-webkit-scrollbar-thumb {
  background: #cbd5d0;
  border-radius: 8px;
}

/* ── Messages ── */
.eden-msg {
  max-width: 80%;
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  word-wrap: break-word;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.eden-msg.customer {
  align-self: flex-end;
  background: #09af11;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.eden-msg.admin {
  align-self: flex-start;
  background: #fff;
  color: #1c2a24;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.eden-msg .eden-mt {
  display: block;
  font-size: 0.6rem;
  opacity: 0.6;
  margin-top: 4px;
}
.eden-msg.customer .eden-mt {
  color: rgba(255,255,255,0.75);
}
.eden-msg.admin .eden-mt {
  color: #7a8a82;
}
.eden-chat-empty {
  text-align: center;
  color: #8fa09a;
  font-size: 0.85rem;
  margin: auto 0;
  padding: 20px 0;
}

/* ── Input Row ── */
.eden-chat-input-row {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid #e8ecea;
  background: #fff;
  flex-shrink: 0;
  align-items: center;
}
.eden-chat-input-row input {
  flex: 1;
  border: 1px solid #dce2df;
  border-radius: 24px;
  padding: 10px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  background: #f8faf9;
  transition: border 0.2s, background 0.2s;
}
.eden-chat-input-row input:focus {
  border-color: #09af11;
  background: #fff;
}
.eden-chat-send {
  background: #09af11;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
}
.eden-chat-send:hover {
  background: #089c0f;
}
.eden-chat-send:active {
  transform: scale(0.92);
}
    
    /* Notification item styles */
    .notification-item {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      padding: 0.7rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .notification-item:last-child {
      border-bottom: none;
    }
    .notification-item.unread {
      background: rgba(9,175,17,0.05);
      border-radius: 8px;
      padding: 0.7rem 0.8rem;
    }
    .notification-icon {
      font-size: 1.2rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .notification-content {
      flex: 1;
    }
    .notification-content p {
      font-size: 0.85rem;
      color: var(--text);
      margin: 0;
      line-height: 1.5;
    }
    .notification-content .notification-time {
      font-size: 0.7rem;
      color: var(--muted);
      margin-top: 0.2rem;
      display: block;
    }
    .notification-item .btn-sm {
      flex-shrink: 0;
    }
    .badge-warning {
      background: rgba(196,123,46,0.18);
      color: #e8a84a;
      padding: 0.2rem 0.75rem;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border: 1px solid rgba(196,123,46,0.35);
      white-space: nowrap;
    }
    .volunteer-status {
      font-size: 0.7rem;
      padding: 0.15rem 0.6rem;
      border-radius: 999px;
      font-weight: 600;
    }
    .volunteer-status.pending { background: rgba(230,126,34,0.2); color: #e67e22; }
    .volunteer-status.approved { background: rgba(9,175,17,0.2); color: #09af11; }
    .volunteer-status.rejected { background: rgba(231,76,60,0.2); color: #e74c3c; }
    .volunteer-status.completed { background: rgba(9,175,17,0.2); color: #09af11; }

  /* Footer */
  footer {
    padding: 1.5rem 1rem;
  }
  
  footer p {
    font-size: 0.65rem;
  }
  
  .socials {
    gap: 0.8rem;
  }
  
  .socials a {
    width: 30px;
    height: 30px;
  }
  
  .socials a img {
    width: 14px;
    height: 14px;
  }
  
  .product-item {
    flex-wrap: wrap;
    padding: 0.6rem 0;
  }
  
  .product-info h4 {
    font-size: 0.8rem;
  }
  
  .product-status {
    font-size: 0.65rem;
  }
}

/* ── EXTRA SMALL (360px and below) ────────────────────────── */
@media (max-width: 360px) {
  .dashboard-container {
    padding: 0 0.5rem;
  }
  
  .card {
    padding: 0.8rem;
  }
  
  .card-title {
    font-size: 0.85rem;
  }
  
  .info-value {
    font-size: 0.7rem;
  }
  
  .mission-text h3 {
    font-size: 0.95rem;
  }
  
  .mission-text p {
    font-size: 0.7rem;
  }
  
  .gift-section h3 {
    font-size: 0.95rem;
  }
  
  .gift-section p {
    font-size: 0.7rem;
  }
  
  .btn-primary,
  .btn-secondary {
    font-size: 0.7rem;
    padding: 0.5rem 0.8rem;
  }
  
  .hero h1 {
    font-size: 1rem !important;
  }
  
  .badge-warning {
    font-size: 0.5rem;
    padding: 0.1rem 0.4rem;
  }
  
  .eden-chat-toggle {
    width: 44px;
    height: 44px;
    bottom: 12px;
    right: 12px;
  }
  
  .chat-icon-img {
    width: 22px;
    height: 22px;
  }
  
  .eden-chat-panel {
    height: 320px;
    max-height: 55vh;
  }
}

/* ── RESPONSIVE NAV ──────────────────────────────────────── */
@media (max-width: 959px) {
  .navbar {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
  }
  
  .nav-links {
    display: none !important;
  }
  
  .menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .nav-right {
    min-width: auto;
  }
}

@media (min-width: 960px) {
  .menu-btn {
    display: none !important;
  }
  .nav-links {
    display: flex !important;
  }
}

/* ── LARGE SCREENS (above 1300px) ────────────────────────── */
@media (min-width: 1300px) {
  .dashboard-container {
    padding: 0 2rem;
  }
  
  /* Desktop: add horizontal padding to match content */
  .navbar {
    padding-left: calc(2rem + (100% - 1300px) / 2);
    padding-right: calc(2rem + (100% - 1300px) / 2);
  }
}