/* Reset and base styles */
.zonodeals-mobile-footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer bar styling */
.zonodeals-mobile-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #007bff; /* Blue background */
    display: flex;
    justify-content: center;
    z-index: 9999;
    padding: 15px 0;
    border: none;
    height: 70px; /* Increased height */
    border-top: none;
}

.zonodeals-mobile-footer-menu {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    padding: 0 20px;
    list-style: none;
    height: 100%;
}

.zonodeals-mobile-footer-menu li {
    list-style: none;
    text-align: center;
    flex: 1;
    max-width: 70px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zonodeals-mobile-footer-menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #d4af37; /* Gold icon/text */
    text-decoration: none;
    padding: 8px 12px;
    border: none;
    outline: none;
    background: transparent;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 50px;
    /* Remove all borders and underlines */
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Remove focus borders and outlines */
.zonodeals-mobile-footer-menu a:focus,
.zonodeals-mobile-footer-menu a:active,
.zonodeals-mobile-footer-menu a:hover {
    outline: none;
    border: none;
    box-shadow: none;
    background: transparent;
    text-decoration: none;
    border-bottom: none;
}

.zonodeals-mobile-footer-menu i {
    font-size: 24px; /* Increased icon size */
    color: #d4af37; /* Gold icons */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Remove text labels */
.zonodeals-mobile-footer-menu span:not(.cart-count) {
    display: none;
}

/* Cart badge styling - Always show count */
.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    min-width: 20px;
    height: 20px;
    background: #ffffff; /* Blue background */
    color: #d4af37; /* Gold text */
    border-radius: 50%;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Position relative for cart button */
.zonodeals-mobile-footer-menu li.cart {
    position: relative;
}

/* Search functionality */
.zonodeals-mobile-footer-menu li.search {
    position: relative;
}

.search-form-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #007bff;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 10000;
}

.search-form-container.active {
    display: block;
}

.search-form {
    width: 100%;
    display: flex;
    margin: 0;
}

.search-field {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
    background: white;
    color: #333;
    margin: 0;
}

.search-field::placeholder {
    color: #999;
}

/* Additional fixes to remove any lines */
.zonodeals-mobile-footer-menu li {
    border: none;
    border-bottom: none;
}

.zonodeals-mobile-footer-menu a::after,
.zonodeals-mobile-footer-menu a::before {
    display: none;
}

/* Remove any potential text decoration on hover/focus */
.zonodeals-mobile-footer-menu a:hover i,
.zonodeals-mobile-footer-menu a:focus i,
.zonodeals-mobile-footer-menu a:active i {
    text-decoration: none;
    border: none;
    outline: none;
}

/* Responsive design for all screens */
@media (max-width: 480px) {
    .zonodeals-mobile-footer {
        height: 65px;
        padding: 12px 0;
    }
    
    .zonodeals-mobile-footer-menu {
        padding: 0 15px;
    }
    
    .zonodeals-mobile-footer-menu li {
        max-width: 60px;
    }
    
    .zonodeals-mobile-footer-menu a {
        padding: 6px 10px;
        min-height: 45px;
    }
    
    .zonodeals-mobile-footer-menu i {
        font-size: 22px;
        width: 26px;
        height: 26px;
    }
    
    .cart-count {
        min-width: 18px;
        height: 18px;
        font-size: 10px;
        top: 4px;
        right: 4px;
    }
    
    .search-field {
        padding: 12px 18px;
        font-size: 15px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .zonodeals-mobile-footer {
        height: 75px;
        padding: 15px 0;
    }
    
    .zonodeals-mobile-footer-menu {
        padding: 0 25px;
    }
    
    .zonodeals-mobile-footer-menu li {
        max-width: 75px;
    }
    
    .zonodeals-mobile-footer-menu a {
        padding: 10px 15px;
        min-height: 55px;
    }
    
    .zonodeals-mobile-footer-menu i {
        font-size: 26px;
        width: 32px;
        height: 32px;
    }
    
    .cart-count {
        min-width: 22px;
        height: 22px;
        font-size: 12px;
        top: 6px;
        right: 6px;
    }
}

/* For very small screens */
@media (max-width: 320px) {
    .zonodeals-mobile-footer {
        height: 60px;
        padding: 10px 0;
    }
    
    .zonodeals-mobile-footer-menu {
        padding: 0 10px;
    }
    
    .zonodeals-mobile-footer-menu li {
        max-width: 55px;
    }
    
    .zonodeals-mobile-footer-menu a {
        padding: 5px 8px;
        min-height: 40px;
    }
    
    .zonodeals-mobile-footer-menu i {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    
    .cart-count {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: 3px;
        right: 3px;
    }
    
    .search-field {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* For larger screens (tablets) */
@media (min-width: 769px) and (max-width: 1024px) {
    .zonodeals-mobile-footer {
        height: 80px;
        padding: 18px 0;
    }
    
    .zonodeals-mobile-footer-menu {
        padding: 0 30px;
    }
    
    .zonodeals-mobile-footer-menu li {
        max-width: 80px;
    }
    
    .zonodeals-mobile-footer-menu a {
        padding: 12px 18px;
        min-height: 60px;
    }
    
    .zonodeals-mobile-footer-menu i {
        font-size: 28px;
        width: 34px;
        height: 34px;
    }
    
    .cart-count {
        min-width: 24px;
        height: 24px;
        font-size: 13px;
        top: 8px;
        right: 8px;
    }
}

/* Ensure no horizontal scroll */
body {
    overflow-x: hidden;
}

/* Force remove any remaining lines or borders */
.zonodeals-mobile-footer-menu a,
.zonodeals-mobile-footer-menu li,
.zonodeals-mobile-footer-menu i {
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Hide mobile footer on screens >= 993px */
@media (min-width: 993px) {
    .zonodeals-mobile-footer-wrapper {
        display: none !important;
    }
}
