/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   OJA EDE TECHNOLOGIES LTD
   MASTER STYLESHEET
   Colors: Dark Green + Light Green
   Font: Poppins
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   IMPORT FONT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CSS VARIABLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* Brand Colors */
  --green-dark: #1B5E20;
  --green-main: #2E7D32;
  --green-medium: #388E3C;
  --green-light: #4CAF50;
  --green-bright: #69F0AE;
  --green-pale: #E8F5E9;
  --green-bg: #F1F8E9;

  /* Food & Drinks Highlight */
  --food-orange: #FF6F00;
  --food-orange-light: #FFF3E0;
  --food-red: #D32F2F;

  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #EEEEEE;
  --gray-300: #E0E0E0;
  --gray-400: #BDBDBD;
  --gray-500: #9E9E9E;
  --gray-600: #757575;
  --gray-700: #616161;
  --gray-800: #424242;
  --gray-900: #212121;

  /* Status Colors */
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #F44336;
  --info: #2196F3;

  /* Ranking Colors */
  --gold: #FFD700;
  --silver: #C0C0C0;
  --bronze: #CD7F32;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --shadow-green: 0 4px 15px rgba(46,125,50,0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DARK MODE VARIABLES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
[data-theme="dark"] {
  --white: #121212;
  --gray-50: #1A1A1A;
  --gray-100: #1E1E1E;
  --gray-200: #242424;
  --gray-300: #2C2C2C;
  --gray-400: #3A3A3A;
  --gray-500: #666666;
  --gray-600: #888888;
  --gray-700: #AAAAAA;
  --gray-800: #CCCCCC;
  --gray-900: #EEEEEE;
  --green-pale: #1A2E1A;
  --green-bg: #0D1F0D;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET & BASE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--gray-100);
  color: var(--gray-900);
  line-height: 1.6;
  transition: var(--transition);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

input, textarea, select {
  font-family: 'Poppins', sans-serif;
  outline: none;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

input:focus, textarea:focus,
select:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px
    rgba(76,175,80,0.15);
}

ul { list-style: none; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLLBAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--green-light);
  border-radius: var(--radius-full);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TYPOGRAPHY
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }

.text-green { color: var(--green-main); }
.text-light-green { color: var(--green-light); }
.text-dark-green { color: var(--green-dark); }
.text-orange { color: var(--food-orange); }
.text-gray { color: var(--gray-600); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 48px 0;
}

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

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--green-light);
  border-radius: var(--radius-full);
}

.view-all {
  color: var(--green-main);
  font-size: 0.875rem;
  font-weight: 600;
}

.view-all:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-main);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px
    rgba(46,125,50,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--green-main);
  border: 2px solid var(--green-main);
}

.btn-outline:hover {
  background: var(--green-pale);
}

.btn-food {
  background: var(--food-orange);
  color: var(--white);
}

.btn-food:hover {
  background: #E65100;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVBAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-top {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.navbar-top .container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

.navbar-logo-text {
  font-size: 1.4rem;
  font-weight: 800;
}

.navbar-logo-text span:first-child {
  color: var(--green-dark);
}

.navbar-logo-text span:last-child {
  color: var(--green-light);
}

/* Search Bar */
.navbar-search {
  flex: 1;
  display: flex;
  max-width: 600px;
}

.navbar-search input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-md) 0 0
    var(--radius-md);
  border: 2px solid var(--gray-200);
  border-right: none;
  font-size: 0.9rem;
  background: var(--gray-50);
}

.navbar-search button {
  background: var(--green-main);
  color: white;
  padding: 10px 20px;
  border-radius: 0 var(--radius-md)
    var(--radius-md) 0;
}

.navbar-search button:hover {
  background: var(--green-dark);
}

/* Search Dropdown */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}

.search-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-result-item:hover {
  background: var(--green-pale);
}

.search-result-item img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* Navbar Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.navbar-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  color: var(--gray-700);
  font-size: 0.75rem;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-action-item:hover {
  color: var(--green-main);
}

.navbar-action-item svg {
  width: 22px;
  height: 22px;
}

.badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--green-light);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Category Nav */
.navbar-categories {
  background: var(--green-main);
  padding: 0;
}

.navbar-categories .container {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.navbar-categories::-webkit-scrollbar {
  display: none;
}

.nav-cat-item {
  color: rgba(255,255,255,0.85);
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  border-bottom: 3px solid transparent;
}

.nav-cat-item:hover,
.nav-cat-item.active {
  color: white;
  border-bottom-color: var(--green-bright);
  background: rgba(255,255,255,0.1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO SECTION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  background: linear-gradient(
    135deg,
    var(--green-pale) 0%,
    var(--white) 60%,
    var(--green-bg) 100%
  );
  padding: 48px 0;
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text h1 span {
  color: var(--green-light);
}

.hero-text p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--green-light);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(
    0 20px 40px rgba(0,0,0,0.15)
  );
}

/* Decorative dots */
.hero-dots {
  position: absolute;
  right: 0;
  top: 0;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(
    var(--green-light) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
  opacity: 0.3;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST BADGES BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-bar {
  background: var(--white);
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border-right: 1px solid var(--gray-200);
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-main);
  flex-shrink: 0;
}

.trust-badge-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-900);
}

.trust-badge-text p {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOD & DRINKS SECTION
   Priority Section - Highlighted
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.food-section {
  background: linear-gradient(
    135deg,
    var(--food-orange-light),
    var(--white)
  );
  padding: 32px 0;
  border-left: 4px solid var(--food-orange);
}

.food-section .section-title {
  color: var(--food-orange);
}

.food-section .section-title::before {
  background: var(--food-orange);
}

.food-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--food-orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ready-now-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--success);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.ready-now-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CATEGORIES GRID
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.categories-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.category-item:hover {
  transform: translateY(-4px);
}

.category-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.category-item.food .category-icon {
  background: var(--food-orange-light);
  border: 2px solid var(--food-orange);
}

.category-item.food .category-label {
  color: var(--food-orange);
  font-weight: 700;
}

.category-icon.active,
.category-item:hover .category-icon {
  box-shadow: var(--shadow-green);
  border: 2px solid var(--green-light);
}

.category-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray-700);
  text-align: center;
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRODUCT CARDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.products-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

@media(min-width:768px){
  .products-grid{
    grid-template-columns:
      repeat(auto-fill,minmax(220px,1fr));
    gap:16px;
  }
}

.product-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
  border:1px solid #eee;
}

.product-card-image{
  width:100%;
  height:180px;
  background:#f5f5f5;
  overflow:hidden;
}

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

.product-card-body{
  padding:10px;
}

.product-name{
  font-size:.9rem;
  font-weight:600;
  line-height:1.4;
  height:40px;
  overflow:hidden;
}

.product-price{
  color:var(--green-main);
  font-size:1rem;
  font-weight:700;
}

.product-old-price{
  font-size:.75rem;
  color:#999;
  text-decoration:line-through;
}

.product-seller-name{
  font-size:.75rem;
  color:#666;
}

.verified-badge{
  font-size:.65rem;
  padding:2px 6px;
  border-radius:20px;
  background:var(--green-pale);
  color:var(--green-main);
}

/* Food card variation */
.product-card.food-card {
  border-top: 3px solid var(--food-orange);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SELLER CARDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.seller-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
}

.seller-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.seller-card-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--green-light);
}

.ranking-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.ranking-badge.gold {
  background: #FFF9C4;
  color: #F57F17;
}

.ranking-badge.silver {
  background: #F5F5F5;
  color: #616161;
}

.ranking-badge.bronze {
  background: #FBE9E7;
  color: #BF360C;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-200);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--gray-900);
}

.form-input:focus {
  border-color: var(--green-light);
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--gray-200);
  font-size: 0.9rem;
  background: var(--white);
  color: var(--gray-900);
  appearance: none;
  cursor: pointer;
}

.form-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 4px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ORDER STATUS BADGES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pending {
  background: #FFF9C4;
  color: #F57F17;
}

.status-receipt {
  background: #E3F2FD;
  color: #1565C0;
}

.status-verifying {
  background: #FFF3E0;
  color: #E65100;
}

.status-verified {
  background: var(--green-pale);
  color: var(--green-dark);
}

.status-processing {
  background: #F3E5F5;
  color: #6A1B9A;
}

.status-shipped {
  background: #E3F2FD;
  color: #0D47A1;
}

.status-delivered {
  background: var(--green-pale);
  color: var(--green-dark);
}

.status-refund {
  background: #FFF3E0;
  color: #E65100;
}

.status-refunded {
  background: #F5F5F5;
  color: #424242;
}

.status-rejected {
  background: #FFEBEE;
  color: var(--danger);
}

.status-disputed {
  background: #FFEBEE;
  color: #B71C1C;
}

.status-resolved {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UPLOAD AREA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.upload-area {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-50);
}

.upload-area:hover,
.upload-area.drag-over {
  border-color: var(--green-light);
  background: var(--green-pale);
}

.upload-area input[type="file"] {
  display: none;
}

.upload-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--green-main);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CHAT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.chat-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 600px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  max-width: 70%;
  padding: 10px 14px;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  line-height: 1.5;
  position: relative;
}

.chat-bubble.sent {
  background: var(--green-main);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-bubble.received {
  background: var(--gray-100);
  color: var(--gray-900);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-time {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-top: 4px;
  text-align: right;
}

.chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.chat-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-200);
  font-size: 0.9rem;
  resize: none;
}

.chat-send-btn {
  width: 44px;
  height: 44px;
  background: var(--green-main);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BOTTOM NAVIGATION (Mobile)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: none;
  z-index: 900;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 16px;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--green-main);
}

.bottom-nav-item svg {
  width: 24px;
  height: 24px;
}

.bottom-nav-item span {
  font-size: 0.65rem;
  font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   DASHBOARD CARDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--green-light);
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-card-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.stat-card-label {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.stat-card.green {
  border-left-color: var(--green-light);
}

.stat-card.orange {
  border-left-color: var(--food-orange);
}

.stat-card.blue {
  border-left-color: var(--info);
}

.stat-card.red {
  border-left-color: var(--danger);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAUNCH PROGRESS BAR
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.launch-tracker {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.launch-tracker-bar {
  height: 12px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin: 12px 0;
}

.launch-tracker-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--green-light),
    var(--green-dark)
  );
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NOTIFICATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.notification-item {
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: var(--transition-fast);
}

.notification-item:hover {
  background: var(--gray-50);
}

.notification-item.unread {
  background: var(--green-pale);
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.notification-message {
  font-size: 0.8rem;
  color: var(--gray-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.notification-time {
  font-size: 0.7rem;
  color: var(--gray-400);
  white-space: nowrap;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer-trust-bar {
  background: var(--green-dark);
  color: white;
  padding: 20px 0;
}

.footer-trust-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.footer-trust-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.footer-trust-item p {
  font-size: 0.7rem;
  opacity: 0.8;
}

.footer-main {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand-logo {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand-logo span:first-child {
  color: white;
}

.footer-brand-logo span:last-child {
  color: var(--green-light);
}

.footer-links h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--green-light);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHATSAPP FLOAT BUTTON
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.whatsapp-float {
  position: fixed;
  bottom: 75px;
  right: 15px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: white;
  padding: 9px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.75rem;
  box-shadow: 0 3px 12px rgba(37,211,102,0.3);
  transition: 0.3s ease;
}

.whatsapp-float a:hover {
  background: #128C7E;
  transform: scale(1.03);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODAL
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-close {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  cursor: pointer;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOAST NOTIFICATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.toast-container {
  position: fixed;
  top: 80px;
  right: 16px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  animation: toastIn 0.3s ease;
  border-left: 4px solid var(--green-light);
}

.toast.error {
  border-left-color: var(--danger);
}

.toast.warning {
  border-left-color: var(--warning);
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOADING SPINNER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-200);
  border-top-color: var(--green-main);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.8);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.loading-overlay.active {
  display: flex;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE - TABLET
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content {
    gap: 24px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE - MOBILE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  /* Show mobile nav */
  .bottom-nav {
    display: block;
  }

  /* Add padding for bottom nav */
  body {
    padding-bottom: 70px;
  }

  /* Hide desktop nav elements */
  .navbar-categories {
    display: none;
  }

  .navbar-actions .hide-mobile {
    display: none;
  }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-height: 280px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  /* Trust bar */
  .trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-badge {
    border-right: none;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 12px;
  }

  /* Products */
  .products-grid {
    grid-template-columns:
      repeat(2, 1fr);
    gap: 12px;
  }

  /* Footer */
  .footer-trust-bar .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* WhatsApp button */
  .whatsapp-float {
    bottom: 80px;
  }

  /* Form card */
  .form-card {
    padding: 20px;
    border-radius: var(--radius-lg);
  }

  /* Modal */
  .modal {
    padding: 20px;
    border-radius: var(--radius-lg);
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITY CLASSES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hidden { display: none !important; }
.flex { display: flex; }
.grid { display: grid; }
.items-center { align-items: center; }
.justify-between {
  justify-content: space-between;
}
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-full {
  border-radius: var(--radius-full);
}
.text-center { text-align: center; }
.w-full { width: 100%; }
.bg-white { background: var(--white); }
.bg-green { background: var(--green-pale); }
.shadow { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.cursor-pointer { cursor: pointer; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
/* HERO SECTION */
.hero-section{
    position:relative;
    overflow:hidden;
}

/* TIMI OF EDE FADED BACKGROUND */
.statue-bg{
    position:absolute;
    right:0;
    bottom:0;
    height:100%;
    max-height:500px;
    opacity:0.08;
    pointer-events:none;
    z-index:0;
}

.hero-content{
    position:relative;
    z-index:2;
}
.hero{
    min-height: 500px;
    display: flex;
    align-items: center;
}
/* Hero content above statue */
.hero-content{
    position: relative;
    z-index: 2;

/* Mobile */
@media (max-width:768px){
    .statue-bg{
        right: -120px;
        height: 70%;
        opacity: 0.05;
    }
}
/* MOBILE NAVBAR FIX */
@media (max-width: 768px) {

  .navbar-mobile-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .navbar-logo {
    width: 100%;
    justify-content: center;
  }

  .navbar-search {
    width: 100% !important;
    max-width: 100% !important;
    order: 2;
  }

  .navbar-search input {
    width: calc(100% - 60px);
  }

  .navbar-actions {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    order: 3;
    overflow-x: auto;
  }

  .hide-mobile {
    display: none !important;
  }

  body,
  html {
    overflow-x: hidden;
  }
}

/* CATEGORY SCROLL */
.navbar-categories .container {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.navbar-categories .container::-webkit-scrollbar {
  display: none;
}

/* WHATSAPP BUTTON */
@media (max-width:768px){
  .whatsapp-float{
    width:auto !important;
    max-width:220px;
    right:10px;
    bottom:90px;
  }
}
.category-card{
  background:white;
  border-radius:16px;
  padding:20px;
  text-align:center;
  cursor:pointer;
  box-shadow:0 2px 10px rgba(0,0,0,.08);
  transition:.3s;
}

.category-card:hover{
  transform:translateY(-3px);
}

.category-card h2{
  margin:10px 0;
  font-size:1.1rem;
}

.category-card p{
  color:#666;
  font-size:.85rem;
}