/* ========== Reset & Base Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: #212529 url(/img/bg.png?123) no-repeat center center fixed;
  color: #b8ff01;
  font-family: "Rubik Mono One", sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ========== Layout ========== */

/* Global container stacking */
.container-fluid {
  position: relative;
  z-index: 3;
}

/* Canvas (blurry liquid-style layer) */
canvas {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-color: #212529;
  filter: blur(calc(var(--liquid-factor, 20) * 1px))
          contrast(calc(var(--liquid-factor, 20) * 3));
  scale: 1.1;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Section spacing */
section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}


/* ========== Typography ========== */

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
  color: #ff48c4;
  /*text-shadow: 2px 2px #8a2be2;*/
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Hidden headline for accessibility */
h1.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Section-specific heading styles */
.featured-title,
.event-heading,
.gallery-heading {
  font-size: 1.2rem;
  color: #ff48c4;
  text-shadow: 2px 2px #8a2be2;
  margin-bottom: 1rem;
}

/* Paragraphs and descriptions */
.featured-description,
.event-details,
.cta-text,
.product-description {
  font-size: 0.75rem;
  font-family: "Rubik Mono One", sans-serif;
  color: #ffffff;
}


/* ========== Navigation ========== */

/* Base nav link style */
.navbar-nav .nav-link {
  color: #ffffff;
  font-size: 1.6em;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #a3ff00;
}

.navbar-nav .nav-link.active {
  color: #ff48c4;
}


/* Mobile nav spacing and animation */
@media (max-width: 767.98px) {
  #mainNav {
    padding: 1rem 0;
    transition: height 0.35s ease;
  }

  .nav-masthead .nav-link {
    width: 100%;
    text-align: right;
    padding-right: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  #mainNav.show .nav-link {
    opacity: 1;
  }

  #mainNav.collapsing {
    height: auto !important;
    overflow: hidden;
  }
}

/* Toggle button */
.navbar-toggler {
  border: none;
  margin-top: 0.5rem;
}

.navbar-toggler .bi {
  font-size: 2.5rem;
  color: white;
}

/* Glitch hover effect */
.nav-glitch {
  position: relative;
  color: #ff0000;
  transition: all 0.2s ease-in-out;
}

.nav-glitch.glitching {
  animation: navGlitch 0.9s steps(4, end);
}

.navbar-toggler {
  padding: 0.5rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 32px;
  height: 32px;
}

/* Tighter, square hamburger */
.navbar-toggler {
  padding: 0.5rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Remove default focus glow */
.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: flex-end; /* 👈 Right align collapse contents */
    text-align: right;
  }

  .navbar-nav {
    width: 100%;
    align-items: flex-end;
  }

  .navbar-nav .nav-item {
    width: auto;
  }

  /* Social icons in a single row */
  .navbar-nav.flex-row {
    flex-direction: row !important;
    justify-content: flex-end !important;
    width: 100%;
    padding-top: 1rem;
    gap: 0.5rem;
  }

  .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .social-icon {
    width: 100%;
    height: 100%;
  }
}





/* ========== Header & Logo ========== */

/* Logo container */
.title-logo {
  position: relative;
  display: inline-block;
  image-rendering: pixelated;
}

/* VHS scanline overlay */
.title-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 2;
}

/* Logo image animation */
.title-logo img {
  display: block;
  animation: huePulse 120s infinite alternate;
}

/* Hue-rotate loop for synthwave glow */
@keyframes huePulse {
  0% {
    filter: hue-rotate(0deg) brightness(1);
  }
  100% {
    filter: hue-rotate(360deg) brightness(1.2);
  }
}

/* Right-side logo next to featured section */
.logo-right {
  text-align: right;
}

.logo-left {
  text-align: right;
}

.logo-right img {
  max-width: 85%;
  height: auto;
}

.logo-left img {
  max-width: 85%;
  height: auto;
}

/* Center logo on mobile */
@media (max-width: 768px) {
  .logo-right, .logo-left {
    text-align: center;
    margin-top: 2rem;
  }

}


/* ========== Sections: Featured, Event, Gallery ========== */

/* Common Section Styling */
.event-strip,
.bio-section,
.photo-gallery {
  background: radial-gradient(circle, #111 60%, #000);
  color: #000;
  font-family: "Rubik Mono One", sans-serif;
  border-top: 4px double #00ffff;
  border-left: 4px double #00ffff;
  border-bottom: 4px double #8a2be2;
  border-right: 4px double #8a2be2;
  border-radius: 12px;
  text-shadow: none;
  letter-spacing: 1px;
  box-shadow: 0 0 15px #00ffff;
  padding: 2rem 1rem;
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 1rem;
}

/* Featured Section Wrapper */
.featured-section {
  border: 3px dashed #ff48c4;
  background: radial-gradient(circle, #111 60%, #000);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffff;
  animation: starry-glow 2s infinite alternate ease-in-out;
}

#featured-product {
  margin-left: 10%;
  margin-right: 10%;
  margin-bottom: 1rem;
}

/* Featured Glow Animation */
@keyframes starry-glow {
  0% {
    box-shadow: 0 0 10px rgba(173, 216, 230, 0.5), 0 0 7px rgba(0, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(173, 216, 230, 0.6), 0 0 12px rgba(0, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 15px rgba(173, 216, 230, 0.5), 0 0 8px rgba(0, 255, 255, 0.4);
  }
}

/* Price Styling */
.featured-section h5 {
  color: #90D40A;
  margin-top: 0.5rem;
}

/* Call-to-action Button Container */
.featured-section .btn {
  margin-top: 1rem;
}

/* Event Section Specifics */

.event-details {
  font-size: 0.85rem;
  color: #fff;
}

/* Gallery Section */

.carousel-inner .row {
  padding: 0 1rem;
}
.carousel-item img {
  border-radius: 8px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #FF48C4;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  padding: 0.5rem;
}

.carousel-control-prev {
  justify-content: left;
}

.carousel-control-next {
  justify-content: right;
}

@media (max-width: 576px) {
  .price-button-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .price-button-wrap .price,
  .price-button-wrap .btn {
    width: 100%;
  }

  .price-button-wrap .btn {
    text-align: center;
  }
}

.price {
  color:#90D40A; 
  font-weight: bold;
}


/* ========== Embedded Media ========== */

.featured-youtube {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

.featured-youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
}



/* ========== Buttons & CTAs ========== */

/* Retro Primary Button */
.btn-retro {
  background: linear-gradient(to right, #b8ff01, #ffff00);
  color: #000;
  font-family: "Rubik Mono One", sans-serif;
  border: 2px solid #8a2be2;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  box-shadow: 0 0 10px #00ffff;
}

.btn-retro:hover {
  background-color: #ff48c4;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 0 15px #8a2be2;
}

/* Brighter Glow CTA */
.btn-retro-glow {
  background: #b8ff01;
  border: 2px solid #8a2be2;
  color: #000;
  font-family: "Rubik Mono One", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 1px;
  box-shadow: 0 0 10px #00ffff, 0 0 20px #ff48c4;
  transition: all 0.3s ease;
  animation: starry-glow 2s infinite alternate ease-in-out;
}

.btn-retro-glow:hover {
  background: #ff48c4;
  color: #fff;
  box-shadow: 0 0 15px #8a2be2, 0 0 25px #ff48c4;
  transform: scale(1.05);
}

/* Synthwave Background CTA Block */
.subscribe-cta {
  background: linear-gradient(90deg, #8a2be2, #ff48c4, #00ffff);
  background-size: 300% 300%;
  animation: synthWave 6s ease infinite;
  border-radius: 1rem;
  box-shadow: 0 0 20px #ff48c4;
  padding: 2rem;
  text-align: center;
}

/* CTA Text */
.cta-glitch {
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 1px;
  text-shadow: 2px 2px #000;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 0.9rem;
  color: #fff;
  font-family: "Rubik Mono One", sans-serif;
}

/* Synthwave BG Animation */
@keyframes synthWave {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* ========== Images & Visual Elements ========== */

/* Featured product image */
.featured-image {
  border: 4px solid #00ffff;
  border-radius: 8px;
  box-shadow: 0 0 10px #8a2be2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Product image container for relative positioning */
.product-image-wrapper {
  position: relative;
}

/* Top-left badge ("Includes Tag") */
.badge-stamp {
  position: absolute;
  top: 15px;
  left: 10px;
  background-color: #ff4d4d;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.35rem 0.5rem;
  transform: rotate(-10deg);
  box-shadow: 0 0 6px #000;
  z-index: 5;
  border-radius: 4px;
  text-transform: uppercase;
}

.featured-stamp {
  position: absolute;
  top: 15px;
  right: 0px;
  background-color: #8a2be2;
  color: white;
  font-size: 0.90rem;
  font-weight: bold;
  padding: 0.35rem 0.5rem;
  /*transform: rotate(12deg);*/
  box-shadow: 0 0 6px #000;
  z-index: 5;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Bottom-right quantity badge */
.quantity-stamp {
  position: absolute;
  bottom: 10px;
  right: -10px;
  background-color: #8a2be2;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  transform: rotate(-5deg);
  box-shadow: 0 0 6px #000;
  border-radius: 4px;
  z-index: 5;
  text-transform: uppercase;
}

/* Centered "Sold Out" stamp */
.sold-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(255, 0, 0, 0.85);
  color: white;
  font-size: 2rem;
  font-weight: 900;
  padding: 1rem 2rem;
  text-shadow: 2px 2px #000;
  z-index: 10;
  border: 4px solid #fff;
  box-shadow: 0 0 10px #000;
  font-family: "Rubik Mono One", monospace;
}

/* Gallery / Instagram-style photos */
.insta-photo {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  border: 3px solid #00ffff;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff48c4;
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.insta-photo:hover {
  transform: scale(1.05) rotate(-2deg);
}

#gallery .carousel-inner {
  padding-top: 10px ;
}



/* ========== Icons & Social Buttons ========== */

.icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.icon-wrapper svg {
  transition: fill 0.3s ease;
  fill: #fff;
}

.icon-wrapper:hover {
  transform: scale(1.1);
}

.icon-wrapper:hover svg {
  fill: #a3ff00;
}

.social-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.navbar-nav .icon-wrapper {
  height: 32px;
  width: 32px;
}

.navbar-nav li {
  margin: 0 0.5rem;
}

/* ========== Footer ========== */

footer {
  border-top: 3px solid #ff48c4;
  background-color: #111;
  color: #b8ff01;
  font-family: "Rubik Mono One", sans-serif;
  font-size: 0.8rem;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-note {
  margin: 0;
  line-height: 1.5;
}

.footer-note a {
  color: #ff48c4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-note a:hover {
  color: #a3ff00;
}

/* Optional fun easter egg */
.footer-easter {
  font-size: 0.69rem;
  color: #1c252e;
  margin-top: 0.5rem;
}


/* ========== Glitch Effects ========== */

.glitch-active {
  position: relative;
  z-index: 2;
  filter: brightness(1.3) contrast(1.4);
}

.glitch-active::before,
.glitch-active::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

.glitch-active::before {
  transform: translate(-2px, -1px);
  filter: drop-shadow(0 0 2px red);
}

.glitch-active::after {
  transform: translate(2px, 1px);
  filter: drop-shadow(0 0 2px cyan);
}

.glitch-active img {
  animation: fullGlitch 0.1s steps(2, end);
  filter: brightness(1.3) contrast(1.4);
}

/* Glitch animation (shared for links, logo, etc.) */
@keyframes fullGlitch {
  0% { transform: scale(1.02) skewX(10deg); }
  50% { transform: scale(0.98) skewX(-10deg); }
  100% { transform: none; }
}

/* Extra nav glitch for hover */
@keyframes navGlitch {
  0% {
    transform: none;
    text-shadow: none;
    opacity: 1;
  }
  10% {
    transform: scale(1.05) skewX(-3deg);
    text-shadow: 2px 0 red, -2px 0 cyan;
    opacity: 0.9;
  }
  20% {
    transform: scale(0.98) skewX(2deg);
    text-shadow: -1px 0 magenta, 1px 0 lime;
    opacity: 1;
  }
  30%, 100% {
    transform: none;
    text-shadow: none;
    opacity: 1;
  }
}

/* Noise animation */
@keyframes noise {
  0%   { transform: translate(0px, 0px); }
  10%  { transform: translate(-100px, 100px); }
  20%  { transform: translate(150px, -100px); }
  30%  { transform: translate(-100px, 100px); }
  40%  { transform: translate(100px, -150px); }
  50%  { transform: translate(-100px, 200px); }
  60%  { transform: translate(-200px, -100px); }
  70%  { transform: translateY(50px, 100px); }
  80%  { transform: translate(100px, -150px); }
  90%  { transform: translate(0px, 200px); }
  100% { transform: translate(-100px, 100px); }
}

/* Synthwave background CTA animation */
@keyframes synthWave {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ========== Media Queries ========== */

@media (max-width: 768px) {
  .logo-right {
    text-align: center;
    margin-top: 2rem;
  }

  section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .event-strip,
  .bio-section,
  .photo-gallery,
  #featured-product {
    margin-left: 0;
    margin-right: 0;
  }
}


/* ========== Adjust Featured Product to Match YouTube Section ========== */

.featured-section {
  padding: 1rem 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-section .row {
  align-items: center;
}

.product-image-wrapper {
  max-width: 100%;
  margin-bottom: 1rem;
}

.featured-image {
  max-height: 260px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .featured-section h2 {
    font-size: 1.25rem;
  }

  .featured-section h3 {
    font-size: 1rem;
  }

  .featured-description {
    font-size: 0.7rem;
  }

  .product-image-wrapper {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    flex-direction: column;
    align-items: flex-end;
  }

  .navbar-nav {
    width: 100%;
    text-align: left;
  }

  .social-icons {
    width: 100%;
    justify-content: center;
    padding-top: 1rem;
  }

  .icon-wrapper {
    width: 48px;
    height: 48px;
  }
}


.card {
  text-decoration: none;
}
.carousel-item, .card-cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/* ========== YouTube Toast ========== */
.subscribe-toast {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #111;
  border-top: 4px dashed #f0f;
  font-family: "Rubik Mono One", sans-serif;
  font-size: 0.75rem;
  box-shadow: 0 -5px 15px rgba(255, 0, 255, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.subscribe-toast h6 {
  text-shadow: none;
}

.subscribe-toast p {
  color: #fff;
  text-shadow: 1px 1px #f0f;
  margin: 0;
  font-size: 0.75rem;
}

.subscribe-toast a.btn {
  font-size: 0.7rem;
  font-weight: bold;
  white-space: nowrap;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

svg {
  min-height: 332px;
}

/* Mobile stacked layout */
@media (max-width: 576px) {
  .subscribe-toast {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-toast .btn {
    margin-top: 0.5rem;
  }

  .subscribe-toast .btn-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
  }

  svg {
    min-height: 170px;
  }
}

.subscribe-toast.show {
  transform: translateY(0);
  opacity: 1;
}

@keyframes toastGlitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px) skew(-2deg); }
  40% { transform: translate(2px, -1px) skew(2deg); }
  60% { transform: translate(-1px, 1px) skew(-1deg); }
  80% { transform: translate(1px, -2px) skew(1deg); }
  100% { transform: translate(0); }
}

.subscribe-toast.glitch {
  animation: toastGlitch 0.25s steps(2, end) infinite alternate;
}

.subscribe-toast:hover {
  animation: toastGlitch 0.25s steps(2, end) infinite alternate;
}

.stack {
  display: inline-grid;
  grid-template-columns: 1fr;
  position: relative;
}

.stack span {
  grid-row-start: 1;
  grid-column-start: 1;
  font-weight: bold;
  font-size: 1rem; /* match h5 or adjust as needed */
  color: #fff;
  --stack-height: calc(100% / var(--stacks) - 1px);
  --inverse-index: calc(var(--stacks) - 1 - var(--index));
  --clip-top: calc(var(--stack-height) * var(--index));
  --clip-bottom: calc(var(--stack-height) * var(--inverse-index));
  clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
  animation:
    stack 340ms cubic-bezier(.46,.29,0,1.24) 1 backwards calc(var(--index) * 120ms),
    glitch 1.5s ease-in-out infinite 2s alternate-reverse;
}

.stack span:nth-child(odd) { --glitch-translate: 2px; }
.stack span:nth-child(even) { --glitch-translate: -2px; }

@keyframes stack {
  0% {
    opacity: 0;
    transform: translateX(-50%);
    text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
  }
  60% {
    opacity: 0.5;
    transform: translateX(50%);
  }
  80% {
    transform: none;
    opacity: 1;
    text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
  }
  100% {
    text-shadow: none;
  }
}

@keyframes glitch {
  0% {
    text-shadow: -2px 3px 0 red, 2px -3px 0 blue;
    transform: translateX(var(--glitch-translate));
  }
  2% {
    text-shadow: 2px -3px 0 red, -2px 3px 0 blue;
  }
  4%, 100% {
    text-shadow: none;
    transform: none;
  }
}


/* ========== Glitch ========== */
body {
	--color-text: #aaa;
	--color-bg: #000;
	--color-link: #1c1cc9;
	--color-link-hover: #aaa;
	--color-info: #1c1cc9;
	--glitch-width: 128px;
	--glitch-height: 128px;
	--gap-horizontal: 10px;
	--gap-vertical: 5px;
	--color-title: #fff;
	--time-anim: 2s;
	--delay-anim: .5s;
	--blend-mode-1: none;
	--blend-mode-2: none;
	--blend-mode-3: none;
	--blend-mode-4: overlay;
	--blend-mode-5: overlay;
	--blend-color-1: transparent;
	--blend-color-2: transparent;
	--blend-color-3: transparent;
	--blend-color-4: #fb909a;
	--blend-color-5: #1c1cc9;
}

.glitch {
	position: relative;
	top: 0;
	left: 0;
	width: var(--glitch-width);
	height: var(--glitch-height);
	overflow: hidden;
}

.glitch__img {
	position: absolute;
	top: calc(-1 * var(--gap-vertical));
	left: calc(-1 * var(--gap-horizontal));
	width: calc(100% + var(--gap-horizontal) * 2);
	height: calc(100% + var(--gap-vertical) * 2);
	background: url(/img/youtube-glitch.png) no-repeat 50% 0;
	background-color: var(--blend-color-1);
	background-size: cover;
	transform: translate3d(0,0,0);
	background-blend-mode: var(--blend-mode-1);
}

.glitch__img:nth-child(n+2) {
	opacity: 0;
}

.imgloaded .glitch__img:nth-child(n+2) {
	animation-duration: var(--time-anim);
	animation-delay: var(--delay-anim);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.imgloaded .glitch__img:nth-child(2) {
	background-color: var(--blend-color-2);
	background-blend-mode: var(--blend-mode-2);
	animation-name: glitch-anim-1;
}

.imgloaded .glitch__img:nth-child(3) {
	background-color: var(--blend-color-3);
	background-blend-mode: var(--blend-mode-3);
	animation-name: glitch-anim-2;
}

.imgloaded .glitch__img:nth-child(4) {
	background-color: var(--blend-color-4);
	background-blend-mode: var(--blend-mode-4);
	animation-name: glitch-anim-3;
}

.imgloaded .glitch__img:nth-child(5) {
	background-color: var(--blend-color-5);
	background-blend-mode: var(--blend-mode-5);
	animation-name: glitch-anim-flash;
}

/* Animations */

@keyframes glitch-anim-1 {
	0% { 
		opacity: 1;
		transform: translate3d(var(--gap-horizontal),0,0);
		-webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
		clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
	}
	2% {
		-webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
		clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
	}
	4% {
		-webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
		clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
	}
	6% {
		-webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
		clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
	}
	8% {
		-webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
		clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
	}
	10% {
		-webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
		clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
	}
	12% {
		-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
		clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
	}
	14% {
		-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
		clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
	}
	16% {
		-webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
		clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
	}
	18% {
		-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
		clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
	}
	20% {
		-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
		clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
	}
	21.9% {
		opacity: 1;
		transform: translate3d(var(--gap-horizontal),0,0);
	}
	22%, 100% {
		opacity: 0;
		transform: translate3d(0,0,0);
		-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	}
}

@keyframes glitch-anim-2 {
	0% { 
		opacity: 1;
		transform: translate3d(calc(-1 * var(--gap-horizontal)),0,0);
		-webkit-clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
		clip-path: polygon(0 25%, 100% 25%, 100% 30%, 0 30%);
	}
	3% {
		-webkit-clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
		clip-path: polygon(0 3%, 100% 3%, 100% 3%, 0 3%);
	}
	5% {
		-webkit-clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
		clip-path: polygon(0 5%, 100% 5%, 100% 20%, 0 20%);
	}
	7% {
		-webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
		clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
	}
	9% {
		-webkit-clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
		clip-path: polygon(0 40%, 100% 40%, 100% 40%, 0 40%);
	}
	11% {
		-webkit-clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
		clip-path: polygon(0 52%, 100% 52%, 100% 59%, 0 59%);
	}
	13% {
		-webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
		clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
	}
	15% {
		-webkit-clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
		clip-path: polygon(0 75%, 100% 75%, 100% 75%, 0 75%);
	}
	17% {
		-webkit-clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
		clip-path: polygon(0 65%, 100% 65%, 100% 40%, 0 40%);
	}
	19% {
		-webkit-clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
		clip-path: polygon(0 45%, 100% 45%, 100% 50%, 0 50%);
	}
	20% {
		-webkit-clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
		clip-path: polygon(0 14%, 100% 14%, 100% 33%, 0 33%);
	}
	21.9% {
		opacity: 1;
		transform: translate3d(calc(-1 * var(--gap-horizontal)),0,0);
	}
	22%, 100% {
		opacity: 0;
		transform: translate3d(0,0,0);
		-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	}
}

@keyframes glitch-anim-3 {
	0% { 
		opacity: 1;
		transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1,-1,1);
		-webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
		clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
	}
	1.5% {
		-webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
		clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
	}
	2% {
		-webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
		clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
	}
	2.5% {
		-webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
		clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
	}
	3% {
		-webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
		clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
	}
	5% {
		-webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
		clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
	}
	5.5% {
		-webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
		clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
	}
	7% {
		-webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
		clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
	}
	8% {
		-webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
		clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
	}
	9% {
		-webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
		clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
	}
	10.5% {
		-webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
		clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
	}
	11% {
		-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
		clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
	}
	13% {
		-webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
		clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
	}
	14% {
		-webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
		clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
	}
	14.5% {
		-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
		clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
	}
	15% {
		-webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
		clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
	}
	16% {
		-webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
		clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
	}
	18% {
		-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
		clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
	}
	20% {
		-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
		clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
	}
	21.9% {
		opacity: 1;
		transform: translate3d(0, calc(-1 * var(--gap-vertical)), 0) scale3d(-1,-1,1);
	}
	22%, 100% {
		opacity: 0;
		transform: translate3d(0,0,0);
		-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
		clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	}
}

@keyframes glitch-anim-text {
	0% { 
		transform: translate3d(calc(-1 * var(--gap-horizontal)),0,0) scale3d(-1,-1,1);
		-webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
		clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
	}
	2% {
		-webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
		clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
	}
	4% {
		-webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
		clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
	}
	5% {
		-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
		clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
	}
	6% {
		-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
		clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
	}
	7% {
		-webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
		clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
	}
	8% {
		-webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
		clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
	}
	9% {
		-webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
		clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
	}
	9.9% {
		transform: translate3d(calc(-1 * var(--gap-horizontal)),0,0) scale3d(-1,-1,1);
	}
	10%, 100% {
		transform: translate3d(0,0,0) scale3d(1,1,1);
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	}
}

/* Flash */
@keyframes glitch-anim-flash {
	0%, 5% { 
		opacity: 0.2; 
		transform: translate3d(var(--gap-horizontal), var(--gap-vertical), 0);
	}
	5.5%, 100% {
		opacity: 0;
		transform: translate3d(0, 0, 0);
	}
}

.subscribe-toast .icon-wrapper{
  width: 24px;
  height: 24px;
}

.bio-section .social-icons {
  margin-top: 4rem;
}


.subscribe-toast .social-icons {
  margin-top: 1.2rem;
}

/* ========== Product ========== */
.product-detail {
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #1a1a1a, #333);
  padding: 2rem;
}

.product-title {
  font-size: 2rem;
  text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}


.btn-add-to-cart {
  background-color: #ff00ff;
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-add-to-cart:hover {
  background-color: #cc00cc;
}

.feature-box {
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 2px
  );
  background-size: 100% 2px;
}

.text-muted {
  color: #ccc !important;
}

.text-neon-green {
  color:#90D40A;
  font-family: "Rubik Mono One", sans-serif;
  text-transform: uppercase;
  /*text-shadow: 2px 2px #8a2be2;*/
}

.btn-outline-neon{
  color: #fff;
}

.btn-outline-neon:hover {
  color: #8a2be2;
}

section table {
  background-color: transparent;
  color: #fff !important;
}

section thead th {
  color: #fff !important;
  border-color: #444;
  font-weight: 800;
}

section td {
  color: #fff !important;
  vertical-align: middle !important;
}

section .table > :not(caption) > * > * {
  background-color: transparent;
  border-bottom: 1px solid #333;
}

.nav-item .badge {
  z-index: 10;
  padding: 0.35em 0.55em;
  font-weight: 700;
  background: #ff3860;
  box-shadow: 0 0 6px #ff3860;
}

.glitch-title {
  font-size: 1.5rem;
}

form .form-label {
  font-family: monospace;
  font-size: 1rem;
  color: #0ff;
}

form input[type="number"] {
  background-color: #111;
  color: #0f0;
  border: 1px dashed #ff00ff;
}

.product-section {
  padding: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-image {
  
  box-shadow: 0 0 10px #8a2be2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pink-border {
  border: 3px dashed #ff48c4;
  background: radial-gradient(circle, #111 60%, #000);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 20px #00ffff;
  animation: starry-glow 2s infinite alternate ease-in-out;
}

.product-section .product-image-wrapper .badge-stamp, .product-section .product-image-wrapper .quantity-stamp, .product-section .product-image-wrapper .sold-stamp{
  font-size: 1.5rem;
}
