/** Shopify CDN: Minification failed

Line 24:2 Expected ":"
Line 25:2 Expected ":"
Line 26:2 Expected ":"
Line 33:2 Expected ":"
Line 38:0 Expected percentage but found "\u00a0"
Line 38:3 Expected "," but found "from"
Line 50:2 Expected ":"
Line 51:2 Expected ":"
Line 56:0 Expected percentage but found "\u00a0"
Line 56:3 Expected "," but found "from"
... and 35 more hidden warnings

**/
/* ========================================
   NOIR TRIBE - POLISH & ENHANCEMENTS
   Optional styling for extra premium feel
   Add AFTER testing all sections work
   ======================================== */

/* === BODY & HTML FIX === */
html, body {
  margin: 0;
  padding: 0;
  /* The 'overflow-x: hidden' rule was removed here as it breaks 'position: sticky'.
     We will handle overflow visibility explicitly in the Sticky Fix block below for compatibility.
  */
  background: #000000;
}

body {
  padding-bottom: 80px; /* Space for sticky elements */
}

/* === SMOOTH ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .shopify-section {
    animation: fadeInUp 0.6s ease-out;
  }
}

/* === BUTTON GLOW EFFECT === */
@keyframes buttonGlow {
  from { box-shadow: 0 4px 12px rgba(255, 51, 102, 0.2); }
  to { box-shadow: 0 8px 24px rgba(255, 51, 102, 0.4); }
}

.button,
.btn-primary {
  animation: buttonGlow 2s infinite alternate;
}

/* === CARD HOVER EFFECTS === */
.card-wrapper,
.product-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-wrapper:hover,
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
}

/* === SMOOTH SCROLLBAR (Webkit browsers) === */
::-webkit-scrollbar {
  width: 10px;
  background: #000000;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #ff3366;
  border-radius: 10px;
  border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff1a4d;
}

/* === TEXT SELECTION === */
::selection {
  background: #ff3366;
  color: #000;
}

::-moz-selection {
  background: #ff3366;
  color: #000;
}

/* === FOCUS STATES === */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #ff3366;
  outline-offset: 2px;
}

/* === IMAGE LAZY LOAD FADE === */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* === LINK HOVER UNDERLINE === */
.footer a,
.header__menu-item {
  position: relative;
}

.footer a::after,
.header__menu-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff3366;
  transition: width 0.3s ease;
}

.footer a:hover::after,
.header__menu-item:hover::after {
  width: 100%;
}

/* === RESPONSIVE FONT SCALING === */
@media screen and (max-width: 749px) {
  html {
    font-size: 14px;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}

/* === PRINT STYLES === */
@media print {
  .noir-header,
  .noir-sticky-cta,
  .noir-mobile-cta,
  .noir-exit-popup {
    display: none !important;
  }
}
/* === DAWN HEADER CUSTOMIZATION === */

/* Remove left padding from header */
.header {
  padding-left: 0 !important;
  transition: all 0.3s ease;
}

.header__heading {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Show store name next to logo */
.header__heading-link {
  display: flex !important;
  align-items: center;
  gap: 3px; /* Reduced by 75% from 12px */
  white-space: nowrap; /* Prevent text wrapping */
  transition: all 0.3s ease;
}

/* Logo transition */
.header__heading-logo {
  transition: all 0.3s ease;
}

.header__heading-link::after {
  content: "NOIR TRIBE";
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 32px; /* Bigger to match logo height */
  line-height: 1;
  color: #ffffff !important;
  text-transform: uppercase;
  display: inline-block; /* Fix overlapping text */
  white-space: nowrap; /* Keep text on one line */
  transition: all 0.3s ease;
}

/* SHRINK ON SCROLL - Using Dawn's native class */
.shopify-section-header-sticky .header__heading-logo,
.shopify-section-header-sticky .header__heading-logo img {
  max-width: 45px !important; /* Shrink from 70px to 45px */
  width: 45px !important;
  height: auto !important;
}

.shopify-section-header-sticky .header__heading-link::after {
  font-size: 20px !important; /* Shrink text proportionally */
}

/* Center the menu */
.header__inline-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* Adjust header layout for centered menu */
.header__heading {
  flex: 0 0 auto;
}

.header__icons {
  margin-left: auto;
}

/* Mobile adjustments */
@media screen and (max-width: 989px) {
  .header__inline-menu {
    position: static;
    transform: none;
  }
  
  .header__heading-link::after {
    font-size: 24px; /* Adjusted for mobile */
  }
  
  .header.scrolled .header__heading-link::after {
    font-size: 18px;
  }
}
/* === FIX: Prevent content from appearing above sticky header === */
.header,
.shopify-section-header-group,
.shopify-section-group-header-group {
  z-index: 1000 !important;
}

/* Ensure hero and product sections stay below header */
.noir-hero__content,
.noir-hero__ctas,
.product-badge,
.stock-badge,
.product-card,
.card-wrapper {
  position: relative;
  z-index: 1 !important;
}

/* Specific fix for buttons in sections */
.button,
.btn,
.product-card__button {
  position: relative;
  z-index: 1 !important;
}
/* === DAWN IMAGE BANNER CTA FIX - STRONGER === */
.banner__buttons .button,
.image-with-text .button,
.banner .button--primary,
.slideshow .button {
  background-color: #ff3366 !important;
  background-image: none !important;
  color: #000000 !important;
  border: 2px solid #ff3366 !important;
  font-weight: 900 !important;
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.4) !important;
  opacity: 1 !important;
}

.banner__buttons .button:hover,
.image-with-text .button:hover {
  background-color: #ff1a4d !important;
  background-image: none !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 51, 102, 0.5) !important;
}

/* Override any transparent/gradient backgrounds */
.banner__content .button::before,
.banner__content .button::after {
  display: none !important;
}
/* === DAWN HEADER MENU - BIGGER & BOLD === */
.header__menu-item {
  font-size: 15px !important;
  font-weight: 700 !important;
}

@media screen and (max-width: 989px) {
  .header__menu-item {
    font-size: 14px !important;
  }
}
/* === DAWN FOOTER CUSTOMIZATION === */

/* Reduce gap between columns */
.footer__content-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px !important;
  align-items: start;
}

/* Make footer layout horizontal */
.footer .footer-block--newsletter {
  grid-column: span 1;
}

/* Move newsletter to same row */
.footer__content-top > * {
  margin-bottom: 0 !important;
}

/* Style newsletter section with accent */
.footer .footer-block--newsletter {
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.08), rgba(255, 51, 102, 0.03));
  border: 1px solid rgba(255, 51, 102, 0.2);
  border-radius: 8px;
  padding: 24px;
}

.footer .footer-block--newsletter .footer-block__heading {
  color: #ff3366 !important;
}

.footer .newsletter-form__field-wrapper input {
  border: 1px solid rgba(255, 51, 102, 0.3) !important;
}

.footer .newsletter-form__button {
  background: #ff3366 !important;
  color: #000 !important;
}

/* Brand info block styling */
.footer__content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Mobile adjustments */
@media screen and (max-width: 749px) {
  .footer__content-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px !important;
  }
  
  .footer .footer-block--newsletter {
    grid-column: span 2;
    margin-top: 20px;
  }
  
  .footer__content-bottom {
    flex-direction: column;
    text-align: center;
  }
}