/** Shopify CDN: Minification failed

Line 169:0 All "@import" rules must come first

**/


html {
  width: 100%;
  overflow-x: hidden;
  background: #000;
}

body {
  width: 100%;
  overflow-x: hidden;
  background: #000;
}

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

* {
  margin: 0;
  padding: 0;
}

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

a {
  color: var(--primary-yellow);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-red);
}

@media (pointer: fine) {
  body {
    cursor: auto;
  }
  
  .custom-cursor {
    display: none;
  }
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

body {
  position: relative;
  overflow-x: hidden;
}

.grunge-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.03) 2px,
      rgba(255, 255, 255, 0.03) 4px
    ),
    url('grunge-bg-texture.png'); 
  background-size: 100% 100%, 200px 200px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  animation: grainShift 8s infinite linear;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(2px, 2px); }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 10px,
    rgba(246, 198, 0, 0.02) 10px,
    rgba(246, 198, 0, 0.02) 12px
  );
  pointer-events: none;
  z-index: 2;
  animation: glitchLines 3s infinite steps(1);
  opacity: 0.5;
}

@keyframes glitchLines {
  0%, 90% { opacity: 0; }
  91%, 93% { opacity: 0.5; }
  94%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .grunge-overlay,
  body::before {
    animation: none;
  }
}

@font-face {
  font-family: 'IF';
  src: url('Fonts/if/IF/If.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Selincah';
  src: url('Fonts/selincah.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BlackCasper';
  src: url('Fonts/BlackCasper.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'VeryVeryPunkFont';
  src: url('Fonts/VeryVeryPunkFont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TsapTsarap';
  src: url('Fonts/Tsap-Tsarap.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');

.font-display {
  font-family: 'IF', cursive;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: normal;
  line-height: 1.1;
}

.font-body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'TsapTsarap', cursive;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: normal;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.2rem; }

@media screen and (max-width: 749px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.8rem; }
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}

#MainContent,
.content-for-layout {
  padding-top: 12px;
}

@media screen and (max-width: 749px) {
  #MainContent,
  .content-for-layout {
    padding-top: 8px;
  }
}

#MainContent,
.content-for-layout {
  padding-top: 12px;
}

.template-index #MainContent,
.template-index .content-for-layout {
  padding-top: 0;
}

.template-index .hero-fullscreen {
  margin-top: 0;
  padding-top: 0;
}

#MainContent:has(.page-live-content),
.content-for-layout:has(.page-live-content) {
  padding-top: 0 !important;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-spacing {
  padding: 0 2rem 3rem 2rem;
  margin: 0;
  position: relative;
}

.featured-products.section-spacing::after,
.instagram-section.section-spacing::after {
  content: '';
  position: absolute;
  bottom: -3rem;
  left: 0;
  right: 0;
  height: 20px;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 20px,
      var(--primary-yellow) 20px,
      var(--primary-yellow) 22px,
      transparent 22px,
      transparent 30px
    ),
    repeating-linear-gradient(
      45deg,
      var(--accent-red) 0px,
      var(--accent-red) 3px,
      transparent 3px,
      transparent 8px
    );
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
  z-index: 10;
}

.section-spacing:last-child::after {
  display: none;
}

@media screen and (max-width: 749px) {
  .section-spacing {
    padding: 0 1rem 2rem 1rem;
  }

  .featured-products.section-spacing::after,
  .instagram-section.section-spacing::after {
    bottom: -1.5rem;
    height: 20px;
    background-size: contain;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}

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

.grid--3-col {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-col {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 989px) {
  .grid--3-col,
  .grid--4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  
  .featured-products .grid--3-col,
  .featured-products .grid--4-col {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  
  .collection .grid--3-col,
  .collection .grid--4-col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }

  
  .grid--2-col {
    grid-template-columns: 1fr;
  }
}

.btn {
  display: inline-block;
  padding: 1.2rem 2.5rem;
  font-family: 'Bebas Neue', 'Anton', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--primary-yellow);
  color: var(--bg-black);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: visible;
  box-shadow: 4px 4px 0 var(--accent-red);
  
  clip-path: polygon(
    
    0% 12%, 2% 0%, 4% 10%, 6% 2%, 8% 8%, 10% 0%, 12% 9%, 14% 1%, 16% 11%,
    18% 0%, 20% 10%, 22% 2%, 24% 12%, 26% 0%, 28% 9%, 30% 3%, 32% 11%,
    34% 0%, 36% 10%, 38% 2%, 40% 12%, 42% 1%, 44% 9%, 46% 0%, 48% 11%,
    50% 2%, 52% 10%, 54% 0%, 56% 12%, 58% 1%, 60% 9%, 62% 0%, 64% 11%,
    66% 2%, 68% 10%, 70% 0%, 72% 12%, 74% 1%, 76% 9%, 78% 0%, 80% 11%,
    82% 2%, 84% 10%, 86% 0%, 88% 12%, 90% 1%, 92% 9%, 94% 0%, 96% 11%,
    98% 2%, 100% 12%,

    
    100% 14%, 98% 18%, 100% 22%, 96% 26%, 100% 30%, 98% 34%, 100% 38%,
    96% 42%, 100% 46%, 98% 50%, 100% 54%, 96% 58%, 100% 62%, 98% 66%,
    100% 70%, 96% 74%, 100% 78%, 98% 82%, 100% 86%, 96% 90%,

    
    100% 90%, 98% 100%, 96% 91%, 94% 99%, 92% 90%, 90% 100%, 88% 91%,
    86% 99%, 84% 90%, 82% 100%, 80% 91%, 78% 99%, 76% 90%, 74% 100%,
    72% 91%, 70% 99%, 68% 90%, 66% 100%, 64% 91%, 62% 99%, 60% 90%,
    58% 100%, 56% 91%, 54% 99%, 52% 90%, 50% 100%, 48% 91%, 46% 99%,
    44% 90%, 42% 100%, 40% 91%, 38% 99%, 36% 90%, 34% 100%, 32% 91%,
    30% 99%, 28% 90%, 26% 100%, 24% 91%, 22% 99%, 20% 90%, 18% 100%,
    16% 91%, 14% 99%, 12% 90%, 10% 100%, 8% 91%, 6% 99%, 4% 90%, 2% 100%,
    0% 88%,

    
    0% 86%, 4% 82%, 0% 78%, 2% 74%, 0% 70%, 4% 66%, 0% 62%,
    2% 58%, 0% 54%, 4% 50%, 0% 46%, 2% 42%, 0% 38%, 4% 34%,
    0% 30%, 2% 26%, 0% 22%, 4% 18%, 0% 14%, 2% 12%
  );
}

.btn:hover,
.nav__link:hover,
.header__icon:hover,
button:hover,
a.btn:hover,
input[type="submit"]:hover {
  animation: btnGlitchIntense 0.3s ease-in-out infinite;
}

.btn:hover {
  background: var(--accent-red);
  color: var(--primary-yellow);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--punk-pink);
}

@keyframes btnGlitchIntense {
  0% {
    transform: translate(-2px, -2px) scale(1.05);
    text-shadow: 2px 0 var(--primary-yellow), -2px 0 var(--punk-pink);
  }
  25% {
    transform: translate(-3px, 0) scale(1.05) skew(-2deg);
    text-shadow: -3px 0 var(--primary-yellow), 3px 0 var(--punk-pink);
  }
  50% {
    transform: translate(0, -3px) scale(1.05) skew(2deg);
    text-shadow: 0 3px var(--primary-yellow), 0 -3px var(--punk-pink);
  }
  75% {
    transform: translate(2px, -1px) scale(1.05) skew(-1deg);
    text-shadow: 3px 0 var(--primary-yellow), -3px 0 var(--punk-pink);
  }
  100% {
    transform: translate(-2px, -2px) scale(1.05);
    text-shadow: 2px 0 var(--primary-yellow), -2px 0 var(--punk-pink);
  }
}

@keyframes btnShake {
  0%, 100% { transform: translate(-2px, -2px) scale(1.05) rotate(0deg); }
  25% { transform: translate(-3px, -2px) scale(1.05) rotate(-1deg); }
  75% { transform: translate(-2px, -3px) scale(1.05) rotate(1deg); }
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  color: var(--punk-pink);
  transform: translate(-2px, 0);
}

.btn:hover::before {
  animation: btnGlitch 0.3s infinite;
}

@keyframes btnGlitch {
  0%, 100% { opacity: 0; transform: translate(-2px, 0); }
  25% { opacity: 0.8; transform: translate(2px, -1px); }
  50% { opacity: 0; transform: translate(-1px, 1px); }
  75% { opacity: 0.8; transform: translate(1px, -1px); }
}

.btn--secondary {
  background: transparent;
  color: var(--primary-yellow);
  border: 2px solid var(--primary-yellow);
  box-shadow: none;
}

.btn--secondary:hover {
  background: var(--primary-yellow);
  color: var(--bg-black);
}

@media screen and (max-width: 749px) {
  .btn {
    padding: 0.72rem 1.5rem;
    font-size: 0.72rem;
  }
}

.card {
  background: var(--card-bg);
  padding: 2rem;
  position: relative;
  box-shadow: 
    inset 0 0 20px rgba(0, 0, 0, 0.5),
    0 0 0 2px var(--dark-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 
    inset 0 0 20px rgba(0, 0, 0, 0.5),
    0 0 0 2px var(--primary-yellow),
    0 8px 16px rgba(246, 198, 0, 0.2);
}

.card--torn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(135deg, var(--card-bg) 25%, transparent 25%),
              linear-gradient(225deg, var(--card-bg) 25%, transparent 25%);
  background-size: 16px 16px;
  background-position: 0 0, 8px 0;
}

.tape-accent {
  position: relative;
}

.tape-accent::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 20%;
  width: 80px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(-3deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.product-card {
  background: var(--card-bg);
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--dark-gray);
  transition: all 0.3s ease;
}

.product-card:hover {
  border-color: var(--primary-yellow);
  transform: translateY(-8px);
}

.product-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card:hover .product-card__image {
  
}

.product-card__image-wrapper::before,
.product-card__image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-card__image-wrapper::before {
  opacity: 0.4;
  animation: aberrationRed 0.3s infinite;
}

.product-card:hover .product-card__image-wrapper::after {
  opacity: 0.4;
  animation: aberrationCyan 0.3s infinite;
}

@keyframes aberrationRed {
  0%, 100% { transform: translate(0, 0); filter: sepia(1) saturate(3) hue-rotate(-30deg); }
  50% { transform: translate(3px, 0); filter: sepia(1) saturate(3) hue-rotate(-30deg); }
}

@keyframes aberrationCyan {
  0%, 100% { transform: translate(0, 0); filter: sepia(1) saturate(3) hue-rotate(120deg); }
  50% { transform: translate(-3px, 0); filter: sepia(1) saturate(3) hue-rotate(120deg); }
}

.product-card__info {
  padding: 1.5rem;
}

.product-card__title {
  font-family: 'Rubik Mono One', monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text-white);
  transition: color 0.2s ease;
}

.product-card:hover .product-card__title {
  color: var(--primary-yellow);
  animation: titleJitter 0.5s infinite;
}

@keyframes titleJitter {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-1px, 1px); }
  50% { transform: translate(1px, -1px); }
  75% { transform: translate(-1px, -1px); }
}

.product-card__price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-white);
  background: var(--primary-yellow);
  color: var(--bg-black);
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin-top: 0.5rem;
}

.product-card__badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-red);
  color: var(--text-white);
  padding: 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(3deg);
  z-index: 10;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 749px) {
  .product-card__image-wrapper {
    aspect-ratio: 3 / 4;
  }

  .product-card__info {
    padding: 1rem;
  }

  .product-card__title {
    font-size: 1rem;
  }

  .product-card__price {
    font-size: 1.1rem;
    padding: 0.25rem 0.6rem;
  }

  .product-card__badge {
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
  }
}

.announcement-bar {
  background: var(--accent-red);
  color: var(--text-white);
  text-align: center;
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 100;
}

.header {
  background: #000000;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header__logo-link {
  display: block;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.header__logo {
  transition: none;
}

.header__logo:hover {
  animation: none;
}

.nav {
  flex-grow: 0;
}

.header__icons {
  margin-left: auto;
}

@media screen and (max-width: 989px) {
  .header__inner {
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .header__logo {
    max-width: 150px;
  }
}

.header__logo-link:hover {
  animation: none;
}

.header__logo-link:hover .header__logo-text {
  animation: none;
}

@keyframes logoGlitchExtreme {
  0% { 
    transform: rotate(2deg) translate(0, 0);
    text-shadow: 3px 3px 0 var(--accent-red), -2px -2px 0 var(--punk-pink), 5px 0 var(--primary-yellow);
    filter: hue-rotate(0deg);
  }
  20% { 
    transform: rotate(-3deg) translate(-4px, 2px) skew(-5deg);
    text-shadow: -4px 0 var(--accent-red), 4px 0 var(--punk-pink), 0 3px var(--primary-yellow);
    filter: hue-rotate(20deg);
  }
  40% { 
    transform: rotate(4deg) translate(3px, -3px) skew(5deg);
    text-shadow: 0 -4px var(--accent-red), 0 4px var(--punk-pink), -5px 0 var(--primary-yellow);
    filter: hue-rotate(-20deg);
  }
  60% { 
    transform: rotate(-2deg) translate(-2px, 3px) skew(3deg);
    text-shadow: 5px 0 var(--accent-red), -5px 0 var(--punk-pink), 0 -4px var(--primary-yellow);
    filter: hue-rotate(10deg);
  }
  80% { 
    transform: rotate(3deg) translate(4px, -2px) skew(-4deg);
    text-shadow: -3px 3px 0 var(--accent-red), 3px -3px 0 var(--punk-pink), 4px 4px var(--primary-yellow);
    filter: hue-rotate(-10deg);
  }
  100% { 
    transform: rotate(2deg) translate(0, 0);
    text-shadow: 3px 3px 0 var(--accent-red), -2px -2px 0 var(--punk-pink), 5px 0 var(--primary-yellow);
    filter: hue-rotate(0deg);
  }
}

.header__logo {
  max-width: 350px;
  height: auto;
}

@media screen and (max-width: 749px) {
  .header__logo {
    max-width: 180px;
  }
}

.nav {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.nav__list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  position: relative;
  list-style: none;
}

.nav__link {
  display: block;
  padding: 0.8rem 1.5rem;
  font-family: 'Bebas Neue', 'Anton', 'Black Ops One', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-white);
  background: var(--card-bg);
  border: 2px solid var(--dark-gray);
  transition: all 0.2s ease;
  transform: rotate(-1deg);
  text-decoration: none;
}

.nav__item:nth-child(even) .nav__link {
  transform: rotate(1deg);
}

.nav__link:hover {
  background: var(--primary-yellow);
  color: var(--bg-black);
  border-color: var(--primary-yellow);
  transform: rotate(-3deg) translateY(-2px);
  animation: navGlitchIntense 0.2s ease-in-out infinite;
}

.nav__item--has-dropdown:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-bg);
  border: 2px solid var(--primary-yellow);
  box-shadow: 5px 5px 0 var(--accent-red), -2px -2px 0 var(--punk-pink);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
}

.nav__dropdown li {
  list-style: none;
  margin: 0;
}

.nav__dropdown-link {
  display: block;
  padding: 0.8rem 1.5rem;
  font-family: 'Black Ops One', 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white);
  text-decoration: none;
  border-bottom: 1px solid var(--dark-gray);
  transition: all 0.2s ease;
}

.nav__dropdown-link:hover {
  background: var(--primary-yellow);
  color: var(--bg-black);
  padding-left: 2rem;
  animation: dropdownGlitch 0.15s ease-in-out infinite;
}

.nav__dropdown li:last-child .nav__dropdown-link {
  border-bottom: none;
}

@keyframes dropdownGlitch {
  0%, 100% {
    text-shadow: 1px 0 var(--accent-red), -1px 0 var(--punk-pink);
  }
  50% {
    text-shadow: -1px 0 var(--primary-yellow), 1px 0 var(--accent-red);
  }
}

@keyframes navGlitchIntense {
  0% {
    transform: rotate(-3deg) translateY(-2px);
    text-shadow: 2px 0 var(--accent-red), -2px 0 var(--punk-pink);
  }
  25% {
    transform: rotate(-4deg) translateY(-3px) skew(-3deg);
    text-shadow: -3px 0 var(--accent-red), 3px 0 var(--punk-pink);
  }
  50% {
    transform: rotate(-2deg) translateY(-1px) skew(3deg);
    text-shadow: 0 3px var(--accent-red), 0 -3px var(--punk-pink);
  }
  75% {
    transform: rotate(-5deg) translateY(-4px) skew(-2deg);
    text-shadow: 3px 0 var(--accent-red), -3px 0 var(--punk-pink);
  }
  100% {
    transform: rotate(-3deg) translateY(-2px);
    text-shadow: 2px 0 var(--accent-red), -2px 0 var(--punk-pink);
  }
}

@keyframes navJitter {
  0%, 100% { transform: rotate(-3deg) translateY(-2px); }
  50% { transform: rotate(-2deg) translateY(-3px); }
}

.mobile-nav-toggle {
  display: none;
  background: var(--primary-yellow);
  border: 2px solid var(--accent-red);
  padding: 0.8rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  position: relative;
}

.mobile-nav-toggle:hover {
  background: var(--accent-red);
}

.mobile-nav-toggle:hover .hamburger-icon span {
  background: var(--primary-yellow);
}

.mobile-nav-toggle--active {
  background: var(--accent-red);
}

.mobile-nav-toggle--active .hamburger-icon span {
  background: var(--primary-yellow);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--bg-black);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle--active .hamburger-icon span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-nav-toggle--active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle--active .hamburger-icon span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 65%;
  max-width: 260px;
  height: auto;
  max-height: 80vh;
  background: linear-gradient(160deg, #000000 0%, #0a0a0a 30%, var(--bg-black) 60%, #0a0a0a 100%);
  border-left: 4px solid var(--primary-yellow);
  border-bottom: 4px solid var(--primary-yellow);
  border-bottom-left-radius: 12px;
  box-shadow: -6px 0 40px rgba(246, 198, 0, 0.4),
              -12px 0 80px rgba(255, 0, 0, 0.2),
              inset 0 0 60px rgba(246, 198, 0, 0.05);
  z-index: 9999;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding-top: 12px;
  padding-bottom: 1rem;
}

.mobile-nav--active {
  right: 0;
}

.mobile-nav::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.3s ease;
  z-index: -1;
}

.mobile-nav--active::before {
  background: rgba(0, 0, 0, 0);
  pointer-events: auto;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 1rem 1.5rem 1rem;
}

.mobile-nav__item {
  list-style: none;
  margin-bottom: 0.5rem;
}

.mobile-nav__link {
  display: block;
  padding: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-white);
  background: var(--card-bg);
  border-left: 4px solid var(--primary-yellow);
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus {
  background: var(--primary-yellow);
  color: var(--bg-black);
  border-left-color: var(--accent-red);
  padding-left: 1.2rem;
}

.mobile-nav__toggle {
  width: 100%;
  background: var(--card-bg);
  border: none;
  border-left: 4px solid var(--primary-yellow);
  cursor: pointer;
  position: relative;
}

.mobile-nav__arrow {
  position: absolute;
  right: 1.5rem;
  transition: transform 0.3s ease;
}

.mobile-nav__item--open .mobile-nav__arrow {
  transform: rotate(180deg);
}

.mobile-nav__submenu {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav__item--open .mobile-nav__submenu {
  max-height: 500px;
}

.mobile-nav__sublink {
  display: block;
  padding: 0.75rem 1rem 0.75rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
  background: #151515;
  border-left: 3px solid var(--accent-red);
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 0.4rem;
}

.mobile-nav__sublink:hover,
.mobile-nav__sublink:focus {
  background: var(--accent-red);
  color: var(--primary-yellow);
  padding-left: 2.3rem;
  border-left-color: var(--primary-yellow);
}

@media screen and (max-width: 989px) {
  .nav {
    display: none !important;
  }
  
  .mobile-nav {
    display: block;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
}

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

.header__icon {
  color: var(--primary-yellow);
  font-size: 1.5rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.header__icon:hover {
  color: var(--accent-red);
  transform: scale(1.2) rotate(5deg);
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
  background: transparent;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  animation: subtleParallax 20s ease-in-out infinite;
}

@keyframes subtleParallax {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.05) translateY(-10px); }
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.85);
  padding: 3rem;
  border: 3px solid var(--primary-yellow);
  box-shadow: 0 0 30px rgba(246, 198, 0, 0.3);
}

.hero__logo {
  max-width: 500px;
  margin-bottom: 2rem;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.8));
}

@media screen and (max-width: 749px) {
  .hero__logo {
    max-width: 300px;
  }
}

.hero__tagline {
  font-family: 'Rubik Mono One', monospace;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: var(--primary-yellow);
  margin-bottom: 2rem;
  text-shadow: 
    3px 3px 0 var(--accent-red),
    -1px -1px 0 var(--bg-black),
    1px -1px 0 var(--bg-black),
    -1px 1px 0 var(--bg-black),
    1px 1px 0 var(--bg-black);
  line-height: 1.2;
}

@media screen and (max-width: 749px) {
  .hero__tagline {
    font-size: 1.5rem;
  }
}

.hero__cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__tagline.glitch {
  animation: heroGlitch 5s infinite;
}

@keyframes heroGlitch {
  0%, 90%, 92%, 94%, 96%, 100% {
    transform: translate(0, 0) skew(0deg);
  }
  91% {
    transform: translate(-2px, 2px) skew(-2deg);
  }
  93% {
    transform: translate(2px, -2px) skew(2deg);
  }
  95% {
    transform: translate(-1px, 1px) skew(1deg);
  }
}

.featured-products {
  background: var(--bg-black);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header__title {
  font-size: 4rem;
  color: var(--primary-yellow);
  text-shadow: 3px 3px 0 var(--accent-red);
  display: inline-block;
  position: relative;
}

.section-header__title::before,
.section-header__title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.1s ease;
}

.section-header__title::before {
  left: -130px;
  top: 50%;
  transform: translateY(-50%);
}

.section-header__title::after {
  right: -130px;
  top: 50%;
  transform: translateY(-50%);
}

.section-header__title.glitching::before,
.section-header__title.glitching::after {
  animation: iconGlitch 0.2s steps(2) infinite;
}

@keyframes iconGlitch {
  0% {
    transform: translateY(-50%) translate(0, 0);
    filter: drop-shadow(2px 0 var(--accent-red)) drop-shadow(-2px 0 var(--punk-pink));
  }
  25% {
    transform: translateY(-50%) translate(-3px, 2px) skew(-3deg);
    filter: drop-shadow(-3px 0 var(--primary-yellow)) drop-shadow(3px 0 var(--accent-red));
  }
  50% {
    transform: translateY(-50%) translate(3px, -2px) skew(3deg);
    filter: drop-shadow(0 3px var(--punk-pink)) drop-shadow(0 -3px var(--primary-yellow));
  }
  75% {
    transform: translateY(-50%) translate(-2px, -2px) skew(-2deg);
    filter: drop-shadow(4px 0 var(--accent-red)) drop-shadow(-4px 0 var(--punk-pink));
  }
  100% {
    transform: translateY(-50%) translate(0, 0);
    filter: drop-shadow(2px 0 var(--primary-yellow)) drop-shadow(-2px 0 var(--accent-red));
  }
}

@media screen and (max-width: 1100px) {
  .section-header__title::before,
  .section-header__title::after {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .section-header {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .section-header__title {
    font-size: 2.2rem;
    max-width: 100%;
    word-wrap: break-word;
    line-height: 1.1;
  }
}

.instagram-section {
  background: var(--bg-black);
}

.instagram-polaroid-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.polaroid-item {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease, z-index 0s 0s;
}

.polaroid-frame {
  background: #ffffff;
  padding: 1rem 1rem 5rem 1rem;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.polaroid-item:nth-child(1) .polaroid-frame {
  transform: rotate(-3deg);
}

.polaroid-item:nth-child(2) .polaroid-frame {
  transform: rotate(2deg);
}

.polaroid-item:nth-child(3) .polaroid-frame {
  transform: rotate(-1deg);
}

.polaroid-item:nth-child(4) .polaroid-frame {
  transform: rotate(3deg);
}

.polaroid-item:hover {
  z-index: 10;
  transform: translateY(-8px);
}

.polaroid-item:hover .polaroid-frame {
  transform: rotate(0deg) scale(1.05);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.4),
    0 16px 32px rgba(0, 0, 0, 0.3);
}

.polaroid-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f0f0f0;
}

.polaroid-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.polaroid-caption {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  right: 1rem;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: #333;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  max-height: 5.2rem;
}

.polaroid-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 70px;
  height: 25px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.polaroid-item:nth-child(even) .polaroid-frame::before {
  transform: translateX(-50%) rotate(2deg);
}

@media screen and (max-width: 989px) {
  .instagram-polaroid-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 749px) {
  
  .instagram-polaroid-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 2rem 1rem 1rem 2rem;
    margin-left: 0;
    margin-right: -1rem;
    -webkit-overflow-scrolling: touch;
  }

  .polaroid-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .polaroid-frame {
    max-width: 400px;
    margin: 0 auto;
    overflow: visible;
  }
}

.story-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 0;
}

@media screen and (max-width: 989px) {
  .story-band {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.story-band__image {
  position: relative;
}

.story-band__image img {
  width: 100%;
  border: 8px solid var(--text-white);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.6);
  transform: rotate(-3deg);
}

.story-band__content h2 {
  color: var(--primary-yellow);
  margin-bottom: 1.5rem;
}

.story-band__content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-yellow);
  color: var(--bg-black);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  transform: rotate(-5deg);
}

.social-link:hover {
  background: var(--accent-red);
  color: var(--text-white);
  transform: rotate(5deg) scale(1.2);
}

.cart {
  padding: 4rem 0;
}

.cart__header {
  text-align: center;
  margin-bottom: 1rem;
}

.cart__items {
  background: transparent;
  padding: 0;
  margin-bottom: 2rem;
  border: none;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  border: 2px solid #ff0232;
  background: #000;
  margin-bottom: 1.5rem;
}

.cart-item:last-child {
  margin-bottom: 0;
}

.cart-item__image {
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary-yellow);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item__details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.cart-item__price {
  font-weight: 900;
  color: var(--primary-yellow);
  font-size: 1.2rem;
}

.cart__summary {
  background: var(--dark-gray);
  padding: 2rem;
  border: 3px solid var(--primary-yellow);
  max-width: 400px;
  margin-left: auto;
}

.cart__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--primary-yellow);
}

.cart__checkout {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.2rem;
}

@media screen and (max-width: 749px) {
  .cart-item {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    padding: 1rem 0;
  }

  .cart-item__image {
    width: 70px;
    height: 70px;
  }

  .cart-item__details h3 {
    font-size: 0.95rem;
  }

  .cart-item__price {
    grid-column: 2;
    margin-top: 0.5rem;
    font-size: 1.1rem;
  }

  .cart__summary {
    padding: 1.5rem;
    margin-left: 0;
    max-width: 100%;
  }

  .cart__summary h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .cart__total span:first-child {
    font-size: 1rem;
  }

  .cart__total span:last-child {
    font-size: 1.5rem;
  }

  .cart__checkout {
    padding: 1.2rem;
    font-size: 1rem;
  }
}

.footer {
  background: transparent;
  padding: 2rem 0 1rem;
  border-top: none;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  background: url('barbed_divider_2.png') repeat-x center;
  background-size: auto 60px;
  position: absolute;
  top: -60px;
  left: 0;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
  align-items: start;
}

.footer__section:first-child {
  display: flex;
  align-items: flex-start;
  align-self: center;
}

.footer__section:first-child img {
  display: block;
}

.footer__section h3 {
  font-size: 1.5rem;
  color: var(--primary-yellow);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  text-align: left;
}

.footer__section:last-child {
  text-align: left;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 0.35rem;
}

.footer__links a {
  color: var(--text-white);
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--primary-yellow);
}

.footer__bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--card-bg);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 749px) {
  .footer {
    padding: 1rem 0 0.5rem;
    margin-top: 2rem;
  }

  .footer::before {
    height: 60px;
    top: -50px;
    background-size: auto 60px;
  }

  
  .footer__section:first-child {
    display: none !important;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.75rem;
    align-items: start;
  }

  .footer__section h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer__links li {
    margin-bottom: 0;
  }

  .footer__links a {
    font-size: 0.75rem;
  }

  .footer__bottom {
    padding-top: 0.5rem;
    font-size: 0.7rem;
  }

  .social-links {
    margin-top: 0.5rem !important;
    display: flex;
    gap: 0.75rem;
  }

  .social-link svg {
    width: 14px !important;
    height: 14px !important;
  }
}

.divider-barbed {
  width: 100%;
  height: 50px;
  background: url('barbed_divider.png') repeat-x center;
  background-size: auto 50px;
  position: relative;
  margin: 3rem 0;
}

.floating-pins {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

.floating-pin:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 5s;
}

.floating-pin:nth-child(2) {
  right: 15%;
  top: 40%;
  animation-delay: 1s;
  animation-duration: 6s;
}

.floating-pin:nth-child(3) {
  left: 20%;
  bottom: 30%;
  animation-delay: 2s;
  animation-duration: 4.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 3rem; }

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

@media screen and (max-width: 749px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

.page-decorations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.template-index .page-decorations {
  z-index: 2;
}

.deco-art {
  position: absolute;
  opacity: 0.5;
  animation: floatDeco 6s ease-in-out infinite;
  transition: filter 0.1s ease;
  z-index: 0;
}

.template-index .deco-art {
  z-index: 2;
}

.deco-art.glitch-scroll {
  animation: floatDeco 6s ease-in-out infinite, glitchDeco 0.3s ease;
}

@keyframes floatDeco {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes floatWalk {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes glitchDeco {
  0% {
    filter: none;
    transform: translate(0, 0);
  }
  20% {
    filter: hue-rotate(90deg) saturate(3);
    transform: translate(-2px, 2px);
  }
  40% {
    filter: hue-rotate(-90deg) saturate(3);
    transform: translate(2px, -2px);
  }
  60% {
    filter: hue-rotate(180deg) saturate(2);
    transform: translate(-1px, -1px);
  }
  80% {
    filter: hue-rotate(0deg) saturate(1.5);
    transform: translate(1px, 1px);
  }
  100% {
    filter: none;
    transform: translate(0, 0);
  }
}

.deco-pin-1 {
  top: 10%;
  left: 2%;
  width: 40px;
  animation-delay: 0s;
}

.deco-pin-2 {
  top: 60%;
  right: 1%;
  width: 35px;
  animation-delay: 1.5s;
}

.deco-pin-3 {
  bottom: 15%;
  left: 8%;
  width: 45px;
  animation-delay: 3s;
}

.deco-star-1 {
  top: 25%;
  right: 3%;
  width: 50px;
  animation-delay: 0.8s;
}

.deco-star-2 {
  top: 70%;
  left: 15%;
  width: 45px;
  animation-delay: 2.2s;
}

.deco-star-3 {
  top: 40%;
  right: 18%;
  width: 40px;
  animation-delay: 4s;
}

.deco-smile-1 {
  top: 15%;
  left: 25%;
  width: 55px;
  animation-delay: 1.2s;
}

.deco-smile-2 {
  bottom: 25%;
  right: 5%;
  width: 50px;
  animation-delay: 2.8s;
}

.deco-smile-3 {
  top: 80%;
  left: 35%;
  width: 45px;
  animation-delay: 3.5s;
}

.deco-a-1 {
  top: 35%;
  left: 3%;
  width: 60px;
  animation-delay: 0.5s;
}

.deco-a-2 {
  bottom: 30%;
  right: 15%;
  width: 55px;
  animation-delay: 2s;
}

.deco-a-3 {
  top: 50%;
  right: 2%;
  width: 50px;
  animation-delay: 3.8s;
}

.deco-walk-1 {
  top: 5%;
  right: 25%;
  width: 90px;
  animation-delay: 1.2s;
}

.deco-walk-2 {
  bottom: 10%;
  left: 30%;
  width: 85px;
  animation-delay: 3s;
}

.deco-walk-3 {
  top: 45%;
  left: 40%;
  width: 80px;
  animation-delay: 4.5s;
}

@media screen and (max-width: 768px) {
  .page-decorations {
    display: block;
  }

  .deco-art {
    opacity: 0.35;
  }
}

.collection-empty {
  text-align: center;
  margin: 1.25rem auto 3rem !important;
  padding-top: 0 !important;
  max-width: 600px;
}

.collection-empty h2 {
  color: var(--primary-yellow);
  margin: 0 0 1rem 0 !important;
}

.collection-empty p {
  margin-bottom: 2rem;
}

/* Instagram lightbox */
.insta-lightbox .insta-lightbox__content,
.insta-lightbox__content {
  height: auto !important;
  max-height: 90vh !important;
  display: flex !important;
  flex-direction: column !important;
}

.insta-lightbox__content img,
#insta-lightbox-img {
  max-height: 50vh !important;
  width: auto !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  margin: 0 auto 1rem !important;
}

.insta-lightbox__meta {
  flex: 0 0 auto !important;
  max-height: 30vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  min-height: 0 !important;
  text-align: center !important;
  width: 100% !important;
}

#insta-lightbox-caption {
  margin: 0 auto 1rem !important;
  max-width: 600px !important;
  word-break: break-word !important;
}

.insta-lightbox__btn,
#insta-lightbox-link {
  display: inline-block !important;
  margin: 0 auto !important;
}
