canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.custom-footer {
      background-color: #0a0a23;
      border-top: 1px solid #1e293b;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
      padding: 2rem 1.5rem;
      font-size: 1.05rem;
      font-weight: 500;
      color: #e5e7eb;
      border-radius: 8px;
    }

    .footer-wrapper {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .footer-left {
      flex: 1;
      min-width: 250px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }

    .logo-container {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .logo-image {
      max-height: 120px;
      width: auto;
      border-radius: 8px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

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

    .shop-name {
      font-size: 2.2rem;
      font-weight: 700;
      color: #c000ff;
      margin-top: 1rem;
    }

    .footer-description {
      margin-top: 1.5rem;
      text-align: center;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      font-size: 1rem;
      line-height: 1.5;
      color: #9ca3af;
    }

    .footer-right {
      flex: 1;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 2rem;
      margin-top: 2rem;
    }

    .section {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      width: 100%;
    }

    .section-title {
      font-size: 1.2rem;
      color: #e5e7eb;
      margin-bottom: 1rem;
      border-bottom: 2px solid #c000ff;
      padding-bottom: 0.5rem;
      text-align: center;
    }

    .section-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .section-link {
      display: block;
      padding: 0.75rem 1.25rem;
      background-color: #1e293b;
      border-radius: 8px;
      color: #e5e7eb;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      text-align: center;
    }

    .section-link:hover {
      background-color: #374151;
      color: #c000ff;
      transform: translateY(-2px);
    }

    .footer-copyright {
      margin-top: 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: #6b7280;
    }

.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem; /* Base padding for larger screens */
}

.bg-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

.background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10vw;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  white-space: nowrap;
  z-index: 0;
  letter-spacing: 2px;
  animation: moveBackgroundText 40s linear infinite;
  text-transform: uppercase;
}

@keyframes moveBackgroundText {
  0% { transform: translate(-50%, -50%) translateX(-10vw); }
  100% { transform: translate(-50%, -50%) translateX(10vw); }
}

.container {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 2rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.content {
  max-width: 800px;
  text-align: center;
}

.main-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(45deg, #dd00ff, #c000ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShine 4s ease-out infinite;
  text-transform: uppercase;
}

@keyframes textShine {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(192,0,255,0.4)); }
  50% { filter: drop-shadow(0 0 8px rgba(192,0,255,0.6)); }
}

.description {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.5;
  margin-bottom: 1.2rem;
  color: #e6f3ff;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.description::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #c000ff;
  animation: underlineExpand 3s ease-out infinite;
}

@keyframes underlineExpand {
  0%, 100% { width: 0; }
  50% { width: 30px; }
}

.button-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(45deg, #c000ff, #dd00ff);
  color: #fff;
  padding: 0.5rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.3s;
}

.btn-primary:hover::before {
  left: 100%;
}

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

.btn-join {
  background: transparent;
  border: 2px solid #c000ff;
  color: #c000ff;
}

.btn-join:hover {
  background: transparent;
  border: 2px solid #c000ff;
  color: #c000ff;
  transform: translateY(-2px);
}

.arrow-icon {
  height: 0.9rem;
  width: 0.9rem;
  margin-left: 0.4rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
  transform: translateX(4px);
}

.image {
  max-width: clamp(200px, 20vw, 300px);
  margin: 1rem auto 0;
}

.img-fluid {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.image:hover .img-fluid {
  transform: scale(1.03);
}

.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.mouse-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mouse-icon {
  width: 20px;
  height: 20px;
  color: #fff;
}

.scroll-text {
  font-size: 0.65rem;
  color: #fff;
  margin-top: 0.3rem;
  font-weight: 600;
}

.bounce-arrow {
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 20%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

.animate-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-in:nth-child(1) { animation-delay: 0.1s; }
.animate-in:nth-child(2) { animation-delay: 0.3s; }
.animate-in:nth-child(3) { animation-delay: 0.5s; }

@media (min-width: 769px) {
  .main-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    margin-bottom: 1.5rem;
  }
  .description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
  }
  .button-group {
    margin-bottom: 1.5rem;
  }
  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
  .image {
    max-width: 400px;
    margin: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    padding-top: 5.5rem; /* Increased padding for mobile to avoid navbar overlap */
  }
  .container {
    flex-direction: column;
    padding: 1rem 0.8rem;
  }
  .main-title {
    font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    margin-bottom: 0.8rem;
  }
  .description {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    margin-bottom: 1rem;
    padding: 0 0.8rem;
  }
  .button-group {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0 0.8rem;
  }

/* Neon purple borders and glow */
:root {
  --neon-purple: #c000ff;
  --neon-purple-rgb: 192,0,255;
}

/* Interactive elements: neon outline on hover/active */
.navbar .nav-link:hover,
.navbar .nav-link.active,
.section-link:hover,
.btn-outline-primary,
.btn-outline-primary:hover,
.footer .nav li a:hover {
  border-color: var(--neon-purple) !important;
  box-shadow: 0 0 18px rgba(var(--neon-purple-rgb), 0.22), inset 0 0 6px rgba(var(--neon-purple-rgb), 0.08);
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

/* Cards, hero and sections: subtle neon border */
.product-card,
.hero .content,
.footer,
.section-title {
  border: 1px solid rgba(var(--neon-purple-rgb), 0.08);
  box-shadow: 0 6px 22px rgba(var(--neon-purple-rgb), 0.03);
}

/* Strong neon for primary buttons */
.btn-primary {
  box-shadow: 0 0 24px rgba(var(--neon-purple-rgb), 0.22);
  border: 1px solid var(--neon-purple);
}

/* Make section title underline neon */
.section-title {
  border-bottom-color: var(--neon-purple) !important;
}

/* Jattmart purple neon animated product borders */
:root {
  --jattmart-purple: #9B00FF;
  --jattmart-purple-soft: rgba(155, 0, 255, 0.45);
  --jattmart-purple-bright: #d94dff;
}

.products .card,
.product-card,
.product-page,
.product-wrapper,
.cart .product {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(155, 0, 255, 0.65) !important;
  border-radius: 22px !important;
  box-shadow:
    0 0 14px rgba(155, 0, 255, 0.28),
    inset 0 0 12px rgba(155, 0, 255, 0.10);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.products .card::before,
.product-card::before,
.product-page::before,
.product-wrapper::before,
.cart .product::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, transparent, var(--jattmart-purple), var(--jattmart-purple-bright), transparent);
  background-size: 220% 220%;
  animation: jattmartNeonBorder 3s linear infinite;
  pointer-events: none;
  opacity: .85;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.products .card:hover,
.product-card:hover,
.product-page:hover,
.product-wrapper:hover,
.cart .product:hover {
  transform: translateY(-6px);
  border-color: var(--jattmart-purple-bright) !important;
  box-shadow:
    0 0 22px rgba(155, 0, 255, 0.55),
    0 0 44px rgba(217, 77, 255, 0.30),
    inset 0 0 18px rgba(155, 0, 255, 0.16);
}

.products .card .card-img-top,
.products .card .card-img-top img,
.products .card .card-img-top svg {
  border-top-left-radius: 22px !important;
  border-top-right-radius: 22px !important;
}

@keyframes jattmartNeonBorder {
  0% { background-position: 0% 50%; filter: hue-rotate(0deg); }
  50% { background-position: 100% 50%; filter: hue-rotate(10deg); }
  100% { background-position: 0% 50%; filter: hue-rotate(0deg); }
}



/* JATTMART PURPLE THEME ONLY - SAFE CSS OVERRIDE */
:root {
  --cl-accent: #9b00ff !important;
  --cl-accent-rgb: 155, 0, 255 !important;
  --cl-background-primary: #070010 !important;
  --cl-background-primary-rgb: 7, 0, 16 !important;
  --cl-background-secondary: #120021 !important;
  --cl-background-secondary-rgb: 18, 0, 33 !important;
  --cl-border: #9b00ff !important;
  --cl-border-rgb: 155, 0, 255 !important;
}

body {
  background: radial-gradient(circle at top, #1a0033 0%, #070010 65%) !important;
  color: #f7f2ff !important;
}

header,
.navbar,
.custom-footer,
.card,
.product-card,
.feedback-card,
.status-card,
.modal-content,
.dropdown-menu {
  background-color: rgba(18, 0, 33, 0.92) !important;
  border-color: rgba(155, 0, 255, 0.55) !important;
  box-shadow: 0 0 18px rgba(155, 0, 255, 0.28) !important;
}

.btn,
.btn-primary,
button[type="submit"],
a.btn {
  background: linear-gradient(90deg, #7b1fff, #c44dff) !important;
  border-color: #d966ff !important;
  color: #ffffff !important;
  box-shadow: 0 0 18px rgba(217, 102, 255, 0.55) !important;
}

.btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
a.btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 28px rgba(217, 102, 255, 0.85) !important;
}

a,
.text-primary,
.shop-name,
.section-title {
  color: #d966ff !important;
}

h1, h2, h3, .hero-title {
  color: #ffffff !important;
  text-shadow: 0 0 12px rgba(155, 0, 255, 0.95), 0 0 28px rgba(217, 102, 255, 0.55) !important;
}

input,
textarea,
select,
.form-control {
  background-color: rgba(7, 0, 16, 0.9) !important;
  border-color: rgba(155, 0, 255, 0.5) !important;
  color: #ffffff !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  border-color: #d966ff !important;
  box-shadow: 0 0 16px rgba(217, 102, 255, 0.45) !important;
}
