   /* =============================================================================
   HEADER SECTION STYLES - Refined based on screenshot
   Jackys Theme — Greenhonchos/Jackys
   ============================================================================= */
   :root {

       /* ===== Brand Colors ===== */
       --header-bg: #0e122b;
       /* Navy Blue background */
       --jackys-red: #f14d3a;
       /* Brand red */
       --brand-primary: #0e122b;
       --brand-secondary: #f14d3a;

       /* ===== White Shades ===== */
       --white: #ffffff;
       --white-soft: #f9f9f9;
       --white-off: #f5f5f5;

       /* ===== Black Shades ===== */
       --black: #000000;
       --black-soft: #111111;
       --black-light: #222222;

       /* ===== Gray Scale ===== */
       --gray-50: #f9fafb;
       --gray-100: #f3f4f6;
       --gray-200: #e5e7eb;
       --gray-300: #d1d5db;
       --gray-400: #9ca3af;
       --gray-500: #6b7280;
       --gray-600: #4b5563;
       --gray-700: #374151;
       --gray-800: #1f2937;
       --gray-900: #111827;

       /* ===== Text Colors ===== */
       --text-white: #ffffff;
       --text-black: #000000;
       --text-primary: #111827;
       --text-secondary: #6b7280;
       --text-muted: #9ca3af;

       /* ===== Background Colors ===== */
       --bg-white: #ffffff;
       --bg-light: #f5f5f5;
       --bg-dark: #111827;

       /* ===== Border Colors ===== */
       --border-light: #e5e7eb;
       --border-medium: #d1d5db;
       --border-dark: #374151;

       /* ===== Search ===== */
       --search-bg: #ffffff;
       --search-dropdown-bg: #e0e0e0;

   }



   .breadcrumbs {
       background: transparent;
       margin: 0;
       width: 100% !important;
       max-width: 100% !important;
       padding: 0px 20px !important;
       margin-top: 20px;
       box-sizing: border-box !important;
   }

   .breadcrumbs .items {
       display: flex;
       gap: 8px;
       list-style: none;
       padding: 0;
       margin: 0;
       font-size: 12px;
       color: #111111;
       font-weight: 400;
   }

   .breadcrumbs .item:last-child {
       font-weight: 600;
   }

   .breadcrumbs .item:after {
       content: '•';
       margin-left: 8px;
       display: none;
   }

   .custom-header {
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 15px 40px;
       background: var(--header-bg);
       position: sticky;
       top: 0;
       z-index: 100;
       font-family: 'DM Sans';
   }

   /* LEFT SECTION */
   .left-header-section {
       display: flex;
       align-items: center;
       gap: 20px;
       flex: 1;
   }

   /* Logo specific styling */
   .left-header-section .logo {
       display: block;
       /* background: var(--jackys-red); */
       padding: 10px 0;
       margin: -10px 0;
       /* Align with header height */
       text-decoration: none;
   }

   .left-header-section .logo img {
       /* max-height: 40px; */
       display: block;
   }

   /* Search bar styling */
   .left-header-section .block-search {
       flex: 0 1 65%;
       margin-left: 10px;
   }

   /* .right-header-section .customer-dropdown{
    display: none!important;
} */


   .left-header-section .block-search .control {
       display: flex;
       background: var(--search-bg);
       border-radius: 4px;
       overflow: hidden;
       height: 40px;
       align-items: center;
       padding: 0 15px 0 0;
   }

   .left-header-section .block-search .control .nested {
       display: none;
   }

   .left-header-section .block-search input {
       flex: 1;
       border: none;
       padding: 0 15px;
       height: 100%;
       background: transparent;
       font-size: 14px;
       color: #7b7b7b;
       font-family: 'DM Sans';
       font-weight: 400;
   }

   .left-header-section .block-search input::placeholder {
       color: #999;
   }

   /* Search Icon */
   .left-header-section .block-search .action.search {
       background: transparent;
       border: none;
       padding: 0 15px;
       cursor: pointer;
       margin: 0;
       padding: 0;
       height: 100%;
       width: 30px;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   .left-header-section .block-search .action.search::before {
       content: "";
       display: block !important;
       width: 23px;
       height: 23px;
       background: url('../images/search.png') no-repeat center;
       background-size: contain;
       opacity: 1;
   }

   /* RIGHT SECTION */
   .right-header-section {
       display: flex;
       align-items: center;
       gap: 15px;
       justify-content: flex-end;
       /* color: var(--text-white); */
       order: 1;
   }

   .right-header-section a,
   .right-header-section .store-locator-link a {
       color: var(--text-white);
       text-decoration: none;
       font-size: 13px;
       display: flex;
       align-items: center;
       gap: 8px;
       white-space: nowrap;
       cursor: pointer;
   }


   .right-header-section .customer-dropdown {
       color: var(--text-white);
       text-decoration: none;
       font-size: 13px;
       display: flex;
       align-items: center;
       gap: 8px;
       white-space: nowrap;
       cursor: pointer;
   }


   .right-header-section .store-locator-link a img {
       width: 18px;
       height: 23px;
       object-fit: contain;
   }

   .sections.nav-sections {
       position: fixed;
       top: 0;
       left: 0;
       width: min(420px, calc(100% - 76px));
       height: 100vh;
       background: #ffffff;
       padding: 32px 0 40px;
       margin: 0;
       border-radius: 0 28px 28px 0;
       box-shadow: 20px 0 60px rgba(5, 5, 5, 0.25);
       opacity: 0;
       transform: translateX(-110%);
       pointer-events: none;
       z-index: 99999;
       overflow-y: auto;
       transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.25s ease;
       border-radius: 0;

   }

   .sections.nav-sections .navigation {
       padding: 0 !important;

   }

   .sections.nav-sections {
       padding: 0;
   }

   /* .sections.nav-sections .navigation>ul>li.level0>a {
       padding: 0 20px !important;
   } */


   .action.nav-close {
       text-align: right;
       position: relative;
       top: -10px;
   }

   .action.nav-close svg {
       width: 15px;
       height: 15px;
   }

   .sections.nav-sections .navigation>ul>li>.submenu>li>ul>li>a span {
       font-weight: 400;
   }

   .sections.nav-sections .nav-sections-items,
   .sections.nav-sections .section-item-content,
   .sections.nav-sections .nav-sections-item-content {
       display: block !important;
   }

   .sections.nav-sections .nav-sections-item-title {
       color: rgba(13, 17, 43, 0.55);
       font-size: 12px;
       text-transform: uppercase;
       letter-spacing: 0.12em;
       margin: 0 32px 18px;
   }

   .sections.nav-sections .navigation {
       background: transparent;
       border: none;
       padding: 40px 25px !important;
       margin: 0;
   }

   .product-reviews-summary {
       display: none;
   }

   .sections.nav-sections .navigation>ul {
       list-style: none;
       margin: 0;
       padding: 0;
       display: flex;
       flex-direction: column;
       /* gap: 10px; */

   }

   .sections.nav-sections .navigation>ul>li .submenu {
       display: block !important;
   }

   .nav-sections-item-content .category-item span {
       color: #000;
   }

   .sections.nav-sections .navigation>ul>li {
       background: #fff;
       border-radius: 0;
       /* padding: 18px 0; */
       transition: background 0.2s ease, color 0.2s ease;
       border-bottom: 1px solid rgba(12, 17, 51, 0.09);
       cursor: pointer;
   }

   /* Disable default Magento hover behavior */
   .navigation .level0:hover>.submenu,
   .navigation .level0:hover>.level-top>.ui-menu-icon,
   .navigation .level0:hover>.level-top:after {
       display: none !important;
   }

   /* Only show submenu when explicitly opened via JS */
   .sections.nav-sections .navigation>ul>li.is-open>.submenu,
   .navigation .level0.is-open>.submenu {
       display: block !important;
   }

   /* Ensure submenu is hidden otherwise */
   .sections.nav-sections .navigation>ul>li>.submenu,
   .navigation .level0>.submenu {
       display: none !important;
   }

   /* ==========================================================================
   NAVIGATION STYLING (Desktop & Mobile Unified)
   Matching the "Mobile Screenshot" clean aesthetic
   ========================================================================== */

   /* Level 0: Main Categories */
   .sections.nav-sections .navigation>ul>li.level0>a {
       display: flex;
       justify-content: space-between;
       align-items: center;
       font-weight: 700;
       color: #111321 !important;
       /* Force Black */
       text-decoration: none;
       font-size: 14px;
       text-transform: uppercase;
       letter-spacing: 0.05em;
       width: 100%;
       padding: 0;
       border-bottom: 1px solid rgba(0, 0, 0, 0.05);
       background: transparent !important;
   }

   .navigation .level0 {
       padding: 0;
   }

   .sections.nav-sections .navigation>ul>li.level0:last-child>a {
       border-bottom: none;
   }

   /* Level 0 Active/Hover State */
   .sections.nav-sections .navigation>ul>li.level0.active>a,
   .sections.nav-sections .navigation>ul>li.level0:hover>a {
       color: #000000 !important;
   }

   /* Fix for Level 0 Chevron/Toggle Icon */
   /* Target both .parent (standard Luma) and .has-children (custom) */
   .sections.nav-sections .navigation>ul>li.level0.parent>a::after,
   .sections.nav-sections .navigation>ul>li.level0.has-children>a::after {
       content: '';
       display: inline-block !important;
       width: 8px;
       height: 8px;
       border-right: 2px solid #111321;
       border-bottom: 2px solid #111321;
       transform: rotate(45deg);
       transition: transform 0.25s ease;
       margin-left: 14px;
       margin-bottom: 2px;
   }

   .sections.nav-sections .navigation>ul>li.level0.is-open>a::after,
   .sections.nav-sections .navigation>ul>li.level0.active>a::after {
       transform: rotate(-135deg);
       margin-bottom: -2px;
   }

   /* Remove default Magento icons */
   .navigation .ui-menu-icon {
       display: none !important;
   }

   /* ==========================================================================
   SUBMENUS (Level 1, 2, 3...)
   ========================================================================== */

   /* Common Submenu Styles */
   .sections.nav-sections .navigation ul {
       list-style: none;
       padding: 0 0 40px 0;
       margin: 0;
   }

   .sections.nav-sections .navigation ul .submenu li>a span {
       font-weight: 400;
   }


   .navigation .level0.active>a:not(.ui-state-active),
   .navigation .level0.has-active>a:not(.ui-state-active) {
       border-color: transparent;
   }


   .sections.nav-sections .navigation ul .submenu li.parent>a span,
   .sections.nav-sections .navigation ul .submenu li.has-children>a span,
   .sections.nav-sections .navigation>ul>li>.submenu>li>a {
       font-weight: 600 !important;
   }


   .sections.nav-sections .navigation>ul>li>.submenu>li>ul>li>a {
       font-weight: 700 !important;
   }

   .sections.nav-sections .navigation>ul>li>.submenu>li>ul>li>ul>li>a span {
       font-weight: 400;
   }

   /* Reset Submenu Container */
   .sections.nav-sections .navigation>ul>li .submenu {
       margin: 0;
       padding: 5px 0 15px 0;
       border: none;
       background: transparent !important;
       position: static !important;
       /* Override JS inline styles */
       width: 100% !important;
       box-shadow: none !important;
       top: auto !important;
       left: auto !important;
       min-width: unset !important;
   }

   /* Ensure Level 1+ submenus are also static/accordion */
   .sections.nav-sections .navigation ul .submenu {
       position: static !important;
       display: none;
       /* Hidden by default */
       box-shadow: none !important;
       border: none !important;
   }

   /* Show when parent is open */
   .sections.nav-sections .navigation ul li.is-open>.submenu,
   .sections.nav-sections .navigation ul li.active>.submenu {
       display: block !important;
   }

   /* ALL Submenu Items (Level 1+) - Default Style with Blue Dot */
   .sections.nav-sections .navigation ul .submenu li>a {
       color: #111321;
       font-size: 14px;
       font-weight: 400;
       /* Default normal weight */
       text-decoration: none;
       display: flex;
       /* Changed to flex for chevron alignment */
       justify-content: space-between;
       align-items: center;
       padding: 8px 15px 8px 30px;
       /* Indent for dot, padding right for chevron */
       transition: all 0.2s ease;
       position: relative;
       text-transform: capitalize;
       /* Title Case for subitems */
   }

   /* The Blue Dot for ALL submenu items */
   /* .sections.nav-sections .navigation ul .submenu li > a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 21, 139, 0.4);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
} */

   /* Hover State for Submenu Items */
   .sections.nav-sections .navigation ul .submenu li>a:hover {
       color: #00158B;
       background-color: rgba(0, 21, 139, 0.03);
   }

   .sections.nav-sections .navigation ul .submenu li>a:hover::before {
       background: #00158B;
       /* Dark Blue on hover */
   }

   /* Categories with Children (Level 1+ Parents) -> BOLD & Chevron */
   .sections.nav-sections .navigation ul .submenu li.parent>a,
   .sections.nav-sections .navigation ul .submenu li.has-children>a {
       font-weight: 700 !important;
   }

   /* Chevron for Submenu Parents */
   .sections.nav-sections .navigation ul .submenu li.parent>a::after,
   .sections.nav-sections .navigation ul .submenu li.has-children>a::after {
       content: '';
       display: inline-block;
       width: 6px;
       height: 6px;
       border-right: 1.5px solid #111321;
       /* Slightly thinner than Level 0 */
       border-bottom: 1.5px solid #111321;
       transform: rotate(45deg);
       transition: transform 0.25s ease;
       margin-left: 10px;
   }

   /* Rotate Chevron when Open */
   .sections.nav-sections .navigation ul .submenu li.is-open>a::after {
       transform: rotate(-135deg);
       margin-top: 2px;
       /* slight adjust */
   }

   /* Specific Indentation for Hierarchy */

   /* Level 1 (Direct children of Main Category) */
   .sections.nav-sections .navigation>ul>li>.submenu>li>a {
       padding-left: 30px;
   }

   .sections.nav-sections .navigation>ul>li>.submenu>li>a::before {
       left: 12px;
   }

   /* Level 2 (Grandchildren) */
   /* .sections.nav-sections .navigation>ul>li>.submenu>li>ul>li>a {
       padding-left: 50px;
   } */

   .sections.nav-sections .navigation>ul>li>.submenu>li>ul>li>a::before {
       left: 32px;
   }

   /* Level 3 (Great-grandchildren) */
   .sections.nav-sections .navigation>ul>li>.submenu>li>ul>li>ul>li>a {
       padding-left: 70px;
   }

   .sections.nav-sections .navigation>ul>li>.submenu>li>ul>li>ul>li>a::before {
       left: 52px;
   }

   /* Hide default Magento icons/before/after elements in submenus to prevent conflicts */
   .sections.nav-sections .navigation .submenu li>a::after {
       display: none !important;
   }

   /* Ensure no legacy background icons on anchors */
   .sections.nav-sections .navigation a.plus,
   .sections.nav-sections .navigation a.minus,
   .sections.nav-sections .navigation a.ui-menu-item-wrapper {
       background: transparent !important;
   }

   .sections.nav-sections .navigation .ui-menu-icon {
       display: none !important;
   }

   /* Remove default background hover from main LIs */
   .sections.nav-sections .navigation>ul>li:hover,
   .sections.nav-sections .navigation>ul>li.is-open {
       background: transparent;
   }

   /* Restoring Box Shadow for Desktop Slide-out */
   .nav-sections {
       box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
       /* Soft shadow */
   }

   /* Ensure indentation for hierarchy */
   .sections.nav-sections .navigation ul {
       padding-left: 0;
   }

   .sections.nav-sections .navigation .submenu {
       margin-left: 0;
   }

   .header-quicknav {
       background: #262F61;
       padding: 0 0 0 40px;
       display: flex;
       justify-content: space-between;
       align-items: center;
       gap: 20px;
       color: #fff;
       box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
   }

   .header-quicknav .quicknav-left {
       display: flex;
       align-items: center;
       gap: 16px;
       flex: 1;
   }

   .header-quicknav .nav-trigger {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       border: none;
       background: transparent;
       color: #fff;
       padding: 8px 18px 8px 0;
       border-radius: 999px;
       cursor: pointer;
       font-weight: 600;
       font-size: 14px;
   }

   .header-quicknav .hamburger {
       width: 18px;
       height: 12px;
       position: relative;
       display: inline-flex;
       flex-direction: column;
       justify-content: space-between;
   }

   .header-quicknav .hamburger span {
       display: block;
       height: 2px;
       width: 100%;
       background: currentColor;
       border-radius: 999px;
   }

   .quicknav-scroll {
       display: flex;
       gap: 20px;
       overflow-x: auto;
       scrollbar-width: none;
   }

   .quicknav-scroll a {
       font-size: 13px;
       font-weight: 500;
       font-family: 'DM Sans';
       color: #fff;
   }

   .quicknav-scroll::-webkit-scrollbar {
       display: none;
   }

   .quicknav-link {
       background: transparent;
       border: none;
       color: rgba(255, 255, 255, 0.85);
       padding: 6px 14px;
       border-radius: 999px;
       cursor: pointer;
       font-size: 14px;
       transition: background 0.2s ease, color 0.2s ease;
   }

   .quicknav-link:hover {
       background: transparent;
       color: #fff;
       text-decoration: none;
   }

   .header-quicknav .quicknav-right {
       display: flex;
       align-items: center;
       gap: 30px;
   }

   .pill {
       padding: 6px 18px;
       font-weight: 700;
       cursor: pointer;
       font-size: 13px;
   }

   .pill-organics {
       background: #36744E;
       border-radius: 7px;
       color: #fff !important;
       border: 1px solid #589670;
       text-decoration: none;
       display: flex;
       gap: 10px;
       align-items: center;
   }

   .pill-b2b {
       background: url(../images/b2b-bg.png);
       color: #fff !important;
       padding: 15px 35px 15px 55px;
       background-size: 100%;
       background-repeat: no-repeat;
   }

   .nav-sections-overlay {
       position: fixed;
       top: 0;
       left: 0;
       width: 100vw;
       height: 100vh;
       background: rgba(0, 0, 0, 0.5);
       z-index: 9998;
       opacity: 0;
       visibility: hidden;
       transition: opacity 0.3s ease, visibility 0.3s ease;
   }

   .nav-sections-overlay.is-visible {
       opacity: 1;
       visibility: visible;
   }

   .nav-sections {
       position: fixed;
       top: 0;
       left: 0;
       width: 340px;
       height: 100vh;
       background: #ffffff;
       z-index: 9999;
       overflow-y: auto;
       overflow-x: hidden;
       transform: translateX(-100%);
       transition: transform 0.3s ease, opacity 0.3s ease;
       opacity: 0;
       pointer-events: none;
       box-shadow: none;
   }

   .nav-sections.nav-sections--active {
       opacity: 1;
       pointer-events: auto;
       transform: translateX(0) !important;
       z-index: 9999;
   }

   .section-item-content .menu-container .menu>ul>li>a {
       color: #070b1d !important;
   }

   .section-item-content .menu-container .menu.horizontal.center>ul>li {
       display: block !important;
       text-align: left;
       box-sizing: border-box;
   }

   .section-item-content .menu-container .menu .product-menu>ul {
       display: block;
   }

   /* --- Mega menu dropdown to simple list (no HTML changes) --- */
   .menu.horizontal.center .md-top-menu-items {
       display: flex !important;
       flex-direction: column !important;
       gap: 0 !important;
       padding: 0 !important;
       margin: 0 !important;
   }

   .menu.horizontal.center .md-top-menu-items>li {
       display: block !important;
       width: 100% !important;
       padding: 14px 20px !important;
       border-bottom: 1px solid rgba(12, 17, 51, 0.08) !important;
       background: #ffffff !important;
       margin: 0 !important;
       position: relative !important;
   }

   .menu.horizontal.center .md-top-menu-items>li:last-child {
       border-bottom: none !important;
   }

   .menu.horizontal.center .md-top-menu-items>li>a {
       display: flex !important;
       justify-content: space-between !important;
       align-items: center !important;
       font-weight: 700 !important;
       color: #111321 !important;
       font-size: 16px !important;
       text-transform: uppercase !important;
       letter-spacing: 0.02em !important;
       text-decoration: none !important;
       padding: 0 !important;
       margin: 0 !important;
   }

   .section-item-content .menu-container .menu>ul>li.menu-dropdown-icon>a:before {
       display: none;
   }

   .section-item-content .menu-container .menu>ul>li.menu-dropdown-icon>a:after {
       content: "+";
       font-size: 20px;
       font-weight: 400;
       font-family: 'DM Sans';
       margin: 2px 0px 0 12px;
       color: #333;
       line-height: 18px;
       float: right;
       transition: transform 0.25s ease, opacity 0.25s ease;
   }

   .section-item-content .menu-container .menu>ul>li.menu-dropdown-icon.is-open>a:after {
       content: "-";
       transform: none;
       opacity: 1;
   }

   /* Also add plus/minus to top-level menu items in the main navigation */
   .menu.horizontal.center .md-top-menu-items>li.menu-dropdown-icon>a:after {
       content: "+";
       font-size: 20px;
       font-weight: 400;
       font-family: 'DM Sans';
       margin: 2px 0px 0 12px;
       color: #333;
       line-height: 18px;
       float: right;
       transition: transform 0.25s ease, opacity 0.25s ease;
   }

   .menu.horizontal.center .md-top-menu-items>li.menu-dropdown-icon.is-open>a:after {
       content: "-";
       transform: none;
       opacity: 1;
   }

   .menu.horizontal.center .md-top-menu-items>li>a .megaitemicons {
       display: none !important;
   }

   .menu.horizontal.center .md-top-menu-items>li .plus {
       display: inline-block !important;
       font-size: 18px !important;
       font-weight: 400 !important;
       color: #1a1f33 !important;
       transition: transform 0.25s ease, color 0.25s ease !important;
       margin-left: 14px !important;
   }

   .menu.horizontal.center .md-top-menu-items>li.is-open .plus {
       transform: rotate(0) !important;
   }

   .menu.horizontal.center .md-top-menu-items>li .animated {
       display: none !important;
   }

   .menu.horizontal.center .md-top-menu-items>li.is-open .animated {
       display: block !important;
       position: static !important;
       width: 100% !important;
       background: transparent !important;
       box-shadow: none !important;
       padding: 0 !important;
       margin-top: 12px !important;
       border: none !important;
       animation: none !important;
   }

   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .column4,
   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .column2,
   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .column3,
   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .column0 {
       display: block !important;
       width: 100% !important;
       padding: 0 !important;
       margin: 0 !important;
   }

   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .category-item {
       display: block !important;
       width: 100% !important;
       /* padding: 8px 0 8px 16px !important; */
       border: none !important;
       background: transparent !important;
       margin: 0 !important;
   }

   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .category-item a {
       color: #4a4f63 !important;
       font-size: 14px !important;
       font-weight: 500 !important;
       text-decoration: none !important;
       text-transform: none !important;
       letter-spacing: 0.01em !important;
   }

   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .category-item a:hover {
       color: #111321 !important;
   }

   /* .menu.horizontal.center .md-top-menu-items > li.is-open .animated .md-hv-right {
    display: none !important;
} */

   .section-item-content .menu-container .menu>ul>li ul.child-level-2 {
       margin-top: 10px;
       gap: 7px;
   }

   .section-item-content .menu-container .menu>ul>li ul.child-level-2 li {
       margin-left: 10px;
   }

   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .megaStaticBlock.menu-sidebar-right {
       display: none !important;
   }

   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .vertical-menu-left,
   .menu.horizontal.center .md-top-menu-items>li.is-open .animated .vertical-menu-content {
       display: none !important;
   }

   /* Ensure submenu UL is visible when parent is clicked */
   .menu.horizontal.center .md-top-menu-items>li.is-open>ul.animated {
       display: block !important;
       position: static !important;
       width: 100% !important;
       background: transparent !important;
       box-shadow: none !important;
       padding: 0 !important;
       margin-top: 12px !important;
       border: none !important;
       animation: none !important;
   }

   /* Submenu accordion transitions */
   .section-item-content .menu-container .menu>ul>li>ul {
       max-height: 0;
       overflow: hidden;
       transition: max-height 0.4s ease, opacity 0.4s ease;
       opacity: 0;
   }

   .section-item-content .menu-container .menu>ul>li.is-open>ul {
       max-height: 600px;
       opacity: 1;
   }

   /* Hide scrollbar for submenus */
   .section-item-content .menu-container .menu>ul>li>ul::-webkit-scrollbar {
       display: none;
   }

   .section-item-content .menu-container .menu>ul>li>ul {
       -ms-overflow-style: none;
       scrollbar-width: none;
   }

   .section-item-content .menu-container .menu>ul>li span.plus:before {
       color: #333 !important;
   }

   .wishlist {
       position: static !important;
       list-style: none;
       display: flex;
       margin-left: 13px;
   }

   .wishlist a {
       font-size: 0;
       position: relative;
       display: inline-block
   }

   .wishlist a::before {
       content: "";
       display: block;
       width: 28px;
       height: 28px;
       background: url('../images/wishlist.png') no-repeat center;
       background-size: contain;
   }

   span.counter.qty {
       position: absolute;
       top: -8px;
       right: -8px;
       background: var(--jackys-red);
       color: #fff;
       font-size: 10px;
       width: 16px;
       height: 16px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
   }



   li.link.authorization-link {
       list-style: none;
   }

   /* Icons styling */
   .right-header-section img,
   .right-header-section .action.showcart::before,
   .right-header-section .wishlist img,
   .right-header-section .authorization-link a::before {
       width: 28px;
       height: 28px;
   }


   .right-header-section .action.showcart::before,
   .right-header-section .wishlist img {
       width: 28px;
       height: 28px;
   }

   /* Store Locator */
   .store-locator-link img {
       filter: brightness(0) invert(1);
   }

   /* Account / Sign In */
   .right-header-section .authorization-link a::before,
   .right-header-section .customer-dropdown a::before {
       content: "";
       background: url('../images/user.png') no-repeat center;
       background-size: contain;
       filter: brightness(0) invert(1);
       width: 28px;
       height: 28px;
   }

   .block-search .label.active+.control input {
       box-shadow: none;
   }

   .minicart-wrapper .action.showcart .counter.qty {
       position: absolute;
       top: -8px;
       right: -8px;
       background: var(--jackys-red);
       color: #fff;
       font-size: 10px;
       width: 16px;
       height: 16px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       padding: 0;
       margin: 0;
       min-width: 16px;
   }

   .minicart-wrapper .action.showcart.active:before {
       font-size: 0;
   }

   .right-header-section:has(.customer-greeting) .store-locator-link {
       order: 1;
   }

   .right-header-section:has(.customer-greeting) .wishlist {
       order: 3;
   }

   .right-header-section:has(.customer-greeting) .header-customer-wrapper {
       order: 2;
   }

   .right-header-section:has(.customer-greeting) .minicart-wrapper {
       order: 4;
   }


   /* Wishlist */
   .right-header-section .wish-list-link a::before {
       content: "";
       width: 22px;
       height: 22px;
       display: inline-block;
       background: url('../images/wishlist.png') no-repeat center;
       background-size: contain;
       filter: brightness(0) invert(1);
   }

   .right-header-section .wish-list-link {
       display: flex;
       align-items: center;
   }

   .right-header-section .wish-list-link a span {
       display: none;
   }

   /* Hide text, show only icon like screenshot */

   /* Separator between Store Locator and Login */
   .store-locator-link {
       position: relative;
       padding-right: 25px;
   }

   .store-locator-link::after {
       content: "|";
       position: absolute;
       right: 0;
       color: rgba(255, 255, 255, 0.3);
       top: 50%;
       transform: translateY(-50%);
   }

   /* Cart */
   .right-header-section .minicart-wrapper {
       margin-top: 0;
   }

   .right-header-section .action.showcart {
       background: transparent;
       border: none;
       color: transparent;
       /* hide text */
       padding: 0;
       display: block;
       position: relative;
   }

   .right-header-section .action.showcart::before {
       content: "";
       display: block;
       background: url('../images/cart.png') no-repeat center;
       background-size: contain;
       filter: brightness(0) invert(1);
   }

   .right-header-section .action.showcart .counter {
       position: absolute;
       top: -8px;
       right: -8px;
       background: var(--jackys-red);
       color: #fff;
       font-size: 10px;
       width: 16px;
       height: 16px;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
   }

   /* Responsive adjustments */
   @media (max-width: 1024px) {
       .custom-header {
           padding: 20px 10px 15px 10px;
       }

       .left-header-section .block-search {
           flex: 1;
       }

       .shop-categories .container {
           overflow: hidden;
       }
   }

   @media (max-width: 768px) {

       .action.nav-close {
           right: 20px;
       }

       .navigation .submenu:not(:first-child) .active>a {
           border-color: transparent;
       }

       .sections.nav-sections .navigation>ul>li.level0>a {
           padding: 14px 20px !important;
       }

       .navigation .parent .level-top:after {
           top: 15px;
           right: 25px;
       }

       .sections.nav-sections .navigation {
           padding: 0 !important;
       }

       .nav-sections-item-content .category-item span {
           color: #000;
       }

       /* .sections.nav-sections .navigation>ul>li .submenu li a{
        padding-left: 25px;
    } */

       .nav-sections-item-content {
           margin-top: 0;
       }

       .sections.nav-sections {
           padding: 0;
       }

       .sections.nav-sections .navigation>ul>li {
           border: 0;
           padding: 0;
       }

       .sections.nav-sections .navigation>ul>li:hover {
           background: transparent;
       }

       .sections.nav-sections .navigation>ul {
           gap: 0;
       }

       .sections.nav-sections .navigation>ul>li>a {
           box-sizing: border-box;
           justify-content: flex-start;
       }

       /* .sections.nav-sections .navigation {
        padding: 0 10px;
    } */


       .navigation .level0>.level-top:hover {
           justify-content: flex-start;
       }

       .sections.nav-sections .nav-sections-item-title {
           display: none !important;
       }

       .left-header-section .block-search {
           position: relative;
           z-index: 9;
       }

       .jacky-footer {
           overflow: hidden;
       }

       .left-header-section .block-search input {
           font-size: 13px;
           font-weight: 400;
       }


       .left-header-section .block-search .minisearch .actions {
           position: absolute;
           right: 10px;
           top: 0;
           z-index: 1;
           height: 41px;
       }

       .left-header-section .block-search .label {
           display: none;
       }

       .left-header-section {
           display: grid;
           grid-template-columns: auto 1fr;
           /* Toggle + Logo */
           align-items: center;
           gap: 10px;
       }

       /* Search full width second row */
       .left-header-section .block-search {
           grid-column: 1 / -1;
           /* full width */
           margin-top: 8px;
       }

       .nav-toggle {
           position: static;
       }

       .right-header-section .store-locator-link,
       .right-header-section .authorization-link {
           display: none;
       }

       .left-header-section .block-search {
           order: 3;
           /* push to next position */
           flex: 0 0 100%;
           /* take full width */
           max-width: 100%;
           margin: 10px 0 0;
       }

       .left-header-section .block-search .action.search span {
           display: none;
       }

       .left-header-section .block-search .minisearch {
           position: relative;
       }

       .left-header-section .block-search .minisearch {
           position: relative;
       }

       .left-header-section .block-search input {
           position: static;
       }

       .left-header-section .block-search .label {
           position: absolute;
           right: 0;
           top: 5px;
       }

       .nav-toggle:hover:before {
           color: var(--white);
       }

       .nav-toggle:before {
           font-size: 38px;
       }

       .right-header-section {
           border: 0;
           position: absolute;
           top: 20px;
           right: 20px;
           width: 80px !important;
           order: 1;
           gap: 8px;
           border: 0 !important;
       }

       .right-header-section .wishlist a::before {
           width: 26px;
           height: 26px;
       }

       .right-header-section .action.showcart::before {
           width: 28px;
           height: 28px;
       }

       .left-header-section .block-search .action.search {
           opacity: 1 !important;
       }



       .left-header-section .logo {
           margin: 0;
           padding: 0;
       }

       .right-header-section:has(.customer-greeting) .header-customer-wrapper .customer-greeting {
           display: none;
       }

       .menu.horizontal.center .md-top-menu-items>li .plus {
           display: none !important;
       }

       .left-header-section .logo img {
           height: 40px;
           object-fit: contain;
           width: 75%;
       }

       .left-header-section .block-search .control {
           margin: 0 !important;
       }

       .header-quicknav {
           display: none;
       }

       .custom-header {
           flex-direction: column;
           gap: 10px;
       }

       .left-header-section {
           width: 100%;
           justify-content: space-between;
       }

       .right-header-section {
           width: 100%;
           justify-content: space-around;
           padding-top: 5px;
           border-top: 1px solid rgba(255, 255, 255, 0.1);
           /* order: 1; */
       }

       .store-locator-link::after {
           display: none;
       }

       /* Mobile Navigation Toggle Styles - Restore Original Icon */
       .action.nav-toggle {
           display: block !important;
           position: static;
           /* width: 24px;
        height: 24px; */
           background: transparent;
           border: none;
           cursor: pointer;
           z-index: 10001;
           left: initial;
           top: initial;
       }

       .nav-toggle:before {
           font-size: 26px;
           color: var(--bg-white)
       }

       .sections.nav-sections .section-item-content,
       .sections.nav-sections .nav-sections-item-content {
           padding-top: 40px;
       }

       /* Ensure nav sections are visible when active */
       html.nav-open .nav-sections {
           transform: translateX(0) !important;
           opacity: 1 !important;
           pointer-events: auto !important;
           padding: 0;
       }

       html.nav-open .nav-sections-overlay {
           opacity: 1 !important;
           visibility: visible !important;
           z-index: 9998 !important;
       }

       /* Fix overlay z-index to be below sidebar */
       .nav-sections-overlay {
           z-index: 9998 !important;
       }

       /* Ensure sidebar is above overlay */
       .nav-sections {
           z-index: 9999 !important;
       }

       /* Prevent body scroll when nav is open */
       html.nav-open {
           overflow: hidden;
       }

       /* Ensure menu items are visible */
       .nav-sections--active .section-item-content {
           display: block !important;
       }

       .nav-sections--active .menu-container {
           display: block !important;
       }

       .nav-sections--active .menu {
           display: block !important;
       }

       .nav-sections--active .menu.horizontal.center {
           display: block !important;
       }

       .nav-sections--active .menu.horizontal.center .md-top-menu-items {
           display: block !important;
       }

       .nav-sections--active .menu.horizontal.center .md-top-menu-items>li {
           display: block !important;
       }
   }


   @media (min-width: 1025px) and (max-width: 1200px){
    .quicknav-scroll a:last-child,
    .quicknav-scroll a:nth-last-child(2),
    .quicknav-scroll a:nth-last-child(3){
        display: none;
    }
   }    