/**
 * Responsive Styles
 */

@media (max-width: 1024px) {
    .twm-meal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .twm-meal-sidebar {
        position: static;
    }
    
    .twm-search-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .twm-search-field:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .twm-container {
        padding: 0 20px;
    }
    
    .twm-search-hero {
        padding: 60px 0;
    }
    
    .twm-search-container h1 {
        font-size: 32px;
    }
    
    .twm-search-container > p {
        font-size: 16px;
    }
    
    .twm-search-grid {
        grid-template-columns: 1fr;
    }
    
    .twm-meals-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .twm-filters-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .twm-filters {
        flex-wrap: wrap;
    }
    
    .twm-booking-card {
        grid-template-columns: 1fr;
    }
    
    .twm-booking-image {
        width: 100%;
    }
    
    .twm-booking-actions {
        flex-direction: row;
    }
    
    .twm-meal-manage-card {
        grid-template-columns: 1fr;
    }
    
    .twm-profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .twm-host-card {
        flex-direction: column;
        text-align: center;
    }
    
    .twm-dashboard-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .twm-tab-btn {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .twm-search-container h1 {
        font-size: 24px;
    }
    
    .twm-meal-header h1 {
        font-size: 24px;
    }
    
    .twm-section h2 {
        font-size: 20px;
    }
    
    .twm-form-row {
        grid-template-columns: 1fr;
    }
    
    .twm-booking-actions {
        flex-direction: column;
    }
}
