
PK 
/* Custom responsive styles */
@media (min-width: 578px) {
/* Desktop styles */
.header-dropdown .mobile-cart {
display: none !important;
}
.top-header .header-dropdown {
display: flex;
align-items: center;
}
.top-header .header-dropdown li {
padding: 10px 25px;
color: #d9d9d9;
}
.top-header .header-dropdown li a {
color: #d9d9d9;
text-decoration: none;
}
.top-header .header-dropdown li i {
margin-right: 5px;
color: #d9d9d9;
}
.top-header .header-dropdown li a:hover,
.top-header .header-dropdown li a:hover i {
color: #ff9001;
}
.icon-nav .mobile-cart {
display: block !important;
}
.icon-nav .mobile-cart i {
font-size: 22px;
color: #333;
}
}
/* Mobile styles */
@media (max-width: 577px) {
.my-float {
bottom: 11% !important;
}
.top-header {
height: auto;
}
.icon-nav .mobile-cart {
display: none !important;
}
.top-header .header-dropdown {
justify-content: space-between;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #4b4b4b;
padding: 10px 15px;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
z-index: 1000;
margin: 0;
display: flex;
width: 100%;
} .top-header .header-dropdown li {
padding: 0 !important;
margin: 0;
position: relative;
text-align: center;
min-width: 60px;
}
.top-header .header-dropdown li a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 11px;
color: #000;
font-weight: 500;
text-decoration: none;
padding: 0;
height: 100%;
line-height: 1.2;
} .top-header .header-dropdown li i {
font-size: 22px;
margin-bottom: 4px;
color: #ff9001;
display: block;
line-height: 1;
}
.mobile-cart {
display: block !important;
position: relative !important;
bottom: auto !important;
right: auto !important;
}
.mobile-cart a {
display: flex;
flex-direction: column;
align-items: center;
font-size: 11px;
color: #333;
}
.mobile-cart i {
font-size: 20px;
margin-bottom: 3px;
color: #ff9001;
}
.mobile-cart .cart_qty_cls {
position: absolute;
top: -5px;
right: 8px;
min-width: 18px;
height: 18px;
background: #ff9001;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 11px;
font-weight: bold;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.mobile-account span {
max-width: 70px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block;
color: #d9d9d9;
font-weight: 500;
}
}


PK 99