:root {
  /* Color Palette - Fresh Organic Theme */
  --primary-color: #22c55e;       /* Emerald/Grass Green */
  --primary-hover: #16a34a;
  --secondary-color: #0f172a;     /* Deep Slate / Charcoal */
  --accent-color: #2563eb;        /* Classic Kyte Blue */
  --accent-hover: #1d4ed8;
  --bg-main: #f8fafc;             /* Soft light grey-blue */
  --bg-card: #ffffff;
  --text-main: #1e293b;           /* Slate 800 */
  --text-muted: #64748b;          /* Slate 500 */
  --border-color: #e2e8f0;        /* Slate 200 */
  
  /* System colors */
  --danger: #ef4444;
  --warning: #f59e0b;
  --success: #22c55e;
  --pending: #f59e0b;
  --shipped: #3b82f6;
  --delivered: #22c55e;
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Layout & Shadows */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-floating: 0 20px 40px -15px rgba(34, 197, 94, 0.35);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Header Section */
.main-header {
  background-color: var(--secondary-color);
  color: white;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.brand-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.brand-logo.admin-logo {
  background: linear-gradient(135deg, var(--accent-color), #60a5fa);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.brand-text h1 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-text p {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-indicator.online {
  background-color: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color);
  animation: pulseGreen 2s infinite;
}

/* Layout Split: Left Sidebar & Right Content */
.main-layout-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 80px;
  align-items: flex-start;
}

/* Left Sidebar Styles */
.left-info-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.info-card h4 {
  font-family: var(--font-title);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.contact-item i {
  color: var(--accent-color);
  margin-top: 3px;
  width: 14px;
}

.contact-item a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-item a:hover {
  color: var(--accent-color);
}

.contact-item span {
  color: var(--text-main);
  font-weight: 400;
}

.delivery-options-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.delivery-options-list li {
  display: flex;
  gap: 12px;
  font-size: 13px;
  align-items: center;
}

.delivery-options-list li i {
  color: var(--primary-color);
  font-size: 16px;
  background-color: rgba(34, 197, 94, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-options-list li div {
  display: flex;
  flex-direction: column;
}

.delivery-options-list li div strong {
  font-weight: 600;
}

.delivery-options-list li div span {
  font-size: 11px;
  color: var(--text-muted);
}

/* Category filter inside sidebar */
.categories-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-chip {
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.category-chip:hover {
  background-color: rgba(34, 197, 94, 0.05);
  color: var(--primary-color);
}

.category-chip.active {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.15);
}

/* Store Content Layout */
.store-main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Premium Store Banner (Matches screenshots) */
.store-banner-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.store-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-color), #fbbf24);
}

.store-banner-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-title {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.banner-subtitle {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.banner-slogan {
  font-size: 13px;
  color: var(--text-main);
  background-color: #fef08a; /* Soft Yellow Highlight */
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}

.banner-whatsapp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #16a34a;
  font-weight: 700;
  font-size: 18px;
}

.banner-whatsapp-row i {
  font-size: 22px;
}

/* Search Bar (Matches screenshots) */
.search-filter-bar {
  width: 100%;
}

.search-box {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.search-box:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.search-box i {
  color: var(--text-muted);
}

.search-box input {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-main);
}

.search-box input::placeholder {
  color: var(--text-muted);
}

/* Products Header */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.products-header h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
}

.product-count {
  font-size: 12px;
  color: var(--text-muted);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Product Card (Matches Screenshot style) */
.product-card {
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

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

.product-image-container {
  position: relative;
  width: 100%;
  height: 150px;
  background-color: #f8fafc;
  overflow: hidden;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-details {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-details h4 {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary-color);
  line-height: 1.3;
}

.product-details p {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.product-price {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-color); /* Blue color for price */
}

.btn-add {
  background-color: var(--accent-color); /* Blue add button */
  color: white;
  border: none;
  outline: none;
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-size: 14px;
}

.btn-add:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

/* Skeleton Loading Effect */
.skeleton-card {
  height: 280px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty State / No Results */
.no-results {
  text-align: center;
  padding: 60px 20px;
  background-color: var(--bg-card);
  border-radius: var(--border-radius-md);
  border: 1px dashed var(--border-color);
}

.no-results i {
  font-size: 40px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.no-results h4 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.no-results p {
  color: var(--text-muted);
  font-size: 13px;
}

/* Floating Cart Button */
.floating-cart-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  color: white;
  border: none;
  outline: none;
  padding: 14px 24px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-floating);
  cursor: pointer;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.floating-cart-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(34, 197, 94, 0.45);
}

.cart-icon-wrapper {
  position: relative;
  font-size: 18px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--danger);
  color: white;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  animation: popBadge 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Cart Drawer (Matches Screenshot 5) */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: var(--bg-card);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-normal);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
}

.close-drawer-btn {
  background: none;
  border: none;
  outline: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.close-drawer-btn:hover {
  background-color: var(--bg-main);
  color: var(--secondary-color);
}

.cart-drawer-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Action link (Vaciar carrito) */
.cart-action-links {
  text-align: right;
  margin-top: -8px;
}

.btn-clear-cart {
  background: none;
  border: none;
  outline: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.btn-clear-cart:hover {
  color: var(--danger);
  text-decoration: underline;
}

/* Empty Cart State */
.empty-cart-state {
  text-align: center;
  margin: 40px 0;
  color: var(--text-muted);
}

.empty-cart-state i {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.4;
}

.empty-cart-state p {
  font-size: 13px;
}

/* Cart Item Row (Screenshot 5 style) */
.cart-item {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
  align-items: center;
}

.cart-item-img {
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-sm);
  object-fit: cover;
  background-color: #f1f5f9;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-details h5 {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.cart-item-price {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-color);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bg-main);
  border-radius: 4px;
  padding: 2px 6px;
  border: 1px solid var(--border-color);
}

.cart-item-btn {
  background: none;
  border: none;
  outline: none;
  color: var(--accent-color); /* Blue plus/minus */
  cursor: pointer;
  font-size: 11px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.cart-item-btn:hover {
  background-color: var(--border-color);
}

.cart-item-qty {
  font-size: 12px;
  font-weight: 700;
  min-width: 14px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  outline: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 14px;
  padding: 6px;
  transition: var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--danger);
}

/* Inner Checkout Fields (Screenshot 5) */
.cart-checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.cart-drawer-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-drawer-section h4 {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-color);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4px;
}

.cart-drawer-section textarea {
  width: 100%;
  height: 60px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
  resize: none;
  background-color: var(--bg-main);
  transition: var(--transition-fast);
}

.cart-drawer-section textarea:focus {
  border-color: var(--primary-color);
  background-color: white;
}

/* Forma de Entrega Radios */
.delivery-options-radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.delivery-radio-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.delivery-radio-label input {
  margin-top: 4px;
}

.delivery-radio-content {
  display: flex;
  flex-direction: column;
}

.delivery-radio-content strong {
  font-size: 12px;
  color: var(--text-main);
}

.delivery-radio-content span {
  font-size: 11px;
  color: var(--text-muted);
}

.delivery-radio-label:has(input:checked) {
  border-color: var(--primary-color);
  background-color: rgba(34, 197, 94, 0.05);
}

/* Delivery Sub-fee Box (Screenshot 5) */
.delivery-sub-option-box {
  padding-left: 24px;
  margin-top: -4px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
}

.sub-option-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  cursor: pointer;
}

.sub-option-label input {
  margin-top: 3px;
}

.sub-option-label span {
  font-weight: 500;
  color: var(--text-main);
}

.sub-option-label small {
  color: var(--text-muted);
}

/* Forma de Pago Radios */
.payment-radios {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.payment-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  cursor: pointer;
}

/* Forms inside Drawer */
.form-group-drawer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.form-group-drawer label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group-drawer input {
  padding: 8px 10px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  outline: none;
  background-color: var(--bg-main);
  transition: var(--transition-fast);
  width: 100%;
}

.form-group-drawer input:focus {
  border-color: var(--primary-color);
  background-color: white;
}

/* Cart Drawer Footer */
.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-main);
}

.cart-totals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.total-row.main-total {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary-color);
  border-top: 1px solid var(--border-color);
  padding-top: 6px;
  margin-top: 2px;
}

.total-row.main-total #cart-total {
  color: var(--accent-color); /* Blue for total */
}

/* Primary Button Override */
.btn-primary {
  width: 100%;
  background: var(--accent-color); /* Blue checkout button matching screenshot */
  color: white;
  border: none;
  outline: none;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  background: #cbd5e1;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-secondary:hover {
  background-color: var(--border-color);
}

/* Toast Notifications */
.toast-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background-color: var(--secondary-color);
  color: white;
  padding: 10px 18px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification i {
  color: var(--primary-color);
}

/* Footer */
.main-footer {
  background-color: var(--secondary-color);
  color: #64748b;
  padding: 30px 0;
  text-align: center;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.developed-by {
  font-size: 11px;
}

.developed-by i {
  color: var(--danger);
  animation: beat 1s infinite alternate;
}

/* Animations */
@keyframes beat {
  to { transform: scale(1.2); }
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes popBadge {
  0% { transform: scale(0); }
  80% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Mobile Bottom Navigation Styles */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-color);
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.04);
}

.mobile-nav-item {
  background: none;
  border: none;
  outline: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  flex: 1;
  height: 100%;
  transition: var(--transition-fast);
}

.mobile-nav-item i {
  font-size: 18px;
}

.mobile-nav-item.active {
  color: var(--primary-color);
  font-weight: 700;
}

.mobile-cart-icon-nav {
  position: relative;
  display: inline-flex;
}

.mobile-cart-icon-nav .cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--danger);
  color: white;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-card);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  body {
    padding-bottom: 74px; /* Space for mobile bottom nav bar */
  }

  .main-layout-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 15px;
  }
  
  /* Hide sidebar and store main content by default, only show active */
  .left-info-sidebar {
    display: none;
    position: relative;
    top: 0;
    width: 100%;
    animation: fadeIn var(--transition-normal);
  }
  
  .left-info-sidebar.active-mobile-view {
    display: flex !important;
  }

  .store-main-content {
    display: none;
    animation: fadeIn var(--transition-normal);
  }

  .store-main-content.active-mobile-view {
    display: flex !important;
  }
  
  .categories-chips {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 6px;
    gap: 8px;
  }
  
  .category-chip {
    white-space: nowrap;
    padding: 8px 12px;
  }

  .mobile-bottom-nav {
    display: flex; /* Show bottom nav on mobile */
  }

  .floating-cart-btn {
    display: none !important; /* Hide floating cart btn, bottom nav replaces it */
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 24px;
  }
  
  .banner-subtitle {
    font-size: 11px;
    letter-spacing: 1px;
  }

  .banner-slogan {
    font-size: 11px;
  }

  .banner-whatsapp-row {
    font-size: 15px;
  }

  .header-actions {
    display: none;
  }
  
  .main-layout-container {
    padding-bottom: 80px;
  }

  /* Compact 2-column Grid for mobile store catalog */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .product-image-container {
    height: 110px;
  }

  .product-details {
    padding: 12px;
  }

  .product-details h4 {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .product-details p {
    display: none; /* Hide product description on small devices for compact grid */
  }

  .product-price {
    font-size: 14px;
  }

  .btn-add {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  /* Slide-up Bottom Sheet Drawer for mobile cart */
  .cart-drawer {
    position: fixed;
    top: auto;
    bottom: -100%;
    right: 0;
    width: 100%;
    height: 85%;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    transition: bottom var(--transition-normal);
  }

  .cart-drawer.active {
    bottom: 0;
    right: 0;
  }
}

/* Catalog Only Mode Overrides */
body.catalog-only-active .btn-add,
body.catalog-only-active #floating-cart-btn,
body.catalog-only-active [onclick*="toggleCartDrawer"],
body.catalog-only-active .mobile-bottom-nav button:last-child {
  display: none !important;
}
body.catalog-only-active .mobile-bottom-nav {
  grid-template-columns: 1fr 1fr !important;
}
