/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    color: #333;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

/* Header */
.app-header {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 30px 40px;
    border-radius: 0 0 20px 20px;
}

.header-content {
    text-align: center;
    margin-bottom: 25px;
}

.header-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-content h1 i {
    color: #ffd166;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    min-width: 120px;
    transition: all 0.3s;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.stat i {
    font-size: 2.2rem;
    color: #ffd166;
    margin-bottom: 10px;
    display: block;
}

.stat span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.stat strong {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Main Content */
.main-content {
    padding: 40px;
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ffffff, #fff9f5);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1100px) {
    .hero-section {
        grid-template-columns: 1fr;
    }
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 30px;
}

/* Main Search */
.main-search {
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 5px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    margin-bottom: 20px;
}

.search-box:focus-within {
    border-color: #ff6b6b;
    box-shadow: 0 5px 25px rgba(255, 107, 107, 0.2);
}

.search-box i {
    font-size: 1.2rem;
    color: #95a5a6;
    margin: 0 20px;
}

.search-box input {
    flex: 1;
    border: none;
    padding: 20px 10px;
    font-size: 1.1rem;
    background: transparent;
    outline: none;
    font-family: inherit;
    color: #2c3e50;
}

.search-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    padding: 20px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.search-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tag-label {
    color: #7f8c8d;
    font-weight: 500;
    font-size: 0.95rem;
}

.tag {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag:hover {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-item.active {
    opacity: 1;
}

/* Filters Section */
.filters-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.filters-header h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}

.clear-btn {
    background: #95a5a6;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.clear-btn:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-group label {
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-select {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

.filter-select:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

/* Advanced Filters */
.advanced-toggle {
    text-align: center;
    margin: 20px 0;
}

#toggleAdvanced {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

#toggleAdvanced:hover {
    background: #ff6b6b;
    color: white;
}

.advanced-filters {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.advanced-filters.show {
    max-height: 500px;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.checkbox input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    position: relative;
    transition: all 0.3s;
}

.checkbox input:checked ~ .checkmark {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Ingredients Input */
.ingredients-input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.ingredients-input input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.ingredients-input input:focus {
    outline: none;
    border-color: #ff6b6b;
}

#addIngredient {
    background: #ff6b6b;
    color: white;
    border: none;
    width: 50px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

#addIngredient:hover {
    background: #ff5252;
}

.ingredients-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ingredient-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ingredient-tag .remove {
    cursor: pointer;
    font-size: 0.8rem;
    opacity: 0.7;
}

.ingredient-tag .remove:hover {
    opacity: 1;
}

/* Results Section */
.results-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.results-header h3 {
    font-size: 1.6rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 12px;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #7f8c8d;
    font-weight: 500;
}

#resultsCount {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.2rem;
}

.view-toggle {
    display: flex;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 5px;
}

.view-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    color: #95a5a6;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-btn.active {
    background: white;
    color: #ff6b6b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Recipes Grid */
.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.recipes-grid.list-view {
    grid-template-columns: 1fr;
}

.recipe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.recipe-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.recipe-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.recipe-content {
    padding: 25px;
}

.recipe-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.recipe-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c3e50;
    line-height: 1.3;
    flex: 1;
}

.favorite-btn {
    background: transparent;
    border: none;
    color: #bdc3c7;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    padding: 5px;
}

.favorite-btn:hover {
    color: #ff6b6b;
}

.favorite-btn.favorited {
    color: #ff6b6b;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.recipe-desc {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recipe-tag {
    background: #f8f9fa;
    color: #5a6c7d;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* List View */
.recipe-card.list-view {
    display: flex;
    height: 200px;
}

.recipe-card.list-view .recipe-image {
    width: 200px;
    height: 100%;
    flex-shrink: 0;
}

.recipe-card.list-view .recipe-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Loading Placeholder */
.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #95a5a6;
}

.loading-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.loading-placeholder p {
    font-size: 1.2rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pagination button {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    padding: 12px 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    min-width: 45px;
}

.pagination button:hover:not(:disabled) {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.pagination button.active {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Featured Section */
.featured-section {
    margin-bottom: 50px;
}

.featured-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.featured-slider {
    padding: 20px 0;
}

.featured-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin: 0 15px;
}

.featured-card:hover {
    transform: translateY(-5px);
}

.featured-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.featured-content {
    padding: 25px;
}

.featured-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

/* Meal Planning */
.meal-planning {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.planning-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.planning-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 15px;
}

.plan-btn {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.week-plan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.day-plan {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s;
}

.day-plan:hover {
    border-color: #4ecdc4;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.day-header h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.add-meal {
    background: #4ecdc4;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.add-meal:hover {
    background: #3dbcb3;
    transform: rotate(90deg);
}

.meal-card {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-meal {
    text-align: center;
    color: #bdc3c7;
}

.empty-meal i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Shopping List */
.shopping-list {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.list-header h3 {
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.list-content {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-list {
    text-align: center;
    color: #bdc3c7;
    padding: 40px 20px;
}

.empty-list i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

/* Favorites Section */
.favorites-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.favorites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.favorites-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-all-btn {
    background: transparent;
    border: 2px solid #ff6b6b;
    color: #ff6b6b;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: #ff6b6b;
    color: white;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    min-height: 300px;
}

.empty-favorites {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #bdc3c7;
}

.empty-favorites i {
    font-size: 3rem;
    color: #ffb8b8;
    margin-bottom: 15px;
    display: block;
}

/* Footer */
.app-footer {
    background: linear-gradient(135deg, #2c3e50, #1a2530);
    color: white;
    padding: 50px 40px;
    border-radius: 20px 20px 0 0;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #ff6b6b;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.api-note {
    color: #ffd166;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-modal .modal-body {
    padding: 40px;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-content i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.loading-content p {
    font-size: 1.3rem;
    font-weight: 500;
}

/* Toast Notifications */
#toastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.toast {
    background: #2ecc71;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: toastSlide 0.3s ease;
    font-weight: 500;
}

@keyframes toastSlide {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast.error {
    background: #e74c3c;
}

.toast.warning {
    background: #f39c12;
}

.toast.info {
    background: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .app-header {
        padding: 20px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .hero-section {
        padding: 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .search-box {
        flex-direction: column;
        padding: 15px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .week-plan {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .recipe-modal .modal-body {
        padding: 20px;
    }
}

/* Splide Customization */
.splide__arrow {
    background: #ff6b6b !important;
}

.splide__arrow svg {
    fill: white !important;
}

.splide__pagination__page.is-active {
    background: #ff6b6b !important;
}
