:root {
    --nx-bg: #F5F5F5;
    --nx-white: #FFFFFF;
    --nx-black: #0A0A0A;
    --nx-cyan: #00D4FF;
    --nx-pink: #FF006E;
    --nx-line: #D9D9D9;
    --nx-line2: #E8E8E8;
    --nx-gray: #888888;
    --nx-gray2: #666666;
    --nx-gray3: #AAAAAA;
    --nx-tr: 0.18s ease;
    --nx-maxw: 1400px;
    --nx-hdr-h: 56px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    color: var(--nx-black);
    background: var(--nx-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.nx-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nx-black);
    border-bottom: 3px solid var(--nx-cyan);
}
.nx-hdr-inner {
    max-width: var(--nx-maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: var(--nx-hdr-h);
    gap: 20px;
}
.nx-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--nx-white);
    letter-spacing: -1px;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    max-height: 40px;
    text-decoration: none;
}
.nx-logo span { color: var(--nx-cyan); }
.nx-logo img { max-height: 36px; width: auto; display: block; flex-shrink: 0; }
.nx-nav { display: flex; gap: 0; height: 100%; }
.nx-nav a {
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 100%;
    transition: all var(--nx-tr);
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}
.nx-nav a:hover { color: var(--nx-cyan); }
.nx-nav a.active { color: var(--nx-white); border-bottom-color: var(--nx-cyan); }
.nx-hdr-acts { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nx-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: all var(--nx-tr);
    position: relative;
}
.nx-icon-btn:hover { color: var(--nx-cyan); }
.nx-badge {
    position: absolute;
    top: 6px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    background: var(--nx-pink);
    color: var(--nx-white);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 4px;
}
.nx-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 22px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px 4px;
}
.nx-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--nx-white);
    transition: all var(--nx-tr);
}
.nx-burger:hover span { background: var(--nx-cyan); }

.nx-search-bar { background: var(--nx-black); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; border-bottom: 2px solid var(--nx-cyan); }
.nx-search-bar.open { max-height: 64px; }
.nx-search-inner { max-width: var(--nx-maxw); margin: 0 auto; padding: 10px 24px; display: flex; gap: 0; }
.nx-search-inner input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: var(--nx-white);
    font-size: 15px;
    outline: none;
    font-weight: 500;
}
.nx-search-inner input::placeholder { color: rgba(255,255,255,0.3); }
.nx-search-inner button {
    padding: 0 20px;
    background: var(--nx-cyan);
    color: var(--nx-black);
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

#jq-sideMenu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--nx-white);
    z-index: 3000;
    transform: translateX(0);
    transition: left var(--nx-tr);
    overflow-y: auto;
    border-right: 3px solid var(--nx-black);
}
#jq-sideMenu.active { left: 0; }
.nx-side-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--nx-black);
    color: var(--nx-white);
    border-bottom: 2px solid var(--nx-cyan);
    position: sticky;
    top: 0;
    z-index: 10;
}
.nx-side-hdr span { font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.nx-side-close { width: 36px; height: 36px; background: none; border: none; color: var(--nx-white); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.nx-side-close:hover { color: var(--nx-cyan); }
.nx-menu-item { border-bottom: 1px solid var(--nx-line); display: flex; flex-wrap: wrap; }
.nx-menu-link {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--nx-black);
    transition: background var(--nx-tr), color var(--nx-tr);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nx-menu-link:hover { background: var(--nx-bg); color: var(--nx-cyan); }
.jq-menu-arrow {
    width: 44px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--nx-gray2);
    cursor: pointer;
    transition: all var(--nx-tr);
    border-left: 1px solid var(--nx-line);
    flex-shrink: 0;
}
.jq-menu-arrow:hover { color: var(--nx-cyan); background: var(--nx-bg); }
.jq-menu-arrow.expanded { transform: rotate(90deg); color: var(--nx-cyan); background: var(--nx-bg); }
.submenu { display: none; background: var(--nx-bg); width: 100%; }
.submenu.expanded { display: block; }
.submenu .nx-menu-link { padding-left: 28px; font-size: 12px; }
.submenu .submenu .nx-menu-link { padding-left: 40px; }

.nx-cart-wrap { position: relative; }
.nx-cart-wrap::after { content: ''; position: absolute; top: 100%; right: 0; width: 100%; height: 8px; }
.nx-cart-popup {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 340px;
    background: var(--nx-white);
    border: 3px solid var(--nx-black);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--nx-tr);
    z-index: 500;
}
.nx-cart-wrap:hover .nx-cart-popup { opacity: 1; visibility: visible; transform: translateY(0); }
.nx-cart-popup-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 2px solid var(--nx-black);
    background: var(--nx-black);
    color: var(--nx-white);
}
.nx-cart-popup-hdr span { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; }
.nx-cart-popup-hdr a { font-size: 12px; color: var(--nx-cyan); font-weight: 700; }
.shop-cart-body { max-height: 280px; overflow-y: auto; padding: 10px 12px; }
.shop-cart-items { display: flex; align-items: center; padding: 10px 0; gap: 10px; border-bottom: 1px solid var(--nx-line); }
.shop-cart-items:last-child { border-bottom: none; }
.shop-cart-items:hover { background: var(--nx-bg); }
.shop-img { width: 52px; height: 52px; background: var(--nx-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; border: 1px solid var(--nx-line); }
.shop-img img { max-width: 90%; max-height: 90%; width: auto; height: auto; object-fit: contain; }
.shop-info { flex: 1; min-width: 0; }
.shop-info h4 { font-size: 13px; font-weight: 600; line-height: 1.3; margin-bottom: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shop-info h4 a { color: var(--nx-black); transition: color var(--nx-tr); }
.shop-info h4 a:hover { color: var(--nx-cyan); }
.shop-info p { font-size: 12px; color: var(--nx-gray); }
.shop-delete { width: 28px; height: 28px; background: none; border: 1px solid var(--nx-line); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--nx-gray); font-size: 11px; flex-shrink: 0; transition: all var(--nx-tr); }
.shop-delete:hover { background: var(--nx-black); color: var(--nx-white); border-color: var(--nx-black); }
.shop-cart-body .empty { font-size: 13px; color: var(--nx-gray); text-align: center; padding: 20px 0; font-weight: 600; }
.nx-cart-popup-ftr { padding: 12px 16px; border-top: 2px solid var(--nx-black); }
.shop-cart-subtotal { display: block; font-size: 16px; font-weight: 900; margin-bottom: 10px; color: var(--nx-black); }
.nx-cart-checkout-btn {
    width: 100%;
    padding: 12px;
    background: var(--nx-cyan);
    color: var(--nx-black);
    border: 2px solid var(--nx-black);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all var(--nx-tr);
    outline: 1px solid var(--nx-black);
    outline-offset: -4px;
}
.nx-cart-checkout-btn:hover { background: var(--nx-pink); color: var(--nx-white); }

.Pop-up {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--nx-white);
    border: 3px solid var(--nx-black);
    z-index: 4000;
    width: 480px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
    padding: 36px 28px;
    display: none;
}
#jq-close-pop { position: absolute; top: 12px; right: 12px; background: none; border: none; font-size: 16px; cursor: pointer; color: var(--nx-gray); z-index: 10; transition: color var(--nx-tr); }
#jq-close-pop:hover { color: var(--nx-black); }
#jq-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 2990; display: none; }
.successful_title { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); background: var(--nx-black); color: var(--nx-white); padding: 14px 28px; font-size: 13px; font-weight: 900; z-index: 5000; text-transform: uppercase; letter-spacing: 1px; border: 2px solid var(--nx-cyan); animation: nxSlideDown 0.3s ease; white-space: nowrap; }
@keyframes nxSlideDown { from { opacity: 0; transform: translateX(-50%) translateY(-12px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
.products_box .pro_title { font-size: 20px; font-weight: 900; color: var(--nx-black); margin-bottom: 12px; line-height: 1.3; text-transform: uppercase; }
.products_box .box_price { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.products_box .box_price .discount_price { font-size: 18px; font-weight: 900; color: var(--nx-black);text-decoration: line-through; }
.products_box .box_price .price { font-size: 14px; color: var(--nx-gray);  }
.products_box select { width: 100%; padding: 10px 12px; border: 2px solid var(--nx-black); background: var(--nx-white); font-size: 13px; margin-bottom: 10px; color: var(--nx-black); font-weight: 600; }
.products_box .quantity-control { display: flex; align-items: center; gap: 0; border: 2px solid var(--nx-black); margin-bottom: 10px; width: fit-content; }
.products_box .quantity-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: none; background: var(--nx-bg); cursor: pointer; font-size: 15px; color: var(--nx-black); font-weight: 700; }
.products_box .quantity-input { width: 48px; height: 38px; text-align: center; border: none; border-left: 2px solid var(--nx-black); border-right: 2px solid var(--nx-black); font-size: 14px; font-weight: 900; color: var(--nx-black); outline: none; }
.products_box .sku_code { display: flex; align-items: center; margin-bottom: 12px; font-size: 13px; color: var(--nx-gray2); }
.products_box .sku_code span { font-weight: 700; white-space: nowrap; margin-right: 12px; }
.products_box .btn { display: flex; gap: 8px; margin-top: 12px; }
.products_box .btn .button { flex: 1; padding: 12px; text-align: center; font-size: 12px; font-weight: 900; letter-spacing: 0.5px; cursor: pointer; transition: all var(--nx-tr); text-transform: uppercase; }
.products_box .btn .button:first-child { background: var(--nx-black); color: var(--nx-white); border: 2px solid var(--nx-black); }
.products_box .btn .button:first-child:hover { background: var(--nx-cyan); color: var(--nx-black); }
.products_box .btn .button:last-child { background: var(--nx-white); color: var(--nx-black); border: 2px solid var(--nx-black); }
.products_box .btn .button:last-child:hover { background: var(--nx-black); color: var(--nx-cyan); }

.nx-card { background: var(--nx-white); position: relative; border: 2px solid var(--nx-black); transition: transform var(--nx-tr); }
.nx-card:hover { transform: translate(-2px, -2px); }
.nx-card-img {
    height: 240px;
    overflow: hidden;
    background: var(--nx-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--nx-black);
}
.nx-card-img a { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.nx-card-img img { max-width: 85%; max-height: 85%; width: auto; height: auto; object-fit: contain; transition: transform 0.3s ease; }
.nx-card:hover .nx-card-img img { transform: scale(1.04); }
.nx-img-main { display: block; }
.nx-img-hover { display: none; }
.nx-card:hover .nx-img-main { display: none; }
.nx-card:hover .nx-img-hover { display: block; }
.nx-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--nx-pink);
    color: var(--nx-white);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 3px 8px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.nx-card-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: var(--nx-white);
    border: 2px solid var(--nx-black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    color: var(--nx-black);
    opacity: 0;
    transition: all var(--nx-tr);
    z-index: 2;
}
.nx-card:hover .nx-card-wish { opacity: 1; }
.nx-card-wish:hover { background: var(--nx-pink); color: var(--nx-white); border-color: var(--nx-pink); }
.nx-card-body { padding: 12px 14px 14px; }
.nx-card-name {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--nx-black);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 6px;
    transition: color var(--nx-tr);
    text-transform: uppercase;
}
.nx-card-name:hover { color: var(--nx-cyan); }
.nx-card-price { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.nx-card-price .now { font-size: 15px; font-weight: 900; color: var(--nx-black); }
.nx-card-price .was { font-size: 12px; color: var(--nx-gray3); text-decoration: line-through; font-weight: 500; }
.nx-card-price .save-d { font-size: 10px; color: var(--nx-pink); font-weight: 900; text-transform: uppercase; }
.nx-card-add {
    width: 100%;
    padding: 11px;
    background: var(--nx-cyan);
    color: var(--nx-black);
    border: 2px solid var(--nx-black);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--nx-tr);
}
.nx-card-add:hover { background: var(--nx-pink); color: var(--nx-white); }

.cart-items { display: flex; flex-direction: column; }
.cart-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 2px solid var(--nx-black); }
.cart-item:last-child { border-bottom: none; }
.item-image { width: 80px; height: 80px; background: var(--nx-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; border: 1px solid var(--nx-line); }
.item-image img { max-width: 85%; max-height: 85%; object-fit: contain; }
.item-details { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.item-title { font-size: 14px; font-weight: 700; color: var(--nx-black); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; text-transform: uppercase; }
.item-sku { font-size: 11px; color: var(--nx-gray); font-weight: 600; }
.item-actions { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.quantity-control { display: flex; align-items: center; border: 2px solid var(--nx-black); }
.quantity-btn { width: 28px; height: 28px; background: var(--nx-bg); border: none; font-size: 14px; color: var(--nx-black); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--nx-tr); font-weight: 700; }
.quantity-btn:hover { background: var(--nx-black); color: var(--nx-white); }
.quantity-input { width: 36px; height: 28px; text-align: center; border: none; border-left: 2px solid var(--nx-black); border-right: 2px solid var(--nx-black); font-size: 13px; font-weight: 900; color: var(--nx-black); outline: none; }
.btn-remove { padding: 6px 14px; background: none; border: 1px solid var(--nx-line); font-size: 11px; font-weight: 700; color: var(--nx-gray); cursor: pointer; transition: all var(--nx-tr); text-transform: uppercase; }
.btn-remove:hover { background: var(--nx-pink); color: var(--nx-white); border-color: var(--nx-pink); }
.item-price { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex-shrink: 0; }
.price-current { font-size: 16px; font-weight: 900; color: var(--nx-black); }
.price-original { font-size: 12px; color: var(--nx-gray2); text-decoration: line-through; }

.wishlist-items { display: flex; flex-direction: column; gap: 0; min-height: 60px; }
.wishlist-item { position: relative; background: var(--nx-white); display: grid; }
.item-badge { display: none; }
.item-remove { position: absolute; top: 8px; right: 8px; background: var(--nx-white); border: 2px solid var(--nx-black); width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 12px; color: var(--nx-gray); transition: all var(--nx-tr); z-index: 2; }
.item-remove:hover { background: var(--nx-pink); color: var(--nx-white); border-color: var(--nx-pink); }
.btn-add-to-cart { display: block; padding: 9px 14px; background: var(--nx-cyan); color: var(--nx-black); border: 2px solid var(--nx-black); font-size: 10px; font-weight: 900; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; text-align: center; transition: all var(--nx-tr); }
.btn-add-to-cart:hover { background: var(--nx-pink); color: var(--nx-white); }

.nx-footer { background: var(--nx-black); color: rgba(255,255,255,0.5); }
.nx-footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 32px;
    max-width: var(--nx-maxw);
    margin: 0 auto;
    padding: 52px 24px 36px;
}
.nx-footer-col h4 {
    font-size: 11px;
    font-weight: 900;
    color: var(--nx-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.nx-footer-col p { font-size: 13px; line-height: 1.8; margin-bottom: 14px; }
.nx-footer-col a {
    display: block;
    font-size: 13px;
    padding: 4px 0;
    color: rgba(255,255,255,0.5);
    transition: color var(--nx-tr);
}
.nx-footer-col a:hover { color: var(--nx-cyan); }
.nx-newsletter { display: flex; gap: 0; margin-top: 10px; }
.nx-newsletter input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--nx-white);
    font-size: 13px;
    outline: none;
}
.nx-newsletter input::placeholder { color: rgba(255,255,255,0.25); }
.nx-newsletter button {
    padding: 0 16px;
    background: var(--nx-cyan);
    color: var(--nx-black);
    border: none;
    font-size: 11px;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nx-newsletter button:hover { background: var(--nx-pink); color: var(--nx-white); }
.nx-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.nx-footer-bottom-inner {
    max-width: var(--nx-maxw);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}
.nx-payment-icons { display: flex; gap: 8px; align-items: center; font-size: 20px; color: rgba(255,255,255,0.3); }

.nx-breadcrumb {
    max-width: var(--nx-maxw);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.nx-breadcrumb a { color: var(--nx-gray); }
.nx-breadcrumb a:hover { color: var(--nx-cyan); }
.nx-breadcrumb .sep { color: var(--nx-gray3); }
.nx-breadcrumb .current { color: var(--nx-black); }

#to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--nx-cyan);
    border: 2px solid var(--nx-black);
    color: var(--nx-black);
    font-size: 16px;
    cursor: pointer;
    z-index: 2000;
    transition: all var(--nx-tr);
    outline: 1px solid var(--nx-black);
    outline-offset: -5px;
    opacity: 0;
    visibility: hidden;
}
#to-top.show { opacity: 1; visibility: visible; }
#to-top:hover { background: var(--nx-pink); color: var(--nx-white); }

@media (max-width: 1024px) {
    .nx-nav { display: none; }
    .nx-burger { display: flex; }
    .nx-footer-main { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nx-cart-popup { display: none; }
    .nx-footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nx-card-add { opacity: 1 !important; }
    .nx-card-wish { opacity: 1 !important; }
    .nx-logo { font-size: 16px; }
}


/* ===== Small / Big hide helpers ===== */
@media (max-width: 768px) {
    .small_hide { display: none !important; }
}
@media (min-width: 769px) {
    .big_hide { display: none !important; }
}

/* ===== Side Menu Search & Links ===== */
.nx-side-search {
    display: flex;
    padding: 16px 24px;
    border-bottom: 1px solid var(--nx-line);
}
.nx-side-search form {
    width: 100%;
    display: flex;
}
.nx-side-search input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--nx-line);
    background: var(--nx-bg);
    color: var(--nx-text);
    font-size: 13px;
    border-radius: 4px 0 0 4px;
    outline: none;
}
.nx-side-search button {
    padding: 10px 18px;
    background: var(--nx-ink);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}
.nx-side-links {
    padding: 16px 24px;
    border-top: 1px solid var(--nx-line);
}
.nx-side-link {
    display: flex;
    align-items: center;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--nx-text);
    border-bottom: 1px solid var(--nx-line);
    transition: var(--nx-tr);
    text-decoration: none;
}
.nx-side-link:last-child {
    border-bottom: none;
}
.nx-side-link:hover {
    color: var(--nx-accent);
}