@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500&display=swap');

/* Font Loading Optimization - Prevent Flash of Unstyled Text */
* {
    /* Preload system fonts to prevent layout shifts */
    font-display: swap;
}

/* Ensure smooth font transitions */
body {
    font-display: swap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RESET STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* SCROLL ARROW STYLES */
.scroll-arrow-container {
  position: absolute;
  bottom: 11vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0;
  pointer-events: none;
}

.scroll-arrow {
  font-size: 2.5rem;
  color: #F1F1F1;
  font-weight: 200;
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.2));
  animation: arrowBounce 2s ease-in-out infinite;
  content: '▼';
}

@keyframes arrowBounce {
  0%, 20%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}

@media (max-width: 768px) {
  .scroll-arrow {
    font-size: 2.3rem;
  }
  .scroll-arrow-container {
    bottom: 13.5vh;
  }
}

/* Prevent scroll arrow SVG from showing pointer cursor */
.scroll-chevron-svg,
.scroll-chevron-svg * {
  cursor: default !important;
}

/* HERO SECTION STYLES */
.wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.content {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
}

.content .section.hero {
  width: 100%;
  height: 100vh;
  background-image: url(medias/product-background-1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.image-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  perspective: 500px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

body {
    background: #121212;
    color: #F1F1F1;
}



.mwg_effect027 {
    position: absolute;
    top: 32.2vh;         /* PRESERVE current working positioning */
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;

    /* Production optimizations - 100% safe */
    transform: translateZ(0);    /* GPU acceleration for better performance */
    will-change: transform;      /* Browser optimization hint */
    text-rendering: optimizeLegibility;  /* Better text rendering */
}

.mwg_effect027 ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mwg_effect027 li {
    font: 500 normal 44px/1.3 'Inter', sans-serif;
    letter-spacing: -.06em;
    overflow: hidden;
    display: flex;
    text-rendering: optimizeLegibility;  /* Better letter rendering */
    -webkit-font-smoothing: antialiased; /* Cross-browser text smoothing */
    -moz-osx-font-smoothing: grayscale;
}

.mwg_effect027 .letter {
    position: relative; /* Establishes a reference for the child with absolute positioning */
    display: inline-block;

    /* Production optimizations - prevent selection during animation */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.mwg_effect027 .letter span:last-child {
    position: absolute;
    bottom: 100%;
    left: 0;
}

/* CTA Button Consolidated States */
.cta-button-container {
    position: absolute;
    top: 50vh;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 4;
    pointer-events: none;
}

.shop-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font: 600 18px/1.2 'Inter', sans-serif;
    letter-spacing: -0.02em;
    border: 3px solid #FFD700;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: url("cursor-pointer.svg") 12 0, pointer !important;
}

/* Shimmer Effect */
.shop-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

/* Ripple Effect */
.shop-cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 0;
}

/* Idle Animation States */
.shop-cta-button.regular { animation: buttonBreath 3s ease-in-out infinite; }
.shop-cta-button.wiggle { animation: buttonWiggle 1.5s ease-in-out infinite; }
.shop-cta-button.float { animation: buttonFloat 2s ease-in-out infinite; }
.shop-cta-button.magnetic { animation: buttonMagnetic 0.8s ease-in-out infinite; }

/* Animation Keyframes */
@keyframes buttonBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes buttonWiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(2deg) scale(1.02); }
    75% { transform: rotate(-2deg) scale(1.02); }
}

@keyframes buttonFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes buttonMagnetic {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(1deg) scale(1.01); }
    50% { transform: rotate(-1deg) scale(0.99); }
    75% { transform: rotate(0.5deg) scale(1.005); }
}

/* Button Text & Arrow */
.button-text,
.button-arrow {
    color: #333;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.button-text {
    font-weight: 700;
    text-transform: uppercase;
}

.button-arrow {
    font-size: 20px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover State */
.shop-cta-button:hover {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFD700 50%, #FFF9C4 100%);
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 16px 50px rgba(255, 223, 0, 0.6), 0 4px 20px rgba(255, 215, 0, 0.4);
    border-color: #FFD700;
    animation: none;
}

.shop-cta-button:hover .button-arrow {
    transform: translateX(6px) rotate(0deg);
    color: #FFD700;
}

/* Active/Click State */
.shop-cta-button:active {
    transform: scale(0.95);
    background: linear-gradient(135deg, #FFF9C4 0%, #FFD700 100%);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8), 0 0 100px rgba(255, 215, 0, 0.4), 0 0 150px rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
}

/* Enable interactions when button is shown */
/* NUCLEAR FORCE ENABLE INTERACTIONS - ABSOLUTE PRIORITY */
.cta-button-container.show,
.cta-button-container.show:hover,
.cta-button-container.show:active,
.cta-button-container.show:focus,
.cta-button-container.show .shop-cta-button,
.cta-button-container.show .shop-cta-button:hover,
.cta-button-container.show .shop-cta-button:active,
.cta-button-container.show .shop-cta-button:focus {
    pointer-events: auto !important; /* Maximum specificity override */
    cursor: url("cursor-pointer.svg") 12 0, pointer !important;
    user-select: text !important;
    z-index: 999999 !important; /* Nuclear z-index override */
}

/* FORCE PARENT CONTAINERS TO NEVER BLOCK BUTTON */
.mwg_effect027,
.mwg_effect027 *,
.mwg_effect027.show,
.wrapper,
.wrapper *,
.content,
.content *,
.image-container,
.image-container * {
    pointer-events: none !important; /* Reset to none, then whitelist the button */
}

/* WHITELIST: Only the button gets pointer events */
.cta-button-container.show,
.cta-button-container.show .shop-cta-button {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 9999999 !important; /* Beyond nuclear level */
}

/* Enable interactions when button is shown */
.cta-button-container.show {
    pointer-events: auto;
}

/* Clean mobile responsiveness for CTA button - NO DUPLICATES */
@media (max-width: 768px) {
    .cta-button-container {
        top: 75vh; /* Even lower position for mobile */
    }

    .shop-cta-button {
        padding: 12px 30px; /* 35% reduction applied for consistency */
        font-size: 17px;   /* Slightly larger font for readability */
        min-height: 48px;  /* WCAG 48px touch target */

        /* Disable complex animations on mobile for performance */
        animation: none;
    }

    .shop-cta-button:hover {
        transform: scale(1.02); /* Reduced scale for mobile */
    }

    /* Optimize shimmer effect on mobile */
    .shop-cta-button::before {
        transition: left 0.4s ease; /* Faster on mobile */
    }

    /* MWG text scaling for mobile */
    .mwg_effect027 li {
        font-size: 34px; /* Slightly larger text */
        line-height: 1.4;
    }
}

.mwg_effect042 {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100vw;
    display: block;
}
.mwg_effect042 .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.mwg_effect042 .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    object-fit: cover;
    z-index: 0;
    display: none;
    background: #121212;
}
.mwg_effect042 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: rgba(0,0,0,0);
}
.mwg_effect042 .desktop-bg {
    display: block;
}
@media (max-width: 768px) {
    .mwg_effect042 .desktop-bg {
        display: none;
    }
    .mwg_effect042 .mobile-bg {
        display: block;
    }
}
.mwg_effect042 .pin-height {
    height: 500vh;
    position: relative;
    z-index: 1;
}
.mwg_effect042 .container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mwg_effect042 .text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    font: 500 normal 1.6vw / normal 'Inter', sans-serif;
    letter-spacing: -0.03em;
    transform: translate(0, -50%);
}
.mwg_effect042 .medias {
    width: 22%;
    aspect-ratio: 0.75;
    perspective: 25vw;
} 
.mwg_effect042 .media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1vw;
}

@media (max-width: 768px) {
    .mwg_effect042 .text {
        display: none;
    }
    .mwg_effect042 .medias {
        width: 50%;
        perspective: 50vw;
    }
}

/* NORMALIZE009  */

body {
    background: #121212;
    color: #F1F1F1;
}
.mwg_effect009 .text { 
    position: absolute;
    font: 500 normal clamp(14px, 1.15vw, 100px) / 1.2 'Inter', sans-serif;
    letter-spacing: -0.01em;
    top: 25px;
    left: 25px;
    width: 23%;
    min-width: 300px;
}
.mwg_effect009 .pin-height {
    height: 600vh;
}
.mwg_effect009 .container {
    display: flex;
    align-items: center;
    height: 100vh
}
.mwg_effect009 .center {
    position: relative;
    width: 100%;
}
.mwg_effect009 .sentence {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    font: 500 normal 10vw/0.9 'Inter', sans-serif;
}
.mwg_effect009 .sentence span {
    display: inline-block;
    letter-spacing: -0.06em;
}
.mwg_effect009 .sentence:not(:first-child) {
    position: absolute;
    left: 0;
    top: 0;
}

/* Loader Styles */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}
.loader .revealer,
.loader .loader-text-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.loader .revealer {
    z-index: 1;
    top: 100%;
}
.loader .loader-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
    circle at center,
    rgba(220, 200, 255, 0.95) 0%,   /* pale lavender center */
    rgba(170, 130, 255, 0.95) 35%,  /* richer violet */
    rgba(150, 90, 255, 0.95) 65%,   /* deep violet/purple */
    rgba(190, 110, 255, 0.95) 100%   /* purple-pink haze edges */
    );
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Lottie Animation Container */
.loader-text .loader-lottie {
    max-width: 400px;
    max-height: 300px;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsiveness for Lottie */
@media (max-width: 768px) {
    .loader-text .loader-lottie {
        max-width: 280px;
        max-height: 200px;
    }
}



/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: none; /* Completely hidden during preloader */
    z-index: 10000;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 0; /* Reduced left padding to move logo more left */
    display: flex;
    justify-content: space-between; /* Restored to ensure mobile hamburger positioning */
    align-items: center;
    height: 70px;
    position: relative;
}
.header-logo {
    flex: 0 0 auto;
    padding-top: 30px; /* Desktop top padding */
    padding-left: 0px; /* Desktop left padding */
    position: relative; /* For absolute positioning of Lottie */
    cursor: pointer; /* Indicate it's interactive */
}
.header-logo img {
    display: none; /* Permanently hide SVG logo - Lottie animation is now our only logo */
}
/* Lottie Animation Container for Logo Interactions */
.header-lottie-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -40%) scale(0.558); /* Desktop: keeping your adjusted value */
    width: 326px; /* Measured width */
    height: 170px; /* Measured height */
    transform-origin: center center;
    z-index: 2; /* Above static logo */
    opacity: 0; /* Hidden initially - shown after transition */
    pointer-events: auto; /* Allow interactions */
}

/* Tablet-specific positioning */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-lottie-container {
        transform: translate(-26%, -38%) scale(0.5);
    }
}
@media (max-width: 768px) {
    .header-lottie-container {
        transform: translate(-27%, -36%) scale(0.444); /* Mobile: adjusted left margin (-33% moves logo more right) */
    }
}
.nav-menu {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0); /* Center horizontally, no vertical transform */
    /* Use viewport centering without vertical offset */
    z-index: 10001;
    padding-top: 35px; /* Pad from top instead of positioning */
}
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}
/* Empty spacer element to balance flex layout */
.nav-link {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: #F1F1F1;
    position: relative;
    font: 500 normal 16px / 1.2 'Inter', sans-serif;
}

.nav-link:hover {
    color: #FFF;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.3),
                 0 0 4px rgba(255, 255, 255, 0.2),
                 0 0 6px rgba(255, 255, 255, 0.1);
}

.nav-underline-box {
    width: 100%;
    height: 0.625em;
    position: relative;
}

.nav-underline-box-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: visible !important;
    margin-top: -0.1em; /* Small gap between text and underline for nav */
}


/* MOBILE SCALING MENU: Hide toggle button on desktop */
.hamburger-nav__toggle {
    display: none !important;
}

/* Universal menu styles - work on all devices */
.navigation__dark-bg {
    transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
    opacity: 0;
    pointer-events: auto;
    visibility: hidden;
    background-color: #000;
    position: absolute;
    inset: 0;
}

[data-navigation-status="active"] .navigation__dark-bg {
    opacity: 0.33;
    visibility: visible;
}

/* DESKTOP MEDIA QUERY: Hide mobile menu elements on desktop >= 769px */
@media (min-width: 769px) {
    .navigation,
    .navigation *,
    .hamburger-nav,
    .hamburger-nav *,
    .hamburger-nav__group,
    .hamburger-nav__thumbnails,
    .hamburger-nav__toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}
/* MOBILE SCALING MENU: Hide on desktop, show only on mobile <=768px */
/* (Handled in mobile media query below) */
.nav-menu.open ul {
    transform: translateX(0);
}

/* Header container background when mobile menu is open (mobile only) */
@media (max-width: 768px) {
    .header-container.menu-open {
        background: #191919;
        backdrop-filter: blur(10px);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header-container {
        height: 60px;
    }
    .header-logo {
        padding-top: 50px; /* Mobile-specific top padding */
        padding-left: 25px; /* Mobile-specific left padding */
    }
    .header-logo img {
        height: 65px; /* Increased by 30% from 45px (originally 30px) */
    }
    .nav-menu {
        display: none; /* Hide desktop menu on mobile */
    }

    /* HIDE mobile navigation on desktop - only show on mobile */
    .navigation {
        display: none !important;
        z-index: 500;
        pointer-events: none;
        position: fixed;
        inset: 0;
    }

    /* FORCE burger icon visible on mobile */
    #theBurger {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Scaling Hamburger Navigation Styles - Universal (Mobile + Desktop) */
    .navigation {
        display: block !important;
        z-index: 500 !important;
        pointer-events: none;
        position: fixed;
        inset: 0;
    }

    /* FORCE burger icon visible on mobile */
    #theBurger {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .navigation__dark-bg {
        transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
        opacity: 0;
        pointer-events: auto;
        visibility: hidden;
        background-color: #000;
        position: absolute;
        inset: 0;
    }

    [data-navigation-status="active"] .navigation__dark-bg {
        opacity: 0.33;
        visibility: visible;
    }

    .hamburger-nav {
        border-radius: 1.5em;
        position: absolute;
        top: 2em;
        right: 2em;
    }

    .hamburger-nav__bg {
        transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
        background-color: #0000;
        border-radius: 1.75em;
        width: 3.5em;
        height: 3.5em;
        position: absolute;
        top: 0;
        right: 0;
    }

    [data-navigation-status="active"] .hamburger-nav__bg {
        background-color: #000000;
        width: 100%;
        height: 100%;
    }

    .hamburger-nav__group {
        transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1), transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
        grid-column-gap: 1em;
        grid-row-gap: 1em;
        pointer-events: auto;
        transform-origin: 100% 0%;
        flex-flow: column;
        padding: 2.25em 2.5em 2em 2em;
        display: flex;
        position: relative;
        transform: scale(0.15) rotate(0.001deg);
        opacity: 0;
        visibility: hidden;
        width: 22em;
    }

    [data-navigation-status="active"] .hamburger-nav__group {
        transform: scale(1) rotate(0.001deg);
        opacity: 1;
        visibility: visible;
    }

    .hamburger-nav__menu-p {
        opacity: .5;
        letter-spacing: .1em;
        text-transform: uppercase;
        margin-bottom: 0;
        font-family: RM Mono, Arial, sans-serif;
        font-size: 1em;
        font-weight: 400;
    }

    .hamburger-nav__ul {
        grid-column-gap: .375em;
        grid-row-gap: .375em;
        flex-flow: column;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
        display: flex;
        position: relative;
    }

    .hamburger-nav__li {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .hamburger-nav__a {
        color: #F1F1F1;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        display: flex;
    }

    .hamburger-nav__p {
        white-space: nowrap;
        margin-bottom: 0;
        padding-right: 1.25em;
        font-size: 2em;
        font-family: PP Neue Corp Tight, Arial, sans-serif;
        font-weight: 500;
    }

    .hamburger-nav__dot {
        transition: all 0.7s cubic-bezier(0.5, 0.5, 0, 1);
        background-color: currentColor;
        border-radius: 50%;
        flex-shrink: 0;
        width: .5em;
        height: .5em;
        transform: scale(0) rotate(0.001deg);
        opacity: 0.5;
    }

    .hamburger-nav__a[aria-current] .hamburger-nav__dot {
        transform: scale(1) rotate(0.001deg);
        opacity: 1;
    }

    .hamburger-nav:has(.hamburger-nav__a:hover) .hamburger-nav__dot {
        transform: scale(0) rotate(0.001deg);
    }

    .hamburger-nav .hamburger-nav__a:hover .hamburger-nav__dot {
        transform: scale(1) rotate(0.001deg);
        opacity: 0.25;
    }

    .hamburger-nav__toggle {
        transition: transform 0.7s cubic-bezier(0.5, 0.5, 0, 1);
        z-index: 10;
        background-color: #0000;
        justify-content: center;
        align-items: center;
        width: 5em;
        height: 5em;
        margin: -1em;
        padding: 1em;
        pointer-events: auto;
        cursor: pointer;
        border-radius: 50%;
        display: flex !important; /* FORCE visibility on mobile */
        position: absolute;
        top: 0;
        right: 0;
        border: none;
        outline: none;
        overflow: visible;
        color: #131313;
        transform: translate(0em, 0em) rotate(0.001deg);
    }

    [data-navigation-status="active"] .hamburger-nav__toggle {
        transform: translate(-1em, 1em) rotate(0.001deg);
    }

    .hamburger-nav__icon {
        width: 2em;
        height: 2em;
        transform: scale(2);
    }

    .hamburger-nav__thumbnails {
        display: flex;
        gap: 0.5em;
        flex-wrap: wrap;
        margin-top: 0.5em;
    }

    .hamburger-nav__thumbnails > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25em;
    }

    .hamburger-nav__thumbnails img {
        width: 8.22em;
        height: 8.22em;
        object-fit: cover;
        border-radius: 0.25em;
    }

    .hamburger-nav__thumbnails p {
        margin: 0;
        font-size: 0.75em;
        text-align: center;
        color: #F1F1F1;
    }
}







/* CTA Button Positioning - Separate controls for mobile and desktop */
.cta-button-container {
    /* Base styles (common settings) */
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    z-index: 4;
}

/* Desktop positioning (769px and up) */
@media (min-width: 769px) {
    .cta-button-container {
        top: 53.5vh; /* Center on desktop */
        margin-top: 0vh; /* Additional adjustment */
    }
}

/* Mobile positioning (768px and below) */
@media (max-width: 768px) {
    .cta-button-container {
        top: 53.5vh; /* Lower on mobile */
        margin-top: 0vh; /* Additional adjustment */
    }
}

/* MWG Effect 009 CTA Button Styles */
.mwg_effect009 .cta-button-container {
    position: absolute;
    bottom: 28vh;
    top: auto !important;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: 1;
}

/* Mobile-specific CTA button positioning */
@media (max-width: 768px) {
    .mwg_effect009 .cta-button-container {
        bottom: 38vh;  /* Adjust for mobile - lower for higher position, higher for lower position */
    }
    .mwg_effect009 .shop-cta-button {
        padding: 7px 20px;  /* ← Adjust padding for smaller/larger button */
        font-size: 17px;     /* ← Adjust font-size for button text */
        min-height: 44px;    /* ← Adjust min height for touch targets */
    }
}

/* Panel-footer styles */
.panel-footer {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #151515;
    padding-top: 25px;
    padding-bottom:25px;
}

/* Footer styles for layered reveal */
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px;
    color: #F8F8F8;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    gap: 80px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-size: 16px;
    font-weight: 500;
    align-items: flex-start;
    opacity: 0.6;
}

.footer-link {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none;
    color: rgba(248, 248, 248, 0.6);
    transition: color 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 1px;
    white-space: nowrap;
    margin-left: 20px;
    will-change: font-weight;
}

.footer-link:hover {
    color: #FFF;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.3),
                 0 0 4px rgba(255, 255, 255, 0.2),
                 0 0 6px rgba(255, 255, 255, 0.1);
}

.footer-link:active {
    color: #FFF;
    transform: none;
}

.footer-underline-box {
    width: 100%;
    height: 0.625em;
    position: relative;
}

.footer-underline-box-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: visible !important;
    margin-top: -0.1em; /* Adjust vertical positioning of the underline */
}

/* Copyright styling */
.copyright-row {
    margin-top: 20px;
    font-size: 14px;
    color: #A0A0A0;
}

.copyright-row span {
    cursor: default;
    pointer-events: none;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .footer-container {
        gap: 80px;
        align-items: center;
    }

    .footer-column {
        gap: 1px;
        font-size: 16.1px;
    }

    .footer-column span {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        gap: 80px;
    }

    .footer-column {
        gap: 1px;
        font-size: 16.1px;
    }

    .footer-column span {
        text-align: center;
    }

    .copyright-row {
        font-size: 16px;
    }
}

/* Scroll Progress Bar Styles */
.progress-bar-wrap {
  z-index: 10001;
  cursor: pointer;
  width: 100%;
  height: 0.67rem;
  transition: background-color .2s;
  position: fixed;
  inset: 0% 0% auto;
}

.progress-bar-wrap:hover {
  background-color: #0000000d;
}

/* Mobile responsiveness - thicker on mobile for easier touch interaction */
@media (max-width: 768px) {
  .progress-bar-wrap {
    height: 0.9rem;
  }
}

.progress-bar {
  transform-origin: 0%;
  transform-style: preserve-3d;
  background-color: rgba(240, 240, 240, 0.50);
  width: 100%;
  height: 100%;
  transform: scale3d(0, 1, 1);
}

/* Custom Cursors */

/* Cursor "default" */
* {
  cursor: url("cursor-default.svg") 2 0, auto;
}

/* Cursor "pointer" (Hover) */
body :is(a, a *, a p, button, button *, select, input[type="submit"], input[type="button"], input[type="radio"], input[type="checkbox"]) {
  cursor: url("cursor-pointer.svg") 12 0, pointer;
}

/* Hamburger nav thumbnails - remove underlines from linked text */
.hamburger-nav__thumbnails a {
    text-decoration: none;
    color: #F1F1F1; /* Inherit parent color */
}
