
  /* Kill JS render flash — force correct position before scripts load */
  .easy-header-container {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
  }
  .shopify-banner {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
  }
  .megamenu.resources-megamenu.feature {
    left: 368%;
    /* width: max-content; */
        padding-bottom: 32px;
}

/*======= feature hub css =====*/
.res-overview-col.feature-hub {
    flex: 0 780px!important;
}

.feature-hub-row {
    display: flex!important;
}

/*============ new Alternative app menu =====*/

.megamenu.apps-megamenu.app-alternative {
    width: max-content;
    left: 98%;
    padding: 30px;
}

.megamenu.apps-megamenu.app-alternative .apps-grid-container {
    grid-template-columns: repeat(1, 1fr);
    flex: max-content;
}
.megamenu.apps-megamenu.app-alternative .app-card {
    padding: 0!important;
    border: none!important;
    background: none!important;
    box-shadow: none!important;
    height: auto!important;
    gap: 5px;
}
.megamenu.apps-megamenu.app-alternative .app-card-icon img {
    width: 45px;
    height: 45px;
}



/* ========== GOOGLE FONTS ========== */
/*@import url('https://fonts.googleapis.com/css2?family=Gilory:wght@400;500;600;700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Montserrat:wght@600&family=Poppins:wght@400;500;600;700&family=Urbanist:wght@400;500;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');*/


/* ========== RESET & BASE ========== */
* { box-sizing: border-box; }
body { position: relative; margin: 0; padding: 0; }
/* Prevent any inherited slide/transform on banner */
.shopify-banner,
.shopify-banner * {
  animation: none !important;
  transform: none !important;
  transition: none !important;
}

/* Re-allow only the transitions you actually want */
.shopify-banner__cta,.shopify-banner__cta:hover,.shopify-banner__cta:focus,.shopify-banner__cta:active {
  transition: background 0.2s ease !important;
}.easy-header-container,
.shopify-banner {
  opacity: 1 !important;
  transform: translateX(0) !important;
  animation: none !important;
}
/* ========== HEADER CONTAINER ========== */
.easy-header-container {
      position: sticky;
  top: 64px; /* banner height — adjust if banner wraps to 2 lines on tablet */
  z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 154px;
    background: #FCF9FF;
    border-bottom: 1px solid #CBD5E1;
   
    height: auto;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    outline: none;
}

/* ========== LOGO SECTION ========== */
.easy-header-logo { flex: 0 0 auto; }
.easy-header-logo a { display: block; line-height: 0; }
.easy-header-logo img { height: 41px; width: 114px; display: block; }

/* ========== NAVIGATION WRAPPER ========== */
.easy-nav-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
}

/* ========== MAIN NAVIGATION ========== */
.easy-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    position: relative;
    align-items: stretch;
}

.easy-nav > li {
    position: relative;
    display: flex;
    align-items: stretch;
    margin: 0;
}

.easy-nav > li.has-megamenu { position: static; }

.easy-nav > li > a {
    display: flex;
    align-items: center;
    color: #475569 !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    font-family: Gilroy, sans-serif;
    padding: 32px 16px;
    line-height: 1;
    height: auto;
    transition: background 0.25s ease, color 0.25s ease, font-weight 0.1s, border-bottom-color 0.25s ease;
    background: transparent;
    border: 0;
    border-bottom: 4px solid transparent;
    text-transform: none;
    white-space: nowrap;
    margin-bottom: -1px;
    gap: 6px;
}

.easy-nav > li > a:hover,
.easy-nav > li:hover > a {
    background: #EDE9FE !important;
    color: #7C3AED !important;
    font-weight: 700;
    border-bottom: 4px solid #6D28D9 !important;
}

.easy-nav > li.active > a {
    background: #EDE9FE;
    color: #7C3AED;
    font-weight: 700;
    border-bottom: 4px solid #6D28D9;
}

/* ========== DROPDOWN INDICATOR ========== */
.dropdown-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.dropdown-indicator svg {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}
.easy-nav > li:hover .dropdown-indicator svg {
    transform: rotate(180deg);
}

/* ========== MEGA MENU (SMOOTH TRANSITION) ========== */
.megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 1200px;
    max-width: calc(100vw - 80px);
    margin: 0;
    background: #fbf8ff;
    border: 1px solid #D7B9FF;
    border-radius: 8px;
    box-shadow: 0px 5px 24px 0px #9D9D9D40;
    padding: 32px 32px 0 32px;
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.easy-nav > li:hover .megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.megamenu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

/* ========== MEGA MENU GRID ========== */
.megamenu-row { display: flex; gap: 24px; width: 100%; }
.megamenu-col { flex: 1; min-width: 0; }
.megamenu-col.col-4 { flex: 0 0 calc(25% - 15px); }

/* ========== SUBSCRIPTIONS MEGA MENU ========== */
.subs-megamenu {
    padding: 32px 32px 0 32px;
    width: 680px;
    left: 0;
    transform: translateX(0) translateY(6px);
}
.easy-nav > li:hover .subs-megamenu {
    transform: translateX(0) translateY(0);
}

.subs-features-section { width: 100%; }
.subs-features-label {
    font-family: Gilroy, sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.subs-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.subs-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    color: #2F2F2F;
}
.subs-feature-item:hover {
    background: #EDE9FE;
}

.subs-feature-icon svg {
    width: 22px;
    height: 22px;
}
.subs-feature-name {
    font-family: Gilroy, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}
.subs-feature-item:hover .subs-feature-name {
    color: #7C3AED;
}

.subs-explore-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease;
    color: #7C3AED;
    grid-column: span 1;
}
.subs-explore-item:hover { background: #EDE9FE; }
.subs-explore-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #7C3AED;
    border-radius: 50%;
}
.subs-explore-icon svg { width: 14px; height: 14px; }
.subs-explore-name {
    font-family: Gilroy, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #7C3AED;
}

.subs-bottom-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; margin-top: 20px; border-top: 1px solid #EAEAF0;
}
.subs-bottom-left { display: flex; align-items: center; gap: 10px; }
.subs-bottom-icon {
    width: 32px; height: 32px; background: #7C3AED; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; display: none;
}
.subs-bottom-icon svg { width: 16px; height: 16px; }
.subs-bottom-text { font-family: Gilroy, sans-serif; font-size: 14px; font-weight:700; color: #2F2F2F; }
.subs-bottom-text span { color: #7F7F7F; }
.subs-bottom-cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 24px; background: #7C3AED; border-radius: 39px;
    font-family: Gilroy, sans-serif; font-size: 14px; font-weight: 500;
    color: white; text-decoration: none;
    transition: background 0.2s ease; white-space: nowrap;
}
.subs-bottom-cta:hover {     background: #7C3AED; color: white; }

/* ========== RESOURCES MEGA MENU ========== */
.resources-megamenu { padding: 32px 32px 0 32px; }
.resources-megamenu .megamenu-row { align-items: stretch; gap: 24px; }

.industries-megamenu { padding: 32px 32px 0 32px; }
.industries-megamenu .megamenu-row { align-items: stretch; gap: 24px; }
.megamenu.industries-megamenu {
    transform: translateX(-35%) translateY(0) !important;
    padding-bottom: 32px;
}

.res-overview-col { flex: 0 0 410px; min-width: 0; }
.res-overview-panel {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #F2F2F2;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.res-overview-heading { font-family:  "Newsreader", serif; font-size: 18px; font-weight: 700; color: #7C3AED; margin: 0; line-height: 1.2; }
.res-overview-list { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; flex: 1; }
.res-overview-list li { margin: 0; }
.res-overview-link {
    display: flex;
    align-items: center;
        justify-content: flex-start;
    padding: 14px 10px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s ease;
    gap: 8px;
    /*background: #ede9fe;*/
    /*background: #F5F3FF;*/
}
a.res-overview-link.feature {
    /*padding-bottom: 0px;*/
}
/*.megamenu.resources-megamenu.feature {*/
/*        background-image: url("https://easysubscription.io/wp-content/uploads/2026/07/image-5.png");*/
/*    background-repeat: repeat;*/
/*    background-position: top left;*/
/* or remove this line */
/*}*/
.res-overview-col.feature-hub .feature-hub-row > ul.res-overview-list:first-of-type {
    border-right: 1px solid #e7e7e787;
    margin-right: 40px;
}
a.res-overview-link.feature .subs-feature-icon {
    box-shadow: 0 1.67px 2.5px rgba(214, 214, 232, 0.24);
    border: 0.52px solid #F1F2F9;
    background: linear-gradient(180deg, #FFFFFF 0%, #EDECFF 100%);
    padding: 15px 15px 5px;
    border-radius: 6.67px;

}

.res-overview-link:hover { background: #FCF9FF; }
.res-overview-link-text { font-family: Gilroy, sans-serif; font-size: 16px; font-weight: 500; color: #2F2F2F; transition: color 0.2s; }
.res-overview-link:hover .res-overview-link-text { color: black; }
.res-overview-chevron { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #2F2F2F; transition: color 0.2s; }
.res-overview-link:hover .res-overview-chevron { color: #7C3AED; }
.res-overview-chevron svg { width: 8px; height: 14px; }

.res-cards-col { flex: 1; display: flex; gap: 24px; }
.res-demo-card { flex: 1; display: flex; flex-direction: column; gap: 12px; text-decoration: none; }
.res-demo-card-image { width: 100%; height: 180px; border-radius: 10px;  display: block; position: relative; }
.res-demo-card-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; transition: transform 0.3s ease; }
.res-demo-card:hover .res-demo-card-image img { transform: scale(1.04); }
.res-demo-card-body { display: flex; flex-direction: column;gap: 5px;margin-top: 10px;}
.res-demo-card-title { font-family:  "Newsreader", serif; font-size: 18px; font-weight: 400; color: black; line-height: 1.2; }
.res-demo-card-subtitle { font-family: Gilroy, sans-serif; font-size: 16px; font-weight: 400; color: #4F4F4F; line-height: 1.4; }
.res-demo-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #7C3AED;
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s ease;
}
.res-demo-card-cta:hover, .res-demo-card-cta:focus { gap: 8px; color: #7C3AED !important; }
.res-demo-card-cta svg { width: 16px; height: 16px; transition: transform 0.2s ease; }
.res-demo-card-cta:hover svg { transform: translateX(3px); }

/* ---- BOTTOM BAR ---- */
.resources-bottom-bar, .apps-bottom-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 0; margin-top: 24px; border-top: 1px solid #EAEAF0;
}
.res-bottom-left, .apps-bottom-left { display: flex; align-items: center; gap: 10px; }
.res-bottom-icon, .apps-bottom-icon {
    width: 32px; height: 32px; background: #7C3AED; border-radius: 50%; display: none;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.res-bottom-icon svg, .apps-bottom-icon svg { width: 16px; height: 16px; }
.res-bottom-text, .apps-bottom-text { font-family: Gilroy, sans-serif; font-size: 14px;  font-weight:700; color: #2F2F2F; }
.res-bottom-text span, .apps-bottom-text span { color: #7F7F7F; }
.res-bottom-cta, .apps-bottom-cta {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 24px; background: #7C3AED; border-radius: 39px;
    font-family: Gilroy, sans-serif; font-size: 14px; font-weight: 500;
    color: white; text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease; white-space: nowrap;
}


.res-bottom-cta:hover, .apps-bottom-cta:hover {     background: #7C3AED; color: white; }

/* ========== APPS MEGA MENU ========== */
.apps-megamenu { padding: 32px 32px 0 32px; }
.apps-megamenu .megamenu-row { gap: 24px; align-items: stretch; }
.apps-grid-container { flex: 0 0 calc(58% - 12px); display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-content: start; align-self: start; }

.app-card {
    background: #FFFFFF; border: 0.97px solid #CBD5E1; border-radius: 10px;
    padding: 15.46px; display: flex; align-items: center; gap: 11.6px;
    text-decoration: none; transition: border-color 0.25s ease, box-shadow 0.25s ease; height: 84px; overflow: hidden;
}
.app-card:hover { border-color: #b9a9e0; box-shadow: 0 3px 12px rgba(109,40,217,0.10); }
.app-card-icon { width: 60px; height: 60px; min-width: 60px; min-height: 60px; flex-shrink: 0; border-radius: 11px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.app-card-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 11px; }
.app-card-content { flex: 1; min-width: 0; }
.app-card-title { font-family: Gilroy, sans-serif;font-weight: 400; font-size: 16px; line-height: 1.2; color: #2F2F2F; margin: 0 0 4px 0; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-card-description { margin: 0; font-family: Gilroy, sans-serif; font-weight: 400; font-size: 14px; line-height: 1.3; color: #4F4F4F; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.apps-demo-col { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.apps-demo-image-wrap { width: 100%; height: 250px; border-radius: 10px; overflow: hidden; position: relative; display: block; flex-shrink: 0; }
.apps-demo-image-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; display: block; transition: transform 0.3s ease; }
.apps-demo-image-wrap:hover img { transform: scale(1.03); }
.apps-demo-cta { display: inline-flex; align-items: center; gap: 6px; font-family: Gilroy, sans-serif; font-size: 16px; font-weight: 500; color: #7C3AED; text-decoration: none; transition: gap 0.2s ease; }
.apps-demo-cta:hover { gap: 10px !important; color: #7C3AED !important; }
.apps-demo-cta svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.apps-demo-cta:hover svg { transform: translateX(3px); }

/* ========== CTA SECTION ========== */
.easy-header-cta { flex: 0 0 auto; }
.easy-header-cta a { display: block; line-height: 0; }
.easy-header-cta img { height: 50px; width: 188px; display: block; object-fit: contain; }

/* ========== MOBILE CTA BUTTON ========== */
.mobile-cta-button { display: none; flex: 0 0 auto; margin-left: 60px; }
.mobile-cta-button a {
    display: inline-block; background: #8a30ff; color: #ffffff;
    font-family: Gilroy, sans-serif; font-size: 14px; font-weight: 600;
    text-decoration: none; padding: 10px 20px; border-radius: 8px;
    transition: all 0.3s ease; white-space: nowrap;
}
.mobile-cta-button a:hover { background: #7229d9; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(138,48,255,0.3); }

/* ========== FIGMA MOBILE TOGGLE BUTTON ========== */
.mobile-toggle {
    display: none !important;
    width: 40px; height: 40px;
    padding: 4px 8px;
    position: relative;
    background: #F5F3FF;
    outline: 0.97px solid #CBD5E1;
    border: none;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    gap: 11.6px;
    transition: background 0.2s ease;
    flex-shrink: 0;
}
.mobile-toggle:hover { background: #EDE9FE; }

/* Corner dots */
.mobile-toggle .corner-dot {
    position: absolute;
    width: 6.65px; height: 6.65px;
}
.mobile-toggle .corner-dot.tl { top: -3px; left: -3px; }
ile-toggle .corner-dot.tl { top: -3px; left: -3px; }
.mobile-toggle .corner-dot.tr { top: -3px; left: 36px; }
.mobile-toggle .corner-dot.bl { top: 36px; left: -3px; }
.mobile-toggle .corner-dot.br { top: 36px; left: 36px; }

/* Inner hamburger icon box */
.mobile-toggle .toggle-icon-box {
    flex: 1 1 0;
    height: 32px;
    padding: 8px;
    overflow: hidden;
    border-radius: 5px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    display: inline-flex;
    width: 100%;
}
.mobile-toggle .toggle-icon-box span {
    display: block;
    width: 21px;
    height: 1.6px;
    background: #475569;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    flex-shrink: 0;
}
.mobile-toggle.is-open .toggle-icon-box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.is-open .toggle-icon-box span:nth-child(2) { opacity: 0; width: 0; }
.mobile-toggle.is-open .toggle-icon-box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
button.mobile-toggle { background: #F5F3FF; }

/* ========== FULL SCREEN SIDEBAR ========== */
.sidebar-overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 100000;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    backdrop-filter: blur(2px);
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 100001;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.sidebar-menu.active { transform: translateX(0); }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px 12px 20px;
    border-bottom: 1px solid #E2E8F0;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
    flex-shrink: 0;
}

.sidebar-logo img { height: 34px; width: auto; display: block; }

.sidebar-close, .sidebar-close:hover, .sidebar-close:focus {
    background: none; border: none; font-size: 28px; line-height: 1;
    cursor: pointer; color: #8a30ff; padding: 0;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease; border-radius: 50%;
}
.sidebar-close:hover { background: #f5f0ff; }

.sidebar-nav { padding: 8px 0; flex: 1; }
.sidebar-nav ul { list-style: none; margin: 0; padding: 0; }
.sidebar-nav ul li { margin: 0; }

.sidebar-nav ul li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    color: #1e293b;
    text-decoration: none;
    font-family: Gilroy, sans-serif;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.sidebar-nav ul li > a:hover { background: #f8f5ff; color: #7C3AED; border-left-color: #7C3AED; }

/* ========== SIDEBAR EXPANDABLE ========== */
.sidebar-nav .menu-item-expandable > a { cursor: pointer; }
.sidebar-nav .expand-arrow-icon {
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform 0.3s ease; flex-shrink: 0;
}
.sidebar-nav .expand-arrow-icon svg { width: 14px; height: 14px; }
.sidebar-nav .menu-item-expandable.is-expanded > a .expand-arrow-icon { transform: rotate(180deg); }
.sidebar-nav .menu-item-expandable.is-expanded > a { background: #f8f5ff; color: #7C3AED; border-left-color: #7C3AED; }

.submenu-panel-wrapper {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f5ff;
}
.submenu-panel-wrapper.is-open { max-height: 3000px; }

.submenu-content-area {
    margin: 10px 12px;
    padding: 14px;
    background: #fbf8ff;
    border: 1px solid #D7B9FF;
    border-radius: 12px;
    box-shadow: 0px 3px 16px 0px #9D9D9D30;
}

/* ========== MOBILE SUBSCRIPTIONS ========== */
.mob-subs-label {
    font-family: Gilroy, sans-serif;
    font-size: 11px; font-weight: 700; color: #94A3B8;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin: 0 0 12px 0;
}
.mob-subs-grid {
    display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px;
}
.mob-subs-feature {
    display: flex !important; align-items: center; gap: 10px;
    padding: 10px 12px !important; border-radius: 8px;
    text-decoration: none; transition: background 0.2s ease;
    color: #1e293b; border-left: none !important;
}
.mob-subs-feature:hover { background: #EDE9FE !important; color: #7C3AED !important; border-left: none !important; }
.mob-subs-feature-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #6D28D9; }
.mob-subs-feature-icon svg { width: 20px; height: 20px; }
.mob-subs-feature-name { font-family: Gilroy, sans-serif; font-size: 14px; font-weight: 600; }

.mob-subs-explore {
    display: flex !important; align-items: center; gap: 10px;
    padding: 10px 12px !important; border-radius: 8px;
    text-decoration: none; background: #EDE9FE;
    color: #7C3AED; border-left: none !important;
    transition: background 0.2s ease;
}
.mob-subs-explore:hover { background: #ddd6fe !important; border-left: none !important; }
.mob-subs-explore-icon { width: 24px; height: 24px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #7C3AED; border-radius: 50%; }
.mob-subs-explore-icon svg { width: 12px; height: 12px; }
.mob-subs-explore-name { font-family: Gilroy, sans-serif; font-size: 14px; font-weight: 600; color: #7C3AED; }

.mob-subs-bottom { background: #fff; border-radius: 10px; padding: 14px; margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.mob-subs-bottom-row { display: flex; align-items: center; gap: 8px; }
.mob-subs-bottom-icon { width: 28px; height: 28px; background: #7C3AED; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mob-subs-bottom-icon svg { width: 13px; height: 13px; fill: white; }
.mob-subs-bottom-text { font-family: Gilroy, sans-serif; font-size: 13px; color: #2F2F2F; }
.mob-subs-bottom-text span { color: #7F7F7F; }
.mob-subs-bottom-btn {
    display: block; text-align: center; background: #7C3AED; color: white;
    padding: 10px 16px; border-radius: 39px; font-family: Gilroy, sans-serif;
    font-size: 14px; font-weight: 500; text-decoration: none; border-left: none !important;
    transition: background 0.2s ease;
}
.mob-subs-bottom-btn:hover { background: #3d38d9 !important; color: white !important; border-left: none !important; }

/* ========== MOBILE RESOURCES ========== */
.mob-res-overview { background: #F5F3FF; border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.mob-res-overview-heading { font-family: Gilroy, sans-serif; font-size: 16px; font-weight: 700; color: #7C3AED; margin: 0 0 12px 0; }
.mob-res-link {
    display: flex !important; align-items: center; justify-content: space-between;
    padding: 11px 10px !important; background: #FCF9FF !important; border-radius: 8px;
    text-decoration: none; margin-bottom: 8px; transition: background 0.2s;
    border-left: none !important; color: inherit !important;
}
.mob-res-link:last-child { margin-bottom: 0; }
.mob-res-link:hover { background: #ede9fe !important; border-left: none !important; }
.mob-res-link-text { font-family: Gilroy, sans-serif; font-size: 15px; font-weight: 500; color: #2F2F2F; }
.mob-res-link-arrow { color: #7C3AED; font-size: 16px; }

.mob-res-demo-card {
    background: #fff; border-radius: 10px; padding: 12px !important; margin-bottom: 12px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.06); text-decoration: none; display: block;
    border-left: none !important; transition: transform 0.2s ease;
}
.mob-res-demo-card:hover { transform: translateY(-1px); background: #fff !important; color: inherit !important; border-left: none !important; }
.mob-res-demo-card:last-child { margin-bottom: 0; }
.mob-res-demo-img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; display: block; margin-bottom: 10px; }
.mob-res-demo-title { font-family: Gilroy, sans-serif; font-size: 15px; font-weight: 600; color: #1e293b; margin-bottom: 2px; }
.mob-res-demo-sub { font-family: Gilroy, sans-serif; font-size: 13px; color: #4F4F4F; margin-bottom: 6px; }
.mob-res-demo-cta { font-family: Gilroy, sans-serif; font-size: 14px; font-weight: 500; color: #7C3AED; display: inline-flex; align-items: center; gap: 4px; }

.mob-res-bottom { background: #fff; border-radius: 10px; padding: 14px; margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.mob-res-bottom-row { display: flex; align-items: center; gap: 8px; }
.mob-res-bottom-icon { width: 28px; height: 28px; background: #7C3AED; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mob-res-bottom-icon svg { width: 13px; height: 13px; fill: white; }
.mob-res-bottom-text { font-family: Gilroy, sans-serif; font-size: 13px; color: #2F2F2F; }
.mob-res-bottom-text span { color: #7F7F7F; }
.mob-res-bottom-btn {
    display: block; text-align: center; background: #7C3AED; color: white;
    padding: 10px 16px; border-radius: 39px; font-family: Gilroy, sans-serif;
    font-size: 14px; font-weight: 500; text-decoration: none; border-left: none !important;
    transition: background 0.2s ease;
}
.mob-res-bottom-btn:hover { background: #3d38d9 !important; color: white !important; border-left: none !important; }

/* ========== MOBILE APPS ========== */
.mob-apps-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.mob-app-card {
    display: flex !important; align-items: center; gap: 12px; padding: 12px !important;
    background: #fff; border-radius: 10px; text-decoration: none;
    border: 0.97px solid #CBD5E1 !important; transition: all 0.2s ease; border-left: 0.97px solid #CBD5E1 !important;
}
.mob-app-card:hover { border-color: #b9a9e0 !important; box-shadow: 0 2px 8px rgba(0,0,0,0.08); background: #fff !important; color: inherit !important; }
.mob-app-card-icon { width: 50px; height: 50px; flex-shrink: 0; border-radius: 10px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.mob-app-card-icon img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; }
.mob-app-card-content .h5 { font-family: 'Urbanist', Gilroy, sans-serif; font-weight: 600; font-size: 14px; color: #1e293b; margin: 0 0 3px 0; line-height: 1.2; }
.mob-app-card-content p { font-family: 'Urbanist', Gilroy, sans-serif; font-size: 12px; color: #4F4F4F; margin: 0; line-height: 1.3; }

.mob-apps-demo { margin-top: 4px; }
.mob-apps-demo a { display: block; border-left: none !important; padding: 0 !important; }
.mob-apps-demo img { width: 100%; border-radius: 10px; display: block; }
.mob-apps-demo-cta {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: Gilroy, sans-serif; font-size: 14px; font-weight: 500;
    color: #7C3AED; text-decoration: none; margin-top: 10px; padding: 0 !important; border-left: none !important;
}
.mob-apps-bottom { background: #fff; border-radius: 10px; padding: 14px; margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.mob-apps-bottom-row { display: flex; align-items: center; gap: 8px; }
.mob-apps-bottom-icon { width: 28px; height: 28px; background: #7C3AED; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mob-apps-bottom-icon svg { width: 13px; height: 13px; fill: white; }
.mob-apps-bottom-text { font-family: Gilroy, sans-serif; font-size: 13px; color: #2F2F2F; }
.mob-apps-bottom-text span { color: #7F7F7F; }
.mob-apps-bottom-btn {
    display: block; text-align: center; background: #7C3AED; color: white;
    padding: 10px 16px; border-radius: 39px; font-family: Gilroy, sans-serif;
    font-size: 14px; font-weight: 500; text-decoration: none; border-left: none !important;
    transition: background 0.2s ease;
}
.mob-apps-bottom-btn:hover { background: #3d38d9 !important; color: white !important; border-left: none !important; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .easy-header-container { padding: 0 40px; }
    .easy-nav > li > a { font-size: 16px; padding: 28px 12px; }
    .easy-header-cta img { height: 44px; width: 166px; }
}

@media (max-width: 1024px) {
    .easy-header-container { padding: 0 24px; height: 70px; }
    .easy-header-logo { order: 1; }
    .easy-header-logo img { height: 38px; width: auto; }
    .easy-header-cta { order: 2; }
    .easy-header-cta img { height: 40px; width: auto; }
    .mobile-toggle { order: 3; }
    .easy-nav-wrapper { display: none; }
    .mobile-toggle { display: inline-flex !important; }
    .mob-res-demo-img{
        height: 370px;
    }
}

@media (max-width: 768px) {
    .easy-header-container { padding: 0 16px; height: 64px; }
    .easy-header-logo img { height: 34px; width: auto; }
    .easy-header-cta { display: none !important; }
    .mobile-cta-button { display: block !important; order: 2; }
    .mobile-toggle { order: 3; }
    .mob-res-demo-img{height: 185px;}
}
#apps-demo-img {
    transition: opacity 0.15s ease;
}
  /* ── Banner wrapper ── */
    .shopify-banner {
     position: sticky;
  top: 0;
  z-index: 100000; /* one above .easy-header-container's 99999 */
  width: 100%;
  min-height: 64px;
  background-color: #8a30ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  overflow: hidden;
    }

    /* ── Inner content row ── */
    .shopify-banner__inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: nowrap;
      text-align: center;
      width: 100%;
      max-width: 1440px;
    }

    /* ── GIF icon ── */
    .shopify-banner__gif {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      object-fit: contain;
    }

    /* ── Banner text ── */
    .shopify-banner__text {
      font-family: 'Gilroy', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: #ffffff;
      line-height: 1.5;
      letter-spacing: 0.01em;
      margin-bottom: 0;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 5px;
      justify-content: center;
    }

    .shopify-banner__text strong {
      font-weight: 700;
    }

    /* Inline SVG inside text */
    .shopify-banner__text svg {
      display: inline-block;
      vertical-align: middle;
      flex-shrink: 0;
      position: relative;
      top: -1px;
    }

    /* dot separator */
    .shopify-banner__sep {
      color: rgba(255,255,255,0.6);
    }

    /* Mobile-only short label – hidden by default */
    .shopify-banner__text-mobile {
      display: none;
    }

    /* ── CTA button ── */
    .shopify-banner__cta,.shopify-banner__cta:hover,.shopify-banner__cta:focus,.shopify-banner__cta:active {
      flex-shrink: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 36px;
      padding: 0 18px;
      background-color: #ffffff;
      color: #8a30ff;
      font-family: 'Gilory', 'Segoe UI', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.01em;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }

    /* ════════════════════════════════
       TABLET ≤ 768px
    ════════════════════════════════ */
    @media (max-width: 768px) {
      .shopify-banner {
        padding: 12px 16px;
      }
      .shopify-banner__text {
        font-size: 13px;
      }
      .shopify-banner__cta {
        font-size: 12px;
        height: 34px;
        padding: 0 14px;
      }
      .shopify-banner__gif {
        width: 22px;
        height: 22px;
      }
    }

    /* ════════════════════════════════
       MOBILE ≤ 480px
       – GIF stays visible
       – Show short label text
       – Hide long desktop text
       – Everything fits in one row
    ════════════════════════════════ */
    @media (max-width: 480px) {
      .shopify-banner {
        padding: 10px 14px;
      }

      .shopify-banner__inner {
        gap: 8px;
        justify-content: space-between;
        flex-wrap: nowrap;
      }

      /* Hide full desktop text only */
      .shopify-banner__text-full {
        display: none;
      }

      /* Show mobile short label */
      .shopify-banner__text-mobile {
        display: inline;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #ffffff;
        white-space: nowrap;
      }

      /* GIF stays — just tighten size a bit */
      .shopify-banner__gif {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
      }

      /* Button stays compact */
      .shopify-banner__cta {
        font-size: 11px;
        height: 32px;
        padding: 0 12px;
        border-radius: 5px;
      }

      /* p tag: no wrap, shrinks to fit */
      .shopify-banner__text {
        flex: 1;
        min-width: 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: hidden;
      }
    }
