/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 28 2026 | 23:55:26 */
/* ==================================================
   BLKFOG — FULL SCREEN MOBILE NAV (FINAL LOCKED)
================================================== */
#mobile-menu.mobile-menu {
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
/* ------------------------------------------
   Global Reset (Prevents top white strip)
------------------------------------------ */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

/* ------------------------------------------
   Remove Theme Backdrop / Overlay
------------------------------------------ */
.side-menu-backdrop {
  display: none !important;
}

/* ------------------------------------------
   Full Screen Panel Structure
------------------------------------------ */
#mobile-menu.mobile-menu {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;

  background: #0F0F0F !important; /* Brand black */
  z-index: 3000 !important;

  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;

  overflow: hidden !important;
  box-shadow: none !important;
}

/* Open state (theme adds .open) */
#mobile-menu.mobile-menu.open {
  transform: translateX(0);
}

/* Remove admin bar offset if logged in */
body.admin-bar #mobile-menu.mobile-menu {
  top: 0 !important;
}
/* ------------------------------------------
   Mobile Nav Logo
------------------------------------------ */
.mobile-nav-logo {
  position: absolute;
  top: 38px;
  left: 36px;
  z-index: 4000;
}

.mobile-nav-logo img {
  height: 32px;
  width: auto;
}
/* ------------------------------------------
   Remove Theme Structural Clutter
------------------------------------------ */
#mobile-menu .search-form,
#mobile-menu .mobile-menu-bottom,
#mobile-menu .mobile-spacer,
#mobile-menu .mobile-nav .toggle,
#mobile-menu .mobile-menu-top {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

#mobile-menu .mobile-menu-top::before,
#mobile-menu .mobile-menu-top::after {
  display: none !important;
  content: none !important;
}

/* ------------------------------------------
   Inner Layout Reset
------------------------------------------ */
#mobile-menu .mobile-menu-inner {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;

  display: flex;
  flex-direction: column;
}

/* ------------------------------------------
   Close Button (Top Right / Strong Presence)
------------------------------------------ */
#mobile-menu .toggle-nav {
  position: absolute !important;
  top: 32px;
  right: 32px !important;
  left: auto !important;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 5000;
}

#mobile-menu .toggle-nav .icon-nav,
#mobile-menu .toggle-nav svg,
#mobile-menu .toggle-nav span {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
  filter: none !important;
}

#mobile-menu .toggle-nav svg {
  width: 20px;
  height: 20px;
}
/* ======================================
   BLKFOG CLOSE — CONTROLLED RESPONSE
====================================== */

#mobile-menu .toggle-nav svg line,
#mobile-menu .toggle-nav svg path {
  transition: stroke-width 0.2s ease, opacity 0.2s ease;
}

/* Slight thicken on hover */
#mobile-menu .toggle-nav:hover svg line,
#mobile-menu .toggle-nav:hover svg path {
  stroke-width: 2.5;
}

/* Slight press on tap */
#mobile-menu .toggle-nav:active {
  transform: scale(0.92);
}

/* ------------------------------------------
   Navigation Layout (Structured / Industrial)
------------------------------------------ */
#mobile-menu .mobile-nav {
  margin-top: 120px;
  padding-left: 36px;

  display: flex;
  flex-direction: column;
}

#mobile-menu .mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#mobile-menu .mobile-nav li {
  margin-bottom: 26px;
}

/* ------------------------------------------
   Link Styling
------------------------------------------ */
#mobile-menu .mobile-nav a {
  color: #ffffff !important;
  text-decoration: none;

  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  display: inline-block;
  position: relative;
}

/* Underline grow animation (subtle / engineered) */
#mobile-menu .mobile-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;

  width: 0;
  height: 1px;
  background: #ffffff;

  transition: width 0.3s ease;
}

#mobile-menu .mobile-nav a:hover::after {
  width: 100%;
}

/* ======================================
   LOCK BODY SCROLL WHEN NAV OPEN
====================================== */
body.mobile-menu-open,
body.nav-open {
  overflow: hidden !important;
}

/* ======================================
   BLKFOG NAV SECTION DIVIDER (CLEAN)
====================================== */

#mobile-menu .mobile-nav li:nth-child(5) {
  margin-top: 44px;
  padding-top: 24px;
  position: relative;
}

#mobile-menu .mobile-nav li:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ======================================
   BLKFOG MOBILE NAV — AUTO STAGGER
====================================== */

/* Initial state */
#mobile-menu .mobile-nav li {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

/* Open (after panel slides) */
#mobile-menu.mobile-menu.open .mobile-nav li {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.1s + (0.07s * var(--i)));
}

/* ======================================
   BLKFOG NAV BOTTOM SIGNATURE — ICON
====================================== */

.mobile-nav-bottom {
  margin-top: auto;
  padding: 36px 36px 40px 36px;
  position: relative;

  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);

  display: flex;
  align-items: center;
}

/* Divider above */
.mobile-nav-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ======================================
   FORCE OUTLINE INSTAGRAM ICON
====================================== */

.mobile-nav-bottom .insta-icon {
  width: 18px;
  height: 18px;

  fill: none !important;
  stroke: rgba(255,255,255,0.75) !important;
  stroke-width: 1.6 !important;
}

.mobile-nav-bottom .insta-icon rect,
.mobile-nav-bottom .insta-icon circle {
  fill: none !important;
  stroke: inherit !important;
}

.mobile-nav-bottom a:hover .insta-icon {
  opacity: 1;
}

/* Divider bar */
.mobile-nav-bottom .divider {
  margin: 0 12px;
  opacity: 0.35;
}

/* Tagline */
.mobile-nav-bottom .tagline {
  opacity: 0.5;
}