/* ==========================================================================
   SENZO INDIA - CLEAN, LIGHT & PROFESSIONAL GLOBAL STYLES
   Theme: Light Canvas, Navy Structure, Electric Orange CTAs, Eco Green Badges
   ========================================================================== */

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

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

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

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

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* Accessibility Skip Link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy-dark);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top var(--transition-fast);
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.skip-to-content:focus {
  top: 1rem;
}

p {
  color: var(--text-secondary);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background: var(--navy-dark);
  color: #94a3b8;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  overflow: hidden;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
}

.announcement-ticker {
  display: flex;
  align-items: center;
  min-height: 22px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.ticker-item {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #e2e8f0;
  animation: tickerFade 0.35s ease forwards;
  white-space: nowrap;
}

.ticker-item strong {
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-item span {
  white-space: nowrap;
}

.ticker-item.active {
  display: inline-flex;
}

@keyframes tickerFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.announcement-link {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.announcement-link:hover {
  color: var(--orange-primary);
}

/* ==========================================================================
   MAIN NAVIGATION (SLEEK & CLEAN)
   ========================================================================== */
.header-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.brand-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.15);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-icon-box {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(10, 17, 40, 0.15);
}

.brand-icon-box svg {
  width: 22px;
  height: 22px;
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--navy-dark);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

/* Pincode Pill */
.pincode-trigger-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}

.pincode-trigger-btn:hover {
  background: var(--orange-subtle);
  border-color: var(--orange-border);
  color: var(--orange-primary);
}

.pincode-trigger-btn svg {
  color: var(--green-dark);
  width: 15px;
  height: 15px;
}

/* Search Bar */
.nav-search-bar {
  flex: 1;
  max-width: 420px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  transition: all var(--transition-fast);
}

.search-input-wrap:focus-within {
  border-color: var(--orange-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.12);
}

.search-input-wrap svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

.search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-main);
  width: 100%;
  font-size: 0.88rem;
}

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-icon-btn {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  padding: 0.45rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  font-size: 0.85rem;
  font-weight: 600;
}

.nav-icon-btn:hover {
  border-color: var(--navy-dark);
  color: var(--navy-dark);
  box-shadow: var(--shadow-xs);
}

.badge-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--orange-primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-b2b {
  background: transparent;
  border: 1.5px solid var(--navy-dark);
  color: var(--navy-dark);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-b2b:hover {
  background: var(--navy-dark);
  color: #ffffff;
}

/* Secondary Sub-nav */
.sub-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 0.45rem 0;
}

.sub-nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.sub-nav-links::-webkit-scrollbar {
  display: none;
}

.sub-nav-link {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.3rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

.sub-nav-link:hover, .sub-nav-link.active {
  color: var(--navy-dark);
  font-weight: 600;
}

.sub-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange-primary);
}

.tag-hot {
  font-size: 0.62rem;
  background: var(--orange-subtle);
  color: var(--orange-primary);
  border: 1px solid var(--orange-border);
  padding: 1px 5px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  margin-left: 0.3rem;
  text-transform: uppercase;
}

/* ==========================================================================
   HERO SECTION (CLEAN, AIRY, HIGH-END AUTOMOTIVE)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 3.5rem 0 3rem 0;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-subtle);
  border: 1px solid var(--green-border);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.hero-title .text-electric {
  color: var(--orange-primary);
}

.hero-title .text-eco {
  color: var(--green-dark);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  max-width: 520px;
  line-height: 1.6;
}

.hero-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--orange-primary);
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
}

.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.35);
}

.btn-secondary {
  background: #ffffff;
  color: var(--navy-dark);
  border: 1px solid var(--border-medium);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--navy-dark);
  background: var(--bg-subtle);
}

.btn-eco {
  background: var(--green-primary);
  color: #ffffff;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
}

.btn-eco:hover {
  background: var(--green-dark);
}

/* Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--green-subtle);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.25;
}

.trust-text strong {
  color: var(--navy-dark);
  display: block;
  font-size: 0.84rem;
}

/* ==========================================================================
   CLEAN STATS STRIP
   ========================================================================== */
.stats-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--border-light);
}

.stat-card:last-child {
  border-right: none;
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-number.orange {
  color: var(--orange-primary);
}

.stat-number.green {
  color: var(--green-dark);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem auto;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--orange-subtle);
  border: 1px solid var(--orange-border);
  color: var(--orange-hover);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.section-tag.green {
  background: var(--green-subtle);
  border-color: var(--green-border);
  color: var(--green-dark);
}

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ==========================================================================
   WHY SENZO INDIA - CLEAN CARDS
   ========================================================================== */
.why-senzo-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
}

.features-box-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-medium);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--orange-subtle);
  color: var(--orange-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-box.eco .feature-icon-wrap {
  background: var(--green-subtle);
  color: var(--green-dark);
}

.feature-title {
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin-bottom: 0.4rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   B2B WHOLESALE BANNER
   ========================================================================== */
.b2b-cta-section {
  padding: 3.5rem 0;
}

.b2b-card {
  background: var(--navy-dark);
  border-radius: var(--radius-xl);
  padding: 2.75rem 3rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 2rem;
  color: #ffffff;
}

.b2b-title {
  font-size: 1.9rem;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.b2b-desc {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.b2b-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.b2b-perk {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  color: #e2e8f0;
}

.b2b-perk svg {
  color: var(--green-primary);
}

.b2b-btn-wrap {
  text-align: right;
}

/* ==========================================================================
   WARRANTY SECTION
   ========================================================================== */
.warranty-section {
  padding: 4rem 0;
}

.warranty-card-grid {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.warranty-input-wrap {
  display: flex;
  gap: 0.6rem;
}

.warranty-input-wrap input {
  max-width: 320px;
}

/* ==========================================================================
   FAQ SECTION (SEO RICH SNIPPET ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 4.5rem 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-light);
}

.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--orange-border);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.15rem 1.35rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  transition: transform var(--transition-fast);
  color: var(--orange-primary);
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.35rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 0.85rem;
}

/* ==========================================================================
   FOOTER (PROFESSIONAL & CLEAN DEEP NAVY)
   ========================================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand-info p {
  color: #94a3b8;
  font-size: 0.88rem;
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.footer-brand-info .brand-name {
  color: #ffffff;
}

.footer-cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-cert-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  color: #cbd5e1;
}

.footer-heading {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--orange-primary);
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #64748b;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: #64748b;
}

.footer-legal-links a:hover {
  color: #cbd5e1;
}

/* ==========================================================================
   MOBILE STICKY BOTTOM APP BAR & SEARCH
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  height: 60px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -3px 16px rgba(15, 23, 42, 0.09);
  padding: 0 0.25rem;
}

.mobile-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.66rem;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

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

.mobile-bar-item.active, .mobile-bar-item:hover {
  color: var(--orange-primary);
}

.mobile-bar-item.whatsapp-item span {
  color: #10b981;
}

.mobile-cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--orange-primary);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.mobile-search-bar {
  display: none;
  padding: 0.35rem 0 0.65rem;
}

.mobile-search-bar .search-input-wrap {
  width: 100%;
}

/* ==========================================================================
   RESPONSIVENESS (PERFECT FIT ON ALL SMARTPHONES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .features-box-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
  }

  body {
    padding-bottom: 68px; /* space for mobile sticky bottom bar */
  }

  .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  /* Announcement Bar (Strictly 1 Line on Mobile) */
  .announcement-bar {
    padding: 0.35rem 0.5rem;
    white-space: nowrap !important;
    overflow: hidden;
  }

  .announcement-content {
    justify-content: center;
    width: 100%;
    overflow: hidden;
    white-space: nowrap !important;
  }

  .announcement-ticker {
    width: 100%;
    justify-content: center;
    overflow: hidden;
    white-space: nowrap !important;
  }

  .ticker-item {
    font-size: 0.72rem;
    gap: 0.3rem;
    white-space: nowrap !important;
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .ticker-item strong, .ticker-item span {
    white-space: nowrap !important;
  }

  /* Header & Navigation */
  .header-navbar {
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  }

  .nav-inner {
    padding: 0.5rem 0;
    gap: 0.5rem;
  }

  .nav-search-bar, .announcement-links {
    display: none;
  }

  .mobile-search-bar {
    display: block;
  }

  .brand-logo {
    gap: 0.5rem;
  }

  .brand-logo-img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .brand-sub {
    font-size: 0.62rem;
  }

  .pincode-trigger-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.72rem;
  }

  #nav-warranty-btn span {
    display: none;
  }

  #nav-warranty-btn {
    padding: 0.4rem;
  }

  .btn-b2b {
    padding: 0.35rem 0.6rem;
    font-size: 0.75rem;
  }

  /* Secondary Sub-nav */
  .sub-nav {
    padding: 0.35rem 0;
    background: #f8fafc;
  }

  .sub-nav-links {
    gap: 0.5rem;
    padding: 0.2rem 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .sub-nav-link {
    font-size: 0.78rem;
    padding: 0.35rem 0.75rem;
    background: #ffffff;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-light);
    white-space: nowrap;
  }

  .sub-nav-link.active {
    background: var(--navy-dark);
    color: #ffffff;
    border-color: var(--navy-dark);
  }

  .sub-nav-link.active::after {
    display: none;
  }

  /* Hero Section */
  .hero-section {
    padding: 1.75rem 0 2rem;
  }

  .hero-badge-pill {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    text-align: center;
    line-height: 1.4;
    white-space: normal;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.25;
    margin-bottom: 0.85rem;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .hero-action-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
  }

  .hero-action-buttons .btn-primary,
  .hero-action-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  .hero-trust-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
    width: 100%;
  }

  .trust-item {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.85rem;
    width: 100%;
  }

  /* Stats Grid (Clean 2x2 Matrix on Mobile) */
  .stats-strip {
    padding: 1.25rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    padding: 0.85rem 0.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .stat-card:nth-child(odd) {
    border-right: 1px solid var(--border-light);
  }

  .stat-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  /* B2B Callout */
  .b2b-cta-section {
    padding: 2rem 0;
  }

  .b2b-card {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.15rem;
    gap: 1.25rem;
  }

  .b2b-title {
    font-size: 1.35rem;
  }

  .b2b-btn-wrap {
    text-align: left;
    width: 100%;
  }

  .b2b-btn-wrap .b2b-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
  }

  /* Warranty Section */
  .warranty-section {
    padding: 2.25rem 0 !important;
  }

  .warranty-card-grid {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 1.5rem 1.15rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
  }

  .warranty-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
  }

  .warranty-input-wrap input {
    width: 100%;
    max-width: 100% !important;
    height: 46px;
  }

  .warranty-input-wrap button {
    width: 100%;
    height: 46px;
    justify-content: center;
  }

  /* Features & Footer */
  .features-box-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem 1rem;
  }

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

  .site-footer {
    padding: 2.5rem 0 5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.85rem;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  /* Mobile Bottom App Bar */
  .mobile-bottom-bar {
    display: flex;
  }
}

/* SMARTPHONES <= 640px (Hide clutter, clean navbar) */
@media (max-width: 640px) {
  #nav-warranty-btn, .btn-b2b {
    display: none !important;
  }
  .nav-inner {
    padding: 0.4rem 0;
    gap: 0.35rem;
    justify-content: space-between;
    width: 100%;
  }
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
  }
  #nav-auth-btn,
  #nav-cart-btn {
    padding: 0.28rem 0.52rem;
    font-size: 0.74rem;
    gap: 0.28rem;
    border-radius: 6px;
    flex-shrink: 0;
    display: inline-flex !important;
    white-space: nowrap;
    align-items: center;
    position: relative;
  }
  #nav-auth-btn svg,
  #nav-cart-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  #nav-cart-btn .badge-count {
    width: 15px;
    height: 15px;
    font-size: 0.6rem;
    top: -4px;
    right: -3px;
  }
  .pincode-trigger-btn {
    padding: 0.25rem 0.45rem;
    font-size: 0.7rem;
    max-width: 92px;
    flex-shrink: 1;
    gap: 0.25rem;
  }
  .pincode-trigger-btn svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
  }
  #nav-pincode-text {
    max-width: 64px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* COMPACT SMARTPHONES <= 480px (iPhone, Samsung, Redmi) */
@media (max-width: 480px) {
  .container {
    padding: 0 0.55rem;
  }

  .nav-inner {
    gap: 0.25rem;
  }

  .nav-brand {
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .brand-logo-img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .brand-name {
    font-size: 0.96rem;
    line-height: 1.1;
  }

  .brand-sub {
    font-size: 0.58rem;
    display: flex !important;
    align-items: center;
    gap: 0.15rem;
    white-space: nowrap;
  }

  .brand-sub strong {
    display: inline !important;
    color: var(--orange-primary) !important;
    font-weight: 700 !important;
  }

  .hero-title {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .hero-badge-pill {
    font-size: 0.66rem;
    padding: 0.25rem 0.6rem;
    gap: 0.25rem;
  }

  .pincode-trigger-btn {
    padding: 0.22rem 0.38rem;
    font-size: 0.66rem;
    max-width: 78px;
    gap: 0.2rem;
    flex-shrink: 1;
  }

  #nav-pincode-text {
    max-width: 52px;
  }

  .nav-actions {
    gap: 0.25rem;
    flex-shrink: 0;
  }

  #nav-auth-btn,
  #nav-cart-btn {
    padding: 0.25rem 0.42rem;
    font-size: 0.7rem;
    gap: 0.22rem;
    flex-shrink: 0;
  }
}

/* SMALL SCREENS <= 380px (iPhone SE, Small Androids) */
@media (max-width: 380px) {
  .ticker-item {
    font-size: 0.65rem;
    gap: 0.2rem;
  }

  .container {
    padding: 0 0.38rem;
  }

  .nav-inner {
    gap: 0.18rem;
  }

  .nav-brand {
    gap: 0.22rem;
  }

  .brand-logo-img {
    width: 28px;
    height: 28px;
  }

  .brand-name {
    font-size: 0.88rem;
  }

  .brand-sub {
    font-size: 0.52rem;
    gap: 0.1rem;
    white-space: nowrap;
  }

  .brand-sub strong {
    display: inline !important;
    color: var(--orange-primary) !important;
    font-weight: 700 !important;
  }

  .hero-title {
    font-size: 1.38rem;
  }

  .pincode-trigger-btn {
    max-width: 64px;
    padding: 0.2rem 0.28rem;
    font-size: 0.64rem;
    gap: 0.15rem;
  }

  .pincode-trigger-btn svg {
    display: none;
  }

  #nav-pincode-text {
    max-width: 52px;
  }

  #nav-auth-btn,
  #nav-cart-btn {
    padding: 0.22rem 0.36rem;
    font-size: 0.66rem;
    gap: 0.18rem;
    flex-shrink: 0;
  }
}

@media (max-width: 340px) {
  #nav-auth-btn span,
  #nav-cart-btn span:not(.badge-count) {
    display: none;
  }
  #nav-auth-btn,
  #nav-cart-btn {
    padding: 0.25rem 0.32rem;
    min-width: 28px;
    justify-content: center;
  }
}

/* ==========================================================================
   PWA APP INSTALL BANNER (NATIVE POPUP)
   ========================================================================== */
.pwa-install-banner {
  position: fixed;
  bottom: 68px;
  left: 0.85rem;
  right: 0.85rem;
  max-width: 440px;
  margin: 0 auto;
  background: var(--navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  z-index: 1050;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.3s ease;
}

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

.pwa-banner-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pwa-banner-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: contain;
  background: #ffffff;
  padding: 2px;
  flex-shrink: 0;
}

.pwa-banner-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.2;
}

.pwa-banner-sub {
  color: #94a3b8;
  font-size: 0.7rem;
  line-height: 1.2;
}

.pwa-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.btn-pwa-install {
  background: var(--orange-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.btn-pwa-install:hover {
  transform: scale(1.04);
  background: var(--orange-hover);
}

.btn-pwa-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  line-height: 1;
}

.btn-pwa-close:hover {
  color: #ffffff;
}

