/* Styles for the Kitchen & Health website */
:root {
    --primary: #FFC107; /* Amber yellow - softer and more elegant than bright yellow */
    --primary-dark: #FFA000; /* Darker variant for gradients */
    --primary-light: #FFECB3; /* Lighter variant for accents */
    --dark: #2C3E50; /* Dark blue-gray */
    --light: #F5F7FA; /* Very light blue-gray */
    --gray: #546E7A;
    --light-gray: #90A4AE;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --border-radius: 16px;
    --accent: #FF9800; /* Slightly darker orange accent for contrast */
    --gradient-light: linear-gradient(135deg, #F5F7FA 0%, #E4E8F0 100%);
    --gradient-primary: linear-gradient(135deg, #FFECB3 0%, #FFC107 100%); /* Yellow gradient */
    --gradient-dark: linear-gradient(135deg, #2C3E50 0%, #1A2530 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e4e8f0' fill-opacity='0.6'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    z-index: 100;
}

/* Updated header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: none;
    margin-bottom: 3rem;
    position: relative;
    background: var(--gradient-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 2rem;
}

header::after {
    content: none;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 0.8s forwards;
}

.logo span {
    color: var(--primary);
    position: relative;
}

.logo span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.logo::before {
    content: "🍽️";
    margin-right: 10px;
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-radius: 50px;
}

nav ul li a:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary);
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px;
}

nav ul li a:hover::after {
    width: 70%;
}

/* Updated hero section */
.hero {
    background: var(--gradient-dark);
    color: var(--light);
    padding: 4rem;
    border-radius: var(--border-radius);
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 1s forwards 0.6s;
    box-shadow: var(--shadow);
}

.hero::before, .hero::after {
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    filter: grayscale(20%);
}

.hero::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M15.5 2a3.5 3.5 0 0 1 3.5 3.5v13a3.5 3.5 0 0 1-3.5 3.5h-7a3.5 3.5 0 0 1-3.5-3.5v-13a3.5 3.5 0 0 1 3.5-3.5h7ZM12 5a1 1 0 0 0-1 1a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1a1 1 0 0 0-1-1h-3Zm-3 3h8a.5.5 0 0 1 .5.5v9a.5.5 0 0 1-.5.5h-8a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5Z'/%3E%3C/svg%3E");
    top: -20px;
    right: 40px;
    width: 200px;
    height: 200px;
    transform: rotate(15deg);
}

.hero::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M21 7v10c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V7c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2zM5.5 6c-.28 0-.5.22-.5.5v11c0 .28.22.5.5.5h13c.28 0 .5-.22.5-.5v-11c0-.28-.22-.5-.5-.5h-13zM7 9h10c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1zm0 4h6c.55 0 1 .45 1 1s-.45 1-1 1H7c-.55 0-1-.45-1-1s.45-1 1-1z'/%3E%3C/svg%3E");
    bottom: -30px;
    right: 180px;
    width: 160px;
    height: 160px;
    transform: rotate(-10deg);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero h1::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 70%;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Updated calorie calculator */
.calorie-calculator {
    background: var(--gradient-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow);
    border: none;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s forwards 0.9s;
    position: relative;
    overflow: hidden;
}

.calorie-calculator::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.calorie-calculator h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    color: var(--dark);
}

.calorie-calculator h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.slider-container {
    margin: 2rem 0;
}

.slider-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider {
    flex: 1;
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 10px;
    background: linear-gradient(to right, #e0e0e0 0%, #e0e0e0 100%);
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: var(--transition);
    border: 2px solid white;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.slider-value {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 120px;
    text-align: center;
    padding: 0.6rem 1rem;
    background: var(--gradient-primary);
    color: var(--dark);
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.info-box {
    background: var(--gradient-dark);
    color: var(--light);
    padding: 1.8rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-box::before {
    content: "💡";
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

/* Updated meal plan */
.meal-plan {
    margin: 4rem 0;
    opacity: 0;
    animation: fadeIn 1s forwards 1.2s;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    color: var(--dark);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.days {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.day-tab {
    padding: 1rem 2rem;
    background: var(--gradient-light);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: var(--dark);
}

.day-tab.active {
    background: var(--gradient-primary);
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.day-tab:hover:not(.active) {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.meals-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.meal-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: none;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s forwards;
    position: relative;
}

.meal-card:nth-child(1) { animation-delay: 1.4s; }
.meal-card:nth-child(2) { animation-delay: 1.6s; }
.meal-card:nth-child(3) { animation-delay: 1.8s; }
.meal-card:nth-child(4) { animation-delay: 2s; }

.meal-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 1;
}

.meal-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.meal-card:hover::before {
    opacity: 1;
}

.meal-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    color: var(--primary);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.meal-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.3) 0%, rgba(44, 62, 80, 1) 70%);
    transition: var(--transition);
}

.meal-card:hover .meal-icon {
    color: white;
}

.meal-card:hover .meal-icon::before {
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.5) 0%, rgba(44, 62, 80, 1) 70%);
}

.meal-content {
    padding: 1.8rem;
}

.meal-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px dotted var(--light-gray);
    padding-bottom: 0.8rem;
    color: var(--dark);
    transition: var(--transition);
}

.meal-card:hover .meal-title {
    color: var(--primary);
}

.meal-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background-color: var(--light);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.meal-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meal-detail span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
}

.meal-detail span:last-child {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.meal-detail[data-nutrient="calories"] span:first-child {
    color: var(--primary);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.05);
}

.meal-card:hover .meal-detail[data-nutrient="calories"] span:first-child {
    transform: scale(1.1);
}

.meal-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--gradient-dark);
    color: var(--light);
    border-radius: 50px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.meal-card:hover .meal-tag {
    background: var(--gradient-primary);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.recipe-btn {
    display: inline-block;
    margin-top: 1.2rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.recipe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(255, 193, 7, 0.4);
    filter: brightness(1.05);
}

/* Updated recipe modals */
.recipe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.recipe-modal.active {
    opacity: 1;
    visibility: visible;
}

.recipe-content {
    background-color: white;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition);
    border: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.recipe-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.recipe-modal.active .recipe-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gradient-dark);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.close-modal:hover {
    background: var(--gradient-primary);
    transform: rotate(90deg);
    box-shadow: 0 5px 12px rgba(0,0,0,0.3);
}

.recipe-header {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.recipe-header h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    color: var(--dark);
}

.recipe-header h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.recipe-header .meal-details {
    max-width: 600px;
    margin: 0 auto;
    justify-content: space-around;
    background: var(--light);
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.recipe-section {
    margin-bottom: 2.5rem;
    position: relative;
}

.recipe-section h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    border-bottom: 2px dotted var(--light-gray);
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.recipe-section h4::before {
    position: absolute;
    left: -40px;
    top: 0;
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
}

.recipe-section:nth-of-type(2) h4::before {
    content: "🍳";
}

.recipe-section:nth-of-type(3) h4::before {
    content: "📝";
}

.ingredients-list, .steps-list {
    padding-left: 1.5rem;
}

.ingredients-list li, .steps-list li {
    margin-bottom: 1rem;
    position: relative;
}

.ingredients-list li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.steps-list li {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px dashed #e0e0e0;
}

.steps-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.adjusted-portion {
    background-color: #FFF8E1; /* Very light yellow */
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    border-left: 5px solid var(--primary);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.1);
}

.adjusted-portion h5 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.adjusted-portion ul {
    padding-left: 1.5rem;
}

.nutrition-facts {
    margin-top: 3rem;
    background: var(--gradient-light);
    padding: 2rem;
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nutrition-facts h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 0.5rem;
}

.nutrition-facts h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.nutrition-facts .table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-facts .table th, .nutrition-facts .table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.nutrition-facts .table th {
    font-weight: 600;
    color: var(--dark);
    background-color: rgba(255, 255, 255, 0.5);
}

.nutrition-facts .table tr:last-child td {
    border-bottom: none;
}

.nutrition-facts .table tr:hover td {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Enhanced animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    header {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .logo::before {
        font-size: 2rem;
    }
    
    nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        margin-top: 1rem;
        order: 4;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: center;
        border: 1px solid var(--light-gray);
        border-radius: var(--border-radius);
    }
    
    nav ul li a:hover::after {
        width: 0;
    }
    
    .hero {
        padding: 2rem;
        margin: 2rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .calorie-calculator {
        padding: 1.5rem;
    }
    
    .days {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .day-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        flex-grow: 1;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .slider-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .slider-value {
        align-self: center;
        margin-top: 1rem;
    }
    
    .meals-container {
        grid-template-columns: 1fr;
    }
    
    /* Modal Improvements for Mobile */
    .recipe-content {
        width: 95%;
        padding: 1.5rem;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .recipe-header h3 {
        font-size: 1.8rem;
    }
    
    .close-modal {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .recipe-section h4::before {
        position: static;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .recipe-section h4 {
        display: block;
        width: 100%;
        font-size: 1.2rem;
    }
    
    .meal-detail span:first-child {
        font-size: 1.3rem;
    }
    
    .meal-detail span:last-child {
        font-size: 0.8rem;
    }
    
    .ingredients-list li, .steps-list li {
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
    }
    
    .ingredients-list, .steps-list {
        padding-left: 1rem;
    }
    
    .nutrition-facts {
        padding: 1rem;
    }
    
    .nutrition-facts .table th, .nutrition-facts .table td {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .nutrition-facts h4 {
        font-size: 1.2rem;
    }
}