.mobile-post-ad {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    max-width: 300px;
    z-index: 1000;
    display: none; 
}

.post-ad-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ffeb3b, #fdd835); 
    color: #333;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border: 1px solid #e0c200;
    transition: all 0.3s ease;
}

.post-ad-btn:hover {
    background: linear-gradient(to bottom, #fdd835, #ffeb3b);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.post-ad-btn i {
    font-size: 18px;
    margin-right: 8px; 
    color: #333; 
}


.post-ad-btn span {
    color:#333 !important;
}



.deal-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 10; 
    padding: 5px 10px;
    font-size: 14px;
    background-color: red;
    color: white;
    border-radius: 5px;
}




    .deal-timer {
        background-color: #f7f7f7;
        border: 2px solid #ddd; 
        padding: 15px;
        border-radius: 8px;
        text-align: center; 
        width: 250px;
        margin-top: 20px; 
        font-family: 'Arial', sans-serif;
    }


    .deal-timer p {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        color: #333;
    }

    .deal-timer span {
        font-size: 24px;
        font-weight: bold;
        color: #e74c3c;
        display: inline-block;
        padding: 5px 15px;
        background-color: #ffeb3b; 
        border-radius: 8px; 
    }
    
    
    
    
    .category-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: nowrap;
            background: #f8f9fa;
            padding: 15px;
            overflow-x: auto;
        }

        .category-column {
            flex: 1;
            min-width: 200px;
        }

        .category-column h4 {
            font-size: 16px;
            font-weight: bold;
        }

        .category-column ul {
            list-style: none;
            padding: 0;
        }

        .category-column ul li {
            font-size: 14px;
            padding: 5px 0;
        }

        /* Mobile View (Hidden by Default) */
        .mobile-accordion {
            display: none;
        }
        
        
        
        
        

    

    @media screen and (max-width: 480px) {
        .deal-timer {
            width: 100%; 
            padding: 10px;
        }

        .deal-timer span {
            font-size: 20px;
        }
        
          .mobile-accordion {
             
                 display: none; /* Hide Desktop View */
            }
        
        
        .category-container {
               display: block; /* Show Mobile Accordion */
               
            }

          
        
        
        
        
        
        
    }







@media (max-width: 768px) {
    .mobile-post-ad {
        display: block; /* Show only on mobile */
    }
    
    
    .category-container {
                display: none; /* Hide Desktop View */
            }

            .mobile-accordion {
                display: block; /* Show Mobile Accordion */
            }
    
}
