
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-left span, .header-right span {
    margin: 0 10px;
}

.menu-icon, .email-icon, .search-icon, .heart-icon, .cart-icon {
    cursor: pointer;
}

@media (max-width: 768px) {
    .header-left span, .header-right span {
        margin: 0 5px;
    }
}

.mobile-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #767676;
}

.footer-item p {
    margin-top: 5px;
    font-size: 12px;
    color: #000;
}

.footer-item svg {
    color: #000;
    fill: currentColor;
}

@media (max-width: 768px) {
    .footer-item p {
        font-size: 10px;
    }
}