/** Shopify CDN: Minification failed

Line 123:16 Unexpected "{"
Line 123:27 Expected ":"
Line 123:30 Unexpected ","
Line 124:16 Unexpected "{"
Line 124:27 Expected ":"
Line 125:16 Unexpected "{"
Line 125:27 Expected ":"
Line 126:10 Expected identifier but found whitespace
Line 126:12 Unexpected "{"
Line 126:19 Expected ":"
... and 1 more hidden warnings

**/
video {
  /* Forces the video into a dedicated GPU layer */
  transform: translateZ(0);
  backface-visibility: hidden;
  
  /* Prevents the browser from calculating layout outside the video boundaries */
  contain: paint; 
}



/* Global Header & Logo Alignment Variables */
:root {
  --global-logo-height: 20px;       /* Primary logo height */
  --global-logo-top-offset: 16px;   /* Exact distance from viewport top */
  --global-header-z-index: 1000001;
}

/* Universal Logo Sizing Across Header, Popups & Overlays */
.global-logo-img,
.header__heading-logo,
.header__logo-image,
.site-header__logo img,
.sticky-header__logo img,
.sticky-header__logo .global-logo-img,
.age-gate-img {
  height: var(--global-logo-height) !important;
  max-height: var(--global-logo-height) !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* Base Wrapper Alignment for Top Fixed/Absolute Logo Overlays */
.global-top-logo-wrapper,
.age-gate-logo-wrapper {
  position: absolute;
  top: var(--global-logo-top-offset);
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--global-header-z-index);
  pointer-events: none;
}




/* ==========================================================
   GLOBAL UNDERLINE ANIMATIONS
   ========================================================== */

.global-link-anim {
  position: relative !important;
  display: inline-block !important;
  text-decoration: none !important;
  padding-bottom: 2px !important;
}

.global-link-anim::after {
  content: '' !important;
  position: absolute !important;
  width: 100% !important;
  height: 1px !important; 
  bottom: 0 !important;
  left: 0 !important;
  background-color: currentColor !important;
  transform: scaleX(0) !important;
  transition: transform 0.3s ease-out !important;
  pointer-events: none !important;
}

.global-link-anim:hover::after {
  transform: scaleX(1) !important;
}

/* Modifier 1: Flow through (Draws L->R, Exits Right) */
.global-link-anim--flow::after {
  transform-origin: right !important;
}
.global-link-anim--flow:hover::after {
  transform-origin: left !important;
}

/* Modifier 2: Revert (Draws L->R, Shrinks back Left) */
.global-link-anim--revert::after,
.global-link-anim--revert:hover::after {
  transform-origin: left !important;
}


/* ==========================================================================
   Global Button
   ========================================================================== */

/* Base reset for global buttons */
a.btn-global, 
button.btn-global {
  text-decoration: none !important;
  box-shadow: none !important;
}

/* Base Reset: Prevents blue link flicker (FOUC) */
  a.custom-btn-{{ custom_id }},
  a.custom-btn-{{ custom_id }}:visited,
  a.custom-btn-{{ custom_id }}:link {
    color: {{ block.settings.button_text_color | default: '#000000' }} !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

/* 1. Solid Variant */
.shopify-section a.btn-global-custom--solid {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 14px 28px !important;
  background-color: var(--btn-bg, #000000) !important;
  color: var(--btn-text, #ffffff) !important;
  border: 1px solid var(--btn-bg, #000000) !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  font-weight: 200 !important; /* Removed 'px' */
  letter-spacing: 1px !important; /* Added 'px' */
  line-height: 1 !important;
}

.shopify-section a.btn-global-custom--solid:hover {
  background-color: var(--btn-hover-bg, #333333) !important;
  color: var(--btn-hover-text, #ffffff) !important;
  border-color: var(--btn-hover-bg, #333333) !important;
}

/* 2. Underline Variant */
.shopify-section a.btn-global-custom--underline {
  display: inline-block !important;
  padding: 0 0 4px 0 !important;
  background-color: transparent !important;
  color: var(--btn-text, #000000) !important;
  border: none !important;
  border-bottom: 2px solid var(--btn-text, #000000) !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  font-weight: 200 !important; /* Removed 'px' */
  letter-spacing: 1px !important; /* Added 'px' */
  line-height: 0.8 !important;
}

.shopify-section a.btn-global-custom--underline:hover {
  color: var(--btn-hover-text, #333333) !important;
  border-bottom-color: var(--btn-hover-text, #333333) !important;
  opacity: 0.8 !important;
}

