/* ==========================================================================
   daily.shop - NATIVE MOBILE APP-GRADE STYLESHEET (ZEPTO/BLINKIT/MEESHO STYLE)
   ========================================================================== */

:root {
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --wa-darker: #075E54;
  --primary: #0F172A;
  --primary-light: #1E293B;
  --accent-orange: #FF5722;
  --accent-red: #EF4444;
  --accent-gold: #F59E0B;
  --bg-main: #F4F6F9;
  --bg-card: #FFFFFF;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-app: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 10px rgba(0, 0, 0, 0.04);
  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. GLOBAL RESET & APP TOUCH FEEL */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html, body {
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-bottom: 72px; /* Space for Bottom App Dock */
}

/* ZERO RAW BLUE/PURPLE HYPERLINKS ANYWHERE */
a, a:visited, a:hover, a:focus, a:active {
  text-decoration: none !important;
  color: inherit;
}

button, input {
  font-family: inherit;
  border: none;
  background: none;
}

/* 2. SLEEK TOP MARQUEE (26px APP RIBBON) */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #0B132B;
  color: #E2E8F0;
  padding: 5px 0;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 26s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
}

.ticker-item span.highlight {
  color: #FACC15;
  font-weight: 700;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 3. NATIVE APP TOP BAR (50px HEIGHT, COMPACT, CLEAN & FIXED) */
.app-header, .main-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.app-header-inner, .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 50px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-logo, .brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.logo-badge, .logo-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.35);
}

.logo-text, .brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-text span, .brand-title span {
  color: var(--wa-green);
}

.logo-sub-tag, .brand-tag {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  text-transform: uppercase;
}

.app-header-right, .header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-header-search {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  transition: var(--transition);
}

.btn-header-search:active {
  background: #E2E8F0;
  transform: scale(0.94);
}

.btn-app-channel, .btn-channel {
  background: #25D366;
  color: white !important;
  padding: 6px 11px;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 7px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-app-channel:active, .btn-channel:active {
  transform: scale(0.95);
}

.btn-app-menu {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-app-menu:active {
  background: #E2E8F0;
  transform: scale(0.94);
}

.btn-header-back {
  background: #F1F5F9;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 4. APP SEARCH PILL (ZEPTO/BLINKIT STYLE) */
.app-search-section {
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 12px;
}

.app-search-box {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.app-search-box:focus-within {
  border-color: var(--wa-green);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.app-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.88rem;
  color: var(--text-main);
  background: transparent;
}

.app-search-box input::placeholder {
  color: #94A3B8;
}

.search-clear-btn {
  display: none;
  color: #94A3B8;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 2px 6px;
}

/* 5. SLIDE-OUT OFF-CANVAS DRAWER (100% OFF-SCREEN & ZERO SPILLOVER) */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 82%;
  max-width: 320px;
  height: 100%;
  height: 100dvh;
  background: #ffffff;
  z-index: 10000;
  box-shadow: 4px 0 25px rgba(0, 0, 0, 0.25);
  transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer-backdrop.open .drawer-panel {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.drawer-header {
  background: linear-gradient(135deg, #0F172A, #1E293B);
  color: white;
  padding: 22px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.drawer-avatar {
  width: 40px;
  height: 40px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.drawer-close-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
}

.drawer-nav {
  padding: 14px 12px;
  overflow-y: auto;
  flex: 1;
}

.drawer-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  background: #F8FAFC;
  transition: var(--transition);
}

.drawer-nav-item:active {
  background: #E2E8F0;
  transform: scale(0.98);
}

.drawer-nav-item span.icon {
  font-size: 1.1rem;
  margin-right: 10px;
}

.drawer-nav-item.highlight-green {
  color: #15803D;
  background: #DCFCE7;
  font-weight: 700;
}

.drawer-footer {
  padding: 14px;
  border-top: 1px solid var(--border-color);
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  background: #F8FAFC;
}

/* 6. APP HERO BANNER (ZEPTO/BLINKIT STYLE PROMO BANNER) */
.app-hero-wrap {
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 12px;
}

.app-hero-card {
  background: linear-gradient(135deg, #091E3A 0%, #162C4E 55%, #064E3B 100%);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-app);
}

.hero-deal-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 800;
  color: #FDE047;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.app-hero-card h1 {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 5px;
  letter-spacing: -0.3px;
}

.app-hero-card p {
  color: #CBD5E1;
  font-size: 0.8rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.hero-props-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.hero-prop-tag {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 4px 9px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  color: #F8FAFC;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-cta-btns {
  display: flex;
  gap: 8px;
}

.btn-app-hero-primary {
  background: #25D366;
  color: white !important;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
}

.btn-app-hero-primary:active {
  transform: scale(0.96);
}

.btn-app-hero-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: white !important;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 7. HORIZONTAL SWIPEABLE CATEGORY BAR (APP STYLE) */
.app-category-bar {
  max-width: 1200px;
  margin: 12px auto 0;
  padding: 0 12px;
}

.app-category-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.app-category-scroll::-webkit-scrollbar {
  display: none;
}

.app-cat-chip {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.app-cat-chip:active {
  transform: scale(0.96);
}

.app-cat-chip.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.2);
}

/* 8. APP PRODUCT FEED (2 COLUMNS MOBILE APP GRID) */
.app-content-container {
  max-width: 1200px;
  margin: 14px auto 30px;
  padding: 0 12px;
}

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

.app-section-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 769px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

/* NATIVE APP PRODUCT CARD (ZEPTO/MEESHO STYLE) */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}

.product-card:active {
  transform: scale(0.98);
}

.card-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
  color: white;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  box-shadow: 0 2px 6px rgba(239, 68, 68, 0.35);
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F8FAFC;
  position: relative;
  cursor: pointer;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.stock-urgency {
  background: #FEF2F2;
  color: #DC2626;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  width: fit-content;
}

.pulse-dot {
  width: 5px;
  height: 5px;
  background: #DC2626;
  border-radius: 50%;
  display: inline-block;
  animation: dot-pulse 1.4s infinite;
}

@keyframes dot-pulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.card-category {
  font-size: 0.64rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.card-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.7rem;
  color: var(--accent-gold);
  margin-bottom: 5px;
  font-weight: 700;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 3px;
  flex-wrap: wrap;
}

.offer-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: #0F172A;
}

.mrp-price {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.discount-pill {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 4px;
  border-radius: 3px;
}

.cod-location-badge {
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  width: fit-content;
}

.card-actions {
  display: flex;
  gap: 5px;
  margin-top: auto;
}

.btn-wa-order {
  flex: 1;
  background: #25D366;
  color: #ffffff !important;
  border: none;
  padding: 8px 10px;
  border-radius: var(--radius-xs);
  font-size: 0.76rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-wa-order:active {
  transform: scale(0.96);
  background: #1eb956;
}

.btn-share {
  background: #F1F5F9;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* 9. DEDICATED PRODUCT PAGE (`product.html`) */
.product-page-container {
  max-width: 1100px;
  margin: 12px auto 40px;
  padding: 0 12px;
}

.breadcrumb-nav, .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb-nav a, .breadcrumb a {
  color: #64748B;
  flex-shrink: 0;
}

.bc-sep {
  color: #CBD5E1;
  flex-shrink: 0;
}

.bc-item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bc-active {
  color: var(--primary);
  font-weight: 700;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

@media (min-width: 769px) {
  .product-detail-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 30px;
    padding: 24px;
  }
}

.p-main-img-card {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #F8FAFC;
  position: relative;
  border: 1px solid var(--border-color);
}

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

.p-cat-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.p-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 8px;
}

.p-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.p-stars {
  font-weight: 800;
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.p-reviews {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.p-verified-badge {
  background: #DCFCE7;
  color: #15803D;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.cro-urgency-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 6px;
}

.cod-banner-card {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.cod-headline {
  color: #1E40AF;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

.cod-sub {
  font-size: 0.72rem;
  color: #3B82F6;
}

.p-cta-group {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.p-specs-box, .p-description-box {
  margin-bottom: 18px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.p-specs-box h3, .p-description-box h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.p-feature-list {
  list-style: none;
  font-size: 0.82rem;
  color: #334155;
}

.p-feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
  line-height: 1.45;
}

.p-replacement-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.p-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.p-trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  color: #64748B;
  gap: 2px;
}

/* STICKY BOTTOM BAR FOR PRODUCT PAGE (MOBILE) */
.product-sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  box-shadow: 0 -4px 15px rgba(0,0,0,0.08);
  padding: 8px 14px;
  padding-bottom: max(10px, env(safe-area-inset-bottom, 10px));
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-buy-info {
  display: flex;
  flex-direction: column;
}

.sticky-buy-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
}

.sticky-buy-cod {
  font-size: 0.65rem;
  color: #15803D;
  font-weight: 700;
}

.btn-sticky-order {
  flex: 1;
  max-width: 260px;
  background: #25D366;
  color: white !important;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}

.btn-sticky-order:active {
  transform: scale(0.97);
}

/* 10. NATIVE MOBILE BOTTOM APP DOCK (FIXED AT BOTTOM FOR MAIN/TRACK/POLICIES) */
.mobile-app-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: #ffffff;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.06);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.dock-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #64748B;
  font-size: 0.68rem;
  font-weight: 700;
  flex: 1;
  height: 100%;
}

.dock-item.active {
  color: var(--wa-green);
}

.dock-item svg {
  width: 20px;
  height: 20px;
}

.dock-cta-btn {
  background: #25D366;
  color: white !important;
  border-radius: var(--radius-full);
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}

/* HIDE DESKTOP SALES TOAST ON MOBILE SCREEN */
@media (max-width: 768px) {
  .sales-toast {
    display: none !important;
  }
}

/* 11. TRUST SECTION */
.trust-banner-section {
  max-width: 1200px;
  margin: 24px auto;
  padding: 0 12px;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
}

@media (min-width: 769px) {
  .trust-card-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 22px;
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.trust-icon {
  font-size: 1.3rem;
}

.trust-text h4 {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2px;
}

.trust-text p {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* 12. FOOTER */
.main-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 26px 14px 18px;
  margin-top: 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 769px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
}

.footer-col h3, .footer-col h4 {
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.8rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #1E293B;
  padding-top: 12px;
  text-align: center;
  font-size: 0.72rem;
}
