/* Recipes Hero Section */
.recipes-hero {
    padding: 180px 0 100px;
    margin-top: var(--header-height);
    background: linear-gradient(190deg, rgba(247, 248, 247, 0.95), rgba(133, 184, 205, 0.95));
    position: relative;
    overflow: hidden;
}

.bg-pattern-recipes {
    background-image: url('https://images.unsplash.com/photo-1565958011703-44f9829ba187?q=80&w=2065&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.recipes-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.recipes-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-stat h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Search Container */
.search-container {
    margin-top: 40px;
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-box i {
    color: var(--green);
    font-size: 1.2rem;
    margin-right: 15px;
    align-self: center;
}

.search-box input {
    flex: 1;
    border: none;
    background: none;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
    padding: 10px 0;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-btn {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 193, 228, 0.4);
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.search-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.search-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--green);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-recipe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatRecipe 6s ease-in-out infinite;
}

.recipe-card-preview {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.recipe-card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.recipe-info-preview {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
}

.recipe-info-preview h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.recipe-info-preview p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.floating-ingredients {
    position: absolute;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.ingredient {
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: floatIngredient 4s ease-in-out infinite;
}

.ingredient:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.ingredient:nth-child(2) { top: 20%; right: 15%; animation-delay: 0.5s; }
.ingredient:nth-child(3) { bottom: 30%; left: 5%; animation-delay: 1s; }
.ingredient:nth-child(4) { bottom: 15%; right: 10%; animation-delay: 1.5s; }

.ingredient i {
    color: var(--green);
    font-size: 1.2rem;
}

@keyframes floatRecipe {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -55%) rotate(2deg); }
}

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

/* Featured Recipes */
.featured-recipes {
    padding: 100px 0;
}

.featured-slider {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.featured-slide {
    display: none;
    animation: fadeSlide 0.5s ease;
}

.featured-slide.active {
    display: block;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slide-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.slide-image:hover img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--green);
}

.slide-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.recipe-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.recipe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.recipe-tag {
    background: rgba(120, 176, 75, 0.1);
    color: var(--green);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-view-recipe {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid rgba(110, 193, 228, 0.3);
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border-color: transparent;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(110, 193, 228, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: linear-gradient(135deg, var(--green), var(--blue));
    transform: scale(1.2);
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Recipe Categories */
.recipe-categories {
    padding: 100px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--green);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: rotate(360deg) scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.category-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.recipe-count {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(120, 176, 75, 0.1);
    color: var(--green);
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* All Recipes Grid */
.all-recipes {
    padding: 100px 0;
}

.recipe-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 25px;
    background: var(--bg-card);
    border: 2px solid rgba(110, 193, 228, 0.3);
    border-radius: 30px;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--green);
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(110, 193, 228, 0.3);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.recipe-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.recipe-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.recipe-card:hover .recipe-overlay {
    opacity: 1;
}

.play-btn-small {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-btn-small:hover {
    transform: scale(1.1);
    background: var(--green);
    color: white;
}

.quick-view-btn {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.quick-view-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.recipe-info {
    padding: 25px;
}

.recipe-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.recipe-info .recipe-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.recipe-meta-small {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.recipe-meta-small span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.recipe-meta-small i {
    color: var(--green);
}

.btn-recipe {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-recipe:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 193, 228, 0.3);
}

.load-more-container {
    text-align: center;
    margin-top: 50px;
}

.btn-load-more {
    padding: 15px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Video Recipes */
.video-recipes {
    padding: 100px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
}

.video-thumbnail {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-play-btn:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.video-desc {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-meta {
    display: flex;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Recipe Tips */
.recipe-tips {
    padding: 100px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--green);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.tip-card:hover .tip-icon {
    transform: rotate(15deg) scale(1.1);
}

.tip-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.tip-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Share Recipes */
.share-recipes {
    padding: 100px 0;
    text-align: center;
}

.share-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.share-content p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.share-option {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.share-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: var(--green);
}

.share-option i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--green);
}

.share-option h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.share-option p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.hashtag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(120, 176, 75, 0.1), rgba(110, 193, 228, 0.1));
    padding: 15px 30px;
    border-radius: 30px;
    color: var(--green);
    font-weight: 600;
    font-size: 1.1rem;
}

.hashtag i {
    font-size: 1.2rem;
}

/* Recipe Modal */
.recipe-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.recipe-modal-overlay.active {
    display: flex;
}

.recipe-modal {
    background: white;
    border-radius: var(--border-radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
}

.close-modal-btn:hover {
    color: var(--green);
    transform: rotate(90deg);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

/* Video Modal */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal {
    max-width: 900px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.close-video-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.close-video-btn:hover {
    color: var(--green);
    transform: rotate(90deg);
}

.video-player-container {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 10px;
    overflow: hidden;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .recipes-hero h1 {
        font-size: 2.8rem;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide-image {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .recipes-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .recipe-card-preview {
        width: 250px;
        height: 250px;
    }
    
    .ingredient {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .recipes-hero {
        padding: 150px 0 80px;
    }
    
    .recipes-hero h1 {
        font-size: 2.3rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: var(--border-radius);
        padding: 20px;
    }
    
    .search-box input {
        margin: 15px 0;
        padding: 12px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
    }
    
    .search-btn {
        width: 100%;
    }
    
    .featured-slider {
        margin: 0 -20px;
    }
    
    .slide-content {
        border-radius: 0;
    }
    
    .recipe-filters {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .recipes-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .share-options {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .recipe-modal {
        max-height: 85vh;
    }
    
    .recipe-modal-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .recipes-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .recipe-card-preview {
        width: 200px;
        height: 200px;
    }
    
    .ingredient {
        position: static !important;
        margin-bottom: 10px;
        animation: none;
    }
    
    .floating-ingredients {
        position: static;
        flex-direction: column;
        align-items: center;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .video-modal {
        width: 95%;
    }
    
    .close-video-btn {
        top: -30px;
        font-size: 1.5rem;
    }
}