/** Shopify CDN: Minification failed

Line 187:0 Unexpected "}"

**/
/* ============================================
   SIDEBAR NAVIGATION STYLES
============================================ */

.sidebar-navigation {
  width: 100%;
  max-width: 314px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: visible;
}

/* Sidebar Toggle Button */
.sidebar-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: #1e3a5f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}

.sidebar-toggle:hover {
  background: #2d4a6f;
}

.sidebar-title {
  flex: 1;
  text-align: left;
  text-transform: uppercase;
}

/* Sidebar Menu */
.sidebar-menu {
  max-height: none;
  overflow: visible;
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Sidebar Items */
.sidebar-item {
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: #4a5568;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sidebar-link:hover {
  background: #f7fafc;
  color: #1e3a5f;
  padding-left: 24px;
}

/* Sidebar Icons */
.sidebar-icon {
  width: 24px;
  height: 24px;
  transition: color 0.3s ease;
}

.sidebar-link span {
  flex: 1;
}

/* Sidebar Arrow */
.sidebar-arrow {
  width: 20px;
  height: 20px;
  color: #cbd5e0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.sidebar-item.has-submenu:hover .sidebar-arrow {
  transform: rotate(90deg);
  color: #1e3a5f;
}

/* ============================================
   SUBMENU (FLYOUT LIKE IMAGE 2)
============================================ */

.sidebar-item.has-submenu {
  position: relative;
}

/* Hidden by default */
.sidebar-submenu {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%) translateX(12px);

  min-width: 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.25s ease;
  z-index: 999;
}

/* Show submenu on hover */
.sidebar-item.has-submenu:hover .sidebar-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

/* Submenu links */
.sidebar-submenu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #1e3a5f;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.sidebar-submenu a:hover {
  background: #f3f6fb;
}

/* ============================================
   MOBILE & TABLET
============================================ */
/* MOBILE & TOUCH DEVICES ONLY */
@media (hover: none) and (pointer: coarse) {
  .sidebar-submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    padding-left: 32px;
  }

  .sidebar-arrow {
    transform: rotate(90deg);
  }
}


  .sidebar-arrow {
    transform: rotate(90deg);
  }
}

