/* ==========================================================================
   LIZTO DELIVERY & SUPERAPP DESIGN SYSTEM
   Modern, Ultra-fast, Mobile-first B2C Delivery Experience
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --lz-font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Brand Colors */
  --lz-primary: #10b981;
  --lz-primary-dark: #059669;
  --lz-primary-darker: #047857;
  --lz-primary-light: #ecfdf5;
  --lz-primary-soft: rgba(16, 185, 129, 0.08);
  --lz-primary-glow: rgba(16, 185, 129, 0.2);
  
  /* Secondary & Accents */
  --lz-secondary: #0f172a;
  --lz-accent: #f59e0b;
  --lz-accent-light: #fef3c7;
  --lz-danger: #ef4444;
  --lz-danger-light: #fee2e2;
  --lz-success: #10b981;
  --lz-warning: #f59e0b;
  --lz-info: #3b82f6;
  --lz-info-light: #eff6ff;

  /* Surfaces & Backgrounds */
  --lz-bg: #f8fafc;
  --lz-surface: #ffffff;
  --lz-surface-glass: rgba(255, 255, 255, 0.88);
  --lz-surface-elevated: #ffffff;
  --lz-surface-muted: #f1f5f9;
  
  /* Text */
  --lz-text: #0f172a;
  --lz-text-muted: #64748b;
  --lz-text-subtle: #94a3b8;
  --lz-text-white: #ffffff;

  /* Borders & Dividers */
  --lz-border: #e2e8f0;
  --lz-border-subtle: #f1f5f9;
  --lz-border-focus: #10b981;

  /* Radii */
  --lz-r-xs: 6px;
  --lz-r-sm: 10px;
  --lz-r-md: 16px;
  --lz-r-lg: 22px;
  --lz-r-xl: 28px;
  --lz-r-full: 9999px;

  /* Shadows */
  --lz-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --lz-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --lz-shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
  --lz-shadow-lg: 0 16px 36px -6px rgba(15, 23, 42, 0.12);
  --lz-shadow-glow: 0 8px 20px rgba(16, 185, 129, 0.25);

  /* Transitions */
  --lz-transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --lz-transition-bounce: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global Reset Overrides */
body {
  font-family: var(--lz-font) !important;
  background-color: var(--lz-bg) !important;
  color: var(--lz-text) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 72px; /* For mobile bottom nav */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--lz-transition);
}
a:hover {
  color: var(--lz-primary);
}

/* ==========================================================================
   1. APP HEADER (B2C MARKETPLACE)
   ========================================================================== */
.lz-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: var(--lz-surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lz-border);
  transition: var(--lz-transition);
}

.lz-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 12px;
}

@media (min-width: 992px) {
  .lz-header-top {
    padding: 14px 24px;
    gap: 24px;
  }
}

/* Brand */
.lz-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.lz-brand-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--lz-primary) 0%, var(--lz-primary-dark) 100%);
  border-radius: var(--lz-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: var(--lz-shadow-glow);
}
.lz-brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--lz-text);
}
.lz-brand-text span {
  color: var(--lz-primary);
}
.lz-brand-city {
  font-size: 11px;
  font-weight: 700;
  color: var(--lz-primary-dark);
  background: var(--lz-primary-light);
  padding: 2px 7px;
  border-radius: var(--lz-r-full);
  margin-left: 2px;
  display: inline-block;
  vertical-align: middle;
}

/* Location Selector Chip */
.lz-location-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lz-surface);
  border: 1.5px solid var(--lz-border);
  border-radius: var(--lz-r-full);
  padding: 6px 14px;
  cursor: pointer;
  transition: var(--lz-transition);
  max-width: 220px;
}
@media (min-width: 768px) {
  .lz-location-chip {
    max-width: 320px;
  }
}
.lz-location-chip:hover {
  border-color: var(--lz-primary);
  background: var(--lz-primary-light);
}
.lz-loc-pin {
  color: var(--lz-primary);
  font-size: 17px;
  flex-shrink: 0;
}
.lz-loc-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  line-height: 1.15;
}
.lz-loc-label {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--lz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.lz-loc-address {
  font-size: 13px;
  font-weight: 700;
  color: var(--lz-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lz-loc-arrow {
  color: var(--lz-text-subtle);
  font-size: 12px;
  flex-shrink: 0;
}

/* Header Search */
.lz-header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.lz-search-box {
  position: relative;
  width: 100%;
}
.lz-search-input {
  width: 100%;
  padding: 10px 16px 10px 42px;
  border-radius: var(--lz-r-full);
  border: 1.5px solid var(--lz-border);
  background: var(--lz-surface-muted);
  font-size: 14px;
  font-weight: 500;
  color: var(--lz-text);
  transition: var(--lz-transition);
  outline: none;
}
.lz-search-input:focus {
  background: var(--lz-surface);
  border-color: var(--lz-primary);
  box-shadow: 0 0 0 4px var(--lz-primary-glow);
}
.lz-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lz-text-muted);
  font-size: 18px;
  pointer-events: none;
}

/* Header Actions */
.lz-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lz-action-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--lz-r-full);
  border: 1px solid var(--lz-border);
  background: var(--lz-surface);
  color: var(--lz-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  cursor: pointer;
  transition: var(--lz-transition);
}
.lz-action-btn:hover {
  border-color: var(--lz-primary);
  color: var(--lz-primary);
  background: var(--lz-primary-light);
}
.lz-badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  background: var(--lz-danger);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: var(--lz-r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--lz-surface);
}

.lz-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: var(--lz-r-full);
  border: 1px solid var(--lz-border);
  background: var(--lz-surface);
  cursor: pointer;
  transition: var(--lz-transition);
  font-size: 13.5px;
  font-weight: 700;
}
.lz-user-btn:hover {
  border-color: var(--lz-primary);
}
.lz-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lz-primary-light);
  color: var(--lz-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* Service Nav Pills (Desktop) */
.lz-services-bar {
  display: none;
  background: var(--lz-surface);
  border-top: 1px solid var(--lz-border-subtle);
  padding: 6px 24px;
}
@media (min-width: 992px) {
  .lz-services-bar {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
.lz-service-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--lz-r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--lz-text-muted);
  transition: var(--lz-transition);
}
.lz-service-pill:hover {
  color: var(--lz-text);
  background: var(--lz-surface-muted);
}
.lz-service-pill.active {
  color: var(--lz-primary-dark);
  background: var(--lz-primary-light);
  font-weight: 700;
}

/* ==========================================================================
   2. BOTTOM NAVIGATION (MOBILE)
   ========================================================================== */
.lz-bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--lz-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--lz-border);
  z-index: 1030;
  justify-content: space-around;
  align-items: center;
  padding: 0 6px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}

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

.lz-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 100%;
  color: var(--lz-text-muted);
  text-decoration: none !important;
  transition: var(--lz-transition);
  position: relative;
}
.lz-nav-item i {
  font-size: 22px;
  margin-bottom: 2px;
  transition: var(--lz-transition-bounce);
}
.lz-nav-item span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}
.lz-nav-item.active {
  color: var(--lz-primary-dark);
}
.lz-nav-item.active i {
  transform: translateY(-2px) scale(1.1);
  color: var(--lz-primary);
}
.lz-nav-item.active span {
  font-weight: 800;
}

/* ==========================================================================
   3. HOME SERVICE SHORTCUTS & HERO
   ========================================================================== */
.lz-hero-section {
  padding: 20px 0 10px;
}
@media (min-width: 768px) {
  .lz-hero-section {
    padding: 32px 0 16px;
  }
}

.lz-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .lz-services-grid {
    gap: 16px;
  }
}

.lz-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--lz-r-md);
  padding: 14px 8px;
  text-align: center;
  transition: var(--lz-transition-bounce);
  box-shadow: var(--lz-shadow-xs);
  position: relative;
  overflow: hidden;
}
.lz-service-card:hover {
  transform: translateY(-3px);
  border-color: var(--lz-primary);
  box-shadow: var(--lz-shadow-md);
}
.lz-service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--lz-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 8px;
  transition: var(--lz-transition-bounce);
}
.lz-service-card:hover .lz-service-icon {
  transform: scale(1.12);
}
.lz-service-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--lz-text);
  line-height: 1.2;
}
.lz-service-sub {
  font-size: 10.5px;
  color: var(--lz-text-muted);
  margin-top: 2px;
  display: none;
}
@media (min-width: 576px) {
  .lz-service-sub {
    display: block;
  }
}

/* Service Variations */
.lz-svc-food .lz-service-icon { background: #fff1f2; color: #e11d48; }
.lz-svc-stores .lz-service-icon { background: #f0fdf4; color: #16a34a; }
.lz-svc-favor .lz-service-icon { background: #eff6ff; color: #2563eb; }
.lz-svc-taxi .lz-service-icon { background: #fefce8; color: #ca8a04; }

/* ==========================================================================
   4. CATEGORY CAROUSEL & CHIPS
   ========================================================================== */
.lz-categories-strip {
  margin: 16px 0 24px;
}
.lz-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.lz-section-title {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--lz-text);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .lz-section-title {
    font-size: 22px;
  }
}
.lz-section-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--lz-primary-dark);
}

.lz-chips-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lz-chips-scroll::-webkit-scrollbar {
  display: none;
}

.lz-cat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--lz-surface);
  border: 1.5px solid var(--lz-border);
  border-radius: var(--lz-r-full);
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--lz-text);
  transition: var(--lz-transition);
  cursor: pointer;
  box-shadow: var(--lz-shadow-xs);
}
.lz-cat-chip:hover {
  border-color: var(--lz-primary);
  background: var(--lz-primary-light);
  color: var(--lz-primary-dark);
}
.lz-cat-chip.active {
  background: var(--lz-primary);
  border-color: var(--lz-primary);
  color: #fff;
  box-shadow: var(--lz-shadow-glow);
}
.lz-cat-chip-icon {
  font-size: 16px;
}

/* ==========================================================================
   5. RESTAURANT CARDS & GRID
   ========================================================================== */
.lz-stores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .lz-stores-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .lz-stores-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.lz-store-card {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--lz-r-lg);
  overflow: hidden;
  transition: var(--lz-transition);
  box-shadow: var(--lz-shadow-xs);
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none !important;
}
.lz-store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lz-shadow-lg);
  border-color: rgba(16, 185, 129, 0.3);
}

.lz-store-cover {
  position: relative;
  width: 100%;
  height: 150px;
  background: var(--lz-surface-muted);
  overflow: hidden;
}
@media (min-width: 768px) {
  .lz-store-cover {
    height: 165px;
  }
}
.lz-store-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.lz-store-card:hover .lz-store-cover img {
  transform: scale(1.05);
}

.lz-store-badge-open {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: var(--lz-r-full);
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 5px;
}
.lz-badge-live {
  background: rgba(16, 185, 129, 0.9);
  color: #fff;
}
.lz-badge-closed {
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
}

.lz-store-fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--lz-text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: var(--lz-transition);
}
.lz-store-fav-btn:hover {
  color: var(--lz-danger);
  transform: scale(1.1);
}

.lz-store-body {
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  flex: 1;
}
.lz-store-logo {
  width: 48px;
  height: 48px;
  border-radius: var(--lz-r-md);
  border: 1px solid var(--lz-border);
  background: #fff;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: -24px;
  position: relative;
  z-index: 2;
  box-shadow: var(--lz-shadow-sm);
}
.lz-store-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lz-store-content {
  flex: 1;
  overflow: hidden;
}
.lz-store-name {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--lz-text);
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lz-store-meta {
  font-size: 12.5px;
  color: var(--lz-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.lz-meta-dot {
  font-size: 6px;
  color: var(--lz-text-subtle);
}

.lz-store-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--lz-border-subtle);
  font-size: 12px;
  font-weight: 600;
  color: var(--lz-text-muted);
}
.lz-store-delivery {
  color: var(--lz-primary-dark);
  font-weight: 700;
}
.lz-store-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--lz-text);
  font-weight: 700;
}
.lz-store-rating i {
  color: #f59e0b;
}

/* ==========================================================================
   6. RESTAURANT DETAIL & PRODUCT CARDS
   ========================================================================== */
.lz-store-hero {
  background: var(--lz-surface);
  border-bottom: 1px solid var(--lz-border);
  padding: 16px 0 20px;
}
.lz-store-hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .lz-store-hero-card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.lz-store-hero-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--lz-r-lg);
  border: 1.5px solid var(--lz-border);
  overflow: hidden;
  box-shadow: var(--lz-shadow-md);
  flex-shrink: 0;
}
.lz-store-hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sticky Category Navigation */
.lz-sticky-cats {
  position: sticky;
  top: 0 !important;
  z-index: 1010;
  background: #ffffff;
  border-bottom: 1px solid var(--lz-border);
  padding: 10px 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}
.lz-sticky-cats-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.lz-sticky-cats-scroll::-webkit-scrollbar {
  display: none;
}
.lz-cat-tab {
  padding: 8px 16px;
  border-radius: var(--lz-r-full);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lz-text-muted);
  white-space: nowrap;
  transition: var(--lz-transition);
  background: transparent;
  border: none;
  cursor: pointer;
}
.lz-cat-tab.active {
  background: var(--lz-primary);
  color: #fff;
  box-shadow: var(--lz-shadow-glow);
}

/* Product Card */
.lz-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) {
  .lz-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.lz-product-card {
  display: flex;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--lz-r-md);
  padding: 14px;
  gap: 14px;
  cursor: pointer;
  transition: var(--lz-transition);
  position: relative;
  overflow: hidden;
}
.lz-product-card:hover {
  border-color: var(--lz-primary);
  box-shadow: var(--lz-shadow-md);
  transform: translateY(-2px);
}
.lz-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lz-product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--lz-text);
  margin: 0 0 4px;
  line-height: 1.25;
}
.lz-product-desc {
  font-size: 12.5px;
  color: var(--lz-text-muted);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.lz-product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.lz-product-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--lz-primary-darker);
}
.lz-product-old-price {
  font-size: 13px;
  color: var(--lz-text-subtle);
  text-decoration: line-through;
}

.lz-product-thumb {
  width: 90px;
  height: 90px;
  border-radius: var(--lz-r-sm);
  background: var(--lz-surface-muted);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.lz-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lz-product-add-btn {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lz-primary);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--lz-shadow-sm);
  transition: var(--lz-transition);
}
.lz-product-card:hover .lz-product-add-btn {
  transform: scale(1.1);
  background: var(--lz-primary-dark);
}

/* ==========================================================================
   7. PRODUCT DETAIL MODAL & BOTTOM SHEET
   ========================================================================== */
.lz-bottom-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lz-bottom-sheet-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.lz-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 90vh;
  background: var(--lz-surface);
  border-radius: var(--lz-r-xl) var(--lz-r-xl) 0 0;
  z-index: 1060;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--lz-shadow-lg);
}
@media (min-width: 768px) {
  .lz-bottom-sheet {
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    width: 90%;
    max-width: 540px;
    border-radius: var(--lz-r-xl);
    transform: translate(-50%, -40%) scale(0.95);
    opacity: 0;
  }
}
.lz-bottom-sheet.active {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .lz-bottom-sheet.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.lz-sheet-handle {
  width: 40px;
  height: 5px;
  background: var(--lz-border);
  border-radius: var(--lz-r-full);
  margin: 12px auto 6px;
}
@media (min-width: 768px) {
  .lz-sheet-handle {
    display: none;
  }
}

.lz-sheet-body {
  padding: 16px 20px;
  overflow-y: auto;
  flex: 1;
}

.lz-sheet-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--lz-border);
  background: var(--lz-surface);
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Quantity Selector */
.lz-qty-selector {
  display: inline-flex;
  align-items: center;
  background: var(--lz-surface-muted);
  border-radius: var(--lz-r-full);
  padding: 4px;
  gap: 12px;
}
.lz-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--lz-text);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--lz-shadow-xs);
  transition: var(--lz-transition);
}
.lz-qty-btn:hover {
  background: var(--lz-primary);
  color: #fff;
}
.lz-qty-val {
  font-size: 15px;
  font-weight: 800;
  min-width: 20px;
  text-align: center;
}

/* Big CTA Button */
.lz-btn-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--lz-primary);
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  border-radius: var(--lz-r-full);
  border: none;
  cursor: pointer;
  transition: var(--lz-transition);
  box-shadow: var(--lz-shadow-glow);
}
.lz-btn-cta:hover {
  background: var(--lz-primary-dark);
  transform: translateY(-1px);
}
.lz-btn-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ==========================================================================
   8. FLOATING STICKY CART BAR (MOBILE)
   ========================================================================== */
.lz-floating-cart-bar {
  position: fixed;
  bottom: 74px; /* Above mobile bottom nav */
  left: 16px;
  right: 16px;
  z-index: 1025;
  background: var(--lz-secondary);
  color: #fff;
  border-radius: var(--lz-r-full);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--lz-shadow-lg);
  cursor: pointer;
  transition: var(--lz-transition-bounce);
  animation: lzSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 992px) {
  .lz-floating-cart-bar {
    display: none !important;
  }
}
@keyframes lzSlideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.lz-fc-count {
  background: var(--lz-primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.lz-fc-title {
  font-size: 14.5px;
  font-weight: 700;
}
.lz-fc-total {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

/* ==========================================================================
   9. SKELETON LOADERS
   ========================================================================== */
.lz-skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 37%, #f1f5f9 63%);
  background-size: 400% 100%;
  animation: lzShimmer 1.4s ease infinite;
  border-radius: var(--lz-r-sm);
}

@keyframes lzShimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}
