:root {
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Georgia', serif;
  --deep: #05132d;
  --deep-gradient: linear-gradient(135deg, #030b1e, #082b7a 60%, #e05307 140%);
  --blue: #082b7a;
  --royal: #1d4ed8;
  --orange: #e05307;
  --orange-bright: #f97316;
  --orange-gradient: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  --gold: #f59e0b;
  --gold2: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.4);
  --cream: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 70px rgba(5, 19, 45, 0.22);
  --shadow-gold: 0 16px 40px rgba(224, 83, 7, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #020817;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Background Effect */
.premium-bg {
  display: none !important;
}

/* Festive Ticker Ribbon */
.festive-ticker-bar {
  background: linear-gradient(135deg, #b91c1c, #d97706, #1d4ed8);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 13px;
  border-bottom: 2px solid var(--gold);
  position: relative;
  z-index: 1000;
}

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

.festive-ticker-inner {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.festive-badge-tag {
  background: #ffffff;
  color: #b91c1c;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.festive-tagline {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.festive-coupon {
  background: rgba(0,0,0,0.25);
  padding: 4px 12px;
  border-radius: 10px;
  border: 1px dashed rgba(255,255,255,0.7);
  font-size: 12px;
}

.festive-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  background: rgba(0,0,0,0.35);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
}

.festive-countdown strong {
  background: #ffffff;
  color: #05132d;
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.festive-claim-btn {
  background: #25D366;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.festive-claim-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(37,211,102,0.6);
}

/* Topbar (Sticky on Scroll) */
.topbar {
  background: var(--deep);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(217, 164, 36, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}

.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--gold2);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: #ffffff;
}

/* Header & Navbar - Auto-Hide on Scroll Down */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(8, 43, 122, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(224, 83, 7, 0.2);
  transition: transform 0.3s ease;
  border: 2px solid #e05307;
  padding: 0;
}

.brand:hover img {
  transform: scale(1.05) rotate(2deg);
}

.brand strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-weight: 800;
  font-size: 11px;
}

.menu-btn {
  border: 0;
  background: linear-gradient(135deg, var(--blue), var(--deep));
  color: #ffffff;
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
}

.nav-links {
  position: absolute;
  top: 84px;
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 20px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Navbar Products Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(5,19,45,0.18);
  border: 1px solid rgba(8,43,122,0.12);
  padding: 10px 0;
  z-index: 1000;
  margin-top: 2px;
}

/* Invisible Hover Bridge - Prevents Dropdown from Closing when Moving Mouse Down */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
  background: transparent;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
  animation: fadeInDown 0.25s ease;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-menu a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px 18px !important;
  color: var(--text) !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-decoration: none;
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: var(--royal) !important;
  padding-left: 22px !important;
}

.dropdown-menu a i {
  color: var(--gold);
  font-size: 15px;
  width: 20px;
}

.menu-thumb {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 2px;
  flex-shrink: 0;
}

.nav-cta {
  background: linear-gradient(135deg, #e05307, #f97316);
  padding: 11px 22px;
  border-radius: 999px;
  text-align: center;
  color: #ffffff !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 24px rgba(224, 83, 7, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 83, 7, 0.5);
  color: #ffffff !important;
}

/* Hero Section - Full Screen Width Spread */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  overflow: hidden;
  background: #082b7a;
  width: 100%;
}

.orb, .orb-one, .orb-two, .shine {
  display: none !important;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  text-align: center;
  color: #ffffff;
  background: #082b7a;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 20px 18px 12px;
}

.hero-logo-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 10px;
  padding: 3px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #e05307;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold2);
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 6px;
}

.eyebrow.dark {
  color: var(--blue);
}

.eyebrow.gold {
  color: var(--gold2);
}

.center {
  text-align: center;
}

h1, h2 {
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

h1 {
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px;
}

h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--deep);
  margin: 0 0 14px;
}

.hero-text {
  max-width: 640px;
  margin: 0 auto 14px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 16px 28px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--deep);
  box-shadow: var(--shadow-gold);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 660px;
  margin: 36px auto 0;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  padding: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--gold2);
  font-size: 20px;
  font-weight: 800;
}

.hero-stats span {
  font-size: 13px;
  opacity: 0.9;
}

/* Trust Badges Strip */
.trust-strip {
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 0 18px;
  position: relative;
  z-index: 5;
}

.trust-grid {
  background: #ffffff;
  border-radius: 20px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  border: 1px solid rgba(217, 164, 36, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item i {
  font-size: 20px;
  color: var(--gold);
  background: rgba(217, 164, 36, 0.15);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.trust-item span {
  color: var(--muted);
  font-size: 11px;
}

/* Quick Contact Bar */
.quick-contact {
  max-width: 1200px;
  margin: 14px auto 0;
  padding: 0 18px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.quick-contact a {
  background: #ffffff;
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 10px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(8, 43, 122, 0.08);
}

.quick-contact a:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(6, 26, 61, 0.28);
}

.quick-contact i {
  font-size: 28px;
  color: var(--gold);
}

.quick-contact span {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-contact strong {
  font-size: 16px;
  color: var(--deep);
}

/* E-Commerce Search & Filter Bar */
.filter-bar-wrap {
  max-width: 1200px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.search-box-wrap {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.search-box-wrap input {
  width: 100%;
  padding: 16px 22px 16px 54px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: var(--text);
  font-size: 15px;
  outline: 0;
  box-shadow: 0 8px 24px rgba(5,19,45,0.06);
}

.search-box-wrap input::placeholder {
  color: #94a3b8;
}

.search-box-wrap i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--royal);
  font-size: 18px;
}

.category-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.cat-filter-btn {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: var(--blue);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(5,19,45,0.04);
  transition: 0.25s ease;
}

.cat-filter-btn:hover, .cat-filter-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--royal));
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(20,84,217,0.35);
  border-color: transparent;
}

/* Sections */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 90px 18px;
}

.intro {
  text-align: center;
  max-width: 880px;
}

.intro p, .section-lead {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

/* Continuous Running Live Deals Marquee Strip */
.running-deals-wrapper {
  max-width: 1350px;
  margin: 0 auto 24px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 4px 16px rgba(5,19,45,0.06);
  border: 1px solid #cbd5e1;
  position: relative;
}

.running-deals-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marqueeRun 24s linear infinite;
  width: max-content;
}

.running-deals-wrapper:hover .running-deals-track {
  animation-play-state: paused;
}

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

.running-deal-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
}

/* Products Section - Clean Luxury Light E-Commerce Theme */
.products-section {
  max-width: none;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  color: var(--text);
  padding: 70px 18px;
}

.products-section h2 {
  color: var(--blue);
}

.section-lead {
  color: var(--muted);
  text-align: center;
  max-width: 880px;
  margin: 0 auto 24px;
}

.product-grid {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 18px;
  padding: 14px 14px 16px;
  box-shadow: 0 4px 16px rgba(5, 19, 45, 0.05);
  color: var(--text);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card.featured-card {
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 4px 16px rgba(5, 19, 45, 0.05);
}

.product-card .shine {
  position: absolute;
  inset: -60px auto auto -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(247, 207, 101, 0.35), transparent 72%);
  transition: 0.4s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(8, 43, 122, 0.15);
  border-color: var(--royal);
}

.product-card:hover .shine {
  transform: translate(100px, 50px);
}

/* COMPACT PRODUCT IMAGE STYLING */
.product-img-wrap {
  width: 100%;
  height: 125px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 8px;
  margin-top: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
}

.product-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

/* COMPACT PRODUCT ICON CONTAINER */
.product-icon {
  width: 58px;
  height: 58px;
  margin: 0 0 12px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #05132d, #082b7a);
  box-shadow: inset 0 0 0 1px rgba(217, 164, 36, 0.35), 0 10px 20px rgba(5, 19, 45, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-icon i {
  font-size: 26px;
  color: #f7cf65;
  filter: drop-shadow(0 2px 6px rgba(247, 207, 101, 0.45));
  transition: 0.3s ease;
}

.product-card:hover .product-icon, .process-card:hover span {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  box-shadow: 0 0 0 4px rgba(217, 164, 36, 0.22), 0 14px 30px rgba(217, 164, 36, 0.4);
  transform: scale(1.08) rotate(3deg);
}

.product-card:hover .product-icon i {
  color: var(--deep);
  filter: drop-shadow(0 2px 4px rgba(5, 19, 45, 0.3));
  transform: scale(1.1) rotate(-6deg);
}

.product-card h3 {
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 14.5px;
  margin: 4px 0 6px;
  font-weight: 800;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.6em;
}

.rating-stars {
  color: #f59e0b;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 6px;
}

.rating-stars span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-left: 3px;
}

.product-card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card a {
  display: inline-flex;
  gap: 6px;
  font-size: 13px;
  align-items: center;
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.product-card a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* Reviews Section */
.reviews-section {
  background: #ffffff;
  border-radius: 38px;
  padding: 52px 28px;
  box-shadow: var(--shadow);
  margin-top: 60px;
  border: 1px solid rgba(8, 43, 122, 0.08);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 36px;
}

.review-card {
  background: #fff8e8;
  border: 1px solid rgba(217, 164, 36, 0.22);
  border-radius: 26px;
  padding: 26px;
}

.review-card .name {
  font-weight: 800;
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card .verified-tag {
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
}

.review-card .text {
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.process-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 43, 122, 0.06);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
}

.process-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(217, 164, 36, 0.16);
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 14px;
  transition: 0.35s ease;
}

.process-card h3 {
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 0 0 10px;
}

.process-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
  margin: 0;
}

/* Premium CTA */
.premium-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 28px;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--deep), var(--blue));
  color: #ffffff;
  display: grid;
  gap: 20px;
  text-align: center;
  box-shadow: var(--shadow);
}

.premium-cta h2 {
  color: #ffffff;
}

.premium-cta p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-card, .enquiry-form {
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 43, 122, 0.06);
}

.contact-card img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  border: none;
}

.contact-card h3 {
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 24px;
  margin: 16px 0 12px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 10px;
  font-size: 15px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.enquiry-form {
  display: grid;
  gap: 16px;
}

.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(8, 43, 122, 0.15);
  border-radius: 16px;
  font-family: var(--font-main);
  font-size: 15px;
  outline: 0;
  background: #fff8e833;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(217, 164, 36, 0.2);
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 19, 45, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.modal-card {
  background: #ffffff;
  width: min(500px, 100%);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}

.modal-card h3 {
  color: var(--blue);
  font-family: var(--font-heading);
  margin-top: 0;
  font-size: 24px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
  color: var(--muted);
}

/* Modern Executive Mega Footer */
.site-footer {
  background: var(--deep);
  color: #ffffff;
  padding: 70px 0 0;
  border-top: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 1250px;
  margin: auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
  padding: 0;
  border: 2px solid #e05307;
}

.footer-brand strong {
  display: block;
  font-size: 18px;
  color: var(--gold2);
  font-family: var(--font-heading);
}

.footer-brand span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.footer-desc {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact p {
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact a {
  color: var(--gold2);
  text-decoration: none;
  font-weight: 700;
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: var(--gold2);
  font-size: 17px;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(217,164,36,0.3);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--gold2);
  transform: translateX(4px);
}

.footer-trust-box p {
  background: rgba(255,255,255,0.06);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom {
  background: #020817;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  padding: 18px 0;
}

.footer-bottom-inner {
  max-width: 1250px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.footer-badges span {
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  margin-left: 8px;
  color: var(--gold2);
}

/* Floating Actions & Popup */
.float-actions {
  position: fixed;
  right: 14px;
  bottom: 18px;
  z-index: 1001;
  display: grid;
  gap: 10px;
}

.float-actions a {
  color: #ffffff;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.float-actions .online-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
  animation: pulseDot 2s infinite;
}

.float-actions .whatsapp {
  background: #25D366;
}

.float-actions .call {
  background: var(--blue);
}

.popup {
  display: none;
  position: fixed;
  right: 14px;
  bottom: 130px;
  width: min(330px, calc(100vw - 28px));
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.3);
  padding: 22px;
  z-index: 1002;
  border: 1px solid rgba(217, 164, 36, 0.35);
}

.popup button {
  float: right;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
}

.popup strong {
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 18px;
}

.popup p {
  color: var(--muted);
  font-size: 14px;
  margin: 10px 0 14px;
}

.popup a {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  padding: 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-24px); }
}

@keyframes pulseDot {
  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 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Media Queries */
@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .menu-btn {
    display: none;
  }
  .nav-links {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .hero-card {
    padding: 52px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .premium-cta {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: center;
  }
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }
  .footer {
    padding-bottom: 52px;
  }
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

/* Amazon/Flipkart Style Shop Category Ribbon */
.shop-category-ribbon {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 0;
  overflow-x: auto;
  white-space: nowrap;
}

.ribbon-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #ffffff;
}

.ribbon-btn {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ribbon-btn:hover {
  background: var(--gold);
  color: #05132d;
  border-color: var(--gold2);
  transform: translateY(-1px);
}

/* Amazon-Style 4 Visual Department Category Hub */
.department-hub-section {
  padding: 40px 24px 10px;
  max-width: 1250px;
  margin: 0 auto;
}

.hub-header {
  margin-bottom: 20px;
}

.hub-header h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--blue);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hub-header p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .department-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .department-grid {
    grid-template-columns: 1fr;
  }
}

.dept-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 10px 30px rgba(5,19,45,0.06);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.dept-card:hover {
  transform: translateY(-4px);
  border-color: var(--royal);
  box-shadow: 0 16px 40px rgba(20,84,217,0.15);
}

.dept-img-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
}

.dept-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.dept-card:hover .dept-img-wrap img {
  transform: scale(1.12);
}

.dept-info h3 {
  font-size: 16px;
  color: var(--blue);
  margin: 0 0 2px;
  font-family: var(--font-heading);
  font-weight: 800;
}

.dept-info p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
  line-height: 1.3;
}

.dept-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--royal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* E-Commerce Product Card Specs & Action Buttons */
.ecom-specs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ecom-specs-list li {
  font-size: 11.5px;
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-ecom-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(8,43,122,0.08);
}

@keyframes buttonPulseGlow {
  0% { box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(16, 185, 129, 0.7); transform: scale(1.02); }
  100% { box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4); }
}

.btn-ecom-buy {
  flex: 1;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 900 !important;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transition: all 0.25s ease;
  animation: buttonPulseGlow 3s infinite ease-in-out;
}

.btn-ecom-buy i {
  font-size: 17px;
  color: #ffffff !important;
}

.btn-ecom-buy:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #d9a424 0%, #f7cf65 100%) !important;
  color: #05132d !important;
  box-shadow: 0 10px 28px rgba(217, 164, 36, 0.55) !important;
}

.btn-ecom-buy:hover i {
  color: #05132d !important;
}

.btn-ecom-view {
  background: #f1f5f9;
  color: var(--blue);
  border: 1px solid #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 12px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-ecom-view:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

/* Amazon-Style Quick View Modal */
.quickview-modal-card {
  width: min(780px, 95%);
  padding: 28px;
}

.qv-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: center;
}

@media (max-width: 680px) {
  .qv-grid {
    grid-template-columns: 1fr;
  }
}

.qv-img-box {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.qv-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.qv-trust-badges {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 12px 14px;
  border-radius: 14px;
  margin-top: 10px;
}

.qv-trust-badges p {
  font-size: 12.5px;
  color: #334155;
  font-weight: 600;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Dedicated Category Page Banner */
.cat-page-banner {
  background: var(--deep);
  color: #ffffff;
  padding: 40px 24px;
  border-bottom: 3px solid var(--gold);
}

.cat-banner-inner {
  max-width: 1250px;
  margin: 0 auto;
}

.cat-banner-inner .breadcrumb {
  font-size: 13px;
  color: var(--gold2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-banner-inner .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.cat-banner-inner .breadcrumb a:hover {
  color: #ffffff;
}

.cat-banner-inner h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin: 0 0 8px;
  color: #ffffff;
}

.cat-banner-inner p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin: 0 0 16px;
}

.cat-banner-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #ffffff;
}

/* E-COMMERCE SHOPPING CART DRAWER & RAZORPAY STYLES */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 11, 30, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-backdrop.active {
  display: block;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(420px, 100vw);
  height: 100vh;
  background: #ffffff;
  z-index: 2001;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.cart-header {
  padding: 18px 22px;
  background: var(--blue);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #e05307;
}

.cart-header h3 {
  margin: 0;
  font-size: 18px;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cart-close-btn:hover {
  background: #e05307;
}

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

.cart-empty-state {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
}

.cart-empty-state i {
  font-size: 54px;
  color: #cbd5e1;
  margin-bottom: 16px;
}

.cart-item-row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  align-items: center;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 4px;
  line-height: 1.3;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 800;
  color: #e05307;
}

.cart-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #1e293b;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-qty-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.cart-qty-val {
  font-size: 13.5px;
  font-weight: 800;
  min-width: 20px;
  text-align: center;
}

.cart-remove-item {
  color: #ef4444;
  background: #fee2e2;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s ease;
}

.cart-remove-item:hover {
  background: #dc2626;
  color: #ffffff;
}

.cart-footer {
  padding: 18px 20px;
  background: #f8fafc;
  border-top: 1.5px solid #e2e8f0;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: #475569;
}

.cart-summary-line.total {
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
  border-top: 1px dashed #cbd5e1;
  padding-top: 10px;
  margin-top: 8px;
}

.btn-razorpay-pay {
  width: 100%;
  background: linear-gradient(135deg, #1d4ed8 0%, #082b7a 100%);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  padding: 14px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.35);
  margin-top: 12px;
  transition: all 0.25s ease;
}

.btn-razorpay-pay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.5);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-cart-wa {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 800;
  padding: 12px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  text-decoration: none;
}

.btn-cart-wa:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.nav-cart-btn {
  position: relative;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: var(--blue);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.nav-cart-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

.cart-count-badge {
  background: #e05307;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(224, 83, 7, 0.4);
}

.btn-add-cart {
  flex: 1;
  background: #f1f5f9;
  color: var(--blue);
  border: 1px solid #cbd5e1;
  font-size: 12.5px;
  font-weight: 800;
  padding: 9px 10px;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-add-cart:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* Toast Notification */
.cart-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #05132d;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e05307;
}

.cart-toast.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Floating Cart Button */
.float-cart-btn {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  border: 3px solid #e05307;
  box-shadow: 0 10px 30px rgba(8, 43, 122, 0.4);
  font-size: 22px;
  cursor: pointer;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-cart-btn:hover {
  transform: scale(1.1) rotate(-5deg);
  background: #e05307;
  border-color: var(--blue);
}

.float-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 12px;
  padding: 3px 8px;
}

/* FULL-WIDTH IMPACT MEGA FESTIVAL BANNERS */
.festive-mega-banner {
  width: 100%;
  padding: 26px 20px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 4px solid #e05307;
}

/* 🇮🇳 Theme 1: Independence Day & Republic Day (Tiranga Tricolor) */
.festive-mega-banner.theme-independence {
  background: linear-gradient(135deg, #E65100 0%, #082B7A 50%, #1B5E20 100%);
  border-bottom-color: #FF9933;
}
.festive-mega-banner.theme-independence::before {
  content: '🇮🇳';
  position: absolute;
  font-size: 140px;
  opacity: 0.12;
  left: 20px;
  top: -20px;
  pointer-events: none;
}

/* 🪔 Theme 2: Diwali & Dhanteras (Glowing Diyas & Golden Light) */
.festive-mega-banner.theme-diwali {
  background: linear-gradient(135deg, #7C2D12 0%, #C2410C 50%, #F59E0B 100%);
  border-bottom-color: #fbbf24;
}
.festive-mega-banner.theme-diwali::before {
  content: '🪔';
  position: absolute;
  font-size: 140px;
  opacity: 0.15;
  right: 20px;
  top: -20px;
  pointer-events: none;
}

/* 🪢 Theme 3: Raksha Bandhan (Royal Silk Rakhi & Rose Gold) */
.festive-mega-banner.theme-rakhi {
  background: linear-gradient(135deg, #831843 0%, #BE123C 50%, #E11D48 100%);
  border-bottom-color: #fef08a;
}
.festive-mega-banner.theme-rakhi::before {
  content: '🪢';
  position: absolute;
  font-size: 140px;
  opacity: 0.15;
  left: 20px;
  top: -20px;
  pointer-events: none;
}

/* 🌺 Theme 4: Ganesh Chaturthi & Navratri / Durga Puja (Marigold Saffron) */
.festive-mega-banner.theme-navratri {
  background: linear-gradient(135deg, #7C2D12 0%, #EA580C 50%, #F97316 100%);
  border-bottom-color: #fef08a;
}
.festive-mega-banner.theme-navratri::before {
  content: '🌺';
  position: absolute;
  font-size: 140px;
  opacity: 0.15;
  right: 20px;
  top: -20px;
  pointer-events: none;
}

/* 🎆 Theme 5: New Year & Christmas (Ruby Red & Emerald Sparkles) */
.festive-mega-banner.theme-newyear {
  background: linear-gradient(135deg, #991B1B 0%, #065F46 50%, #1E3A8A 100%);
  border-bottom-color: #f59e0b;
}

/* ⚡ Theme 6: Mega Wholesale Hardware Sale (Corporate Deep Navy) */
.festive-mega-banner.theme-wholesale {
  background: linear-gradient(135deg, #030712 0%, #082B7A 50%, #E05307 100%);
  border-bottom-color: #e05307;
}

.festive-mega-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.festive-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.festive-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 36px);
  margin: 0 0 6px;
  color: #ffffff !important;
  font-weight: 900;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.5px;
}

.festive-desc {
  font-size: clamp(14px, 2vw, 16px);
  color: #ffffff !important;
  opacity: 0.95;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin: 0 0 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.festive-action-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.festive-coupon-box {
  background: #ffffff;
  color: #082b7a;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  border: 2px dashed #e05307;
}

.festive-coupon-box strong {
  color: #e05307;
  font-size: 16px;
  display: block;
  letter-spacing: 1px;
}

.festive-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.clock-unit {
  text-align: center;
}

.clock-unit strong {
  background: #ffffff;
  color: #082b7a !important;
  font-size: 17px;
  font-weight: 900;
  display: block;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 8px;
  min-width: 32px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.clock-unit span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.clock-colon {
  font-size: 18px;
  font-weight: 900;
  color: #f7cf65;
  margin-top: -12px;
}

.festive-hero-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #e05307 100%);
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(224, 83, 7, 0.4);
  transition: transform 0.25s ease;
}

.festive-hero-btn:hover {
  transform: translateY(-2px) scale(1.04);
}

/* HEADER INSTANT SEARCH AUTO-COMPLETE DROPDOWN */
.header-search-wrap {
  position: relative;
  flex: 1;
  max-width: 380px;
  margin: 0 16px;
}

.search-input-box {
  width: 100%;
  padding: 10px 40px 10px 16px;
  border-radius: 999px;
  border: 1.5px solid #cbd5e1;
  font-size: 13.5px;
  outline: none;
  background: #ffffff;
  transition: all 0.25s ease;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
}

.search-input-box:focus {
  border-color: #e05307;
  box-shadow: 0 0 0 4px rgba(224, 83, 7, 0.15);
}

.search-icon-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
}

.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(8, 43, 122, 0.25);
  border: 1px solid #e2e8f0;
  margin-top: 8px;
  max-height: 380px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.search-results-dropdown.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: var(--deep);
  transition: background 0.2s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #eff6ff;
}

.search-result-thumb {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  background: #f8fafc;
}

.search-result-info {
  flex: 1;
}

.search-result-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}

.search-result-price {
  font-size: 12px;
  font-weight: 800;
  color: #e05307;
  margin-top: 2px;
}

/* 3D HOVER ELEVATION & CONVERSION ELEMENTS ON PRODUCT CARDS */
.product-card {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease !important;
}

.product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 36px rgba(8, 43, 122, 0.16), 0 0 0 2px rgba(224, 83, 7, 0.3) !important;
}

/* BULK WHOLESALE TIER PILL */
.bulk-tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #fde68a;
  margin-top: 6px;
}

/* LIVE STOCK URGENCY PROGRESS BAR */
.stock-urgency-bar {
  margin: 8px 0;
  background: #fee2e2;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.stock-urgency-fill {
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #f97316);
  border-radius: 999px;
  width: 75%;
  animation: pulseStock 2s infinite;
}

@keyframes pulseStock {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.stock-urgency-text {
  font-size: 11px;
  color: #dc2626;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* QUICK VIEW BUTTON ON PRODUCT CARD */
.btn-quickview {
  background: #f1f5f9;
  color: var(--blue);
  border: 1px solid #cbd5e1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.btn-quickview:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

/* INTERACTIVE PRODUCT QUICK-VIEW MODAL */
.quickview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.quickview-overlay.active {
  display: flex;
}

.quickview-card {
  background: #ffffff;
  border-radius: 24px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(217, 164, 36, 0.3);
}

.quickview-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
}

.quickview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .quickview-grid {
    grid-template-columns: 260px 1fr;
  }
}

.quickview-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.quickview-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 12.5px;
}

.quickview-specs-table td {
  padding: 6px 10px;
  border-bottom: 1px solid #f1f5f9;
}

.quickview-specs-table td:first-child {
  font-weight: 700;
  color: var(--blue);
  width: 40%;
}

/* MOBILE-FIRST STICKY BOTTOM ACTION BAR */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
  padding: 10px 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 1400;
  border-top: 2px solid #e05307;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }
}

.mobile-sticky-cart-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--blue), var(--deep));
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 13.5px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.mobile-sticky-wa-btn {
  background: #25d366;
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
}

/* PRODUCT CARD ACTION BUTTONS GRID */
.card-ecom-actions {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 4px;
  margin-top: 12px;
  width: 100%;
  box-sizing: border-box;
}

.btn-add-cart, .btn-ecom-buy, .btn-quickview {
  width: 100%;
  padding: 7px 4px;
  font-size: 11px;
  font-weight: 800;
  border-radius: 10px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-sizing: border-box;
  text-align: center;
}

.btn-quickview {
  background: #f1f5f9;
  color: var(--blue);
  border: 1px solid #cbd5e1;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-quickview:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

/* Category Page Left Picture Sidebar Layout */
.cat-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1350px;
  margin: auto;
  padding: 0 18px;
  align-items: start;
}
@media (min-width: 900px) {
  .cat-page-layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.cat-sidebar-wrap {
  height: fit-content;
}

.cat-sidebar-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 4px 16px rgba(5, 19, 45, 0.05);
  border: 1.5px solid #cbd5e1;
  position: sticky;
  top: 80px;
  z-index: 100;
  margin: 0;
  height: fit-content;
  box-sizing: border-box;
}

.cat-products-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.cat-products-content .product-grid {
  margin-top: 0 !important;
}

/* QUICK VIEW MODAL OVERLAY FIX */
.modal-overlay#quickViewModal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay#quickViewModal.active {
  display: flex !important;
}

.modal-overlay#quickViewModal .modal-card {
  max-height: 88vh;
  overflow-y: auto;
}

.cat-sidebar-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 8px;
}

.cat-sidebar-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 7px 9px;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s ease;
}
.cat-sidebar-card:hover, .cat-sidebar-card.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fefce8, #ffffff);
  box-shadow: 0 6px 16px rgba(8,43,122,0.1);
  transform: translateX(3px);
}
.cat-sidebar-card img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(8,43,122,0.1);
  background: #ffffff;
  flex-shrink: 0;
}
.cat-sidebar-card strong {
  display: block;
  font-size: 12px;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.2;
}
.cat-sidebar-card small {
  font-size: 10px;
  color: var(--muted);
}