/* GoGreen Premium CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #064e3b;
  --primary-dark: #022c22;
  --primary-light: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.15);
  --accent: #84cc16;
  --earth: #78350f;
  --earth-light: #a3622a;
  --bg-body: #f4f9f6;
  --bg-card: rgba(255, 255, 255, 0.85);
  --bg-dark: #022c22;
  --text: #064e3b;
  --text-muted: #374151;
  --text-main: #1f2937;
  --border-color: rgba(220, 252, 231, 0.8);
  --gradient-hero: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #0f766e 100%);
  --gradient-card: linear-gradient(145deg, #ffffff, #f4f9f6);
  --shadow: 0 10px 30px -10px rgba(2, 44, 34, 0.06);
  --shadow-hover: 0 25px 50px -15px rgba(16, 185, 129, 0.18);
  --radius: 24px;
  --radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-body);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

#leafCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.main-content {
  position: relative;
  z-index: 1;
  min-height: 80vh;
  padding-top: 80px;
}

/* Button & UI elements */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px var(--primary-glow);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-secondary {
  background-color: white;
  color: var(--primary-dark);
  border: 2px solid var(--border-color);
}
.btn-secondary:hover {
  background-color: var(--bg-body);
  transform: translateY(-2px);
}
.btn-dark {
  background-color: var(--bg-dark);
  color: white;
}
.btn-dark:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}
.header-inner, .desktop-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 24px;
  color: var(--bg-dark);
}
.logo i {
  color: var(--primary);
  font-size: 28px;
}
.desktop-nav {
  display: flex;
  gap: 30px;
}
.desktop-nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.desktop-nav-link:hover, .desktop-nav-link.active {
  color: var(--primary);
}
.desktop-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-icon {
  position: relative;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.header-icon:hover {
  color: var(--primary);
}
.badge-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User dropdown */
.desktop-user-menu {
  position: relative;
}
.desktop-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
}
.desktop-user-avatar, .desktop-user-initial {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
.desktop-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  width: 200px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
}
.desktop-dropdown.show {
  display: flex;
}
.desktop-dropdown a {
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.desktop-dropdown a:hover {
  background-color: var(--bg-body);
  color: var(--primary);
}
.dropdown-divider {
  height: 1px;
  background: var(--border-color);
}

/* Mobile Header */
.mobile-header {
  display: none;
}
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text);
  border-radius: 2px;
}

/* Sidebar */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 46, 22, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: white;
  z-index: 1003;
  transition: var(--transition);
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.sidebar.active {
  left: 0;
}
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 15px;
}
.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.sidebar-link:hover, .sidebar-link.active {
  background-color: var(--bg-body);
  color: var(--primary);
}

/* Hero Section */
.hero-section {
  background: var(--gradient-hero);
  color: white;
  padding: 100px 20px 80px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  margin-bottom: 60px;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-title {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
}
.hero-actions {
  display: flex;
  gap: 15px;
}
.hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Impact stats strip */
.impact-strip {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  max-width: 1000px;
  margin: -40px auto 60px auto;
  position: relative;
  z-index: 10;
  border: 1px solid var(--border-color);
}
.impact-item h3 {
  font-size: 36px;
  color: var(--primary);
  font-weight: 800;
}
.impact-item p {
  color: var(--text-muted);
  font-weight: 500;
}

/* Categories Section */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--bg-dark);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}
.category-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}
.category-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: inline-block;
}
.category-name {
  font-weight: 600;
  font-size: 16px;
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 20px;
}
.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover), 0 0 0 1px var(--primary-light);
  border-color: var(--primary-light);
}
.product-badge-group {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  z-index: 4;
}
.badge-discount {
  background: linear-gradient(135deg, #ff2e63, #ff5e62);
  color: white;
  font-weight: 800;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 46, 99, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.badge-carbon-saved {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 4;
  background: linear-gradient(135deg, #0ba360, #3cba92);
  color: white;
  font-weight: 700;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(11, 163, 96, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.product-wishlist-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #f43f5e;
  transition: all 0.3s ease;
  z-index: 5;
}
.product-wishlist-btn:hover {
  background: #f43f5e;
  color: white;
  border-color: #f43f5e;
  transform: scale(1.12);
  box-shadow: 0 8px 15px rgba(244, 63, 94, 0.3);
}
.product-image-wrapper {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-body);
  position: relative;
  border-bottom: 1px solid var(--border-color);
}
.product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.product-image-wrapper img.active {
  opacity: 1;
}
.product-card:hover .product-image-wrapper img.active {
  transform: scale(1.06);
}
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.eco-score i {
  color: #cbd5e1;
  font-size: 12px;
}
.eco-score i.active {
  color: var(--accent);
}
.product-title-link {
  text-decoration: none;
  color: var(--text);
}
.product-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.eco-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}
.eco-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
}
.badge-organic { background: #dcfce7; color: #166534; }
.badge-recyclable { background: #dbeafe; color: #1e40af; }
.badge-carbon { background: #fef9c3; color: #854d0e; }
.badge-plastic-free { background: #ffedd5; color: #9a3412; }
.badge-fair-trade { background: #f3e8ff; color: #6b21a8; }

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--bg-dark);
}
.product-original-price {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 5px;
}

.product-card-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-view-card {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
.btn-view-card:hover {
  background: var(--primary-glow);
  border-color: var(--primary-light);
  transform: scale(1.05);
}
.btn-add-card {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-add-card:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}
.btn-add-card.added {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  pointer-events: none;
}
.thumbnail-wrapper {
  transition: var(--transition);
}
.thumbnail-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: white;
  padding: 80px 20px 30px 20px;
  margin-top: auto;
  border-radius: 40px 40px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent);
}
.footer-column p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 12px;
}
.footer-column ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
.footer-column ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
}
.newsletter-form input {
  flex-grow: 1;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: white;
  outline: none;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  transition: var(--transition);
}
.footer-socials a:hover {
  color: var(--accent);
}

/* Flash message */
.flash-message {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 15px 25px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2000;
  border-left: 5px solid var(--primary);
  animation: slideInUp 0.3s ease;
}
.flash-error {
  border-left-color: #f43f5e;
}
.flash-message button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  margin-left: 15px;
}

@keyframes slideInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Responsive Table / Form views */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}
.card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-body);
  outline: none;
  font-size: 16px;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Details Page */
.product-details {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}
.details-image-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-image {
  aspect-ratio: 1.1;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.details-meta {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.details-price-row {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.details-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
}
.details-carbon-banner {
  background: var(--bg-body);
  border: 1px dashed var(--primary);
  padding: 15px 20px;
  border-radius: var(--radius);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--primary-dark);
}
.details-carbon-banner i {
  font-size: 24px;
}
.eco-impact-box {
  background: #f7fee7;
  border: 1px solid #d9f99d;
  padding: 20px;
  border-radius: var(--radius);
  margin-top: 30px;
}
.eco-impact-box h5 {
  font-size: 16px;
  font-weight: 700;
  color: #3f6212;
  margin-bottom: 8px;
}
.eco-impact-box p {
  font-size: 14px;
  color: #4d7c0f;
}

/* Cart Page */
.cart-layout {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 40px;
}
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}
.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--bg-body);
}
.cart-item-info {
  flex-grow: 1;
}
.cart-item-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-btn {
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.cart-summary {
  background: white;
  border: 1px solid var(--border-color);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: fit-content;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-weight: 500;
}
.summary-row.total {
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
}

/* Admin Panel Shell */
.admin-layout {
  display: flex;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--bg-dark);
  color: white;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-header {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.admin-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
.admin-menu-link:hover, .admin-menu-link.active {
  background: var(--primary);
  color: white;
}
.admin-main {
  flex-grow: 1;
  margin-left: 260px;
  padding: 40px;
  background: #f8fafc;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.admin-table th, .admin-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.admin-table th {
  font-weight: 700;
  color: var(--text-muted);
}
.admin-table tr:hover {
  background: #f1f5f9;
}

/* Badges and Tags */
.status-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.status-pending { background: #fef3c7; color: #d97706; }
.status-confirmed { background: #dbeafe; color: #2563eb; }
.status-shipped { background: #f3e8ff; color: #7c3aed; }
.status-delivered { background: #dcfce7; color: #16a34a; }
.status-cancelled { background: #fee2e2; color: #dc2626; }

/* Grid / Responsive rules */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .product-details {
    grid-template-columns: 1fr;
  }
  .cart-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: block;
    height: 70px;
  }
  header {
    height: 70px;
  }
  .main-content {
    padding-top: 70px;
  }
  .hero-title {
    font-size: 38px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .impact-strip {
    grid-template-columns: 1fr;
    margin-top: -20px;
    gap: 30px;
  }
  .admin-sidebar {
    left: -260px;
  }
  .admin-main {
    margin-left: 0;
    padding: 20px;
  }
}

/* ===== Advanced Hero Slider ===== */
.hero-slider {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #022c22;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
  box-shadow: 0 20px 60px rgba(2, 44, 34, 0.25);
}

/* Individual Slide */
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}

/* Full-bleed background image */
.slide-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transform: scale(1);
  transition: transform 8s ease-out;
}
.slide.active .slide-bg {
  transform: scale(1.08);
}

/* Dark overlay for text readability */
.slide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Centered text content */
.slide-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

/* Badge */
.slide-content .hero-badge {
  background: rgba(132, 204, 22, 0.15);
  border: 1px solid rgba(132, 204, 22, 0.35);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(25px);
  transition: none;
}
.slide.active .hero-badge {
  animation: slideUp 0.7s 0.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Title */
.slide-content .hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}
.slide.active .hero-title {
  animation: slideUp 0.7s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Description */
.slide-content .hero-desc {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 35px;
  line-height: 1.7;
  max-width: 620px;
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}
.slide.active .hero-desc {
  animation: slideUp 0.7s 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* CTA Button */
.slide-content .btn-slider-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  color: var(--primary-dark);
  background: linear-gradient(135deg, var(--accent) 0%, #a3e635 100%);
  box-shadow: 0 8px 30px rgba(132, 204, 22, 0.35);
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(30px);
}
.slide.active .btn-slider-cta {
  animation: slideUp 0.7s 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.btn-slider-cta:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 40px rgba(132, 204, 22, 0.5);
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 16px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}
.slider-prev { left: 30px; }
.slider-next { right: 30px; }

/* Slide Counter */
.slider-counter {
  position: absolute;
  bottom: 35px;
  right: 50px;
  z-index: 10;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.slider-counter .current-num {
  color: white;
  font-size: 22px;
  font-weight: 800;
}

/* Progress Bar */
.slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}
.slider-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), #a3e635);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Dot indicators (small, minimal) */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50px;
  display: flex;
  gap: 10px;
  z-index: 10;
  align-items: center;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
}
.slider-dot.active {
  background: var(--accent);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(132, 204, 22, 0.4);
}

/* Shop Tab Navigation */
.shop-tabs {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(220, 252, 231, 0.8);
  padding: 6px;
  border-radius: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: none;
}
.tab-btn:hover {
  background: rgba(16, 185, 129, 0.08);
  color: var(--primary);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}
.tab-pane.active {
  display: block;
}

/* Shop Catalog Responsive Layout */
.shop-catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
}
.shop-catalog-layout > * {
  min-width: 0;
}
.filter-sidebar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(220, 252, 231, 0.7);
  border-radius: var(--radius);
  padding: 25px;
  height: fit-content;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.filter-sidebar:hover {
  box-shadow: var(--shadow-hover);
}

/* Category Scrollbar */
.category-scroll-container {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding: 10px 5px 20px 5px;
  margin-bottom: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.category-scroll-container::-webkit-scrollbar {
  display: none;
}
.category-scroll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-muted);
  min-width: 90px;
  transition: var(--transition);
  flex-shrink: 0;
}
.category-scroll-item .category-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(220, 252, 231, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.category-scroll-item:hover .category-icon, .category-scroll-item.active .category-icon {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}
.category-scroll-item .category-name {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 95px;
  line-height: 1.3;
}
.category-scroll-item.active .category-name {
  color: var(--primary);
}

/* Search and Filter Pill row */
.shop-search-filter-row {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  width: 100%;
}
.search-pill-form {
  position: relative;
  flex: 1;
}
.search-pill-form input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: 30px;
  border: 1px solid rgba(220, 252, 231, 0.8);
  background: white;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: var(--transition);
  outline: none;
}
.search-pill-form input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
}
.search-pill-form .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
}
.filter-toggle-pill-btn {
  background: white;
  border: 1px solid rgba(220, 252, 231, 0.8);
  padding: 0 24px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.filter-toggle-pill-btn:hover {
  background: var(--bg-body);
  transform: translateY(-2px);
}

/* Sticky Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-top: 1px solid rgba(220, 252, 231, 0.7);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -8px 30px rgba(2, 44, 34, 0.05);
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  flex: 1;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.mobile-nav-item i {
  font-size: 20px;
  transition: var(--transition);
}
.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--primary);
}
.mobile-nav-item.active i {
  transform: translateY(-2px);
  color: var(--primary);
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}
.mobile-nav-item .badge-count {
  position: absolute;
  top: 10px;
  right: 50%;
  transform: translateX(18px);
  background: #f43f5e;
  color: white;
  font-size: 10px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
  .shop-catalog-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .filter-sidebar {
    display: none;
    width: 100%;
  }
  .filter-sidebar.show {
    display: block;
    animation: slideDown 0.3s ease-out;
  }
}

@media (max-width: 768px) {
  .hero-slider { height: 480px; border-radius: 0 0 30px 30px; }
  .slide-content { padding: 0 24px; max-width: 100%; }
  .slide-content .hero-title { font-size: 32px; margin-bottom: 14px; }
  .slide-content .hero-desc { font-size: 15px; margin-bottom: 22px; }
  .slide-content .btn-slider-cta { padding: 13px 28px; font-size: 14px; }
  .slider-arrow { display: none; }
  .slider-dots { left: 50%; transform: translateX(-50%); bottom: 20px; }
  .slider-counter { display: none; }
  .slider-progress-bar { border-radius: 0 0 30px 30px; }
  .shop-tabs { width: 100%; flex-wrap: wrap; border-radius: var(--radius); padding: 5px; }
  .tab-btn { flex: 1 1 calc(50% - 8px); justify-content: center; padding: 10px 15px; font-size: 13px; }
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 70px;
  }
  .footer-bottom {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
    align-items: center !important;
    padding-bottom: 20px !important;
  }
}

/* ===== Unified Auth Modal ===== */
.auth-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(2, 44, 34, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 20px;
}
.auth-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.auth-modal {
  background: white;
  border-radius: var(--radius);
  width: 100%;
  max-width: 440px;
  padding: 40px 36px 36px 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.auth-modal-overlay.active .auth-modal {
  transform: translateY(0) scale(1);
}
.auth-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}
.auth-modal-close:hover {
  color: #f43f5e;
  transform: rotate(90deg);
}
.auth-modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.auth-modal-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--bg-dark);
  margin-top: 10px;
  margin-bottom: 4px;
}
.auth-modal-header p {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.auth-form .form-group {
  margin-bottom: 18px;
}
.auth-form .form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}
.auth-form .form-control {
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 15px;
}
.auth-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 16px;
  margin-top: 5px;
}
.auth-error {
  background: #fee2e2;
  border-left: 4px solid #f43f5e;
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 13px;
  animation: fadeIn 0.3s ease;
}
.auth-switch {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.auth-switch a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.auth-switch a:hover {
  color: var(--primary-light);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .auth-modal {
    padding: 30px 24px 28px 24px;
    max-width: 100%;
    border-radius: 20px;
  }
  .auth-modal-header h2 {
    font-size: 20px;
  }
}

/* ===== Storefront Custom Responsive Rules ===== */
.profile-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  margin-top: 20px;
}

.review-summary-box {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 40px;
  background: #fafafa;
  padding: 25px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  align-items: center;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.product-actions-wrap {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.coupon-input-group {
  display: flex;
  gap: 10px;
}

@media (max-width: 992px) {
  .profile-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .review-summary-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .review-summary-box > div:first-child {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0 !important;
    padding-bottom: 20px;
    margin-bottom: 5px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .container {
    padding: 20px 15px;
  }
  .card {
    padding: 20px;
  }
}

/* Floating Wishlist Button on Product Image */
.wishlist-float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(2, 44, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.wishlist-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(2, 44, 34, 0.15);
  color: var(--primary);
}
.wishlist-float-btn.active {
  color: #e11d48;
}

@media (max-width: 576px) {
  .cart-item {
    position: relative;
    padding: 15px;
    gap: 12px;
    align-items: flex-start;
  }
  .cart-item-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }
  .cart-item button[onclick^="removeCartItem"] {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .cart-item-info {
    padding-right: 25px;
  }
  .cart-item-info h4 {
    font-size: 14px;
    line-height: 1.3;
  }
  
  .product-actions-wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    align-items: center !important;
  }
  .product-actions-wrap .cart-item-qty {
    flex: 0 0 100px !important;
    width: 100px !important;
    height: 46px !important;
    border-width: 2px !important;
    padding: 2px !important;
    background: #ffffff !important;
    margin: 0 !important;
  }
  .product-actions-wrap .qty-btn {
    flex-grow: 0 !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: #f1f7f4 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    cursor: pointer !important;
    padding: 0 !important;
    line-height: 1 !important;
    transition: var(--transition) !important;
  }
  .product-actions-wrap .qty-btn:hover {
    background: rgba(6, 78, 59, 0.08) !important;
  }
  .product-actions-wrap #qtyInput {
    width: 30px !important;
    font-size: 14px !important;
    color: var(--primary-dark) !important;
    font-weight: 800 !important;
  }
  .product-actions-wrap button.btn-secondary {
    flex: 1 1 0% !important;
    width: auto !important;
    height: 46px !important;
    font-size: 13px !important;
    padding: 0 8px !important;
    justify-content: center !important;
    gap: 4px !important;
    margin: 0 !important;
  }
  .product-actions-wrap button.btn-primary {
    flex: 1 1 0% !important;
    width: auto !important;
    height: 46px !important;
    font-size: 13px !important;
    padding: 0 8px !important;
    justify-content: center !important;
    gap: 4px !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  .coupon-input-group {
    flex-direction: column;
    gap: 8px;
  }
  .coupon-input-group input, .coupon-input-group button {
    width: 100% !important;
    height: 40px !important;
  }
}

.auth-container {
  max-width: 500px;
  margin-top: 50px;
}

.auth-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .auth-container {
    margin-top: 20px;
  }
  .auth-card {
    padding: 24px;
  }
}
/* Order History Mobile Cards */
.mobile-orders-list {
  display: none;
  flex-direction: column;
  gap: 15px;
}
.mobile-order-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 10px;
}
.order-card-header .order-no span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
}
.order-card-header .order-no a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed var(--primary);
  margin-left: 4px;
}
.order-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.order-card-body .detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}
.order-card-body .detail-row .label {
  color: var(--text-muted);
  font-weight: 600;
}
.order-card-body .detail-row .val {
  color: var(--text-dark);
  font-weight: 600;
}
.order-card-body .detail-row .val.price {
  color: var(--bg-dark);
  font-weight: 800;
}
.order-card-body .detail-row .val.method {
  text-transform: uppercase;
  font-size: 12px;
}
.order-card-body .detail-row.eco-row {
  background: #f0fdf4;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
}
.order-card-body .detail-row .val.eco {
  color: var(--primary);
  font-weight: 700;
}
.order-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.order-card-actions .btn {
  flex: 1;
  height: 38px;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 5px;
}
.order-card-actions .invoice-btn {
  background: #e0f2fe !important;
  color: #0369a1 !important;
  border-color: #bae6fd !important;
}
.order-card-actions .invoice-btn:hover {
  background: #bae6fd !important;
}

@media (max-width: 576px) {
  .desktop-orders-card {
    display: none !important;
  }
  .mobile-orders-list {
    display: flex !important;
  }
}

/* Password Toggle Button */
.password-toggle-btn {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}
.password-toggle-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}
