/** Shopify CDN: Minification failed

Line 68:2 Unexpected "{"
Line 68:3 Expected identifier but found "%"
Line 68:36 Unexpected "{"
Line 68:37 Expected identifier but found "%"

**/
/* -------------------------------- */
/*           HEADER STYLE           */
/* -------------------------------- */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* DESKTOP HEADER — INVISIBLE AT TOP */
.malu-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 14px 0;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;

  transition: background 0.35s ease,
              border-color 0.35s ease,
              backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease;
}

/* WHEN SCROLLED (DESKTOP ONLY) */
@media (min-width: 769px) {
  .malu-header.scrolled {
    background: rgba(255, 255, 255, 0.07) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20) !important;
    backdrop-filter: blur(12px) brightness(1.05) !important;
    -webkit-backdrop-filter: blur(12px) brightness(1.05) !important;
  }
}



.malu-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ACTION ICONS */
.malu-actions .icon {
  font-size: 20px;
  margin-left: 18px;
}
/* DESKTOP MENU BUTTON */
.desktop-menu-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  {% comment %} margin-right: 16px; {% endcomment %}
  color: black;
  display: none;
  z-index: 999999;
}

/* SHOW BUTTON ON DESKTOP */
@media (min-width: 769px) {
  .desktop-menu-btn {
    display: inline-block !important;
  }
}

/* -------------------------------- */
/*          MOBILE NAV BAR          */
/* -------------------------------- */

.malu-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 30px;
  border: 1px solid rgba(243,243,243,0.4);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(7px) brightness(.95);
  -webkit-backdrop-filter: blur(7px) brightness(.95);
  display: none;
  margin: 2rem;
  border-radius: 50px;
  height: 70px;
}

@media (max-width: 768px) {
  .malu-mobile-bar {
    display: flex !important;
  }

  body {
    padding-bottom: 70px;
    padding-top: 0 !important;
  }
}

/* Icon button layout */
.mobile-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Ensure all icons are equal size */
.mobile-icons a img,
.mobile-icons button img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

/* Make the container tappable */
.mobile-icons a,
.mobile-icons button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
}

/* -------------------------------- */
/*           POPUP MENU             */
/* -------------------------------- */

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 99990;
}

.mobile-menu-panel {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  height: 60vh;
  border: 1px solid rgba(243, 243, 243, 0.4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(7px) brightness(.95);
  border-radius: 20px 20px 0 0;
  padding: 24px;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
  transition: bottom .35s ease;
  z-index: 99991;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-panel.active {
  bottom: 70px;
}

.mobile-menu-header {
  text-align: right;
}

.close-menu-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mobile-menu-list a {
  font-size: 20px;
  text-decoration: none;
  color: white;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .malu-header {
    display: none !important;
  }
}
/* MOBILE TOP BAR */
.malu-mobile-top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  padding: 8px 20px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99998;
}

.mobile-top-logo img {
  max-height: 36px;
}

/* On mobile, show top bar */
@media (max-width: 768px) {
  .malu-mobile-top-bar {
    display: flex !important;
  }
}

  /* Desktop size */
  .malu-logo-img {
    height: 32px;
  }

  /* Mobile size (inside top bar) */
  @media (max-width: 768px) {
    .mobile-top-logo img {
      height: 60px !important;
    }
  }

  /* Desktop header icons */
.desktop-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.malu-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Each icon wrapper (button or link) */
.malu-actions a,
.malu-actions button {
  width: 55px; 
  height: 40px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Force SVG icons to be equal size */
.malu-actions img.desktop-icon {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
  display: block;
}
.desktop-icon svg path {
  fill: white;
}

.mobile-top-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo-img {
  height: 35px;
  width: auto;
  display: block;
  position: relative;  /* 🔥 FIX: remove absolute */
}
/* Remove body padding only on the home hero */
.template-index body {
  padding-top: 0 !important;
}

/* Make hero go under the mobile top bar */
.template-index .malu-hero {
  margin-top: -52px; /* same as mobile top bar height */
}
