#fw-section-newsletter-1761898946 {
--color-primary: #9CFFB8;
--color-primary-rgb: 156, 255, 184;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #F9F6F0;
--color-on-background-rgb: 249, 246, 240;
--color-product-image-background: #F9F6F0;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}




#fw-section-featured-collection-1761898946 {
--color-primary: #9CFFB8;
--color-primary-rgb: 156, 255, 184;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #F9F6F0;
--color-on-background-rgb: 249, 246, 240;
--color-product-image-background: #F9F6F0;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}
#fw-section-donations-1761898946 {
--color-primary: #9CFFB8;
--color-primary-rgb: 156, 255, 184;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #F9F6F0;
--color-on-background-rgb: 249, 246, 240;
--color-product-image-background: #F9F6F0;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}


#fw-section-header {
--color-primary: #9CFFB8;
--color-primary-rgb: 156, 255, 184;
--color-background: #0B1B26;
--color-background-rgb: 11, 27, 38;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #F9F6F0;
--color-on-background-rgb: 249, 246, 240;
--color-product-image-background: #F9F6F0;
--color-background-brightness: 23;
background-color: var(--color-background);
color: var(--color-on-background);
.header__list--socials {
  display: inline-flex;
  gap: 14px; /* keeps icons spaced evenly */
  padding-left: 24px; /* pushes them away from the left edge */
  align-items: center;
}

.header__list.list--horizontal {
  display: inline-flex;
  align-items: center;
  gap: 14px; /* keeps shop, currency, and bag spaced evenly */
  padding-right: 28px; /* matches your left-side padding */
}


}

#fw-section-footer {

/* glowing tech footer merged with fourthwall’s default footer */
.footer.footer--center.section-fw-section-footer-padding {
  position: relative;
  background: rgba(10, 10, 10, 0.97);
  color: #e0e0e0;
  text-align: center;
  padding: 50px 20px 40px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(139, 195, 74, 0.4);
  box-shadow: 0 0 40px rgba(139, 195, 74, 0.25);
  overflow: hidden;
  z-index: 10;
}

/* animated glowing line */
.footer.footer--center.section-fw-section-footer-padding::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8bc34a, transparent);
  filter: blur(6px);
  animation: glowShift 3s infinite linear;
}

/* subtle moving grid background */
.footer.footer--center.section-fw-section-footer-padding::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(139, 195, 74, 0.05),
    rgba(139, 195, 74, 0.05) 1px,
    transparent 1px,
    transparent 20px
  );
  animation: gridMove 10s linear infinite;
  z-index: 1;
  pointer-events: none;
}

/* animations */
@keyframes gridMove {
  from { transform: translate(0, 0); }
  to { transform: translate(-20px, -20px); }
}

@keyframes glowShift {
  0% { opacity: 0.4; transform: translateX(-50%); }
  50% { opacity: 1; transform: translateX(50%); }
  100% { opacity: 0.4; transform: translateX(-50%); }
}

/* shimmer for copyright text */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}

.footer.footer--center.section-fw-section-footer-padding p {
  position: relative;
  z-index: 2;
  margin: 0;
  background: linear-gradient(90deg, #8bc34a 0%, #a8e063 50%, #8bc34a 100%);
  background-size: 200px 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s infinite linear;
}

/* socials */
.footer.footer--center.section-fw-section-footer-padding .socials {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 25px;
  font-size: 18px;
  z-index: 2;
  position: relative;
}

.footer.footer--center.section-fw-section-footer-padding .socials a {
  color: #8bc34a;
  text-decoration: none;
  transition: all 0.4s ease;
  filter: drop-shadow(0 0 8px rgba(139, 195, 74, 0.8));
}

.footer.footer--center.section-fw-section-footer-padding .socials a:hover {
  color: #a8e063;
  filter: drop-shadow(0 0 16px rgba(139, 195, 74, 1));
  transform: scale(1.15);
}

.footer.footer--center.section-fw-section-footer-padding .socials a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(139, 195, 74, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  z-index: -1;
}

.footer.footer--center.section-fw-section-footer-padding .socials a:hover::after {
  width: 60px;
  height: 60px;
  opacity: 0;
}

.footer.footer--center.section-fw-section-footer-padding .footer-custom-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer.footer--center.section-fw-section-footer-padding .footer-quote {
  font-size: 15px;
  color: #a8e063;
  text-shadow: 0 0 12px rgba(139, 195, 74, 0.8);
  font-weight: 500;
  letter-spacing: 1px;
}

.footer.footer--center.section-fw-section-footer-padding .footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer.footer--center.section-fw-section-footer-padding .footer-links a {
  color: #8bc34a;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer.footer--center.section-fw-section-footer-padding .footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #a8e063;
  box-shadow: 0 0 10px rgba(139, 195, 74, 0.8);
  transition: width 0.3s ease;
}

.footer.footer--center.section-fw-section-footer-padding .footer-links a:hover {
  color: #a8e063;
  text-shadow: 0 0 8px rgba(139, 195, 74, 0.7);
}

.footer.footer--center.section-fw-section-footer-padding .footer-links a:hover::after {
  width: 100%;
}

}
#fw-section-recent-videos-fedf4c98-1746-43c3-89ce-1282b183ceac {
--color-primary: #9CFFB8;
--color-primary-rgb: 156, 255, 184;
--color-background: #000000;
--color-background-rgb: 0, 0, 0;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #F9F6F0;
--color-on-background-rgb: 249, 246, 240;
--color-product-image-background: #F9F6F0;
--color-background-brightness: 0;
background-color: var(--color-background);
color: var(--color-on-background);

}
#fw-section-hero-1761898946 {
--color-primary: #9CFFB8;
--color-primary-rgb: 156, 255, 184;
--color-background: #141515;
--color-background-rgb: 20, 21, 21;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #F9F6F0;
--color-on-background-rgb: 249, 246, 240;
--color-product-image-background: #F9F6F0;
--color-background-brightness: 21;
background-color: var(--color-background);
color: var(--color-on-background);
main {
  padding-top: 80px; /* adjust based on your header height */
}

}