/* =========================
   Button – EXACT MATCH (REFINED)
========================= */
.ta-category-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;

    height: 44px;
    padding: 6px 18px 6px 6px;

    background: #ffffff;
    border-radius: 28px;              /* not fully round – more premium */
    border: 1px solid #eef1f6;        /* softer border */

    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;                   /* dark gray, not pure black */

    cursor: pointer;
    white-space: nowrap;

    box-shadow: 
        0 1px 2px rgba(0,0,0,0.05);   /* subtle real shadow (no glow ring) */

    transition: 
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

/* Hover – ultra subtle (professional) */
.ta-category-btn:hover{
    border-color: #e3e8f3;
    box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}


/* =========================
   Blue Icon Circle (FIXED)
========================= */
.ta-hamburger{
    width: 32px;
    height: 32px;
    border-radius: 50%;

    background: #2f6bff;

    display: flex;                   /* FIX */
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 2.5px;                        /* precise spacing */
    flex-shrink: 0;
}

/* White Hamburger Lines (FIXED) */
.ta-hamburger span{
    width: 15px;                     /* slightly wider */
    height: 2.5px;                   /* thicker = premium */
    background: #ffffff;
    border-radius: 2px;
    display: block;
}

/* ❌ REMOVED margin-top stacking (important) */


/* =========================
   Overlay (UNCHANGED)
========================= */
.ta-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 9998;
}

.ta-overlay.is-active{
    opacity: 1;
    pointer-events: auto;
}

/* =========================
   Slide Panel (UNCHANGED)
========================= */
.ta-slide-panel{
    position: fixed;
    top: 0;
    height: 100vh;
    width: 320px;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 0 30px rgba(0,0,0,.12);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}

.side-right{
    right: 0;
    transform: translateX(100%);
}

.side-left{
    left: 0;
    transform: translateX(-100%);
}

.ta-slide-panel.is-open{
    transform: translateX(0);
}

/* =========================
   Panel Header (UNCHANGED)
========================= */
.ta-panel-header{
    padding: 18px 20px;
    border-bottom: 1px solid #eef0f4;
}

.ta-panel-header h6{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

/* =========================
   Categories List (UNCHANGED)
========================= */
.ta-category-list{
    list-style: none;
    margin: 0;
    padding: 16px;
}

.ta-category-list li a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
}

.ta-category-list img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 6px;
}

.ta-category-list li a:hover{
    background: #f5f7fa;
}
