/* =====================================================
   BASE RESET
   ===================================================== */
*{font-family:'Plus Jakarta Sans',sans-serif;box-sizing:border-box;margin:0;padding:0;}
body{overflow-x:hidden;background:#f5f5f7;}

/* =====================================================
   PROMO BAR
   ===================================================== */
.ox-promo{background:#c7511f;height:36px;display:flex;align-items:center;overflow:hidden;position:relative;}
.ox-promo::before,.ox-promo::after{content:'';position:absolute;top:0;width:80px;height:100%;z-index:2;}
.ox-promo::before{left:0;background:linear-gradient(90deg,#c7511f,transparent);}
.ox-promo::after{right:0;background:linear-gradient(-90deg,#c7511f,transparent);}
.ox-promo-track{display:flex;align-items:center;gap:64px;animation:ox-scroll 32s linear infinite;white-space:nowrap;padding-left:100%;}
.ox-promo:hover .ox-promo-track{animation-play-state:paused;}
@keyframes ox-scroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.ox-promo-item{display:flex;align-items:center;gap:8px;color:#fff;font-size:12px;font-weight:500;}
.ox-promo-hl{color:#ffd814;font-weight:700;}
.ox-promo-dot{width:3px;height:3px;border-radius:50%;background:rgba(255,255,255,.4);flex-shrink:0;}

/* =====================================================
   DESKTOP HEADER
   ===================================================== */
.ox-header{background:#131921;position:sticky;top:0;z-index:300;}
.ox-util-bar{background:#131921;display:flex;align-items:center;justify-content:space-between;padding:0 20px;height:30px;border-bottom:1px solid rgba(255,255,255,.08);}
.ox-util-left,.ox-util-right{display:flex;align-items:center;gap:16px;}
.ox-util-link{display:flex;align-items:center;gap:5px;font-size:11px;font-weight:500;color:#ccc;text-decoration:none;transition:color .15s;}
.ox-util-link:hover{color:#ffd814;text-decoration:underline;}
.ox-util-sep{width:1px;height:12px;background:rgba(255,255,255,.15);}
.ox-util-trust{display:flex;align-items:center;gap:6px;font-size:11px;font-weight:500;color:#ccc;}
.ox-util-trust svg{width:11px;height:11px;color:#ffd814;}
.ox-nav{padding:0 16px;display:flex;align-items:center;gap:8px;height:60px;background:#131921;}
.ox-logo{flex-shrink:0;text-decoration:none;display:flex;align-items:center;margin-right:4px;border:1px solid transparent;border-radius:2px;padding:3px 6px;transition:border-color .15s;}
.ox-logo:hover{border-color:#fff;}
.ox-logo img{height:120px;width:auto;max-width:140px;object-fit:contain;display:block;}
.ox-location{flex-shrink:0;display:flex;align-items:center;gap:5px;border:1px solid transparent;border-radius:2px;padding:6px 8px;cursor:pointer;transition:border-color .15s;position:relative;}
.ox-location:hover{border-color:#fff;}
.ox-location-icon svg{width:16px;height:16px;color:#fff;}
.ox-location-label{font-size:10px;color:#ccc;line-height:1;}
.ox-location-val{font-size:13px;font-weight:700;color:#fff;line-height:1.4;}
.ox-search{flex:1;position:relative;}
.ox-search-inner{display:flex;align-items:center;background:#fff;border-radius:4px;overflow:hidden;height:40px;}
.ox-search-inner:focus-within{outline:2px solid #ffd814;}
.ox-search-cat{background:#f3f3f3;border:none;outline:none;padding:0 10px;font-size:12px;color:#374151;cursor:pointer;border-right:1px solid #cdcdcd;height:100%;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 8px center;padding-right:24px;min-width:100px;max-width:130px;border-radius:4px 0 0 4px;}
.ox-search-input{flex:1;border:none;outline:none;background:transparent;padding:0 12px;font-size:14px;color:#111;height:100%;min-width:0;}
.ox-search-input::placeholder{color:#999;}
.ox-search-btn{flex-shrink:0;width:46px;height:100%;background:#febd69;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#333;transition:background .15s;border-radius:0 4px 4px 0;}
.ox-search-btn:hover{background:#f3a847;}
.ox-search-btn svg{width:18px;height:18px;}
.ox-suggest{position:absolute;top:calc(100% + 4px);left:0;right:0;background:#fff;border-radius:4px;box-shadow:0 4px 20px rgba(0,0,0,.2);z-index:9999;max-height:430px;overflow-y:auto;display:none;border:1px solid #cdcdcd;}
.ox-suggest.open{display:block;}
.ox-sug-item{padding:10px 14px;display:flex;align-items:center;gap:10px;font-size:13px;color:#111;cursor:pointer;transition:background .1s;text-decoration:none;border-bottom:1px solid #f5f5f5;}
.ox-sug-item:hover{background:#f5f5f5;}
.ox-sug-img{width:40px;height:40px;border-radius:3px;object-fit:cover;flex-shrink:0;background:#f5f5f5;border:1px solid #eee;}
.ox-sug-name{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.ox-sug-price{font-size:12px;color:#B12704;font-weight:700;margin-top:2px;}
.ox-sug-msg{padding:16px;text-align:center;color:#888;font-size:13px;}
.ox-sug-footer{padding:10px 14px;text-align:center;color:#0066c0;font-size:13px;border-top:1px solid #f5f5f5;display:flex;align-items:center;justify-content:center;gap:6px;text-decoration:none;}
.ox-sug-footer:hover{background:#f5f5f5;}
.ox-actions{display:flex;align-items:center;gap:2px;margin-left:auto;flex-shrink:0;}
.ox-action-btn{display:flex;flex-direction:column;align-items:flex-start;padding:7px 10px;border-radius:2px;text-decoration:none;cursor:pointer;transition:border-color .12s;position:relative;border:1px solid transparent;background:transparent;}
.ox-action-btn:hover{border-color:#fff;}
.ox-action-top{font-size:11px;color:#ccc;line-height:1;margin-bottom:2px;}
.ox-action-bot{font-size:13px;font-weight:700;color:#fff;line-height:1.3;white-space:nowrap;display:flex;align-items:center;gap:3px;}
.ox-cart{display:flex;align-items:center;gap:6px;padding:7px 10px;border-radius:2px;text-decoration:none;color:#fff;margin-left:2px;position:relative;border:1px solid transparent;transition:border-color .12s;}
.ox-cart:hover{border-color:#fff;}
.ox-cart-cnt{position:absolute;top:-10px;left:10px;min-width:18px;height:18px;background:#f08804;color:#fff;border-radius:9px;font-size:10px;font-weight:700;display:flex;align-items:center;justify-content:center;padding:0 3px;}
.ox-cart-lbl{font-size:13px;font-weight:700;color:#fff;}
.ox-curr-dd{top:calc(100% + 4px);right:0;width:190px;background:#fff;border-radius:4px;box-shadow:0 4px 16px rgba(0,0,0,.18);z-index:600;border:1px solid #c8c8c8;overflow:hidden;}
.ox-curr-dd a{display:block;padding:10px 16px;font-size:13px;color:#111;text-decoration:none;transition:background .1s;border-bottom:1px solid #f5f5f5;}
.ox-curr-dd a:hover{background:#f5f5f5;}
.ox-dd{display:none;position:absolute;}
.ox-dd.open{display:block;}
.ox-bottom{background:#232f3e;}
.ox-bottom-inner{display:flex;align-items:center;}
.ox-cats{flex:1;display:flex;align-items:center;overflow-x:auto;scrollbar-width:none;position:relative;}
.ox-cats::-webkit-scrollbar{display:none;}
.ox-all-btn{display:flex;align-items:center;gap:7px;background:transparent;color:#fff;font-size:13px;font-weight:700;padding:0 16px;height:38px;cursor:pointer;white-space:nowrap;flex-shrink:0;transition:background .15s;border:1px solid transparent;}
.ox-all-btn:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.3);}
.ox-all-btn svg{width:16px;height:16px;}
.ox-cat-link{color:#fff;font-size:13px;padding:0 12px;height:38px;text-decoration:none;white-space:nowrap;display:flex;align-items:center;gap:5px;flex-shrink:0;transition:color .12s;border:1px solid transparent;border-radius:2px;}
.ox-cat-link:hover{border-color:rgba(255,255,255,.5);background:rgba(255,255,255,.07);}
.ox-pill-hot{background:#cc0c39;color:#fff;font-size:8px;font-weight:700;padding:1px 5px;border-radius:2px;text-transform:uppercase;}
.ox-trust-strip{display:flex;align-items:center;border-left:1px solid rgba(255,255,255,.1);}
.ox-trust-pill{display:flex;align-items:center;gap:5px;padding:0 12px;height:38px;font-size:11px;color:#ccc;border-right:1px solid rgba(255,255,255,.08);white-space:nowrap;}
.ox-trust-pill svg{width:12px;height:12px;color:#ffd814;}

/* Desktop Mega Menu - Temu style */
.tm-mega{position:absolute;top:100%;left:0;width:860px;max-width:95vw;z-index:400;background:#fff;border-radius:0 0 12px 12px;box-shadow:0 8px 40px rgba(0,0,0,.18);display:none;overflow:hidden;}
.tm-mega.open{display:flex;}
.tm-cat-list{width:200px;flex-shrink:0;background:#f7f7f7;overflow-y:auto;max-height:500px;padding:6px 0;}
.tm-cat-list::-webkit-scrollbar{width:3px;}
.tm-cat-list::-webkit-scrollbar-thumb{background:#ddd;border-radius:2px;}
.tm-cat-row{display:flex;align-items:center;gap:6px;padding:11px 14px;cursor:pointer;border-left:3px solid transparent;transition:all .12s;}
.tm-cat-row:hover,.tm-cat-row.active{background:#fff;border-left-color:#fa5130;}
.tm-cat-row-img{width:36px;height:36px;border-radius:50%;overflow:hidden;flex-shrink:0;background:#f0f0f0;border:1.5px solid #ebebeb;}
.tm-cat-row.active .tm-cat-row-img{border-color:#fa5130;}
.tm-cat-row-img img{width:100%;height:100%;object-fit:cover;display:block;}
.tm-cat-row-name{font-size:12.5px;font-weight:500;color:#333;flex:1;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.tm-cat-row.active .tm-cat-row-name{color:#fa5130;font-weight:600;}
.tm-cat-row-arrow{width:12px;height:12px;color:#bbb;flex-shrink:0;}
.tm-cat-row.active .tm-cat-row-arrow{color:#fa5130;}
.tm-sub-panels{flex:1;overflow-y:auto;max-height:500px;background:#fff;}
.tm-sub-panel{display:none;padding:16px 18px 20px;}
.tm-sub-panel.active{display:block;}
.tm-sub-panel-title{font-size:11px;font-weight:700;color:#999;text-transform:uppercase;letter-spacing:.07em;margin-bottom:12px;padding-bottom:8px;border-bottom:1px solid #f3f3f3;}
.tm-sub-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;}
.tm-sub-item{display:flex;flex-direction:column;align-items:center;text-decoration:none;padding:12px 6px 10px;border-radius:10px;border:1.5px solid #f3f3f3;background:#fff;transition:all .18s;}
.tm-sub-item:hover{border-color:#fa5130;background:#fff5f3;transform:translateY(-2px);box-shadow:0 4px 16px rgba(250,81,48,.1);}
.tm-sub-item-img{width:64px;height:64px;border-radius:50%;overflow:hidden;border:2px solid #f3f3f3;margin-bottom:8px;background:#f9f9f9;transition:border-color .18s;flex-shrink:0;}
.tm-sub-item:hover .tm-sub-item-img{border-color:#fa5130;}
.tm-sub-item-img img{width:100%;height:100%;object-fit:cover;display:block;}
.tm-sub-item-name{font-size:11.5px;font-weight:500;color:#333;text-align:center;line-height:1.35;word-break:break-word;transition:color .15s;}
.tm-sub-item:hover .tm-sub-item-name{color:#fa5130;}
.tm-sub-empty{padding:40px;text-align:center;color:#bbb;font-size:13px;}

/* Scroll to top */
.ox-scroll-top{position:fixed;bottom:24px;right:24px;width:40px;height:40px;background:#febd69;border:1px solid #f3a847;border-radius:3px;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;transform:translateY(12px);transition:all .25s;z-index:8000;color:#333;}
.ox-scroll-top.show{opacity:1;transform:translateY(0);}
.ox-scroll-top:hover{background:#f3a847;}

/* =====================================================
   MOBILE HEADER - EXACT TEMU STYLE
   ===================================================== */
.ox-mob-header{background:#fff;position:sticky;top:0;z-index:300;display:none;flex-direction:column;}

/* Top bar - white bg like Temu */
.mob-topbar{
    background:#fff;
    display:flex;
    align-items:center;
    padding:8px 12px;
    gap:8px;
    border-bottom:1px solid #f0f0f0;
}
.mob-logo-wrap{flex-shrink:0;text-decoration:none;display:flex;align-items:center;}
.mob-logo-wrap img{height:28px;width:auto;max-width:90px;object-fit:contain;display:block;}

/* Search bar - Temu style (rounded, gray bg) */
.mob-search-wrap{flex:1;min-width:0;position:relative;}
.mob-search-box{
    display:flex;
    align-items:center;
    background:#f5f5f5;
    border-radius:20px;
    overflow:hidden;
    height:36px;
    padding:0 4px 0 14px;
    border:1px solid #ebebeb;
}
.mob-search-box:focus-within{border-color:#fa5130;background:#fff;}
.mob-search-icon{width:16px;height:16px;color:#999;flex-shrink:0;margin-right:6px;}
.mob-search-input{
    flex:1;
    border:none;
    outline:none;
    background:transparent;
    font-size:13px;
    color:#111;
    min-width:0;
    height:100%;
}
.mob-search-input::placeholder{color:#aaa;font-size:12px;}
.mob-search-btn{
    background:transparent;
    border:none;
    color:#fa5130;
    width:34px;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    flex-shrink:0;
}
.mob-search-btn svg{width:18px;height:18px;}

/* Top right icons - Temu style */
.mob-topbar-icons{display:flex;align-items:center;gap:4px;flex-shrink:0;}
.mob-icon-btn{
    width:34px;height:34px;
    display:flex;align-items:center;justify-content:center;
    border:none;background:transparent;
    cursor:pointer;color:#333;position:relative;
    text-decoration:none;border-radius:50%;
    transition:background .15s;
    flex-shrink:0;
}
.mob-icon-btn:hover{background:#f5f5f5;}
.mob-icon-btn svg{width:22px;height:22px;}
.mob-icon-badge{
    position:absolute;top:1px;right:1px;
    min-width:15px;height:15px;
    background:#fa5130;color:#fff;
    border-radius:8px;font-size:9px;font-weight:700;
    display:flex;align-items:center;justify-content:center;
    padding:0 3px;
}

/* Category tab strip - exact Temu style */
.mob-cat-tabs{
    background:#fff;
    display:flex;
    align-items:center;
    overflow-x:auto;
    scrollbar-width:none;
    -ms-overflow-style:none;
    border-bottom:1px solid #f0f0f0;
    padding:0 8px;
}
.mob-cat-tabs::-webkit-scrollbar{display:none;}
.mob-cat-tab{
    display:flex;
    align-items:center;
    padding:9px 10px;
    font-size:13px;
    font-weight:500;
    color:#555;
    white-space:nowrap;
    border-bottom:2px solid transparent;
    cursor:pointer;
    text-decoration:none;
    transition:color .15s,border-color .15s;
    flex-shrink:0;
    line-height:1;
}
.mob-cat-tab:first-child{font-weight:700;color:#111;}
.mob-cat-tab.selected{color:#fa5130;border-bottom-color:#fa5130;font-weight:700;}
.mob-cat-tab:hover{color:#fa5130;}

.mob-suggest{
    position:fixed;
    top:auto;
    left:0;
    right:0;
    width:100%;
    background:#fff;
    z-index:99999;
    max-height:70vh;
    overflow-y:auto;
    display:none;
    border-top:1px solid #f0f0f0;
    box-shadow:0 8px 24px rgba(0,0,0,.12);
}
.mob-suggest.open{display:block;}
.mob-suggest .ox-sug-item{
    padding:12px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    border-bottom:1px solid #f5f5f5;
    transition:background .1s;
}
.mob-suggest .ox-sug-item:hover{background:#fff5f3;}
.mob-suggest .ox-sug-img{
    width:52px;
    height:52px;
    border-radius:8px;
    object-fit:cover;
    flex-shrink:0;
    background:#f5f5f5;
    border:1px solid #f0f0f0;
}
.mob-suggest .ox-sug-name{
    font-size:13px;
    font-weight:500;
    color:#111;
    white-space:normal;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    line-height:1.4;
}
.mob-suggest .ox-sug-price{
    font-size:13px;
    color:#fa5130;
    font-weight:700;
    margin-top:4px;
}
.mob-suggest .ox-sug-msg{
    padding:24px 16px;
    text-align:center;
    color:#aaa;
    font-size:13px;
}

/* Mobile Bottom Nav */
.mob-bottom-nav{background:#fff;border-top:1px solid #e5e7eb;display:flex;align-items:center;justify-content:space-around;padding:6px 0 4px;position:fixed;bottom:0;left:0;right:0;z-index:290;box-shadow:0 -2px 12px rgba(0,0,0,.06);}
.mob-nav-item{display:flex;flex-direction:column;align-items:center;gap:3px;padding:4px 10px;text-decoration:none;cursor:pointer;border:none;background:transparent;position:relative;min-width:52px;flex:1;}
.mob-nav-icon{width:22px;height:22px;color:#aaa;transition:color .15s;}
.mob-nav-label{font-size:10px;font-weight:500;color:#aaa;line-height:1;transition:color .15s;}
.mob-nav-item:hover .mob-nav-icon,.mob-nav-item:hover .mob-nav-label,.mob-nav-item.active .mob-nav-icon,.mob-nav-item.active .mob-nav-label{color:#fa5130;}
.mob-nav-badge{position:absolute;top:0;right:calc(50% - 20px);min-width:15px;height:15px;background:#fa5130;color:#fff;border-radius:8px;font-size:9px;font-weight:700;display:flex;align-items:center;justify-content:center;padding:0 3px;}

/* =====================================================
   MOBILE DRAWER - EXACT TEMU STYLE
   ===================================================== */
.mob-drawer{
    position:fixed;top:0;left:0;
    width:100%;max-width:100%;
    height:100%;background:#f5f5f5;
    z-index:9999;
    transform:translateX(-100%);
    transition:transform .28s cubic-bezier(.4,0,.2,1);
    overflow-y:auto;
    box-shadow:4px 0 20px rgba(0,0,0,.2);
    display:flex;flex-direction:column;
}
.mob-drawer.open{transform:translateX(0);}
.mob-overlay{position:fixed;inset:0;background:rgba(0,0,0,.45);z-index:9998;display:none;}
.mob-overlay.open{display:block;}

/* Drawer header - white card */
.tm-drawer-head{
    background:#fff;
    padding:14px 16px 12px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-shrink:0;
}
.tm-drawer-logo{height:26px;width:auto;object-fit:contain;}
.tm-drawer-close{
    background:transparent;border:none;
    color:#333;cursor:pointer;
    width:32px;height:32px;
    display:flex;align-items:center;justify-content:center;
    border-radius:50%;
    transition:background .15s;
}
.tm-drawer-close:hover{background:#f5f5f5;}
.tm-drawer-close svg{width:20px;height:20px;}

/* Drawer user strip */
.tm-drawer-user{
    background:#fff;
    margin:8px 12px 0;
    border-radius:10px;
    padding:12px 14px;
    display:flex;
    align-items:center;
    gap:10px;
    flex-shrink:0;
}
.tm-drawer-avatar{
    width:38px;height:38px;border-radius:50%;
    background:#fa5130;color:#fff;
    display:flex;align-items:center;justify-content:center;
    font-size:16px;font-weight:700;flex-shrink:0;
}
.tm-drawer-user-name{font-size:14px;font-weight:600;color:#111;}
.tm-drawer-user-sub{font-size:12px;color:#aaa;margin-top:2px;}
.tm-drawer-user-sub a{color:#fa5130;text-decoration:none;font-weight:500;}

/* Quick action buttons */
.tm-drawer-quick{
    background:#fff;
    margin:8px 12px 0;
    border-radius:10px;
    display:flex;
    overflow:hidden;
    flex-shrink:0;
}
.tm-drawer-qa{
    flex:1;display:flex;flex-direction:column;align-items:center;
    padding:12px 6px;text-decoration:none;
    border-right:1px solid #f5f5f5;
    transition:background .12s;gap:4px;
}
.tm-drawer-qa:last-child{border-right:none;}
.tm-drawer-qa:hover{background:#fef8f0;}
.tm-drawer-qa svg{width:20px;height:20px;color:#fa5130;}
.tm-drawer-qa-label{font-size:10px;font-weight:500;color:#444;text-align:center;}

/* Drawer "Shop by category" section */
.tm-drawer-cat-section{
    background:#fff;
    margin:8px 12px 0;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
}
.tm-drawer-cat-section-head{
    padding:12px 14px 10px;
    font-size:13px;
    font-weight:700;
    color:#111;
    border-bottom:1px solid #f5f5f5;
    display:flex;align-items:center;justify-content:space-between;
}
.tm-drawer-cat-section-head a{font-size:12px;color:#fa5130;font-weight:500;text-decoration:none;}

/* Sub-category grid inside drawer - Temu exact layout */
.tm-drawer-sub-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:0;
    background:#fff;
}
.tm-drawer-sub-item{
    display:flex;flex-direction:column;align-items:center;
    padding:12px 6px;
    text-decoration:none;
    border-right:1px solid #f5f5f5;
    border-bottom:1px solid #f5f5f5;
    background:#fff;
    transition:background .12s;
}
.tm-drawer-sub-item:hover{background:#fff5f3;}
.tm-drawer-sub-img{
    width:54px;height:54px;border-radius:10px;
    overflow:hidden;background:#f5f5f5;
    margin-bottom:6px;flex-shrink:0;
    border:1px solid #f0f0f0;
}
.tm-drawer-sub-img img{width:100%;height:100%;object-fit:cover;display:block;}
.tm-drawer-sub-name{font-size:11px;font-weight:500;color:#333;text-align:center;line-height:1.3;word-break:break-word;}
.tm-drawer-sub-item:hover .tm-drawer-sub-name{color:#fa5130;}

/* "Shop more" categories list below grid */
.tm-drawer-more-cats{
    background:#fff;
    margin:8px 12px 0;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
}
.tm-drawer-cat-row{
    display:flex;align-items:center;gap:12px;
    padding:12px 14px;
    border-bottom:1px solid #f5f5f5;
    cursor:pointer;transition:background .1s;
    text-decoration:none;
}
.tm-drawer-cat-row:last-child{border-bottom:none;}
.tm-drawer-cat-row:hover{background:#fef8f0;}
.tm-drawer-cat-row-img{
    width:38px;height:38px;border-radius:8px;
    overflow:hidden;flex-shrink:0;background:#f5f5f5;
    border:1px solid #f0f0f0;
}
.tm-drawer-cat-row-img img{width:100%;height:100%;object-fit:cover;display:block;}
.tm-drawer-cat-row-name{flex:1;font-size:13px;font-weight:500;color:#222;}
.tm-drawer-cat-row-arrow{width:14px;height:14px;color:#ccc;}
.tm-drawer-cat-row-active{background:#fff5f3;}
.tm-drawer-cat-row-active .tm-drawer-cat-row-name{color:#fa5130;font-weight:600;}
.tm-drawer-cat-row-active .tm-drawer-cat-row-arrow{color:#fa5130;}

/* Account section */
.tm-drawer-account{
    background:#fff;
    margin:8px 12px 0;
    border-radius:10px;
    overflow:hidden;
    flex-shrink:0;
}
.tm-drawer-acc-item{
    display:flex;align-items:center;gap:12px;
    padding:13px 14px;
    font-size:13px;color:#222;
    text-decoration:none;
    border-bottom:1px solid #f5f5f5;
    transition:background .1s;
}
.tm-drawer-acc-item:last-child{border-bottom:none;}
.tm-drawer-acc-item:hover{background:#f9fafb;}
.tm-drawer-acc-item svg{width:18px;height:18px;color:#fa5130;flex-shrink:0;}

@media(max-width:900px){
    .ox-header{display:none!important;}
    .ox-mob-header{display:flex!important;}
    body{padding-bottom:70px;}
}
@media(min-width:901px){
    .ox-mob-header{display:none!important;}
    .mob-bottom-nav{display:none!important;}
}
