/* ==========================================================================
   Astra Child - Header & Navigation Module Stylesheet
   - 100% Astra Customizer Native Compatibility:
     * Respects Customizer "Search Width" slider (Desktop, Tablet, Mobile)
     * Respects Customizer "Icon Size" slider
     * Respects Customizer Colors & Astra Global Variables
   - Mobile Off-canvas Drawer Menu & Greeting Card
   ========================================================================== */

/* ==========================================================================
   1. INLINE PRODUCT SEARCH BAR (CUSTOMIZER COMPATIBLE)
   - Only styles when custom inline search (.ast-inline-search) is active.
   - Leaving Astra default search 100% untouched if custom search is disabled.
   ========================================================================== */
/* Remove Astra hardcoded horizontal padding on below header bar so 100% search width spans edge-to-edge */
.ast-below-header-bar:has(.ast-header-search),
.ast-below-header-wrap:has(.ast-header-search),
.ast-header-break-point #masthead .ast-mobile-header-wrap .ast-below-header-bar,
.ast-header-break-point #masthead .ast-below-header-bar,
#masthead .ast-mobile-header-wrap .ast-below-header-bar,
.ast-mobile-header-wrap .ast-below-header-bar,
.ast-below-header-bar {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 6px !important;
    margin-bottom: 0 !important;
}

.ast-below-header-bar .ast-builder-grid-row,
.ast-mobile-header-wrap .ast-below-header-bar .ast-builder-grid-row {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.ast-below-header-bar .site-header-below-section-center,
.ast-below-header-bar .ast-header-search,
.ast-below-header-bar .ast-search-menu-icon {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Expand Center Column in Header Builder when Search is placed in Center */
.ast-builder-grid-row.ast-grid-center-col-layout:has(.ast-grid-section-center .ast-header-search),
.ast-builder-grid-row:has(.ast-header-search),
.ast-below-header-bar .ast-builder-grid-row {
    grid-template-columns: auto 1fr auto !important;
    width: 100% !important;
}

/* Header Section and Search Container expansion */
.site-header-section:has(.ast-header-search),
.site-header-below-section-center,
.site-header-above-section-center:has(.ast-header-search),
.site-header-primary-section-center:has(.ast-header-search),
.ast-below-header-bar .ast-grid-section-center {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 100% !important;
    justify-content: center !important;
}

.ast-header-search:has(.ast-inline-search),
.site-header-section .ast-header-search,
.ast-header-search {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
}

.ast-header-search .ast-search-menu-icon.ast-inline-search {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    max-width: 100% !important;
}

/* Search Form Container - Wraps naturally around the Customizer-sized input */
.ast-header-search .ast-inline-search form.search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    height: 42px;
    min-height: 42px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-shadow: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* Container State on Active / Focus */
.ast-header-search .ast-inline-search form.search-form:focus-within {
    border-color: var(--ast-global-color-0, #8f2b8c);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--ast-global-color-0, #8f2b8c) 20%, transparent);
}

/* 
 * Search Input Field:
 * Width and spacing are dynamically driven by Astra Customizer:
 * Customizing -> Header Builder -> Search -> "Search Width"
 */
.ast-header-search .ast-inline-search form.search-form input[type="search"].search-field,
.ast-header-search .ast-inline-search form.search-form .search-field {
    width: 100% !important;
    flex: 1 1 100% !important;
    height: 100%;
    line-height: 40px;
    max-width: 100%;
    border: none !important;
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 44px 0 16px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: var(--ast-global-color-2, #1e293b);
    box-sizing: border-box;
    -webkit-appearance: none;
}

.ast-header-search .ast-inline-search form.search-form input[type="search"].search-field:focus,
.ast-header-search .ast-inline-search form.search-form input[type="search"].search-field:focus-visible,
.ast-header-search .ast-inline-search form.search-form .search-field:focus,
.ast-header-search .ast-inline-search form.search-form .search-field:focus-visible {
    border: none !important;
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    background-color: transparent !important;
}

/* Search Placeholder Text: Opacity subtly matches Astra's icon color */
.ast-header-search .ast-inline-search form.search-form .search-field::placeholder {
    opacity: 0.8;
    font-size: 14px;
}
.ast-header-search .ast-inline-search form.search-form .search-field::-webkit-input-placeholder {
    opacity: 0.8;
}
.ast-header-search .ast-inline-search form.search-form .search-field::-moz-placeholder {
    opacity: 0.8;
}

/* Hide webkit search cancel/decoration buttons */
.ast-header-search .ast-inline-search .search-field::-webkit-search-decoration,
.ast-header-search .ast-inline-search .search-field::-webkit-search-cancel-button,
.ast-header-search .ast-inline-search .search-field::-webkit-search-results-button,
.ast-header-search .ast-inline-search .search-field::-webkit-search-results-decoration {
    display: none !important;
    -webkit-appearance: none;
}

/* Search Submit Button: Respects Astra Customizer "Icon Color" */
.ast-header-search .ast-inline-search form.search-form button.search-submit,
.ast-header-search .ast-inline-search form.search-form .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 44px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.ast-header-search .ast-inline-search form.search-form button.search-submit:hover {
    background: transparent;
    opacity: 0.8;
    transform: scale(1.08);
}

/* SVG scales seamlessly with Astra Customizer "Icon Size" slider (1em) */
.ast-header-search .ast-inline-search form.search-form button.search-submit .astra-search-icon,
.ast-header-search .ast-inline-search form.search-form button.search-submit .ast-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ast-header-search .ast-inline-search form.search-form button.search-submit svg {
    width: 1em;
    height: 1em;
    min-width: 16px;
    min-height: 16px;
    fill: currentColor;
    display: block;
}

/* Hide stray default toggle icons when inline search is present */
.ast-header-search .ast-inline-search .ast-search-icon {
    display: none;
}

/* ==========================================================================
   2. MOBILE OFFCANVAS DRAWER MENU
   ========================================================================== */
.ast-mobile-popup-drawer .ast-mobile-popup-inner {
    width: 82vw !important;
    max-width: 320px !important;
    box-sizing: border-box !important;
}

/* Circular Close Button */
.ast-mobile-popup-drawer .ast-mobile-popup-header {
    min-height: 48px !important;
    padding: 12px 14px 4px 14px !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    border: none !important;
    background: transparent !important;
}

.ast-mobile-popup-drawer #menu-toggle-close,
.ast-mobile-popup-drawer .menu-toggle-close {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
    background: var(--ast-global-color-5, #ffffff) !important;
    border-radius: 50% !important;
    color: var(--ast-global-color-3, #64748b) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
}

.ast-mobile-popup-drawer #menu-toggle-close:hover,
.ast-mobile-popup-drawer #menu-toggle-close:active {
    background: var(--ast-global-color-4, #f1f5f9) !important;
    color: var(--ast-global-color-2, #0f172a) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12) !important;
}

.ast-mobile-popup-drawer #menu-toggle-close svg {
    width: 14px !important;
    height: 14px !important;
    fill: currentColor !important;
    stroke: currentColor !important;
    stroke-width: 0.5px !important;
}

/* User Greeting Card */
.ast-mobile-user-card-wrap {
    padding: 4px 14px 14px 14px !important;
    box-sizing: border-box !important;
}

.ast-mobile-user-card {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: var(--ast-global-color-5, #ffffff) !important;
    border: 1px solid var(--ast-border-color, #eef2f6) !important;
    border-radius: 10px !important;
    padding: 10px 12px !important;
    text-decoration: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.ast-mobile-user-card:hover,
.ast-mobile-user-card:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07) !important;
}

.ast-mobile-user-card .ast-user-avatar {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-radius: 50% !important;
    background: var(--ast-global-color-0, #8f2b8c) !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ast-mobile-user-card .ast-user-avatar svg {
    width: 20px !important;
    height: 20px !important;
    fill: #ffffff !important;
}

.ast-mobile-user-card .ast-user-info {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.ast-mobile-user-card .ast-user-greeting {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: var(--ast-global-color-2, #1e293b) !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.ast-mobile-user-card .ast-user-action {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: var(--ast-global-color-0, #8f2b8c) !important;
    line-height: 1.3 !important;
}

/* Mobile Drawer Nav Spacing */
.ast-mobile-popup-drawer .main-navigation {
    padding: 0 14px !important;
}

.ast-mobile-popup-drawer .main-header-menu .menu-item {
    border-bottom: 1px solid var(--ast-border-color, #f1f5f9) !important;
}

.ast-mobile-popup-drawer .main-header-menu .menu-item:last-child {
    border-bottom: none !important;
}

.ast-mobile-popup-drawer .main-header-menu .menu-link {
    padding: 10px 4px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--ast-global-color-3, #334155) !important;
}

/* ==========================================================================
   3. BROWSE CATEGORIES VERTICAL DROPDOWN MENU
   ========================================================================== */
.ast-browse-categories-wrap {
    position: relative;
    display: inline-block;
    width: var(--ast-browse-cat-width, 260px);
    z-index: 10000;
}

/* Categories Trigger Button */
.ast-browse-cat-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    height: var(--ast-browse-cat-height, 45px);
    min-height: var(--ast-browse-cat-height, 45px);
    background-color: var(--ast-browse-cat-btn-bg, var(--ast-global-color-0, #8f2b8c));
    color: var(--ast-browse-cat-btn-color, #ffffff);
    border: none;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: var(--ast-browse-cat-radius, 4px);
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.ast-browse-cat-btn:hover,
.ast-browse-categories-wrap.is-active:not(.is-user-closed) .ast-browse-cat-btn {
    background-color: var(--ast-browse-cat-btn-bg-h, var(--ast-global-color-1, #762273));
    color: var(--ast-browse-cat-btn-color-h, #ffffff);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.ast-cat-burger-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ast-cat-burger-icon svg {
    display: block;
    stroke: currentColor;
}

.ast-cat-btn-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    text-align: left;
    margin-left: 6px;
}

.ast-cat-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.ast-cat-arrow-icon svg {
    display: block;
    stroke: currentColor;
}

/* Arrow flip when active / hovered */
.ast-browse-categories-wrap:not(.is-user-closed):hover .ast-cat-arrow-icon,
.ast-browse-categories-wrap.is-active:not(.is-user-closed) .ast-cat-arrow-icon {
    transform: rotate(180deg);
}

/* Vertical Categories Dropdown Container */
.ast-browse-cat-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: var(--ast-browse-cat-dropdown-width, 260px);
    background-color: var(--ast-browse-cat-dropdown-bg, var(--ast-global-color-5, #ffffff));
    border: 1px solid var(--ast-browse-cat-border-color, var(--ast-border-color, #e2e8f0));
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10), 0 3px 6px rgba(0, 0, 0, 0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.2s;
    z-index: 10001;
}

/* Reveal Dropdown on Hover (Desktop) or Active (Touch/Click) */
@media (hover: hover) and (min-width: 922px) {
    .ast-browse-categories-wrap:not(.is-user-closed):hover .ast-browse-cat-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

.ast-browse-categories-wrap.is-active:not(.is-user-closed) .ast-browse-cat-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Homepage Default-Open State on Desktop */
@media (min-width: 922px) {
    .ast-browse-categories-wrap.ast-cat-home-open:not(.is-user-closed) .ast-browse-cat-dropdown {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }
    .ast-browse-categories-wrap.ast-cat-home-open:not(.is-user-closed) .ast-cat-arrow-icon {
        transform: rotate(180deg) !important;
    }
}

/* Vertical Menu List */
.ast-vertical-cat-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 4px 0 !important;
}

.ast-vertical-cat-menu > li {
    position: relative;
    border-bottom: 1px solid var(--ast-browse-cat-border-color, var(--ast-border-color, #f1f5f9));
    margin: 0;
    padding: 0;
}

.ast-vertical-cat-menu > li:last-child {
    border-bottom: none;
}

.ast-vertical-cat-menu a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 9px 14px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--ast-browse-cat-item-color, var(--ast-global-color-2, #1e293b)) !important;
    text-decoration: none !important;
    line-height: 1.4 !important;
    transition: background-color 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
    position: relative;
}

.ast-vertical-cat-menu a:hover,
.ast-vertical-cat-menu li:hover > a {
    background-color: var(--ast-browse-cat-item-bg-h, var(--ast-global-color-4, #f8fafc)) !important;
    color: var(--ast-browse-cat-item-color-h, var(--ast-global-color-0, #8f2b8c)) !important;
    padding-left: 17px !important;
}

.ast-vertical-cat-menu .ast-cat-title {
    flex-grow: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Submenu Arrow */
.ast-cat-sub-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    color: var(--ast-global-color-3, #94a3b8);
    transition: transform 0.15s ease, color 0.15s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.ast-cat-sub-arrow svg {
    display: block;
    stroke: currentColor;
}

.ast-vertical-cat-menu li:hover > a .ast-cat-sub-arrow {
    color: var(--ast-browse-cat-item-color-h, var(--ast-global-color-0, #8f2b8c));
    transform: translateX(2px);
}

/* Category Icons & Thumbnails */
.ast-cat-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 6px;
    color: var(--ast-global-color-3, #64748b);
    transition: color 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.ast-cat-icon-wrap img.ast-cat-thumb {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 2px;
    display: block;
}

.ast-vertical-cat-menu li:hover > a .ast-cat-icon-wrap {
    color: var(--ast-browse-cat-item-color-h, var(--ast-global-color-0, #8f2b8c));
    transform: scale(1.08);
}

/* Left Accent Indicator on Hover */
.ast-vertical-cat-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--ast-browse-cat-item-color-h, var(--ast-global-color-0, #8f2b8c));
    opacity: 0;
    transition: opacity 0.15s ease;
}

.ast-vertical-cat-menu a:hover::before,
.ast-vertical-cat-menu li:hover > a::before {
    opacity: 1;
}

/* Category Item Badges (badge-hot, badge-new, badge-sale) */
.menu-item.badge-hot > a .ast-cat-title::after,
.menu-item.badge-new > a .ast-cat-title::after,
.menu-item.badge-sale > a .ast-cat-title::after {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    padding: 2px 5px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
    letter-spacing: 0.4px;
}

.menu-item.badge-hot > a .ast-cat-title::after {
    content: 'HOT';
    background-color: #ef4444;
    color: #ffffff;
}

.menu-item.badge-new > a .ast-cat-title::after {
    content: 'NEW';
    background-color: #10b981;
    color: #ffffff;
}

.menu-item.badge-sale > a .ast-cat-title::after {
    content: 'SALE';
    background-color: #f59e0b;
    color: #ffffff;
}

/* Submenu Flyout for Nested Categories with Seamless Hover Bridge */
.ast-vertical-cat-menu .sub-menu {
    position: absolute;
    top: -1px;
    left: 100%;
    min-width: 220px;
    background-color: var(--ast-browse-cat-dropdown-bg, var(--ast-global-color-5, #ffffff));
    border: 1px solid var(--ast-browse-cat-border-color, var(--ast-border-color, #e2e8f0));
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    list-style: none !important;
    padding: 4px 0 !important;
    margin: 0 !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(4px);
    transition: opacity 0.12s ease, transform 0.12s ease;
    z-index: 10002;
}

/* Invisible Hover Bridge: Prevents gap flickering between parent and submenu */
.ast-vertical-cat-menu li.menu-item-has-children:hover::after {
    content: '';
    position: absolute;
    top: 0;
    right: -10px;
    width: 15px;
    height: 100%;
    z-index: 999;
}

.ast-vertical-cat-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.ast-vertical-cat-menu .sub-menu li {
    border-bottom: 1px solid var(--ast-browse-cat-border-color, var(--ast-border-color, #f8fafc));
}

.ast-vertical-cat-menu .sub-menu li:last-child {
    border-bottom: none;
}

.ast-vertical-cat-menu .sub-menu a {
    padding: 8px 14px !important;
    font-size: 12.5px !important;
}

/* Submenu Category Icons on/off */
.ast-cat-hide-submenu-icons .ast-vertical-cat-menu .sub-menu .ast-cat-icon-wrap {
    display: none !important;
}

/* Category Display Limit & More Toggle */
.ast-vertical-cat-menu > li.ast-cat-item-extra {
    display: none !important;
}

.ast-browse-categories-wrap.is-expanded .ast-vertical-cat-menu > li.ast-cat-item-extra {
    display: list-item !important;
    animation: astCatItemFadeIn 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes astCatItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* More / Less Toggle Button Item */
.ast-vertical-cat-menu > li.ast-cat-more-toggle {
    border-top: 1px dashed var(--ast-browse-cat-border-color, var(--ast-border-color, #e2e8f0)) !important;
    border-bottom: none !important;
    background-color: var(--ast-browse-cat-item-bg-h, var(--ast-global-color-4, #f8fafc));
    border-radius: 0 0 5px 5px;
}

.ast-vertical-cat-menu > li.ast-cat-more-toggle a.ast-cat-more-link {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 14px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: var(--ast-browse-cat-item-color-h, var(--ast-global-color-0, #8f2b8c)) !important;
    cursor: pointer !important;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.ast-vertical-cat-menu > li.ast-cat-more-toggle a.ast-cat-more-link:hover {
    background-color: var(--ast-browse-cat-dropdown-bg, var(--ast-global-color-5, #ffffff)) !important;
    color: var(--ast-browse-cat-item-color-h, var(--ast-global-color-0, #8f2b8c)) !important;
    padding-left: 17px !important;
}

.ast-cat-more-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    min-width: 18px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    color: currentColor;
    flex-shrink: 0;
}

.ast-cat-more-icon svg {
    display: block;
    stroke: currentColor;
}

/* Hide on mobile devices - handled by Astra mobile offcanvas drawer */
@media (max-width: 921px) {
    .ast-browse-categories-wrap {
        display: none !important;
    }
}



