:root {
  --primary:#ff0000; /* Electric Royal Purple */
  --secondary: #FFD700; /* Metallic Gold */
  --accent: #ff9800; /* Cyber Pink */
  --success: #00F5A0; /* Emerald Glow */
  --text-main: #0F172A;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --glass-white: rgba(255, 255, 255, 0.75);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  --shadow-premium: 0 25px 50px -12px rgba(112, 0, 255, 0.15);
  --shadow-glow: 0 0 30px rgba(112, 0, 255, 0.3);
  --bg-card: #FFFFFF;
}

[data-theme="dark"] {
  --bg-light: #050505;
  --text-main: #F1F5F9;
  --text-muted: #94A3B8;
  --bg-card: #0F172A;
  --glass-white: rgba(15, 23, 42, 0.85);
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-light);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
  font-family: 'Outfit', sans-serif;
  animation: pageEntrance 1.5s ease-out;
}

@keyframes pageEntrance {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Features Section ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 80px 10%;
  margin-top: -80px;
  position: relative;
  z-index: 20;
}

.feat-card {
  position: relative;
  background: var(--bg-card);
  padding: 50px 30px;
  border-radius: 40px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: visible;
  border: 1px solid rgba(112, 0, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feat-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 40px 80px rgba(112, 0, 255, 0.15);
  border-color: var(--primary);
}

/* Animated Border for Feat Card */
.feat-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary), var(--primary));
  background-size: 300% 100%;
  animation: borderRotate 4s linear infinite;
  border-radius: 42px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: white;
  transform: rotate(-10deg);
  transition: all 0.5s ease;
  box-shadow: 0 15px 30px rgba(112, 0, 255, 0.3);
}

.feat-card:hover .feat-icon {
  transform: rotate(0) scale(1.1);
}

.feat-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--text-main);
}

.feat-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Multidirectional Reveal Effects */
.reveal-up {
  transform: translateY(100px);
}
.reveal-left {
  transform: translateX(-100px);
}
.reveal-right {
  transform: translateX(100px);
}
.reveal-zoom {
  transform: scale(0.8);
}

section.reveal.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
  filter: brightness(1.2);
}

/* ===== Typography Animations ===== */
.reveal-text {
  overflow: hidden;
  display: inline-block;
}

.reveal-text span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active .reveal-text span,
.active .reveal-text span {
  transform: translateY(0);
}

/* Character reveal */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px) rotate(10deg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
p {
  font-family: 'Inter', sans-serif;
}

.reveal.active .char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.modal {
    z-index: 10000;
}
/* ===== Modern Marquee ===== */
.marquee-container {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(112, 0, 255, 0.2);
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 60px;
  animation: textGlow 3s infinite alternate;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

@keyframes textGlow {
  0% {
    text-shadow:
      0 0 5px var(--secondary),
      0 0 10px rgba(255, 184, 0, 0.3);
  }
  100% {
    text-shadow:
      0 0 10px var(--secondary),
      0 0 20px rgba(255, 184, 0, 0.6);
  }
}

.marquee-item i {
  color: var(--secondary);
  font-size: 1rem;
  animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Floating Background Shapes */
.floating-shape {
  position: fixed;
  z-index: -1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.05;
  pointer-events: none;
  animation:
    float 20s infinite alternate ease-in-out,
    shapeColorShift 15s infinite alternate;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  100% {
    transform: translate(100px, 100px) rotate(360deg);
  }
}

@keyframes shapeColorShift {
  0% {
    background: linear-gradient(135deg, var(--primary), var(--accent));
  }
  100% {
    background: linear-gradient(135deg, var(--accent), var(--primary));
  }
}

/* ===== Geometric Cyber-Hex Navbar ===== */
/* ===== Geometric Cyber-Hex Navbar (Positioned Below Marquee) ===== */
.header {
  position: sticky;
  top: 15px;
  margin: 10px auto;
  width: 95%;
  max-width: 1250px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 50px;
  background: none; /* Logic moved to ::after */
  clip-path: none !important; /* Stop clipping children */
  overflow: visible;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, 
    var(--primary), 
    var(--accent), 
    var(--secondary), 
    var(--success), 
    var(--primary)
  );
  background-size: 300% 100%;
  animation: borderRotate 6s linear infinite;
  
  /* Advanced Winding Polygon for Truly Transparent Center (3px hollow hole) */
  clip-path: polygon(
    /* Outer Shape Clockwise */
    0 25%, 25px 0, calc(100% - 25px) 0, 100% 25%, 100% 75%, calc(100% - 25px) 100%, 25px 100%, 0 75%, 0 25%,
    /* Inner Cutout Counter-Clockwise */
    3px calc(25% + 1.2px), 3px calc(75% - 1.2px), calc(25px + 1.2px) calc(100% - 3px), calc(100% - 25px - 1.2px) calc(100% - 3px), calc(100% - 3px) calc(75% - 1.2px), calc(100% - 3px) calc(25% + 1.2px), calc(100% - 25px - 1.2px) 3px, calc(25px + 1.2px) 3px, 3px calc(25% + 1.2px)
  );
}

.header.scrolled {
  top: 5px;
  padding: 8px 40px;
  margin-top: 5px;
}

.header.scrolled::after {
  clip-path: polygon(
    /* Outer Shape Clockwise */
    0 15%, 15px 0, calc(100% - 15px) 0, 100% 15%, 100% 85%, calc(100% - 15px) 100%, 15px 100%, 0 85%, 0 15%,
    /* Inner Cutout Counter-Clockwise */
    3px calc(15% + 1.2px), 3px calc(85% - 1.2px), calc(15px + 1.2px) calc(100% - 3px), calc(100% - 15px - 1.2px) calc(100% - 3px), calc(100% - 3px) calc(85% - 1.2px), calc(100% - 3px) calc(15% + 1.2px), calc(100% - 15px - 1.2px) 3px, calc(15px + 1.2px) 3px, 3px calc(15% + 1.2px)
  );
}

/* Internal Glass Background (creates the 3px border effect) */
.header::before {
  content: "";
  position: absolute;
  inset: 3px; /* The Border Width */
  background: transparent; /* Full transparency */
  backdrop-filter: blur(25px) saturate(200%);
  -webkit-backdrop-filter: blur(25px) saturate(200%);
  z-index: -1;
  
  /* Matching Geometric Shape for the inner glass */
  clip-path: polygon(
    0 25%, 
    25px 0, 
    calc(100% - 25px) 0, 
    100% 25%, 
    100% 75%, 
    calc(100% - 25px) 100%, 
    25px 100%, 
    0 75%
  );
}

[data-theme="dark"] .header::before {
  background: transparent; /* Full transparency dark */
}

/* Ensure inner glass matches the new shape when scrolled */
.header.scrolled::before {
  clip-path: polygon(
    0 15%, 
    15px 0, 
    calc(100% - 15px) 0, 
    100% 15%, 
    100% 85%, 
    calc(100% - 15px) 100%, 
    15px 100%, 
    0 85%
  );
}


.logo, .nav-links, .nav-actions {
  background: transparent;
  padding: 0;
  border: none;
}

@keyframes borderRotate {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 150% 0%;
  }
}

.logo {
  flex: 1;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  letter-spacing: -1px;
  transition: all 0.4s;
  background: linear-gradient(45deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header.scrolled .logo {
  font-size: 1.3rem;
}

.logo i {
  color: var(--primary);
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.3));
  animation: firePulse 2s infinite alternate;
}

@keyframes firePulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 77, 77, 0.3));
  }
  100% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 77, 77, 0.6));
  }
}

@keyframes colorSpin {
  0% {
    color: var(--primary);
  }
  33% {
    color: var(--secondary);
  }
  66% {
    color: var(--accent);
  }
  100% {
    color: var(--primary);
  }
}

.nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  background: transparent; /* Full transparency */
  padding: 8px 15px;
  border-radius: 100px;
  flex: 0 1 auto;
  z-index: 100;
  height: 50px;
}

/* Dark Mode Consistency */
[data-theme="dark"] .header {
  background: rgba(15, 23, 42, 0.1); /* Very subtle dark base */
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-links {
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 10px 22px;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: static;
  z-index: 2;
  border: 2px solid transparent; /* Base for active border */
}

.nav-indicator {
  position: absolute;
  height: calc(100% - 10px);
  background: rgba(255, 255, 255, 0.2); /* Glass Indicator */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: none;
  opacity: 0;
  top: 5px;
}

[data-theme="dark"] .nav-indicator {
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
  background: rgba(112, 0, 255, 0.05) !important;
  box-shadow: 0 4px 15px rgba(112, 0, 255, 0.15) !important;
  border-color: var(--primary) !important;
}

[data-theme="dark"] .nav-links a.active {
  color: var(--white);
  background: rgba(112, 0, 255, 0.25) !important;
  box-shadow: 0 0 20px rgba(112, 0, 255, 0.4) !important;
  border-color: var(--primary) !important;
}

.nav-links a.active::after {
  display: none; /* Removed old underline */
}

.nav-actions {
  flex: 1;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-end;
}

.theme-toggle {
  background: var(--primary);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
  z-index: 1001;
}

[data-theme="dark"] .theme-toggle {
  background: var(--secondary);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  filter: brightness(1.1);
}

.btn-cart {
  font-size: 1.2rem;
  color: var(--text-main);
  cursor: pointer;
  position: relative;
}

.btn-cart span {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.btn-shop-nav {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-glow);
  transition: var(--transition);
}

.btn-shop-nav:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(112, 0, 255, 0.3);
}

/* ===== Animated Light Hero Slider ===== */
.hero {
  position: relative;
  height: 10vh;
  min-height: 500px;
  width: 90%;
  margin: 10px auto 0; /* Reduced margin to align with navbar */
  border-radius: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.2s ease,
    visibility 1.2s ease;
  display: flex;
  align-items: center;
  animation: slideEntrance 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideEntrance {
  0% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.15);
  transition: transform 10s linear;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 77, 77, 0.1),
    transparent
  );
  animation: gradientShift 3s infinite linear;
}
.ocu a {
  color: #da8920;
  cursor: pointer;
  text-decoration: none;
}

@keyframes gradientShift {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Hero Section Enhancements */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.8) 35%,
    rgba(255, 255, 255, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding-left: 8%;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 77, 77, 0.1);
  color: var(--primary);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.8s ease;
}

@keyframes socialEntrance {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fixed-social {
  position: static;
  display: flex;
  justify-content: center;
  gap: 35px;
  margin: 40px 40px;
  transform: none;
  justify-content: space-evenly;
}

.fixed-social a {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
  animation:
    bounceIn 1s ease-out backwards,
    floatSocial 3s ease-in-out infinite;
}

/* Staggered Float Animation */
.fixed-social a:nth-child(1) {
  animation-delay: 0s, 0s;
}
.fixed-social a:nth-child(2) {
  animation-delay: 0.2s, 0.5s;
}
.fixed-social a:nth-child(3) {
  animation-delay: 0.4s, 1s;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(50px);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) translateY(-10px);
  }
  70% {
    transform: scale(0.9) translateY(5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes floatSocial {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Original Colors Fixed */
.fixed-social a.fb {
  background: #1877f2;
}
.fixed-social a.insta {
  background: #e4405f;
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.fixed-social a.wa {
  background: #25d366;
}

.fixed-social a:hover {
  transform: translateY(-20px) scale(1.15) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  filter: brightness(1.15);
  animation-play-state: paused;
}

.slide.active .hero-tag {
  opacity: 1;
  transform: translateX(0);
}

.hero-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-main);
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.hero-content h1 span {
  color: var(--primary);
  display: block;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 550px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.7s;
}

.slide.active .hero-content p {
  opacity: 1;
  transform: translateY(0);
}

.hero-btns {
  display: flex;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.9s;
}

.slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

.btn-main {
  padding: 18px 45px;
  border-radius: 100px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-5px);
  background: var(--accent);
  box-shadow: 0 15px 35px rgba(255, 0, 229, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid #e2e8f0;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== Features Section ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 10;
  margin-top: -40px;
  border-radius: 40px 40px 0 0;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.02);
}

.feat-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 380px;
  border-radius: 17px;
  z-index: 10;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    20px 20px 60px #bebebe,
    -20px -20px 60px #ffffff;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease;
  animation: cardEntrance 0.8s ease-out forwards;
  animation-delay: calc(var(--card-index) * 0.2s);
  opacity: 0;
  transform: translateY(30px) rotateX(10deg);
}

@keyframes cardEntrance {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.feat-card:hover {
  transform: scale(1.05);
}

.feat-bg {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  width: auto;
  height: auto;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  border-radius: 12px;
  overflow: hidden;
  outline: 2px solid white;
}

.feat-aurora {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: #ff0000;
  opacity: 1;
  filter: blur(15px);
  animation:
    blob-bounce 5s infinite ease,
    colorShift 8s infinite alternate;
}

@keyframes colorShift {
  0% {
    background-color: var(--primary);
    opacity: 0.7;
  }
  33% {
    background-color: var(--secondary);
    opacity: 0.8;
  }
  66% {
    background-color: var(--accent);
    opacity: 0.7;
  }
  100% {
    background-color: var(--primary);
    opacity: 0.7;
  }
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }
  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }
  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }
  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

.feat-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.feat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 77, 77, 0.1);
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
  animation: gentlePulse 4s infinite ease-in-out;
}

@keyframes gentlePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.feat-card:hover .feat-icon {
  background: var(--primary);
  color: white;
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 77, 77, 0.3);
}

.feat-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-main);
  text-align: center;
}

.feat-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
  text-align: center;
}

/* ===== Category Grid ===== */
.section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;

  /* Real Wave Font Animation */
  color: transparent;
  -webkit-text-stroke: 1px var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M0 10 Q 5 2.5 10 10 T 20 10 V 20 H 0 Z' fill='%23ff0000'/%3E%3C/svg%3E");
  background-size: 50px 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: waveFontScroll 1.5s linear infinite;
}

@keyframes waveFontScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 0;
  }
}

.section-title p {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-family: "Quantico", sans-serif;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  perspective: 2000px;
  justify-items: center;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.cat-card {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: 380px;
  border-radius: 40px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: #111;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  animation: categoryReveal 1.2s cubic-bezier(0.2, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--cat-index) * 0.15s);
  opacity: 0;
  transform: translateY(50px) rotateX(-10deg);
}

@keyframes categoryReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Neon Glow Layer */
.cat-card::before {
  content: "";
  position: absolute;
  animation: glowRotate 8s linear infinite;
  filter: blur(25px);
  background: linear-gradient(
    45deg,
    var(--primary),
    var(--accent),
    var(--secondary),
    var(--primary)
  );
}

@keyframes glowRotate {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Shine Sweep Effect */
.cat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  transition: 0.8s ease;
  z-index: 5;
}

.cat-card:hover {
  transform: translateY(-20px) rotateY(10deg) scale(1.02);
  box-shadow: 0 30px 60px rgba(255, 77, 77, 0.25);
}

.cat-card:hover::before {
  opacity: 0.7;
}

.cat-card:hover::after {
  left: 150%;
}

.cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  filter: brightness(0.9);
  display: block;
}

.cat-card:hover .cat-img {
  transform: scale(1.2) rotate(3deg);
  filter: brightness(1.1);
}

.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 45px 35px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.4) 60%,
    transparent 100%
  );
  color: white;
  z-index: 2;
  transition: all 0.5s ease;
  transform: translateY(20px);
}

.cat-card:hover .cat-info {
  transform: translateY(0);
  background: linear-gradient(
    to top,
    rgba(255, 77, 77, 0.3) 0%,
    rgba(0, 0, 0, 0.8) 50%,
    transparent 100%
  );
}

.cat-info h4 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  transition: 0.5s ease;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* Colorful Titles per Card */
.cat-card:nth-child(1) .cat-info h4 {
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cat-card:nth-child(2) .cat-info h4 {
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cat-card:nth-child(3) .cat-info h4 {
  background: linear-gradient(90deg, #f093fb, #f5576c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cat-card:nth-child(4) .cat-info h4 {
  background: linear-gradient(90deg, #43e97b, #38f9d7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cat-card:hover .cat-info h4 {
  transform: scale(1.1);
  transform-origin: left;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}
.footer2-widget__item-text {
  margin-left: -20px;
  text-align: justify;
}
.cat-info span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 4px;
  opacity: 0.9;
  transform: translateX(-20px);
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.22, 1);
}

.cat-card:hover .cat-info span {
  transform: translateX(0);
}

/* ===== Flash Sale / Stats ===== */
.cta-section {
  background: linear-gradient(135deg, #1a1c1e, #2d3436);
  color: white;
  border-radius: 50px;
  margin: 60px 5%;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary);
  filter: blur(80px);
  opacity: 0.3;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, var(--primary) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--secondary) 0%, transparent 50%);
  opacity: 0.1;
  animation: backgroundShift 10s infinite alternate;
  z-index: -1;
}

.animate-text {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: -2px;
  margin-bottom: 20px;
  animation: gradientFlow 5s ease infinite;
}

@keyframes backgroundShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(20px, 20px);
  }
}

.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 25px;
  font-weight: 800;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 50px;
}

.stat-item {
  animation: statEntrance 1s ease-out forwards;
  animation-delay: calc(var(--stat-index) * 0.2s);
  opacity: 0;
  transform: translateY(30px);
}

@keyframes statEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 5px;
  animation: numberPulse 3s infinite;
}

@keyframes numberPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
    color: var(--secondary);
  }
}

.stat-item p {
  font-weight: 600;
  opacity: 0.8;
}

/* ===== Slider Controls ===== */
.slider-dots {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  height: 40px;
  background: var(--primary);
  border-radius: 5px;
}

/* Particle Sparkle Layer */
#sparkle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
  animation: canvasPulse 5s infinite alternate;
}

@keyframes canvasPulse {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* ===== Immersive "Who We Are" Section ===== */
.about {
  position: relative;
  padding: 120px 0;
  background-image: url('../images/about-page-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgb(255 0 0 / 40%) 50%, rgba(5, 5, 5, 0.98) 100%);
  z-index: 1;
}

.about-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 2;
  animation: pulseGlow 10s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.8; }
}

.about-container {
  position: relative;
  z-index: 5;
  width: 90%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 30px;
  overflow: visible;
}

.about-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-img::after {
  content: "";
  position: absolute;
  inset: -15px;
  border: 2px solid var(--primary);
  border-radius: 35px;
  z-index: -1;
  opacity: 0.3;
  animation: rotateFrame 15s linear infinite;
}

@keyframes rotateFrame {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.img-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
  animation: floatBadge 4s infinite ease-in-out;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-right: 40px;
}

.about-tag {
  display: inline-block;
  color: var(--secondary);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 5px;
}

.about-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 30px;
  letter-spacing: -3px;
  font-weight: 800;
}

.about-content h2 span {
  background: linear-gradient(90deg, var(--secondary), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /*font-style: italic;*/
}

.about-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 500;
}


.about-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.about-feat-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  gap: 20px;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-feat-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 30px 60px rgba(112, 0, 255, 0.1);
}

.feat-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3);
  transition: all 0.4s ease;
}

.about-feat-card:hover .feat-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.feat-text-box h4 {
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.feat-text-box p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  line-height: 1.4;
  font-family: 'Outfit', sans-serif;
}

/* Responsiveness for About Section */
@media (max-width: 1024px) {
  .about {
    padding: 80px 0;
    background-attachment: scroll; /* Performance boost for mobile */
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    width: 95%;
  }
  
  .about-content {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-img {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px; /* Buffer for rotating border */
  }

  .about-img img {
    height: auto;
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 550px;
    object-fit: cover;
  }
  
  .img-badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -20px;
    padding: 15px 25px;
    width: max-content;
  }

  .about-content h2 {
    font-size: 3rem;
  }

  .about-content p {
    margin: 0 auto 30px;
    font-size: 1.1rem;
  }

  .about-features-grid {
    width: 100%;
    justify-content: center;
  }
  
  .about-feat-card {
    text-align: left;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 2.2rem;
  }
  
  .about-img img {
    height: auto;
    aspect-ratio: 1/1;
    max-width: 350px;
  }
  
  .about-img::after {
    inset: -8px;
  }

  .badge-num {
    font-size: 2rem;
  }

  .badge-text {
    font-size: 0.75rem;
  }
  
  .about-container {
    gap: 30px;
  }

  .about {
    padding: 60px 0;
  }
}


/* ===== Premium Animated Footer ===== */
.footer {
  background:
    linear-gradient(to bottom, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.98)),
    url("../images/about-page-bg.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  padding: 50px 5% 20px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.footer.reveal {
  opacity: 1;
  transform: translateY(0);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 10px;
}

.footer-logo {
  font-family: "Rye", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  text-decoration: none;
}

.footer-logo i {
  color: var(--primary);
  animation:
    pulse-glow 2s infinite,
    colorSpin 6s infinite;
}

@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 5px var(--primary));
  }
  50% {
    filter: drop-shadow(0 0 15px var(--primary));
  }
  100% {
    filter: drop-shadow(0 0 5px var(--primary));
  }
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  font-size: 1.1rem;
}
.footer-links h4 {
  font-family: "Quantico", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 18px;
  transform: translateX(-20px);
  opacity: 0;
  transition: all 0.5s ease;
}

.footer.reveal .footer-links ul li {
  transform: translateX(0);
  opacity: 1;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.footer-links ul li a:hover {
  color: var(--primary);
  padding-left: 8px;
  animation: linkWave 0.5s ease-out;
}

@keyframes linkWave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

.footer-map h4 {
  font-family: "Quantico", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 12px;
}

.footer-map h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
  animation: socialFloat 4s infinite ease-in-out;
}

@keyframes socialFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-8px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
}

/* ===== MOBILE MENU ENHANCEMENTS ===== */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-main);
  z-index: 1001;
  margin-left: 20px;
  transition: var(--transition);
  padding: 10px;
}

.hamburger:hover {
  color: var(--primary);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Navigation Unification */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    order: 3;
    z-index: 1001;
  }

  .nav-actions {
    display: flex !important;
    gap: 15px;
    align-items: center;
  }

  .btn-cart, .btn-shop-nav {
    display: none !important;
  }

  .header {
    position: sticky !important;
    top: 5px !important;
    width: 95% !important;
    padding: 8px 15px !important;
    margin: 5px auto !important;
    background: transparent !important;
    overflow: visible !important;
    z-index: 10000 !important;
    clip-path: none !important;
  }

  .header::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -2 !important;
    background: linear-gradient(90deg, 
      var(--primary), 
      var(--accent), 
      var(--secondary), 
      var(--success), 
      var(--primary)
    ) !important;
    background-size: 300% 100% !important;
    animation: borderRotate 6s linear infinite !important;
    
    /* Hollow Border for Mobile */
    clip-path: polygon(
      0 15%, 15px 0, calc(100% - 15px) 0, 100% 15%, 100% 85%, calc(100% - 15px) 100%, 15px 100%, 0 85%, 0 15%, 
      2px calc(15% + 1px), 2px calc(85% - 1px), calc(15px + 1px) calc(100% - 2px), calc(100% - 15px - 1px) calc(100% - 2px), calc(100% - 2px) calc(85% - 1px), calc(100% - 2px) calc(15% + 1px), calc(100% - 15px - 1px) 2px, calc(15px + 1px) 2px, 2px calc(15% + 1px)
    ) !important;
  }

  .header::before {
    clip-path: polygon(
      0 15%, 
      15px 0, 
      calc(100% - 15px) 0, 
      100% 15%, 
      100% 85%, 
      calc(100% - 15px) 100%, 
      15px 100%, 
      0 85%
    ) !important;
  }

  .logo {
    font-size: 1.1rem !important;
    flex: 1 !important;
    position: relative !important;
    z-index: 10 !important;
  }

  .nav-links {
    position: absolute !important;
    top: calc(100% + 15px) !important; /* Positions it nicely below the navbar */
    left: 50% !important; /* Center anchor */
    right: auto !important;
    width: 260px !important;
    height: auto !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(30px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(30px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 30px !important; /* Compact Pill Look */
    display: flex !important;
    flex-direction: column !important;
    padding: 20px !important;
    gap: 10px !important;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
    z-index: 999 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translate(-50%, -20px) scale(0.9) !important; /* Slide-up + Centered */
  }

  [data-theme="dark"] .nav-links {
    background: rgba(15, 23, 42, 0.4) !important;
    border-color: rgba(112, 0, 255, 0.3) !important;
  }

  .nav-links.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, 0) scale(1) !important; /* Active + Centered */
  }


  .nav-links a {
    width: 100% !important;
    padding: 12px 20px !important;
    text-align: center !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
    color: var(--text-main) !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
  }

  .nav-links a.active {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3) !important;
  }

  .nav-links a.active {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(112, 0, 255, 0.3) !important;
  }

  /* Remove redundant indicator on mobile */
  .nav-indicator {
    display: none !important;
  }
}

/* ===== ENHANCED RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-content h1 {
    font-size: 4rem;
  }
  .about h2 {
    font-size: 3.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cta-section h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .about {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 80px 5% !important;
  }
  .about h2 {
    font-size: 3rem;
    letter-spacing: -2px;
    line-height: 1.1;
  }
  .about-img {
    transform: none !important;
    max-height: 400px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .section-title h2 {
    font-size: 2.5rem;
  }
  .cat-card {
    height: 400px;
  }
  .stats {
    gap: 50px;
  }
}

/* Removed redundant mobile styles */

@media (max-width: 768px) {
  /* Marquee Adjustments */
  .marquee-container {
    padding: 10px 0;
  }
  .marquee-item {
    font-size: 0.8rem;
    margin-right: 40px;
    gap: 10px;
  }
  .marquee-item i {
    font-size: 0.8rem;
  }

  /* Hero Section */
  .hero {
    height: 60vh;
    min-height: 450px;
    width: 95%;
    margin: 10px auto 0;
    border-radius: 25px;
  }

  .hero-content {
    padding: 0 8%;
    text-align: center;
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 6px 12px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
  }

  .btn-main {
    padding: 15px 30px;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    font-size: 0.9rem;
  }

  .slider-dots {
    right: 20px;
    top: 50%;
    gap: 10px;
  }

  /* Features Section */
  .features {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: -20px;
    padding: 40px 5% !important;
    border-radius: 25px 25px 0 0;
  }

  .feat-card {
    width: 100%;
    max-width: 100%;
    height: 300px;
    margin: 0 auto;
  }

  .feat-card h3 {
    font-size: 1.3rem;
  }

  .feat-card p {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  /* About Section */
  .about h2 {
    font-size: 2.2rem;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 25px;
  }

  .about p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .about-img {
    height: 300px;
  }

  .about-features {
    margin-top: 30px;
  }

  .about-feat-item {
    margin-bottom: 20px;
  }

  /* Categories Section */
  .section-title {
    margin: 0 auto 40px;
  }

  .section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .section-title p {
    font-size: 0.95rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cat-card {
    height: 350px;
    border-radius: 25px;
  }

  .cat-info {
    padding: 30px 25px;
  }

  .cat-info h4 {
    font-size: 1.6rem;
  }

  .cat-info span {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  /* Stats Section */
  .cta-section {
    margin: 40px 3%;
    padding: 50px 25px;
    border-radius: 30px;
  }

  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .cta-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .stats {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .stat-item p {
    font-size: 1rem;
  }

  /* Social Icons */
  .fixed-social {
    position: relative;
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px auto 10px;
    bottom: auto;
    right: auto;
    width: 100%;
    z-index: 1;
  }

  .fixed-social a {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Footer */
  .footer {
    padding: 60px 5% 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: center;
  }

  .footer-logo {
    font-size: 1.8rem;
    justify-content: center;
    margin-bottom: 25px;
  }

  .footer-links h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul li {
    margin-bottom: 15px;
    transform: none;
    opacity: 1;
  }

  .footer-about p {
    font-size: 1rem;
    text-align: center;
  }

  .footer-map h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }

  .footer-map h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .social-links {
    justify-content: center;
    margin-top: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
  }

  /* Remove floating shapes on mobile */
  .floating-shape {
    display: none;
  }

  /* Improve touch targets */
  .cat-card,
  .feat-card {
    min-height: 200px;
  }

  .btn-main {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero {
    height: 1vh;
    min-height: 170px;
  }

  .feat-card {
    height: 280px;
  }

  .cat-card {
    height: 300px;
  }

  .about h2 {
    font-size: 1.8rem;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .footer-logo {
    font-size: 1.6rem;
  }

  .nav-links {
    width: 250px;
  }
}

.footer-links ul li a {
  transition: var(--transition);
  font-weight: 500;
  font-family: "Quantico", sans-serif;
}

/* Prevent horizontal scrolling */
.marquee-container {
  width: 100%;
  overflow: hidden;
}

/* Ensure images are responsive */
/* Ensure images are responsive */
img,
.cat-img,
.slide-bg {
  max-width: 100%;
  height: auto;
}

/* ===== Floating WhatsApp Button ===== */
.floating_btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.contact_icon {
  /* background-color: #42db87; removed to show real icon */
  /* color: #fff; removed to show real icon */
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  box-shadow: 0 0 0 0 #42db87;
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.contact_icon:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(66, 219, 135, 0);
  }
}

/* ===== Estimate Floating Button ===== */
.estimate-style {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: var(--transition);
}

.estimate_icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}

.estimate_icon:hover {
  transform: scale(1.1);
}

.bounce2 {
  animation: bounce2 2s infinite ease-in-out;
}

@keyframes bounce2 {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

/* ===== Minimalist Cyber Dual-Tone Marquee ===== */
.footer-marquee-container {
  background: #020617;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 50;
  border-top: none; /* Removed border */
  border-bottom: none; /* Removed border */
}

/* Unique Animated Dot-Matrix Background */
.footer-marquee-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(112, 0, 255, 0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: matrixMove 10s linear infinite;
  opacity: 0.5;
}

@keyframes matrixMove {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}

.footer-marquee-inner {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 0;
  animation: footerMarqueeScroll 30s linear infinite;
  will-change: transform;
}

@keyframes footerMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.marquee-group span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff; /* First color */
  text-transform: uppercase;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  padding: 0 60px;
  white-space: nowrap;
  position: relative;
  transition: all 0.4s ease;
}

/* Dual Color Logic */
.marquee-group span b {
  color: var(--secondary); /* Second color (Gold) */
  font-weight: 700;
  margin-left: 10px;
}

.marquee-group span i {
  color: var(--primary);
  margin-right: 15px;
  font-size: 1rem;
  opacity: 0.8;
  transform: rotate(-10deg);
  transition: all 0.4s ease;
}

.marquee-group span:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 10px rgba(112, 0, 255, 0.3));
}

.marquee-group span:hover i {
  transform: rotate(10deg) scale(1.2);
  color: var(--accent);
}

.footer-marquee-container:hover .marquee-group {
  animation-play-state: paused;
}

.wapp {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}
    /* Sticky filters */
 .sticky-filters {
    position: sticky;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 100;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

/* Mobile view */
@media (max-width: 768px) {
    .sticky-filters {
        top: 85px !important;
    }
}

/* Desktop view */
@media (min-width: 769px) {
    .sticky-filters {
        top: 120px;
    }
}
    
    /* Highlight for searched product */
    .product-highlight {
        animation: highlight 2s;
        border-left: 4px solid #28a745;
        padding-left: 10px;
    }
    
    @keyframes highlight {
        0% { background-color: #ffff99; }
        100% { background-color: white; }
    }
    
    /* For mobile */
    @media (max-width: 768px) {
        .sticky-filters {
            top: 0; /* Adjust for mobile navbar */
        }
    }#grid_view .category-bg {
	padding: 10px;
}
#grid_view .secpad {
	padding: .5rem 3px 0 !important;
}
#grid_view .feature-gd {
	padding: 5px 15px 5px 15px;
	border-radius: 8px;
	height: 150px;
	margin-bottom: 0px;
	border: 1px solid #454b51 !important;
}
#grid_view .sno, .box_sno {
	position: absolute;
	padding: 0px 8px 0px 8px;
	top: 0;
    left: 0;
	font-size: 14px;
	border-radius: 8px 0px 8px;
	color: #000;
	border: 1px solid #454b51 !important;
}
.box_sno {
	border-radius: 0px 0px 8px;
	top: 0px;
	left: 0px;
}
#grid_view .icon img {
	max-width: 80px;
	max-height: 80px;
}
#grid_view .qty_box {
	width: 50px !important;
	margin-bottom: 10px !important;
	height: 35px !important;
	padding: 5px !important;
	border: 1px solid #454b51;
	border-radius: 5px;
	text-align: center;
}
#grid_view .pricebox {
	position: absolute;
	padding: 5px 5px;
	bottom: 0px;
	right: 0px;
	font-size: 15px;
	border-radius: 22px 0 8px 0;
	color: #000;
	width: 100px;
	text-align: center;
	border: 1px solid #454b51 !important;
}
#grid_view .qtypad {
	padding-left: 65px;
}

span.infos {
	font-size: 14px;
	line-height: 15px;
	display: inline-block;
	color: #d93025;
}
span.infos i { margin-right: 5px; }

.search_cover { position: relative; }
.search_products_cover {
	max-height: 300px;
	overflow-y: scroll;
	scrollbar-width: thin;
	position: absolute;
	left: 0px;
	background-color: #fff;
	overflow-x: hidden;
	border-radius: .25rem;
	display: none;
}
.desktop_search {
	bottom: 54px;
}
.mobile_search {
	top: 44px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	border: none !important;
}
.search_product {
	text-align: left;
	display: none;
}
.mobile_search .search_product { padding: 0px !important; }
.mobile_search .search_product a {
	font-size: 14px;
	line-height: 15px;
	padding: .25rem 1.5rem;
}
.mobile_search .search_product a:hover {
	color: #fff !important;
	text-decoration: none;
	background-color: #db2226 !important;
  }
.product_highlight {
	box-shadow: 0px 0px 10px #000;
	border-radius: 5px;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	z-index: 99;
	background: #fff;
}

.box_product_image { height: 250px; }
.box_product_name { height: 50px; }

.w-60 { width: 60% !important; }
.w-40 { width: 40% !important; }

.card-shadow{-webkit-transform: scale(1.15);
	transform: scale(1.15);
	z-index: 1;
	background: #fff;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;}

.ribbons {
position: absolute;
right: 0px; 
top: 0px;
z-index: 1;
overflow: hidden;
width: 60px; 
height: 60px; 
text-align: right;}
.ribbons span {
font-size: 10px;
color: #fff; 
text-transform: uppercase; 
text-align: center;
font-weight: bold; 
line-height: 20px;
transform: rotate(45deg);
width: 90px; 
display: block;
position: absolute;
top: 12px; 
right: -21px;}
.ribbons span::before {
content: '';
position: absolute; 
left: 0px; 
top: 100%;
z-index: -1;}
.ribbons span::after {
content: '';
position: absolute; 
right: 0%; top: 100%;
z-index: -1;}
.red span {background: linear-gradient(#F70505 0%, #8F0808 100%);}
.red span::before {border-left-color: #8F0808; border-top-color: #8F0808;}
.red span::after {border-right-color: #8F0808; border-top-color: #8F0808;}

		
@media (min-width:1px) and (max-width:767.98px){
.ribbons{width: 60px!important; height: 60px!important; }
.ribbons span {transform: rotate(45deg); width: 73px!important; top: 5px!important; right: -21px!important; font-size: 8px!important;}
}

@media (min-width:768px) and (max-width:991.98px){
.ribbons{width: 75px !important; height: 75px !important; left: 115px!important; top: 23px!important;}
.ribbons span {width: 83px !important; top: 7px !important; right: -22px !important; font-size: 8px !important;}
}
.buttonhero2 {
	display: inline-block;
	margin: 0 auto;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	box-shadow: 0px 3px rgba(128,128,128,1), 0px 4px rgba(118,118,118,1), 0px 5px rgba(108,108,108,1), 0px 6px rgba(98,98,98,1), 0px 7px rgba(88,88,88,1), 0px 8px rgba(78,78,78,1), 0px 14px 6px -1px rgba(128,128,128,1);
	transition: -webkit-box-shadow .1s ease-in-out;
	-webkit-transition: -webkit-box-shadow .1s ease-in-out;}
.buttonhero2 span {
	background-color: #D2151E;
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(50%,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,0.3)),color-stop(100%,rgba(255,255,255,0.2)));
	background-size: 100%, 100%, 100%, 4px 4px;
	border-radius: 10px;
	transition: -webkit-transform .1s ease-in-out;
	display: inline-block;
	padding: 10px 40px 10px 40px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;}
.check_order_button { font-size: 20px; }
.confirm_order_button { font-size: 18px; }
.buttonhero2:active {box-shadow: 0px 3px rgba(128,128,128,1),0px 4px rgba(118,118,118,1),0px 5px rgba(108,108,108,1), 0px 6px rgba(98,98,98,1),0px 7px rgba(88,88,88,1),0px 8px rgba(78,78,78,1), 0px 10px 2px 0px rgba(128,128,128,.6);}
.buttonhero2:active span {-webkit-transform: translate(0, 5px); transform: translate(0, 5px);} 
@media (min-width:768px){
	.list_quantity { width: auto; margin: auto; }
	.list_amount { width: auto; margin: auto; }
}

@media (min-width:1px) and (max-width:767px){
	.list_quantity { width: 50px; font-size: 12px; }
.list_amount { width: 50px; font-size: 12px; }

.box_product_name { height: 75px; }
}



                    .topbar { background :#fdbdcb; }
            .desk-badges { background-color:var(--primary); }
                            .topbar { color: #6c3600; }
            .desk-badges { color: #6c3600; }
            .topbar i { color: #6c3600; }
                            .list_cart_category_button { background-color: #ffffff; }
                            .list_cart_category_button { color: #800040; }
                            .spanbg { background-color: #ffffff; }
                            .spanbg { color: #000000; }
        
                    #grid_view .category-bg { background-color:#fdd62d; }
            .search_product_name { border: 2px solid #804000; }
            .time-of-year .tooltip::after { border-top: 10px solid #804000; }
            .search_products_cover { border: 2px solid #804000; }
            .search_product.active, .search_product .dropdown-item:hover { background-color: #804000 !important; }
            .fixed-bottom-clr1 { background: linear-gradient(90deg, var(--primary), var(--accent));}
            .canvas-btn-order { background-color: #804000; }
            .canvas-sticky { background-color: #804000; }
            .badges1 { background-color:rgb(176, 2, 12); }
                            #grid_view .category-bg { color: var(--primary);font-weight:bold; }
            .search_product.active a { color: #ffffff; }
            .canvas-sticky .card_heading, .canvas-sticky i { color: #ffffff; }
            .canvas-btn-order { color: #ffffff; }
            .total_products_count_link { color: #ffffff; }
            .total_products_count_icon, .total_products_count, .desktop-fixed1 { color: #ffffff; }
            .badges1 { border: 2px solid #ffffff; }
            .view_cart { color: #ffffff; }
                            #grid_view .product_row1 .feature-gd { background-color: #ffffff; }
                            #grid_view .product_row2 .feature-gd { background-color: #ffffff; }
                            #grid_view .pricelist_product_row_cover { color: #000000; }
            #grid_view .pricebox { color: #000000; }
                            #grid_view .strike { text-decoration-color: #8d8d8d !important; }
                            #grid_view .pricelist_product_row_cover { border-color: #000000; }
                            #grid_view .pricebox { background-color: #ffffff; }
                            #grid_view .pricebox { color: #000000; }
                            #grid_view .sno { background-color: var(--primary); }
                            #grid_view .sno { color: #ffffff; }
                            
                        
    .w-50 {
    width: 50%!important;
    background: #fff !important;
}

#popup_header {
    background-color: #b32549 !important;
    background-image: none;
    color: #fff;
}

#popup_table .odd td {
    background-color: #ffff40;
    text-align: center;
    font-size: 16px !important;
    font-weight:bold;
    
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
    .bg-theme-1{
        background: var(--primary);
    border: 1px solid;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    font-weight: 900;
    }
.desk-badges {
    position: absolute;
    background-color: #db2226;
    border-radius: 37%;
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 11px !important;
    bottom: 50%;
    border: 2px solid white;
    right: 6%;
}
.desk-badgescntr {
    align-items: center;
    display: flex;
    place-content: center;
}

a{text-decoration:none!important;}
li{list-style-type: none!important;}
.heading1{font-size: 2.5rem;} .heading2{font-size: 2rem;} .heading3{font-size: 1.75rem;} .heading4{font-size: 1.5rem;} .heading5{font-size: 1.25rem;} .heading6{font-size: 1rem;}
.fullpad{padding:0!important; margin:0!important;}
.medium{font-family: 'Roboto', sans-serif;}	
.smallfnt{font-size: 13px;}
.forumuser {position: relative;}
.form-group {margin-bottom: 0rem !important;}
.forumuser input[type="search"] {
	padding: 11px 27px;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
	border-radius: 4px;
	font-size: 14px;
	width: 100%;}
.forumuser i {
	position: absolute;
	right: 8px !important;
	top: 15px;
	color: #0075e7;
	font-size: 13px;}
.product-box {
	background: #FFFFFF;
	display: flex;
	padding: 12px 10px;}	
.transparent-blue-button {
	border: 1px solid #0077D1;
	font-size: 12px;
	border-radius: 30px;
	padding: 7px 12px;
	color: #0077D1 !important;}
.transparent-blue-button2 {
	border: 1px solid #0077D1;
	font-size: 11px;
	border-radius: 30px;
	padding: 7px 8px;
	color: #0077D1 !important;}	
.product-img{width:80px; border-radius: 10px;}	
.fnt1{font-size: 14px;}
.fnt2{font-size: 13px; font-weight: bold;}
.fnt3{font-size: 13px; color:#6f6f6f;}
.fnt4 {font-size: 13px; color: #d3d3d3;}

.top-fixed {
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 5;}
.bottom-fixed {
	position: fixed;
	bottom: 0;
	width: 100%;}
.bottom-fixed1 {
	position: fixed;
	bottom: 45px;
	width: 100%;}	
.balancefnt{font-size: 13px;}	
.feature-gd {
	background: white;
	padding: 7px;
	border-radius: 8px;
}	
.icon i {
	color: #db241e;
	font-size: 25px;
	background: rgb(13 54 159 / 9%);
	width: 35px;
	height: 35px;
	line-height: 35px;
	border-radius: 50%;
	text-align: center;}	
.fixed-bottom-clr{background-color: #0077D1;}	
.badges {
	position: absolute;
	background-color: #f10a0a;
	border-radius: 50%;
	color: #fff;
	width: 20px;
	height: 20px;
	top: -10px;
	right: 80px;
	font-size: 10px !important;
	bottom: 11px;
	border: 2px solid white;}
.badges1 {
	position: absolute;
	background: rgb(176, 2, 12);
	border-radius: 37%;
	color: #fff;
	width: 25px;
	height: 25px;
	font-size: 12px !important;
	bottom: 59%;
	border: 2px solid white;
	left: 0px !important;}	
.badgescntr {align-items: center;display: flex; place-content: center;}
.line{border-bottom:1px solid #ababab;}
.order-card{background-color: #eee;}
.clr-red{color: #ff5c5c; font-size: 12px;}
.bin-clr{color:#6f6f6f;}
.desktop-fixed1 .dropdown-menu {width:350px; top:12px!important;}
.drop-brdr{border-bottom: 1px solid #eaeaea !important;}
.desktop-fixed{position: fixed; bottom: 0; left:35%;}
.desktop-fixed1{position: sticky; bottom: 0; width: 100%;}
.fixed-bottom-clr1{background-color: #0077D1; padding:10px 10px; border-radius: 50px;}	
.deskpad{padding:15px 6px 0 6px!important;}
.changeicns {
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 4px;
	line-height: 9px;
	text-align: center;
	color: #0077d1;
	border: none;}
.icnsfnt{font-size: 11px;}	
.number{border: 1px solid #0077d1;
	border-radius: 50px;
	width: 75px;
	float: right;
	text-align: center;
	padding: 2px;}	
.number input {
	height: 25px;
	width: 30px;
	text-align: center;
	font-size: 13px;
	border: 1px solid #ddd;
	border-radius: 4px;
	display: inline-block;}
.box-scroll{height:300px; overflow-y: hidden; overflow: scroll; scrollbar-width:thin;}
.order-btn{background-color:#0077d1; color:#fff; border-color:#0077d1; padding:8px 16px; border-radius: 5px;}  
.category-bg{background-color:#0077d1; color: #fff; text-align: center; text-transform: uppercase; }
#preview_cover .navbg{background-color:#0077d1;}
.nav-straight li {display: inline-block; margin-right: 15px;}
.signin_button {
	background-color: #FFF;
	color: #000 !important;
	padding: 5px 12px;
	border-radius: 5px;
	font-size: 14px;}
.navdrp .dropdown-menu{width:200px!important; top:66px!important;}
.inner-login{width: 35px; position: absolute; left: 8px; top: 20px;}
.navdrp .dropdown-item{padding: 7px 15px!important;}
.navdrp .dropdown-menu-right {right: -18px !important; left: auto;}
.smallborder1 {width: 170px; height: 1px; margin: 0 10px; background-color: #A0A0A06E;}
.navdrp .dropdown-menu::before {
	content: '';
	display: block;
	border-top: 12px solid transparent;
	border-left: 18px solid #0077d1;
	border-bottom: 12px solid transparent;
	position: absolute;
	top: -19%;
	right: 34px;
	transform: rotate(270deg);
	opacity: 1;}
.login-profile {width: 40px; height: 40px;}	
.login-label {font-size: 14px; color: #999;}
.box .form-control {
    padding: 15px 5px;
    border: 1px solid #3b67b3;
    border-radius: 0px;
    border-top: none;
    border-left: none;
    border-right: none;}
.form-control:focus {box-shadow: none; border: 2px solid #0077d1!important;}
.loginbtn{background-color: #0077d1; color: #fff; padding: 8px 25px;  border:2px solid #0077d1; transition: .15s ease-in-out;}
.loginbtn:hover{background-color: #fff; color: #0077d1; }
.frgtpswd{font-size: 13px; text-decoration: underline!important; color:#222!important;}
.rgstr{font-size: 14px; color:#222;}
.rgstr:hover{color:#222; text-decoration: underline;}
.btn-secondary{background-color: #fff!important; border-color:#fff!important; color:#000!important;}
input::placeholder {font-size: 13px;}
