.header {
    position: sticky; top: 0; left: 0; width: 100%;
    background: #fff; border-bottom: 1px solid #ddd; z-index: 1000;
    padding: 10px 0;
}
a{text-decoration: none;}
.container {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1400px; margin: 0 auto; padding: 0 20px; gap: 15px;
}

.logo img { height: 35px; }
.exp-icon::before { content: attr(data-pc); font-size: 14px; color: #555; }
.btn-cat-pc {
    border: 1.5px solid var(--celeste); background: #fff;
    border-radius: 25px; padding: 8px 18px; font-weight: bold;
    display: flex; align-items: center; gap: 8px; cursor: pointer;
}
.cat-wrapper { position: relative; padding-bottom: 15px; margin-bottom: -15px; }
.menu-l1 {
    display: none; position: absolute; top: 45px; left: 0; width: 230px;
    background: #fff; list-style: none; box-shadow: 0 4px 10px rgba(0,0,0,0.1); border-radius: 4px;
}
.menu-l2 {
    display: none; position: absolute; left: 100%; top: 0; width: 200px;
    background: #fff; list-style: none; box-shadow: 4px 0 10px rgba(0,0,0,0.1); border-radius: 0 4px 4px 0;
}
@media (min-width: 992px) {
    .cat-wrapper:hover .menu-l1 { display: block; }
    .has-sub:hover > .menu-l2 { display: block; }
    .has-sub:hover { background: #f9f9f9; }
    .mobile-only, .mobile-header { display: none !important; }
}
.item-link { padding: 12px 15px; display: flex; justify-content: space-between; border-bottom: 1px solid #eee; }
.item-link a { text-decoration: none; color: #333; }
.menu-l2 li a { display: block; padding: 10px 15px; text-decoration: none; color: #666; font-size: 14px; }
.search-box { flex-grow: 1; display: flex; align-items: center; border: 1px solid #444; border-radius: 4px; padding: 5px 15px; }
.search-box input { border: none; outline: none; width: 100%; margin: 0 10px; font-size: 14px; }
.search-tools { display: flex; gap: 12px; font-size: 18px; cursor: pointer; }
.user-actions { display: flex; gap: 20px; align-items: center; }
.action-item { cursor__: pointer; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.cart { position: relative; }
.dot { width: 15px; font-size:10px;height: 15px;text-align:center; padding_:3px; background: skyblue; border-radius: 50%; position: absolute; top: -5px; right: -8px; }
.menu-toggle { display: none; }
@media (max-width: 991px) {
    .desktop-only, .btn-cat-pc { display: none !important; }
    .mobile-only { display: block; }
    
    .menu-toggle { display: block;font-size: 30px; cursor: pointer; }
 
    .logo img { height: 25px; }
    .user-circle { border: 1.5px solid #333; border-radius: 50%; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; }
    .exp-icon::before { content: attr(data-mobile); font-weight: bold; font-size: 18px; }
    .nav-main{	
        position: fixed; top: 0; left: -100%; width: 80%; height: 100%;
        background: #fff; transition: 0.3s; z-index: 1100;
    }
	
	
	
    .nav-main.active { left: 0; box-shadow: 2px 0 10px rgba(0,0,0,0.2); }

	
	
    .mobile-header { padding: 20px; background: #f4f4f4; display: flex; justify-content: space-between; font-weight: bold; }
    .close-btn { font-size: 25px; cursor: pointer; }

    .menu-l1 { display: block; position: static; width: 100%; box-shadow: none; }
    .menu-l2 { position: static; width: 100%; box-shadow: none; display: none; background: #fcfcfc; padding-left: 15px; }
    .menu-l2.open { display: block; }
	
	
    .item-link { cursor: pointer; }

	
}