/** Shopify CDN: Minification failed

Line 19:27 Cannot use type selector "gt" directly after nesting selector "&"
Line 23:24 Cannot use type selector "gt" directly after nesting selector "&"
Line 34:11 Cannot use type selector "gt" directly after nesting selector "&"
Line 53:11 Cannot use type selector "gt" directly after nesting selector "&"
Line 60:11 Cannot use type selector "gt" directly after nesting selector "&"
Line 74:11 Cannot use type selector "gt" directly after nesting selector "&"

**/
/* mh-postcore-bundle.css
   AUTO-GENERATED bundle — DO NOT edit here for source changes.
   Concatenation (in cascade order) of: header-fixes.css, quick-add-to-cart-animations.css, quick-add-to-cart-fix.css, mobile-enhancements.css, mega-menu-fixes.css, menahub-menu.css
   Edit the individual source files, then regenerate. Sources kept in repo for rollback.
*/


/* ===== header-fixes.css ===== */
.header_style_5 .main-menu &gt; nav &gt; ul &gt; li &gt; a {
    line-height: 29px;
}

.header-area .main-menu &gt; nav &gt; ul &gt; li &gt; a,
.header-area .header-right-wrap {
    font-size: 15px;
}

/* Noon.com-style menu hover */
.main-menu {
  position: relative;
  z-index: 1000;
}

.main-menu &gt; ul &gt; li {
  position: relative;
}

.main-menu ul ul {
  display: none;
  position: fixed;
  top: 80px; /* Adjust to your header height */
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 999;
  padding: 30px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.main-menu &gt; ul &gt; li:hover &gt; ul {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dark overlay */
.main-menu &gt; ul &gt; li::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.main-menu &gt; ul &gt; li:hover::before {
  opacity: 1;
  visibility: visible;
}

/* ===== quick-add-to-cart-animations.css ===== */
/* Quick Add to Cart Animations */
/* Smooth, jerk-free animations for add to cart buttons */

/* Loading state animation */
@keyframes rotate-infinite {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rotate-infinite {
  animation: rotate-infinite 1s linear infinite;
  display: inline-block;
}

/* Spinner animation for SVG */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.spinner {
  animation: spin 0.8s linear infinite;
}

/* Button state transitions */
.ajax-spin-cart-drawer,
.ajax-spin-cart,
.theme-product-action-btn,
.mh-add-cart-btn {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Loading state */
.ajax-spin-cart-drawer.loading,
.ajax-spin-cart.loading,
.theme-product-action-btn.loading,
.mh-add-cart-btn.loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: wait;
}

.ajax-spin-cart-drawer.loading i,
.ajax-spin-cart.loading i,
.theme-product-action-btn.loading i {
  animation: rotate-infinite 0.8s linear infinite;
}

.mh-add-cart-btn.loading svg {
  animation: spin 0.8s linear infinite;
}

/* Success state */
.ajax-spin-cart-drawer.added,
.ajax-spin-cart.added,
.theme-product-action-btn.added,
.mh-add-cart-btn.added {
  background-color: #28a745 !important;
  color: #fff !important;
  transform: scale(1.05);
}

.ajax-spin-cart-drawer.added i,
.ajax-spin-cart.added i,
.theme-product-action-btn.added i,
.mh-add-cart-btn.added svg {
  color: #fff !important;
  stroke: #fff !important;
}

/* Error state */
.ajax-spin-cart-drawer.error,
.ajax-spin-cart.error,
.theme-product-action-btn.error,
.mh-add-cart-btn.error {
  background-color: #dc3545 !important;
  color: #fff !important;
  animation: shake 0.5s;
}

.mh-add-cart-btn.error svg {
  stroke: #fff !important;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Error tooltip */
.quick-add-error-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #dc3545;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  display: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.quick-add-error-tooltip:before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #dc3545;
}

/* Cart drawer animation */
.shopping-cart-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.shopping-cart-content:not(.show) {
  transform: translateX(100%);
  opacity: 0;
}

.shopping-cart-content.show {
  transform: translateX(0);
  opacity: 1;
}

/* Prevent layout shift */
.ajax-spin-cart-drawer,
.ajax-spin-cart,
.theme-product-action-btn,
.mh-add-cart-btn {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Icon transitions */
.ajax-spin-cart-drawer i,
.ajax-spin-cart i,
.theme-product-action-btn i,
.sp_cart_btn i,
.mh-add-cart-btn svg {
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Button text transitions */
.cart-title,
.theme-product-action-tooltip {
  transition: opacity 0.2s ease;
}

/* Smooth hover effects */
.ajax-spin-cart-drawer:not(.loading):not(.added):not(.error):hover,
.ajax-spin-cart:not(.loading):not(.added):not(.error):hover,
.theme-product-action-btn:not(.loading):not(.added):not(.error):hover,
.mh-add-cart-btn:not(.loading):not(.added):not(.error):hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* MH Add Cart Button specific styles */
.mh-add-cart-btn {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mh-add-cart-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.mh-add-cart-btn:hover svg {
  transform: scale(1.1);
}

.mh-add-cart-btn.loading {
  background-color: rgba(0, 0, 0, 0.05);
}

.mh-add-cart-btn.added {
  background-color: #28a745;
}

.mh-add-cart-btn.error {
  background-color: #dc3545;
}

/* Mobile optimizations */
@media (max-width: 767px) {
  .quick-add-error-tooltip {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .ajax-spin-cart-drawer,
  .ajax-spin-cart,
  .theme-product-action-btn,
  .mh-add-cart-btn {
    -webkit-tap-highlight-color: transparent;
  }
  
  .mh-add-cart-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .ajax-spin-cart-drawer,
  .ajax-spin-cart,
  .theme-product-action-btn,
  .mh-add-cart-btn,
  .shopping-cart-content,
  .rotate-infinite,
  .spinner {
    animation: none !important;
    transition: none !important;
  }
}


/* ===== quick-add-to-cart-fix.css ===== */
/* Quick Add to Cart - Loading & Success States */

/* Loading state */
.ajax-spin-cart-drawer.loading,
.ajax-spin-cart.loading,
.theme-product-action-btn.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

.ajax-spin-cart-drawer.loading::after,
.ajax-spin-cart.loading::after,
.theme-product-action-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* Success state */
.ajax-spin-cart-drawer.added,
.ajax-spin-cart.added,
.theme-product-action-btn.added {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
}

/* Error state */
.ajax-spin-cart-drawer.error,
.ajax-spin-cart.error,
.theme-product-action-btn.error {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
}

/* Error tooltip */
.quick-add-error-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #dc3545;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  margin-bottom: 5px;
  z-index: 1000;
  display: none;
}

.quick-add-error-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top-color: #dc3545;
}

/* Spin animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Rotate infinite class for icons */
.rotate-infinite {
  animation: spin 1s linear infinite;
}

/* ===== mobile-enhancements.css ===== */
/* =================================================================
   PROFESSIONAL MOBILE OPTIMIZATIONS FOR MENAHUB
   Enhanced spacing, filters, product cards, and mobile experience
   ================================================================= */

/* ===========================
   1. MOBILE PRODUCT CARDS
   =========================== */
@media only screen and (max-width: 991px) {
  /* Better product grid spacing */
  .shop-area .theme-products {
    margin-left: -8px;
    margin-right: -8px;
  }
  
  .shop-area .theme-products > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }
  
  /* Enhanced product card design */
  .product-wrap {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 8px;
  }
  
  .product-wrap:active {
    transform: scale(0.98);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  
  /* Product image container */
  .product-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f8f9fa;
  }
  
  .product-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  /* Product content spacing */
  .product-content {
    padding: 12px;
  }
  
  .product-content h3 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1f2226;
  }
  
  .product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  
  .product-price span {
    font-size: 16px;
    font-weight: 700;
    color: #0b3350;
  }
  
  .product-price .old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
  }
  
  /* Product action buttons */
  .product-action {
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    border-top: 1px solid #f0f0f0;
  }
  
  .product-action button,
  .product-action a {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
}

/* Mobile product card - 2 columns */
@media only screen and (max-width: 575px) {
  .theme-products.custom_mobile_class > [class*="col-"] {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .product-content h3 {
    font-size: 13px;
  }
  
  .product-price span {
    font-size: 14px;
  }
}

/* ===========================
   2. IMPROVED FILTER BUTTON
   =========================== */
@media only screen and (max-width: 991px) {
  .sidebar__filter__responsive {
    margin-bottom: 20px;
  }
  
  .sidebar__filter__responsive .sidebar-collapse-btn {
    display: flex !important;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #0b3350 0%, #154a6e 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(11, 51, 80, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .sidebar__filter__responsive .sidebar-collapse-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }
  
  .sidebar__filter__responsive .sidebar-collapse-btn:active::before {
    width: 300px;
    height: 300px;
  }
  
  .sidebar__filter__responsive .sidebar-collapse-btn:hover {
    background: linear-gradient(135deg, #fca148 0%, #ff8c00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(252, 161, 72, 0.35);
  }
  
  .sidebar__filter__responsive .sidebar-collapse-btn svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
  }
  
  /* Filter collapse animation */
  .sidebar-collapse-hide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease;
    opacity: 0;
  }
  
  .sidebar-collapse-hide.active {
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.4s ease;
  }
  
  /* Filter sidebar styling */
  .shop-sidebar {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  
  .sidebar-widget {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .sidebar-widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  .pro-sidebar-title,
  .widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #0b3350;
    margin-bottom: 15px;
  }
}

/* ===========================
   3. ENHANCED MOBILE CART
   =========================== */
@media only screen and (max-width: 991px) {
  /* Cart page improvements */
  .cart-main-area {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .table-content table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }
  
  .table-content table thead {
    background: linear-gradient(135deg, #0b3350 0%, #154a6e 100%);
    color: #ffffff;
  }
  
 .table-content table thead th {
    padding: 15px 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .table-content table tbody td {
    padding: 15px 10px;
    vertical-align: middle;
  }
  
  /* Cart product image */
  .cart-img img {
    border-radius: 8px;
    max-width: 80px;
  }
  
  /* Cart quantity input */
  .cart-plus-minus {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .cart-plus-minus button {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: none;
    color: #0b3350;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .cart-plus-minus button:active {
    background: #0b3350;
    color: #ffffff;
  }
  
  .cart-plus-minus input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: #1f2226;
  }
  
  /* Cart totals */
  .grand-totall {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
  }
  
  .grand-totall h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0b3350;
    margin-bottom: 15px;
  }
  
  /* Checkout button */
  .checkout-btn,
  a.theme-default-button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #fca148 0%, #ff8c00 100%);
    color: #ffffff;
    text-align: center;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(252, 161, 72, 0.35);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
  }
  
  .checkout-btn:hover,
  a.theme-default-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(252, 161, 72, 0.45);
    background: linear-gradient(135deg, #ff8c00 0%, #fca148 100%);
  }
}

/* ===========================
   4. SHOP SORTING BAR
   =========================== */
@media only screen and (max-width: 991px) {
  .shop-top-bar {
    background: #ffffff;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .shop-top-bar select {
    padding: 10px 35px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2226;
    background-color: #ffffff;
    transition: all 0.3s ease;
  }
  
  .shop-top-bar select:focus {
    border-color: #0b3350;
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 51, 80, 0.1);
  }
}

/* ===========================
   5. PAGINATION IMPROVEMENTS
   =========================== */
@media only screen and (max-width: 991px) {
  .pro-pagination-style {
    margin-top: 30px;
    padding: 20px 0;
  }
  
  .pro-pagination-style ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .pro-pagination-style ul li a {
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .pro-pagination-style ul li a.active {
    transform: scale(1.1);
  }
}

/* ===========================
   6. SEARCH PAGE MOBILE
   =========================== */
@media only screen and (max-width: 991px) {
  .search-form {
    margin-bottom: 25px;
  }
  
  .search-form input[type="search"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
  }
  
  .search-form input[type="search"]:focus {
    border-color: #0b3350;
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 51, 80, 0.1);
  }
  
  .search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #0b3350;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
}

/* ===========================
   7. PRODUCT QUICK VIEW MOBILE
   =========================== */
@media only screen and (max-width: 991px) {
  .modal-dialog {
    margin: 20px;
    max-width: calc(100% - 40px);
  }
  
  .modal-content {
    border-radius: 16px;
    overflow: hidden;
  }
  
  .product-details-content h2 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
  }
  
  .pro-details-quality {
    margin: 20px 0;
  }
}

/* ===========================
   8. MOBILE BREADCRUMB
   =========================== */
@media only screen and (max-width: 991px) {
  .breadcrumb-content {
    padding: 20px 0;
  }
  
  .breadcrumb-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .breadcrumb-content ul {
    font-size: 13px;
  }
}

/* ===========================
   9. MOBILE BUTTON STYLES
   =========================== */
@media only screen and (max-width: 991px) {
  .theme-default-button,
  button.theme-default-button {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .theme-default-button:active {
    transform: scale(0.95);
  }
}

/* ===========================
   10. SMOOTH TRANSITIONS
   =========================== */
@media only screen and (max-width: 991px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  }
  
  a, button, input, select, textarea {
    touch-action: manipulation;
  }
}

/* ===========================
   11. COLLECTION PAGE SPACING
   =========================== */
@media only screen and (max-width: 991px) {
  .shop-area {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  
  .shop-area .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ===========================
   12. LOADING STATES
   =========================== */
@media only screen and (max-width: 991px) {
  .loading {
    pointer-events: none;
    opacity: 0.6;
  }
  
  .loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #0b3350;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
  }
  
  @keyframes spin {
    to { transform: rotate(360deg); }
  }
}

/* ===== mega-menu-fixes.css ===== */
/**
 * MEGA MENU CRITICAL FIXES
 * Fixes spacing, overflow, and display issues
 * FORCE HIDES OLD MENU - SHOWS ONLY NEW MENU
 */

/* ========================================
   CRITICAL: HIDE OLD MENU COMPLETELY
======================================== */

/* Hide the OLD menu system completely */
.mh-menu-desktop,
.mh-main-menu,
nav.mh-menu-desktop,
ul.mh-main-menu {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Force show ONLY the new professional menu */
.main-navigation,
nav.main-navigation,
.main-navigation > ul,
.main-menu-list {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ========================================
   FIX MAIN MENU CONTAINER
======================================== */

/* Fix main menu container spacing */
.main-menu {
  width: 100%;
  overflow: visible !important;
}

.main-menu > nav,
.main-menu nav.main-navigation {
  width: 100%;
}

/* ========================================
   FIX MENU LIST - PROPER SPACING
======================================== */

/* Fix menu list - proper spacing and layout */
.main-menu > nav > ul,
.main-menu nav ul.main-menu-list,
.main-navigation > ul,
ul.main-menu-list {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px !important;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

/* ========================================
   FIX MENU ITEMS
======================================== */

/* Fix individual menu items */
.main-menu > nav > ul > li,
.main-menu nav ul.main-menu-list > li,
.main-navigation > ul > li,
ul.main-menu-list > li,
.menu-item {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
  list-style: none !important;
}

/* ========================================
   FIX MENU LINKS - MAKE THEM LARGE AND VISIBLE
======================================== */

/* Fix menu links - proper padding and sizing */
.main-menu > nav > ul > li > a,
.main-menu nav ul.main-menu-list > li > a,
.main-navigation > ul > li > a,
ul.main-menu-list > li > a,
.menu-item > a,
a.menu-link {
  display: inline-flex !important;
  align-items: center;
  padding: 12px 18px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #0b3350 !important;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  border-radius: 8px;
  line-height: 1.4;
  background: transparent !important;
}

/* Hover effect */
.main-menu > nav > ul > li > a:hover,
.main-menu nav ul.main-menu-list > li > a:hover,
.main-navigation > ul > li > a:hover,
.menu-item > a:hover,
a.menu-link:hover {
  color: #fca148 !important;
  background: rgba(252, 161, 72, 0.1) !important;
}

/* ========================================
   ALL CATEGORIES BUTTON - LARGE AND PROMINENT
======================================== */

/* All Categories button - FIXED */
.menu-all-categories,
li.menu-all-categories {
  margin-right: 12px !important;
}

.menu-all-categories > a,
li.menu-all-categories > a {
  background: linear-gradient(135deg, #0b3350 0%, #154a6e 100%) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 14px 24px !important;
  border-radius: 8px !important;
  box-shadow: 0 4px 12px rgba(11, 51, 80, 0.25);
  font-size: 16px !important;
}

.menu-all-categories > a:hover,
li.menu-all-categories > a:hover {
  background: linear-gradient(135deg, #154a6e 0%, #0b3350 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 51, 80, 0.35);
}

/* Make sure text is visible */
.menu-all-categories > a span,
.menu-all-categories > a > span {
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: white !important;
}

/* ========================================
   FIX DROPDOWN ARROW
======================================== */

/* Fix dropdown arrow */
.main-menu > nav > ul > li.has-dropdown > a::after,
.menu-item.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s;
}

.main-menu > nav > ul > li.has-dropdown:hover > a::after,
.menu-item.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

/* ========================================
   MEGA MENU POSITIONING
======================================== */

/* Mega menu positioning */
.main-menu > nav > ul > li ul.mega-menu,
.menu-item ul.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 24px;
  margin-top: 8px;
  min-width: 800px;
  max-width: 1200px;
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.main-menu > nav > ul > li:hover > ul.mega-menu,
.menu-item:hover > ul.mega-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  opacity: 1;
  visibility: visible;
}

/* ========================================
   SIMPLE DROPDOWN
======================================== */

/* Simple dropdown */
.main-menu > nav > ul > li ul.submenu,
.menu-item ul.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 8px;
  margin-top: 8px;
  min-width: 220px;
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  list-style: none;
}

.main-menu > nav > ul > li:hover > ul.submenu,
.menu-item:hover > ul.submenu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Submenu items */
.main-menu > nav > ul > li ul.submenu li,
.menu-item ul.submenu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu > nav > ul > li ul.submenu li a,
.menu-item ul.submenu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.main-menu > nav > ul > li ul.submenu li a:hover,
.menu-item ul.submenu li a:hover {
  color: #fca148;
  background: rgba(252, 161, 72, 0.1);
}

/* ========================================
   RESPONSIVE
======================================== */

/* Responsive - Medium screens */
@media (min-width: 992px) and (max-width: 1199px) {
  .main-menu > nav > ul > li > a,
  .menu-item > a {
    padding: 10px 14px !important;
    font-size: 14px !important;
  }
  
  .main-menu > nav > ul,
  .main-menu nav ul.main-menu-list {
    gap: 10px !important;
  }
  
  .menu-all-categories > a {
    padding: 12px 20px !important;
    font-size: 15px !important;
  }
  
  .main-menu > nav > ul > li ul.mega-menu {
    min-width: 700px;
    max-width: 900px;
  }
}

/* Responsive - Large screens */
@media (min-width: 1200px) {
  .main-menu > nav > ul,
  .main-menu nav ul.main-menu-list {
    gap: 16px !important;
  }
  
  .main-menu > nav > ul > li > a,
  .menu-item > a {
    padding: 14px 20px !important;
    font-size: 16px !important;
  }
  
  .menu-all-categories > a {
    padding: 15px 28px !important;
    font-size: 17px !important;
  }
}

/* Hide on mobile */
@media (max-width: 991px) {
  .main-menu > nav > ul,
  .main-menu nav ul.main-menu-list,
  .main-navigation {
    display: none !important;
  }
}

/* ========================================
   FIX CONTAINER WIDTH ISSUES
======================================== */

/* Fix container width issues */
.sti_menu_area {
  flex: 1;
  max-width: 100%;
}

.sti_menu_area .main-menu {
  width: 100%;
  max-width: 100%;
}

/* Ensure menu doesn't overflow */
.main-header-wrap .row {
  overflow: visible;
}

/* ========================================
   MEGA MENU COLUMN STYLING
======================================== */

/* Mega menu column styling */
.main-menu > nav > ul > li ul.mega-menu > li > a.menu-title,
.mega-menu > li > a.menu-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0b3350;
  padding: 8px 0 12px;
  margin-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
  text-decoration: none;
}

.main-menu > nav > ul > li ul.mega-menu > li > ul,
.mega-menu > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu > nav > ul > li ul.mega-menu > li > ul > li,
.mega-menu > li > ul > li {
  margin: 0;
  padding: 0;
}

.main-menu > nav > ul > li ul.mega-menu > li > ul > li > a,
.mega-menu > li > ul > li > a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.main-menu > nav > ul > li ul.mega-menu > li > ul > li > a:hover,
.mega-menu > li > ul > li > a:hover {
  color: #fca148;
  background: rgba(252, 161, 72, 0.08);
  transform: translateX(4px);
}

/* ========================================
   REMOVE ANY OLD MENU CONFLICTING STYLES
======================================== */

/* Remove any scroll menu item styles */
.mh-scroll-menu-item,
li.mh-scroll-menu-item {
  display: none !important;
}

/* Force proper text color and size everywhere */
.main-menu a,
.main-navigation a {
  text-decoration: none !important;
}

/* No text transform */
.main-menu > nav > ul > li > a,
.menu-item > a {
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* ===== menahub-menu.css ===== */
/**
 * MENAHUB PROFESSIONAL MENU - OPTIMIZED WITH OVERLAY
 * - Compact design with reduced spacing
 * - Gray overlay when menu opens (blocks scrolling)
 * - Scrollable mega menu content
 * - Professional & clean appearance
 */

/* ===================================== RESET & FOUNDATION ===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================================== MENU CONTAINER ===================================== */
.menahub-navigation {
  width: 100%;
  background: transparent !important;
  position: relative;
  z-index: 100;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.menahub-nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
}

/* ===================================== ALL CATEGORIES - LEFT ===================================== */
.menahub-all-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  height: 34px;
}

.menahub-all-categories:hover {
  background: #e9ecef;
  color: #c45500;
}

.menahub-hamburger {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 16px;
}

.menahub-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all 0.2s;
}

.menahub-all-categories:hover .menahub-hamburger span {
  background: #c45500;
}

/* ===================================== MENU LIST ===================================== */
.menahub-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
  padding: 0;
  margin: 0;
  flex: 1;
  justify-content: center;
}

/* ===================================== MENU ITEMS ===================================== */
.menahub-item {
  position: relative;
  display: inline-block;
}

.menahub-link {
  display: block;
  padding: 12px 0;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
  position: relative;
  letter-spacing: 0.2px;
}

.menahub-link:hover {
  color: #c45500;
}

/* Underline on hover */
.menahub-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #c45500;
  transition: width 0.3s ease;
}

.menahub-link:hover::after,
.menahub-item.active .menahub-link::after {
  width: 100%;
}

/* ===================================== DROPDOWN ARROW ===================================== */
.menahub-item.has-mega .menahub-link::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.menahub-item.active.has-mega .menahub-link::before {
  transform: rotate(180deg);
}

/* ===================================== MEGA MENU - COMPACT & SCROLLABLE ===================================== */
.menahub-mega-wrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  pointer-events: none;
  max-height: 0;
}

.menahub-item.active .menahub-mega-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  max-height: calc(100vh - 100px);
}

.menahub-mega {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-top: 3px solid #c45500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 20px 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px 16px;
  max-width: 95vw;
  width: fit-content;
  min-width: 600px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom scrollbar for mega menu */
.menahub-mega::-webkit-scrollbar {
  width: 6px;
}

.menahub-mega::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.menahub-mega::-webkit-scrollbar-thumb {
  background: #c45500;
  border-radius: 10px;
}

.menahub-mega::-webkit-scrollbar-thumb:hover {
  background: #a03d00;
}

/* ===================================== MEGA MENU COLUMNS ===================================== */
.menahub-column {
  min-width: 140px;
}

.menahub-column-title {
  font-size: 12px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menahub-column-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menahub-column-item {
  margin-bottom: 4px;
}

.menahub-column-link {
  color: #555555;
  text-decoration: none;
  font-size: 12.5px;
  display: block;
  padding: 5px 0;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.menahub-column-link:hover {
  color: #c45500;
  padding-left: 6px;
}

/* ===================================== MORE DROPDOWN ===================================== */
.menahub-more-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
  min-width: 180px;
  padding: 6px 0;
  margin-top: 10px;
  list-style: none;
}

.menahub-item.active .menahub-more-dropdown {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.menahub-more-item {
  margin: 0;
}

.menahub-more-link {
  display: block;
  padding: 8px 16px;
  color: #555555;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.menahub-more-link:hover {
  background: #f8f9fa;
  color: #c45500;
}

/* ===================================== WHATSAPP - RIGHT ===================================== */
.menahub-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: #25D366;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  height: 34px;
}

.menahub-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.menahub-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.menahub-whatsapp-number {
  color: white;
  font-weight: 600;
}

/* ===================================== OVERLAY - GRAY BACKGROUND ===================================== */
.menahub-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(2px);
}

.menahub-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when overlay is active */
body.menahub-menu-open {
  overflow: hidden;
}

/* ===================================== RESPONSIVE - LARGE SCREENS ===================================== */
@media (min-width: 1400px) {
  .menahub-menu {
    gap: 32px;
  }
  .menahub-mega {
    padding: 24px 20px;
    gap: 28px 20px;
  }
}

/* ===================================== RESPONSIVE - TABLET ===================================== */
@media (max-width: 1200px) {
  .menahub-menu {
    gap: 20px;
  }
  
  .menahub-link {
    font-size: 13px;
  }
  
  .menahub-mega {
    min-width: 500px;
    padding: 18px 14px;
    gap: 20px 14px;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
  
  .menahub-whatsapp-number {
    display: none;
  }
}

@media (max-width: 991px) {
  .menahub-navigation {
    display: none;
  }
}

/* ===================================== POSITIONING ADJUSTMENTS ===================================== */
.menahub-mega.align-left {
  left: 0;
  transform: none;
}

.menahub-mega.align-right {
  left: auto;
  right: 0;
  transform: none;
}

/* ===================================== ACCESSIBILITY ===================================== */
.menahub-link:focus,
.menahub-column-link:focus,
.menahub-more-link:focus {
  outline: 2px solid #c45500;
  outline-offset: 2px;
}

/* ===================================== ANIMATIONS ===================================== */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menahub-item.active .menahub-mega,
.menahub-item.active .menahub-more-dropdown {
  animation: fadeSlideDown 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menahub-overlay.show {
  animation: fadeIn 0.3s ease;
}

/* ===================================== UTILITIES ===================================== */
.menahub-featured .menahub-column-link {
  font-weight: 600;
  color: #c45500;
}

.menahub-badge {
  display: inline-block;
  background: #ff4444;
  color: #ffffff;
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 5px;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===================================== PERFORMANCE ===================================== */
.menahub-mega-wrapper,
.menahub-more-dropdown {
  will-change: opacity, transform;
}

/* ===================================== HIDE OLD MENUS ===================================== */
.main-menu,
.main-navigation,
.mh-menu-desktop,
.header-navigation,
.site-nav,
.desktop-menu {
  display: none !important;
}

/* ===================================== HIDDEN ITEMS (6+) ===================================== */
.menahub-item.menahub-hidden {
  display: none;
}

