/* Shared Navigator Styles - include in pages that use navigator */
:root {
    --dark-green: #031c12;
    --mid-green: #0B6E4F;
    --light-green: #50C787;
    --bg-color: #f4f3ed;
    --text-dark: #1a1a1a;
}

html.cart-scroll-locked,
html.cart-scroll-locked body {
    overflow: hidden;
    overscroll-behavior: none;
}

html.cart-direction-switching .cart-sidebar {
    transition: none !important;
}

/* Page Dimmer Overlay */
.page-dimmer {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.page-dimmer.active { opacity: 1; pointer-events: all; }

/* Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: #050505;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}
.transition-overlay.active { opacity: 1; pointer-events: all; }

/* Liquid Nav */
.liquid-nav {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    background: rgba(10, 25, 18, 0.45);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 35px;
    gap: 40px;
    z-index: 1000;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s;
}
.liquid-nav.hide-up { transform: translate(-50%, -150%); opacity: 0; pointer-events: none; }

.nav-brand .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.nav-brand .logo img {
    max-height: 35px;
    width: auto;
    transition: 0.3s;
}
.nav-brand .logo:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.mobile-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-toggle:hover {
    background: rgba(80, 199, 135, 0.18);
    border-color: rgba(80, 199, 135, 0.45);
}

.mobile-nav-toggle:focus-visible {
    outline: 2px solid var(--light-green);
    outline-offset: 2px;
}

.mobile-nav-toggle__bar {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    display: block;
    transition: transform 0.24s ease, opacity 0.18s ease;
}

.mobile-nav-toggle.is-active .mobile-nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-active .mobile-nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.is-active .mobile-nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-panel {
    display: contents;
}

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 700; font-size: 1rem; text-transform: uppercase; transition: color 0.3s, text-shadow 0.3s; opacity: 0.85; }
.nav-links a:hover { color: var(--light-green); opacity: 1; text-shadow: 0 0 15px rgba(80, 199, 135, 0.6); }
.nav-touch-hold {
    color: var(--light-green) !important;
    opacity: 1 !important;
    text-shadow: 0 0 15px rgba(80, 199, 135, 0.6);
}

.nav-icons { display: flex; gap: 20px; align-items: center; }
#langToggle { color: #fff; font-weight: 900; font-size: 1.1rem; cursor: pointer; user-select: none; transition: 0.3s; opacity: 0.85; padding: 5px; }
#langToggle:hover { color: var(--light-green); opacity: 1; transform: scale(1.1); }
#langToggle.nav-touch-hold { color: var(--light-green); opacity: 1; transform: scale(1.1); }

.icon-btn { color: #fff; cursor: pointer; transition: 0.3s; opacity: 0.85; display: flex; align-items: center; justify-content: center; }
.icon-btn:hover { color: var(--light-green); opacity: 1; transform: scale(1.1); }
.icon-btn.nav-touch-hold { color: var(--light-green); opacity: 1; transform: scale(1.1); }

.main-mobile-categories-trigger {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.22s ease, color 0.22s ease;
    -webkit-tap-highlight-color: transparent;
}

.main-mobile-categories-trigger svg {
    width: 18px;
    height: 18px;
    display: block;
}

.main-mobile-categories-trigger:hover,
.main-mobile-categories-trigger.nav-touch-hold {
    background: rgba(80, 199, 135, 0.14);
    color: var(--light-green);
}

.main-mobile-categories-panel {
    display: none;
}

/* Navigation Dropdown */
.nav-dropdown { position: relative; }
.nav-shop-link { display: flex; align-items: center; gap: 5px; }
.nav-shop-link::after {
    content: '▼';
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-shop-link::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(3, 28, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(80, 199, 135, 0.3);
    border-radius: 15px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}
.dropdown-item:hover {
    background: rgba(80, 199, 135, 0.2);
    color: var(--light-green);
    transform: translateX(5px);
}
.dropdown-item.nav-touch-hold {
    background: rgba(80, 199, 135, 0.2);
    color: var(--light-green);
    transform: translateX(5px);
}
.dropdown-icon {
    font-size: 1.1rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}
.dropdown-icon svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
}
.dropdown-item:hover .dropdown-icon {
    filter: grayscale(0);
}

[dir="ltr"] .dropdown-menu { left: 50%; right: auto; }
[dir="ltr"] .nav-shop-link::after { content: '▼'; }

/* Search Bar */
.search-wrapper { display: flex; align-items: center; position: relative; }
.search-form { width: 0; opacity: 0; overflow: hidden; transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.search-form.active { width: 180px; opacity: 1; margin-inline-end: 15px; }
.search-form input { width: 100%; background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50px; padding: 8px 15px; color: #fff; outline: none; font-family: inherit; font-weight: 600; transition: 0.3s; }
.search-form input::placeholder { color: rgba(255,255,255,0.7); }
.search-form input:focus { background: rgba(255, 255, 255, 0.25); border-color: var(--light-green); }

.search-suggestions {
    position: absolute;
    top: 100%;
    inset-inline-end: 0;
    inset-inline-start: auto;
    margin-top: 8px;
    min-width: 260px;
    background: rgba(3, 28, 18, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(80, 199, 135, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    padding: 6px;
    display: none;
    z-index: 1000;
}
.search-suggestions.show {
    display: block;
}
.search-suggestion-item {
    width: 100%;
    text-align: start;
    padding: 6px 8px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease, transform 0.1s ease;
}
.search-suggestion-item:hover {
    background: rgba(80, 199, 135, 0.25);
    transform: translateY(-1px);
}

.search-suggestion-thumb {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-suggestion-placeholder {
    font-size: 1.4rem;
}
.search-suggestion-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.search-suggestion-name {
    font-weight: 600;
    line-height: 1.2;
}
.search-suggestion-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    opacity: 0.8;
}
.search-suggestion-id {
    direction: ltr;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed; top: 0; right: 0; width: 350px; max-width: 100vw; height: 100vh;
    background: rgba(10, 25, 18, 0.85); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255,255,255,0.1); z-index: 10000; padding: 30px 25px; color: #fff;
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.24s ease;
    box-shadow: -15px 0 40px rgba(0,0,0,0.5); display: flex; flex-direction: column;
    transform: translate3d(100%, 0, 0);
    opacity: 0.98;
    will-change: transform;
}
.cart-sidebar.active { transform: translate3d(0, 0, 0); opacity: 1; }
[dir="ltr"] .cart-sidebar {
    right: auto;
    left: 0;
    border-left: none;
    border-right: 1px solid rgba(255,255,255,0.1);
    box-shadow: 15px 0 40px rgba(0,0,0,0.5);
    transform: translate3d(-100%, 0, 0);
}
[dir="ltr"] .cart-sidebar.active { transform: translate3d(0, 0, 0); opacity: 1; }
.cart-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 20px; margin-bottom: 30px; }
.cart-header h3 { font-size: 1.5rem; color: var(--light-green); margin: 0; }
#closeCartBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    background: transparent;
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.65rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease, background-color 0.2s ease;
}
#closeCartBtn:hover {
    color: var(--light-green);
    background-color: rgba(255, 255, 255, 0.1);
}
#closeCartBtn:active {
    background-color: rgba(255, 255, 255, 0.16);
}
#closeCartBtn:focus-visible {
    outline: 2px solid var(--light-green);
    outline-offset: 2px;
}
.empty-cart { text-align: center; margin-top: 50px; }
.empty-cart p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 30px; color: #ddd; }
.nav-cart-link-btn {
    display: inline-block;
    background-color: var(--light-green);
    color: var(--dark-green);
    text-decoration: none;
    font-weight: 900;
    border-radius: 50px;
    border: 2px solid var(--light-green);
    transition: all 0.3s ease;
}
.nav-cart-link-btn:hover {
    background-color: transparent;
    color: var(--light-green);
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(80, 199, 135, 0.65) rgba(255, 255, 255, 0.08);
}
.cart-items::-webkit-scrollbar {
    width: 8px;
}
.cart-items::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 100px;
}
.cart-items::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(80, 199, 135, 0.75), rgba(11, 110, 79, 0.85));
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: content-box;
}
.cart-items::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(80, 199, 135, 1), rgba(11, 110, 79, 0.95));
    background-clip: content-box;
}
.cart-items::-webkit-scrollbar-button {
    display: none;
    width: 0;
    height: 0;
}
.cart-item { display: flex; align-items: center; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cart-item-image { width: 60px; height: 60px; margin-left: 15px; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.cart-item-details { flex: 1; }
.cart-item-details h4 { font-size: 1rem; margin-bottom: 5px; color: #fff; }
.cart-item-details .cart-item-size {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 4px;
}
.cart-item-price { font-size: 0.9rem; color: var(--light-green); margin-bottom: 8px; }
.cart-item-quantity { display: flex; align-items: center; gap: 10px; }
.quantity-btn { width: 25px; height: 25px; border: 1px solid rgba(255,255,255,0.3); background: transparent; color: #fff; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.quantity-btn:hover { background: var(--light-green); color: var(--dark-green); }
.cart-item-remove { width: 30px; height: 30px; border: none; background: transparent; color: #ff6b6b; font-size: 1.2rem; cursor: pointer; transition: 0.3s; flex-shrink: 0; }
.cart-item-remove:hover { color: #ff5252; transform: scale(1.1); }

.cart-summary { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 20px; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-size: 1.1rem; font-weight: 700; color: #fff; }
.checkout-btn { width: 100%; padding: 12px; background: var(--light-green); color: var(--dark-green); border: none; border-radius: 8px; font-weight: 700; cursor: pointer; transition: 0.3s; font-family: 'Cairo', sans-serif; }
.checkout-btn:hover { background: var(--mid-green); color: #fff; }

.cart-notification {
    position: fixed;
    top: 112px;
    background: rgba(3, 28, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--light-green);
    border-radius: 12px;
    padding: 12px 16px;
    z-index: 10001;
    opacity: 0;
    transform: scale(0.98);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(3, 28, 18, 0.85), 0 0 28px rgba(80, 199, 135, 0.45);
}
/* English (LTR): cart drawer is on the left — keep toast on the right */
[dir="ltr"] .cart-notification {
    left: auto;
    right: -400px;
    transition: right 0.3s ease, opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
[dir="ltr"] .cart-notification.show { right: 20px; opacity: 1; transform: scale(1); }
/* Arabic (RTL): cart drawer is on the right — keep toast on the left */
[dir="rtl"] .cart-notification {
    right: auto;
    left: -400px;
    transition: left 0.3s ease, opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
[dir="rtl"] .cart-notification.show { left: 20px; opacity: 1; transform: scale(1); }
.cart-notification:hover {
    transform: scale(1.04);
    box-shadow: 0 0 26px rgba(3, 28, 18, 1), 0 0 36px rgba(80, 199, 135, 0.65);
}
.notification-content { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 0.92rem; }
.notification-content svg { width: 20px; height: 20px; color: var(--light-green); }
.notification-product-image {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(80, 199, 135, 0.6);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}
.cart-fly-image {
    position: fixed;
    width: 64px;
    height: auto;
    border-radius: 0;
    object-fit: contain;
    border: none;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.28));
    z-index: 10000;
    pointer-events: none;
    will-change: transform, opacity;
}

.cart-count {
    position: absolute; top: -8px; right: -8px;
    background: var(--light-green); color: var(--dark-green); font-size: 0.75rem; font-weight: 700;
    padding: 2px 6px; border-radius: 10px; min-width: 18px; text-align: center; display: none;
}
[dir="ltr"] .cart-count { right: auto; left: -8px; }

/* Global WhatsApp floating button */
#whatsAppFloat {
    position: fixed;
    right: 24px;
    bottom: 90px;
    z-index: 999;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0B6E4F;
    color: #25D366;
    border: 2px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(3, 28, 18, 0.85), 0 0 32px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
#whatsAppFloat:hover {
    transform: translateY(-4px) scale(1.07);
    background: #074734;
    box-shadow: 0 0 26px rgba(3, 28, 18, 1), 0 0 40px rgba(37, 211, 102, 0.8);
}
#whatsAppFloat svg {
    width: 30px;
    height: 30px;
}

.theme-toggle-btn {
    min-width: 40px;
    min-height: 40px;
    padding: 0 4px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.theme-toggle-btn:focus-visible {
    outline: 2px solid var(--light-green);
    outline-offset: 2px;
}
.theme-toggle-btn svg {
    display: block;
}

@media (max-width: 768px) {
    .liquid-nav {
        width: min(calc(100vw - 42px), 540px);
        max-width: calc(100vw - 42px);
        top: max(42px, calc(env(safe-area-inset-top, 0px) + 32px));
        padding: 15px 18px;
        gap: 6px;
        border-radius: 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-brand {
        flex: 0 0 auto;
        min-width: 0;
        display: flex;
        align-items: center;
    }

    .nav-brand .logo img {
        max-height: 26px;
    }

    .mobile-nav-toggle {
        display: none !important;
    }

    .mobile-nav-panel {
        display: none !important;
    }

    .main-mobile-categories-trigger {
        display: inline-flex;
    }

    .nav-links {
        overflow: visible;
    }

    .nav-dropdown {
        position: static;
        overflow: visible;
    }

    .liquid-nav .mobile-nav-panel .nav-dropdown {
        display: none;
    }

    .liquid-nav .nav-dropdown .dropdown-menu {
        display: none !important;
    }

    .liquid-nav .nav-shop-link[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .dropdown-item {
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 0.92rem;
        background: rgba(255, 255, 255, 0.06);
        text-transform: none;
    }

    .dropdown-item + .dropdown-item {
        margin-top: 8px;
    }

    .dropdown-item:hover {
        transform: none;
    }

    .nav-icons {
        gap: 0;
        flex-wrap: nowrap;
        min-width: 0;
        flex: 1 1 auto;
        justify-content: space-evenly;
        align-items: center;
    }

    #langToggle {
        min-width: 46px;
        min-height: 46px;
        padding: 0 9px;
        font-size: 1.02rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        flex: 0 0 46px;
    }

    .icon-btn {
        min-width: 46px;
        min-height: 46px;
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 999px;
        flex: 0 0 46px;
    }

    .icon-btn svg {
        width: 24px;
        height: 24px;
    }

    #cartIconBtn {
        min-width: 46px;
        min-height: 46px;
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .search-wrapper {
        position: static;
    }

    .search-form {
        position: absolute;
        top: calc(100% + 10px);
        inset-inline-start: 0;
        inset-inline-end: 0;
        width: auto;
        max-width: none;
        opacity: 0;
        pointer-events: none;
        overflow: visible;
        margin: 0;
        transform: translateY(-6px);
        transition: opacity 0.22s ease, transform 0.22s ease;
    }

    .search-form.active {
        width: auto;
        opacity: 1;
        pointer-events: auto;
        margin: 0;
        transform: translateY(0);
    }

    .search-form input {
        min-height: 46px;
        padding: 10px 14px;
        font-size: 16px;
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    }

    .search-suggestions {
        top: calc(100% + 60px);
        inset-inline-start: 0;
        inset-inline-end: 0;
        min-width: 0;
        max-width: none;
        width: 100%;
    }

    .main-mobile-categories-trigger {
        min-width: 46px;
        min-height: 46px;
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

    .main-mobile-categories-trigger svg {
        width: 24px;
        height: 24px;
    }

    .main-mobile-categories-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: min(calc(100vw - 34px), 520px);
        max-width: calc(100vw - 34px);
        min-width: 0;
        margin: 0;
        padding: 8px;
        border-radius: 16px;
        visibility: visible;
        pointer-events: none;
        display: block;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(12, 24, 18, 0.08);
        box-shadow: 0 18px 42px rgba(8, 20, 14, 0.18);
        backdrop-filter: blur(12px);
        transform: translateY(-6px);
        transition: opacity 0.22s ease, transform 0.22s ease;
        z-index: 1002;
        opacity: 0;
    }

    .main-mobile-categories-panel.is-open {
        pointer-events: auto;
        transform: translateY(0);
        opacity: 1;
    }

    .main-mobile-categories-panel .dropdown-item {
        min-height: 44px;
        padding: 10px 12px;
        border-radius: 12px;
        font-size: 0.92rem;
        color: var(--dark-green);
        background: rgba(80, 199, 135, 0.1);
        border: 1px solid rgba(11, 110, 79, 0.12);
        text-transform: none;
    }

    .main-mobile-categories-panel .dropdown-item + .dropdown-item {
        margin-top: 8px;
    }

    .main-mobile-categories-panel .dropdown-item:hover,
    .main-mobile-categories-panel .dropdown-item.nav-touch-hold {
        background: rgba(80, 199, 135, 0.16);
        color: var(--mid-green);
        transform: translateX(5px);
    }

    html[data-theme="dark"] .main-mobile-categories-panel {
        background: rgba(3, 28, 18, 0.94);
        border-color: rgba(80, 199, 135, 0.16);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.34);
    }

    html[data-theme="dark"] .main-mobile-categories-panel .dropdown-item {
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.06);
    }

    html[data-theme="dark"] .main-mobile-categories-panel .dropdown-item:hover,
    html[data-theme="dark"] .main-mobile-categories-panel .dropdown-item.nav-touch-hold {
        background: rgba(80, 199, 135, 0.2);
        color: var(--light-green);
    }
}
