        /* استایل کلی صفحه */
        body {
            font-family: 'IRANSans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            margin: 0;
            padding: 0;
        }
        
        .recipe-container {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        
        /* باکس مواد لازم */
        .ingredients-box {
            flex: 0 0 300px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 20px;
            position: sticky;
            top: 20px;
            align-self: flex-start;
            height: fit-content;
            max-height: 80vh;
        }
        
        .ingredients-box h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .ingredients-scroll {
            max-height: 70vh;
            overflow-y: auto;
            padding-right: 10px;
        }
        
        .ingredients-scroll::-webkit-scrollbar {
            width: 6px;
        }
        
        .ingredients-scroll::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .ingredients-scroll::-webkit-scrollbar-thumb {
            background: #e74c3c;
            border-radius: 10px;
        }
        
        .ingredients-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .ingredients-list li {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px dashed #eee;
            line-height: 1.6;
        }
        
        .ingredient-name {
            font-weight: 500;
        }
        
        .ingredient-quantity {
            color: #e74c3c;
            font-weight: 600;
            margin-left: 15px;
        }
        
        /* بخش دستور پخت */
        .instructions-box {
            flex: 1;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
        }
        
        /* استایل‌های دیگر... */
        
        /* فرم نظر دهی */
        .comment-form {
            margin-top: 30px;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }
        
        .form-group textarea {
            min-height: 100px;
        }
        
        .btn {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
        }
        
        .btn:hover {
            background: #c0392b;
        }
        
        @media (max-width: 768px) {
            .recipe-container {
                flex-direction: column;
            }
            
            .ingredients-box {
                position: static;
                max-height: none;
            }
        }